diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json
deleted file mode 100644
index ddada64..0000000
--- a/.claude-plugin/marketplace.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "name": "engram",
- "owner": {
- "name": "Engram Team",
- "email": "ashish.dwivedi@gmail.com"
- },
- "metadata": {
- "description": "Engram persistent memory plugins for Claude Code",
- "version": "1.0.0"
- },
- "plugins": [
- {
- "name": "engram-memory",
- "source": {
- "source": "github",
- "repo": "Ashish-dwi99/engram-memory"
- },
- "description": "Proactive persistent memory. Auto-injects relevant memories on every message via a UserPromptSubmit hook. Includes /engram slash commands and a standing-instruction skill.",
- "version": "1.0.0",
- "author": {
- "name": "Engram Team"
- },
- "homepage": "https://github.com/Ashish-dwi99/Engram",
- "repository": "https://github.com/Ashish-dwi99/engram-memory",
- "license": "MIT",
- "keywords": ["memory", "persistent", "proactive", "hook"],
- "category": "productivity"
- }
- ]
-}
diff --git a/.cursor/rules/engram-continuity.mdc b/.cursor/rules/engram-continuity.mdc
deleted file mode 100644
index 22f46e1..0000000
--- a/.cursor/rules/engram-continuity.mdc
+++ /dev/null
@@ -1,12 +0,0 @@
----
-description: "Use Engram handoff tools automatically for continuity"
-alwaysApply: true
----
-
-When an Engram MCP server is available:
-
-1) At the start of a new task/thread, call `get_last_session` first.
- Do not pass `agent_id` unless the user explicitly asks for a specific source agent.
-2) Use the returned handoff context to continue work naturally.
-3) Before pausing or ending, call `save_session_digest`.
-4) Do not use shell/SQLite probing for continuity when MCP handoff tools exist.
diff --git a/.gitignore b/.gitignore
index 6ac7bbb..f071171 100644
--- a/.gitignore
+++ b/.gitignore
@@ -122,5 +122,73 @@ pip-delete-this-directory.txt
# Node (dashboard)
node_modules/
-# Rust build artifacts (engram-accel)
+# Rust build artifacts (dhee-accel)
target/
+
+# ============================================================
+# Excluded from public repo — internal/experimental only
+# ============================================================
+
+# Experimental engram sub-packages
+engram-bridge/
+engram-bus/
+engram-enterprise/
+engram-failure/
+engram-heartbeat/
+engram-identity/
+engram-metamemory/
+engram-policy/
+engram-procedural/
+engram-prospective/
+engram-reconsolidation/
+engram-resilience/
+engram-router/
+engram-spawn/
+engram-warroom/
+engram-working/
+
+# Internal apps
+dashboard/
+landing/
+
+# Models & training artifacts (large binaries)
+models/
+notebooks/
+kaggle_upload/
+
+# Benchmark runs & datasets
+runs/
+data/
+
+# Internal scripts & docs
+scripts/
+deep-research-report.md
+launch-article.md
+pitch-deck.md
+start-bridge.sh
+
+# Agent-specific config (not needed publicly)
+CLAUDE.md
+CURSOR.md
+.claude-plugin/
+.cursor/
+
+# Root-level node (dashboard/landing dependencies)
+/package.json
+/package-lock.json
+
+# Root-level ad-hoc test files
+/test_*.py
+
+# Temp caches
+.pycache_tmp/
+
+# Extra venvs
+.venv-dhee/
+
+# Internal benchmark docs in docs/ (keep only the logo)
+docs/engram_benchmark_blind_sota_program.md
+docs/longmemeval_active_memory_orchestration_plan_2026-02-23.md
+docs/capture_screenshots.py
+docs/screenshots/
+docs/pdf/
diff --git a/AGENTS.md b/AGENTS.md
index 94d913e..d7f12cc 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -1,17 +1,17 @@
# Repository Guidelines
## Project Structure & Module Organization
-- `engram/` is the main package. Core logic lives in `engram/core/` (decay, echo, fusion, conflict), while the user-facing API and orchestration live in `engram/memory/`.
-- Integrations are split by concern: `engram/llms/` (Gemini/OpenAI mocks), `engram/embeddings/`, `engram/vector_stores/`, and `engram/db/`.
-- Configuration and utilities live in `engram/configs/` and `engram/utils/`.
-- Entry points/examples: `engram/mcp_server.py` (MCP server) and `engram/example_agent.py`.
-- Tests are simple pytest files in the repo root and package, e.g. `test_echomem.py`, `engram/test_quick.py`, `engram/test_no_api.py`.
+- `dhee/` is the main package. Core logic lives in `dhee/core/` (decay, echo, fusion, conflict), while the user-facing API and orchestration live in `dhee/memory/`.
+- Integrations are split by concern: `dhee/llms/` (Gemini/OpenAI mocks), `dhee/embeddings/`, `dhee/vector_stores/`, and `dhee/db/`.
+- Configuration and utilities live in `dhee/configs/` and `dhee/utils/`.
+- Entry points/examples: `dhee/mcp_server.py` (MCP server) and `dhee/example_agent.py`.
+- Tests are simple pytest files in the repo root and package, e.g. `test_echomem.py`, `dhee/test_quick.py`, `dhee/test_no_api.py`.
## Build, Test, and Development Commands
- `pip install -e ".[dev]"` installs dev extras (pytest, pytest-asyncio).
- `pip install -e ".[gemini,qdrant]"` installs optional runtime dependencies for Gemini + Qdrant.
- `pytest` runs all tests discovered under `test_*.py`.
-- `python -m engram.mcp_server` or `engram-mcp` runs the MCP server entry point.
+- `python -m dhee.mcp_server` or `engram-mcp` runs the MCP server entry point.
## Coding Style & Naming Conventions
- Python 3.9+ codebase; follow PEP 8 with 4-space indentation.
@@ -20,7 +20,7 @@
## Testing Guidelines
- Test framework: `pytest` with `pytest-asyncio` for async cases.
-- Name new tests `test_*.py` and place them in the repo root or within `engram/` alongside related modules.
+- Name new tests `test_*.py` and place them in the repo root or within `dhee/` alongside related modules.
- Keep tests isolated from external services unless explicitly marked or documented.
## Commit & Pull Request Guidelines
diff --git a/CLAUDE.md b/CLAUDE.md
deleted file mode 100644
index 2610b23..0000000
--- a/CLAUDE.md
+++ /dev/null
@@ -1,28 +0,0 @@
-
-## Engram Continuity (Auto-Generated)
-
-Follow these rules for cross-agent continuity on every new task/thread.
-
-1) Before answering substantive repo/task questions, call `get_last_session`:
-- `user_id`: `"default"` unless provided
-- `requester_agent_id`: `"claude-code"`
-- `repo`: absolute workspace path
-- Include `agent_id` only when the user explicitly asks to continue from a specific source agent.
-
-2) If no handoff session exists, continue normally and use memory tools as needed.
-
-3) On major milestones and before pausing/ending, call `save_session_digest` with:
-- `task_summary`
-- `repo`
-- `status` (`"active"`, `"paused"`, or `"completed"`)
-- `decisions_made`, `files_touched`, `todos_remaining`
-- `blockers`, `key_commands`, `test_results` when available
-- `agent_id`: `"claude-code"`, `requester_agent_id`: `"claude-code"`
-
-4) Prefer Engram MCP handoff tools over shell/SQLite inspection for continuity.
-
-Target agent profile: `Claude Code`.
-
-
-
-
diff --git a/CURSOR.md b/CURSOR.md
deleted file mode 100644
index c36523a..0000000
--- a/CURSOR.md
+++ /dev/null
@@ -1,28 +0,0 @@
-
-## Engram Continuity (Auto-Generated)
-
-Follow these rules for cross-agent continuity on every new task/thread.
-
-1) Before answering substantive repo/task questions, call `get_last_session`:
-- `user_id`: `"default"` unless provided
-- `requester_agent_id`: `"cursor"`
-- `repo`: absolute workspace path
-- Include `agent_id` only when the user explicitly asks to continue from a specific source agent.
-
-2) If no handoff session exists, continue normally and use memory tools as needed.
-
-3) On major milestones and before pausing/ending, call `save_session_digest` with:
-- `task_summary`
-- `repo`
-- `status` (`"active"`, `"paused"`, or `"completed"`)
-- `decisions_made`, `files_touched`, `todos_remaining`
-- `blockers`, `key_commands`, `test_results` when available
-- `agent_id`: `"cursor"`, `requester_agent_id`: `"cursor"`
-
-4) Prefer Engram MCP handoff tools over shell/SQLite inspection for continuity.
-
-Target agent profile: `Cursor`.
-
-
-
-
diff --git a/Dockerfile b/Dockerfile
index 2dc31b9..09557ab 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,9 +1,29 @@
FROM python:3.11-slim
+
WORKDIR /app
+
+# Copy project files
COPY pyproject.toml README.md ./
-COPY engram/ engram/
-RUN pip install --no-cache-dir ".[api]"
-EXPOSE 8100
-ENV ENGRAM_DATA_DIR=/data
+COPY dhee/ ./dhee/
+COPY dhee/ ./dhee/
+
+# Install package — slim by default (no llama.cpp, no local models)
+# Use: docker build --build-arg EXTRAS="openai,mcp" .
+ARG EXTRAS="openai,mcp"
+RUN pip install --no-cache-dir -e ".[$EXTRAS]"
+
+# Create data directory
+RUN mkdir -p /data/dhee
+
+# Environment
+ENV DHEE_DATA_DIR=/data/dhee
+ENV PYTHONUNBUFFERED=1
+
+# Health check
+HEALTHCHECK --interval=30s --timeout=10s --retries=3 \
+ CMD python -c "from dhee.core.buddhi import Buddhi; Buddhi(); print('ok')" || exit 1
+
VOLUME /data
-CMD ["engram-api", "--host", "0.0.0.0", "--port", "8100"]
+
+# Default: MCP server (4 tools)
+CMD ["dhee-mcp"]
diff --git a/README.md b/README.md
index d859df0..6fac37a 100644
--- a/README.md
+++ b/README.md
@@ -1,401 +1,251 @@
-
-
-
-
- Engram
-
-
-
-
- The Personal Memory Kernel for AI Agents
-
-
- Hit a rate limit in Claude Code? Open Codex — it already knows what you were doing.
- Create a task? Memory picks the best agent automatically.
- One memory kernel. Shared across every agent. Bio-inspired forgetting. Zero cold starts.
+
-
-
-
-
-
-
+Dhee
-
- Quick Start ·
- Why Engram ·
- How It Works ·
- Packages ·
- Changelog ·
- Docs
-
-
----
-
-### Dashboard
+The cognition layer that turns your agent into a HyperAgent.
-
-
- Kanban board, memory inspector, agent coordination, and chat.
+ 4 tools. 1 LLM call per session. ~$0.004 total cost.
+ Your agent remembers, learns from outcomes, and predicts what you need next.
-
-Individual views
-
-
-
- Kanban board — drag-and-drop task management across statuses
+
+
-
-
-
- Agents tab — memory-based orchestration with semantic routing and capability matching
-
+---
-
-
-
- Memory browser — search, inspect, and manage the shared memory store
-
+## What is Dhee?
-
-
-
- Chat — describe a task and the agent creates it on the board, or just chat
-
+Most memory layers are glorified vector stores. Store text, retrieve text. Your agent is still stateless — it doesn't learn, doesn't track what worked, doesn't warn you when something is regressing.
-
+**Dhee is a cognition layer.** It gives any agent — Claude, GPT, Gemini, custom — four capabilities that turn it into a self-improving HyperAgent:
----
+| Capability | What Dhee does | What your agent gets |
+|:-----------|:---------------|:---------------------|
+| **Persistent memory** | Stores facts with echo-augmented retrieval (paraphrases, keywords, question-forms) | "What theme does the user prefer?" matches "User likes dark mode" even though the words are different |
+| **Performance tracking** | Records task outcomes, detects trends automatically | Knows it's regressing on code reviews, warns you before you notice |
+| **Insight synthesis** | Extracts causal hypotheses from outcomes — not raw data, synthesized learnings | "What worked: checking git blame first" transfers to the next bug fix |
+| **Prospective memory** | Stores future triggers — "remember to X when Y" | Surfaces intentions when the trigger context matches |
-### Research Highlights
+### Benchmark: LongMemEval
-
- ~45% less storage | +26% retrieval accuracy | +12% multi-hop reasoning
-
+Dhee achieves near-perfect retrieval on [LongMemEval](https://arxiv.org/abs/2410.10813), the standard benchmark for long-term conversational memory — temporal reasoning, multi-session aggregation, knowledge updates, and counterfactual tracking across 500+ questions.
-
- Based on FadeMem (arXiv:2601.18642) — biologically-inspired forgetting for efficient agent memory.
-
+> Evaluation run in progress. Full results and methodology will be published in the benchmark report.
---
## Quick Start
```bash
-pip install engram-memory # 1. Install
-export GEMINI_API_KEY="your-key" # 2. Set one key (or OPENAI_API_KEY, NVIDIA_API_KEY)
-engram install # 3. Auto-configure Claude Code, Cursor, Codex
+pip install dhee[openai,mcp]
+export OPENAI_API_KEY=sk-...
```
-Restart your agent. Done — it now has persistent memory across sessions and agents.
-
-**Want the dashboard + orchestration?**
+### MCP (Claude Code, Cursor — zero code)
-```bash
-pip install -e "./engram-orchestrator"
-pip install -e "./engram-bridge[web,orchestrator]"
-engram-bridge --channel web # Open http://127.0.0.1:8200
+```json
+{
+ "mcpServers": {
+ "dhee": { "command": "dhee-mcp" }
+ }
+}
```
----
-
-## Why Engram
-
-Every AI agent you use starts with amnesia. But the real pain isn't just forgetting — it's what happens when you **switch agents** and when you have to **decide which agent to use**.
+Your agent now has 4 tools. It will use them automatically.
-### The cold-start problem
+### Python SDK
-You're 40 minutes into a refactor with Claude Code. You've touched six files, picked a migration strategy, mapped out the remaining TODOs. Then you hit a rate limit. Or your terminal crashes. Or you just need Codex for the next part. So you switch — and the new agent has **zero context**. You re-paste file paths, re-explain decisions, re-describe the plan. Half the time the new agent contradicts something you'd already decided.
-
-### The routing problem
+```python
+from dhee import Dhee
-You have three agents configured: Claude Code for deep reasoning, Codex for fast scaffolding, a custom agent for CI. A bug comes in. Which agent handles it? You pick manually every time. When agents finish, the next task sits idle until you notice. You are the orchestrator — and you shouldn't have to be.
+d = Dhee()
+d.remember("User prefers dark mode")
+d.recall("what theme does the user like?")
+d.context("fixing auth bug")
+d.checkpoint("Fixed it", what_worked="git blame first")
+```
-**Engram fixes both.** It's a Personal Memory Kernel — one memory store shared across all your agents.
+### CLI
-**For handoffs**: when Claude Code pauses, it saves a session digest. When Codex picks up, it loads that digest and continues where you left off. No re-explanation. No cold starts.
+```bash
+dhee remember "User prefers Python"
+dhee recall "programming language"
+dhee checkpoint "Fixed auth bug" --what-worked "checked logs"
+```
-**For orchestration**: agents register their capabilities as memories. When a task arrives, Engram semantically matches it against agent capabilities and auto-routes it to the best available agent. Memory *is* the orchestrator — no separate routing service, no manual assignment, no YAML configs mapping tasks to agents.
+### Docker
-| Problem | Typical approach | Engram |
-|:--------|:-----------------|:-------|
-| **Switch agents = cold start** | Manual copy-paste | Handoff bus — auto session digests + resume |
-| **Who handles this task?** | You pick manually | Semantic capability matching — auto-route |
-| **Agent at capacity?** | Task sits idle | Load-aware routing with CAS claim/release |
-| **Nobody forgets** | Store everything forever | Ebbinghaus decay — ~45% less storage |
-| **Single retrieval path** | One embedding per memory | 5 retrieval paths per memory (EchoMem) |
-| **No episodic memory** | Vector search only | CAST scenes — time/place/topic clustering |
-| **No consolidation** | Store everything as-is | CLS sleep cycles — episodic to semantic distillation |
-| **No real-time coordination** | Polling or nothing | Active memory signal bus — agents see each other instantly |
-| **Agents don't learn** | Retrain or nothing | Skill-policy memory — agents accumulate reusable skills |
-| **Concurrent access** | Single-process locks | zvec HNSW — multiple agents, directory-based collections |
+```bash
+docker compose up -d # uses OPENAI_API_KEY from env
+```
---
-## How It Works
+## The 4 Tools
-Engram has three layers — memory, coordination, and communication:
+Every interface — MCP, Python, CLI, JS — exposes the same 4 operations.
-### Passive Memory — the long-term store
+### `remember(content)`
+Store a fact, preference, or observation.
-Memories fade via Ebbinghaus decay, get promoted from short-term to long-term through repeated access, and are encoded through multiple retrieval paths (paraphrase, keywords, implications, question-form). Sleep cycles distill episodic conversations into durable semantic facts.
+**Hot path**: 0 LLM calls, 1 embedding (~$0.0002). The memory is stored immediately. Echo enrichment (paraphrases, keywords, question-forms that make future recall dramatically better) is deferred to `checkpoint`.
-### Active Memory — the real-time signal bus
-
-Agents post ephemeral state ("editing auth.py", "build failing") that other agents see instantly. Signals auto-expire. Important ones get consolidated into long-term storage.
-
-### Memory-as-Orchestrator — the coordination layer
-
-Agent capabilities are stored as memories: *"claude-code: Advanced coding agent. Expert at Python, TypeScript, debugging."* When a task arrives, Engram runs a semantic search over these capability memories, filters by agent availability and capacity, scores candidates, and assigns the task — all through the same memory infrastructure used for everything else. Coordination events (routed, claimed, released) are themselves stored as memories, creating a searchable audit trail.
+```python
+d.remember("User prefers FastAPI over Flask")
+d.remember("Project uses PostgreSQL 15 with pgvector")
+```
-No new database tables. No separate routing service. The same `Memory.add()` / `Memory.search()` that stores user conversations also stores agent profiles and routes tasks.
+### `recall(query)`
+Search memory. Returns top-K results ranked by relevance.
-### Skill Memory — the self-improvement loop
+**Hot path**: 0 LLM calls, 1 embedding (~$0.0002). Pure vector search with echo-boosted re-ranking.
-Agents learn from experience. When an agent completes a task, Engram records the trajectory (actions, tools, results). Successful trajectories accumulate. The Skill Miner analyzes clusters of similar trajectories and extracts reusable **skills** — validated procedures stored as SKILL.md files with YAML frontmatter.
+```python
+results = d.recall("what database does the project use?")
+# [{"memory": "Project uses PostgreSQL 15 with pgvector", "score": 0.94}]
+```
-Skills have confidence scores that update on success/failure (Bayesian, asymmetric — failures penalize more). High-confidence skills are automatically suggested when matching tasks arrive. The loop:
+### `context(task_description)`
+HyperAgent session bootstrap. Call once at the start of a conversation.
-```
-Agent works → Trajectory recorded → Miner extracts patterns → Skills stored
- ↑ |
- └── Agent applies skill → Outcome logged → Confidence updated ──┘
-```
+Returns everything the agent needs to be effective immediately:
+- **Last session state** — pick up where you left off, zero cold start
+- **Performance trends** — improving or regressing on this task type
+- **Synthesized insights** — "What worked for bug_fix: checking git blame first"
+- **Triggered intentions** — "Remember to run auth tests after modifying login.py"
+- **Proactive warnings** — "Performance on code_review is declining"
+- **Relevant memories** — top matches for the task
```python
-from engram import SmartMemory
-
-m = SmartMemory(preset="smart")
+ctx = d.context("fixing the auth bug in login.py")
+# ctx["warnings"] → ["Performance on 'bug_fix' declining (trend: -0.05)"]
+# ctx["insights"] → [{"content": "What worked: git blame → found breaking commit"}]
+# ctx["intentions"] → [{"description": "run auth tests after login.py changes"}]
+```
-# Search for relevant skills
-skills = m.search_skills("fix python import error")
+### `checkpoint(summary, ...)`
+Save session state before ending. This is where the cognition happens:
-# Apply a skill — returns injectable recipe
-result = m.apply_skill(skill_id)
+1. **Session digest** — saved for cross-agent handoff (Claude Code crashes? Cursor picks up instantly)
+2. **Batch enrichment** — 1 LLM call per ~10 memories stored since last checkpoint. Adds echo paraphrases and keywords that make `recall` work across phrasings
+3. **Outcome recording** — tracks score per task type, auto-detects regressions and breakthroughs
+4. **Insight synthesis** — "what worked" and "what failed" become transferable learnings
+5. **Intention storage** — "remember to X when Y" fires when the trigger matches
-# Report outcome — updates confidence
-m.log_skill_outcome(skill_id, success=True)
+```python
+d.checkpoint(
+ "Fixed auth bug in login.py",
+ task_type="bug_fix",
+ outcome_score=1.0,
+ what_worked="git blame showed the exact commit that broke auth",
+ what_failed="grep was too slow on the monorepo",
+ remember_to="run auth tests after any login.py change",
+ trigger_keywords=["login", "auth"],
+)
```
-Skills are discovered from `~/.engram/skills/` and `{repo}/.engram/skills/`. Six MCP tools: `search_skills`, `apply_skill`, `log_skill_outcome`, `record_trajectory_step`, `mine_skills`, `get_skill_stats`.
-
-### Handoff
-
-When an agent pauses (rate limit, crash, tool switch), it saves a session digest: task summary, decisions made, files touched, TODOs remaining. The next agent loads it and continues. If no digest was saved, Engram falls back to parsing the conversation logs automatically.
+---
-
-The memory stack at a glance
+## Cost
-| Layer | What it does |
-|:------|:-------------|
-| **FadeMem** | Ebbinghaus-curve decay, SML/LML dual layers, promotion on access |
-| **EchoMem** | 5 retrieval paths per memory (paraphrase, keywords, implications, Q-form) |
-| **CategoryMem** | Auto-discovered hierarchical categories with retrieval boosting |
-| **CAST Scenes** | Episodic narrative memory — time, place, topic clustering |
-| **CLS Distillation** | Sleep-cycle replay: episodic to semantic fact extraction |
-| **Multi-trace** | Benna-Fusi model — fast/mid/slow decay traces per memory |
-| **Intent routing** | Episodic vs semantic query classification |
-| **Skill Memory** | SKILL.md files — discover, apply, and mine reusable agent skills |
-| **Skill Miner** | Trajectory recording → pattern extraction → skill compilation |
-| **Orchestrator** | Agent registry + semantic task routing + CAS claim/release |
-| **Handoff bus** | Session digests, checkpoints, JSONL log fallback |
-| **Active Memory** | Real-time signal bus with TTL tiers |
-
+| Operation | LLM calls | Embed calls | Cost |
+|:----------|:----------|:------------|:-----|
+| `remember` | 0 | 1 | ~$0.0002 |
+| `recall` | 0 | 1 | ~$0.0002 |
+| `context` | 0 | 0-1 | ~$0.0002 |
+| `checkpoint` | 1 per ~10 memories | 0 | ~$0.001 |
+| **Typical session** | **1** | **~15** | **~$0.004** |
---
-## Packages
+## How It Works (Under the Hood)
-Engram is five pip-installable packages:
+Dhee has two layers: the memory store and the cognition engine.
-```
-engram-memory ← engram-bus ← engram-orchestrator ← engram-bridge ← engram-enterprise
- (core) (comms) (routing) (dashboard) (governance)
-```
+### Memory Store — Engram
-### [`engram-memory`](./engram/) — Core Memory Engine
+Stores memories in SQLite + a vector index. On the hot path (`remember`/`recall`), zero LLM calls — just embedding. At `checkpoint`, unified enrichment runs in a single batched LLM call:
-The main package. Memory CRUD, semantic search, decay, echo encoding, categories, episodic scenes, MCP server, CLI.
+- **Echo encoding** — generates paraphrases, keywords, and question-forms so "User prefers dark mode" also matches queries like "what theme?" or "UI preferences"
+- **Category inference** — auto-tags for filtering
+- **Fact decomposition** — splits compound statements into atomic, searchable facts
+- **Entity + profile extraction** — builds a knowledge graph of people, tools, projects
-```bash
-pip install engram-memory
-pip install "engram-memory[openai]" # OpenAI provider
-pip install "engram-memory[ollama]" # Ollama (local, no key needed)
-pip install "engram-memory[all]" # everything
-```
+All of this happens in **1 LLM call per ~10 memories**. Not 4 calls per memory. One batched call.
-```python
-from engram import Engram
+Memory decays naturally (Ebbinghaus curve). Frequently accessed memories get promoted from short-term to long-term. Unused ones fade. ~45% less storage than systems that keep everything forever.
-memory = Engram()
-memory.add("User prefers Python over TypeScript", user_id="u1")
-results = memory.search("programming preferences", user_id="u1")
-```
+### Cognition Engine — Buddhi
-**14 MCP tools** — memory CRUD, semantic search, session handoff, skill search/apply/mine, trajectory recording. One command configures Claude Code, Cursor, and Codex:
+A parallel intelligence layer that observes the memory pipeline and builds meta-knowledge:
-```bash
-engram install
-```
+- **Performance tracking** — records outcomes per task type, computes trends (moving average). Auto-generates regression warnings and breakthrough insights.
+- **Insight synthesis** — stores causal hypotheses ("what worked", "what failed"), not raw data. Insights have confidence scores that update on validation/invalidation.
+- **Prospective memory** — stores future triggers with keyword matching. "Remember to run tests after modifying auth" fires when the next query mentions "auth".
+- **Intention detection** — auto-detects "remember to X when Y" patterns in stored memories.
-### [`engram-bus`](./engram-bus/) — Agent Communication Bus
+Zero LLM calls on the hot path. Pure pattern matching + statistics. Persistence via JSONL files (~3 files total).
-Real-time agent-to-agent coordination. Key/value with TTL, pub/sub messaging, handoff sessions and checkpoints. Zero external dependencies — stdlib only.
+Inspired by [Meta's DGM-Hyperagents](https://arxiv.org/abs/2603.19461) — agents that emergently develop persistent memory and performance tracking achieve self-accelerating improvement that transfers across domains. Dhee provides these capabilities as infrastructure.
-```bash
-pip install engram-bus
-```
+---
-```python
-from engram_bus import Bus
+## Architecture
-bus = Bus()
-bus.put("status", "refactoring auth", agent="planner", ttl=300)
-bus.publish("progress", {"step": 3, "total": 5}, agent="worker")
```
-
-[Full documentation →](./engram-bus/README.md)
-
-### [`engram-orchestrator`](./engram-orchestrator/) — Memory-as-Orchestrator
-
-Agents register capabilities as memories. Tasks auto-route to the best agent via semantic search. No new DB tables — everything is a memory.
-
-```bash
-pip install -e "./engram-orchestrator"
+Agent (Claude, GPT, Cursor, custom)
+ │
+ ├── remember(content) → Engram: embed + store (0 LLM)
+ ├── recall(query) → Engram: embed + vector search (0 LLM)
+ ├── context(task) → Buddhi: performance + insights + intentions + memories
+ └── checkpoint(summary) → Engram: batch enrich (1 LLM/10 mems)
+ → Buddhi: outcome + reflect + intention
```
-```python
-from engram_orchestrator import Coordinator, AgentRegistry
-from engram.memory.main import Memory
-from engram_bus import Bus
-
-memory = Memory(config=...)
-bus = Bus()
-coordinator = Coordinator(memory, bus, config)
-
-# Agents register capabilities — stored as searchable memories
-coordinator.registry.register(
- "claude-code",
- capabilities=["python", "typescript", "debugging", "code-review"],
- description="Advanced coding agent for deep reasoning tasks",
- agent_type="claude", model="claude-opus-4-6",
-)
-
-# Tasks auto-route via semantic matching
-coordinator.start() # subscribes to bridge.task.created bus events
-
-# Or route manually
-coordinator.router.route(task_id) # single task
-coordinator.router.route_pending() # batch all unassigned
-
-# Agents claim tasks atomically (CAS)
-coordinator.claim(task_id, "claude-code") # returns None if already claimed
-coordinator.release(task_id, "claude-code")
```
-
-Three classes, one idea:
-
-| Class | Purpose |
-|:------|:--------|
-| **AgentRegistry** | Store/query agent capability profiles as `memory_type="agent"` memories |
-| **TaskRouter** | Build query from task → semantic search → filter by availability → score → assign |
-| **Coordinator** | Ties registry + router + bus events. CAS claim/release. Event logging as memories |
-
-### [`engram-bridge`](./engram-bridge/) — Dashboard + Channel Adapters
-
-Talk to your coding agents from a browser or Telegram. Kanban board, task management, live WebSocket streaming, and the coordination dashboard.
-
-```bash
-pip install -e "./engram-bridge[web,orchestrator]"
-engram-bridge --channel web
+~/.dhee/
+├── history.db # SQLite: memories, history, entities
+├── zvec/ # Vector index (embeddings)
+└── buddhi/
+ ├── insights.jsonl # Synthesized learnings
+ ├── intentions.jsonl # Future triggers
+ └── performance.json # Task type scores + trends
```
-The web dashboard at `http://127.0.0.1:8200` includes:
-
-- **Board** — Kanban with drag-and-drop, projects, statuses, tags
-- **Agents** — Coordination dashboard: agent registry, semantic routing, event log
-- **Memory** — Browse and search the memory store
-- **Chat** — Direct agent interaction with live streaming
-
-> See [screenshots above](#dashboard) for a visual tour.
-
-7 coordination REST endpoints under `/api/coordination/`:
-
-| Endpoint | Description |
-|:---------|:------------|
-| `GET /agents` | List agents with capabilities + status |
-| `POST /agents/{name}/register` | Register/update capabilities |
-| `GET /agents/match?q=...` | Semantic capability search |
-| `POST /route/{task_id}` | Route task to best agent |
-| `POST /route-pending` | Batch-route all unassigned |
-| `POST /claim/{task_id}` | Atomic CAS claim |
-| `GET /events` | Coordination event log |
+---
-[Full documentation →](./engram-bridge/README.md)
+## Advanced
-### [`engram-enterprise`](./engram-enterprise/) — Governance Layer
+### Full MCP Server (24 tools)
-Policy enforcement, provenance tracking, acceptance gates, async operations, and authenticated REST API. Built on top of engram-memory and engram-bus.
+Power users who need granular control over skills, trajectories, structural search, and enrichment:
```bash
-pip install engram-enterprise
+dhee-mcp-full # exposes all 24 tools
```
+### Python — Direct Memory Access
+
```python
-from engram_enterprise import PersonalMemoryKernel
+from dhee import FullMemory
-kernel = PersonalMemoryKernel()
+m = FullMemory()
+m.add("conversation content", user_id="u1", infer=True)
+m.search("query", user_id="u1", limit=10)
+m.think("complex question requiring reasoning across memories")
```
-[Full documentation →](./engram-enterprise/README.md)
-
----
-
-## Integrations
+### Provider Options
```bash
-engram install # auto-configures everything
-```
-
-One command sets up MCP config for Claude Code, Cursor, and Codex. It also deploys the **Claude Code plugin** — a hook that proactively injects relevant memories before every prompt, plus periodic background checkpoints that survive rate limits.
-
-Works with any tool-calling agent via REST: `engram-api` starts a server at `http://127.0.0.1:8100`.
-
----
-
-## Repo Structure
-
-```
-├── engram/ # engram-memory — core Python package
-│ ├── core/ # decay, echo, category, scenes, distillation, traces
-│ ├── memory/ # CoreMemory → SmartMemory → FullMemory
-│ ├── skills/ # skill schema, store, discovery, executor, miner, trajectories
-│ ├── llms/ # LLM providers (gemini, openai, nvidia, ollama)
-│ ├── embeddings/ # embedding providers
-│ ├── vector_stores/ # zvec, sqlite-vec, in-memory
-│ ├── db/ # SQLite persistence
-│ ├── api/ # REST API endpoints
-│ ├── mcp_server.py # MCP server (14 tools)
-│ └── cli.py # CLI interface
-├── engram-bus/ # engram-bus — agent communication
-│ └── engram_bus/ # bus, pub/sub, handoff store, TCP server
-├── engram-orchestrator/ # engram-orchestrator — memory-as-orchestrator
-│ └── engram_orchestrator/ # registry, router, coordinator
-├── engram-bridge/ # engram-bridge — dashboard + channel adapters
-│ └── engram_bridge/ # bridge, channels (web + telegram), coordination shim
-│ └── channels/web-ui/ # React dashboard (Vite + shadcn/ui)
-├── engram-enterprise/ # engram-enterprise — governance layer
-│ └── engram_enterprise/ # kernel, policy, provenance, async, API + auth
-├── plugins/ # Claude Code plugin (hooks, commands, skill)
-├── tests/ # Test suite (300+ tests)
-├── pyproject.toml # engram-memory package config
-└── install.sh # One-line installer
+pip install dhee[openai,mcp] # OpenAI (recommended, cheapest embeddings)
+pip install dhee[gemini,mcp] # Google Gemini
+pip install dhee[ollama,mcp] # Ollama (local, zero cost)
```
---
@@ -403,42 +253,20 @@ Works with any tool-calling agent via REST: `engram-api` starts a server at `htt
## Contributing
```bash
-git clone https://github.com/Ashish-dwi99/Engram.git
-cd Engram
-
-# Core
+git clone https://github.com/Sankhya-AI/Dhee.git
+cd Dhee
pip install -e ".[dev]"
pytest
-
-# Bus
-pip install -e "./engram-bus[dev]"
-cd engram-bus && pytest
-
-# Orchestrator
-pip install -e "./engram-orchestrator"
-
-# Bridge (web dashboard)
-pip install -e "./engram-bridge[web,orchestrator]"
-cd engram-bridge/engram_bridge/channels/web-ui && npm install && npm run build
-
-# Enterprise
-pip install -e "./engram-enterprise[dev]"
-cd engram-enterprise && pytest
```
---
-## License
-
-MIT — see [LICENSE](LICENSE).
-
----
-
- One memory. Every agent. Zero cold starts. Automatic routing.
+ 4 tools. 1 LLM call. Your agent remembers, learns, and predicts.
- GitHub ·
- Issues ·
- Changelog ·
- Docs
+ GitHub ·
+ PyPI ·
+ Issues
+
+MIT License — Sankhya AI
diff --git a/dashboard/.gitignore b/dashboard/.gitignore
deleted file mode 100644
index 3b6f9c8..0000000
--- a/dashboard/.gitignore
+++ /dev/null
@@ -1,43 +0,0 @@
-# dependencies
-/node_modules
-/.pnp
-.pnp.*
-.yarn/*
-!.yarn/patches
-!.yarn/plugins
-!.yarn/releases
-!.yarn/versions
-
-# testing
-/coverage
-
-# next.js
-/.next/
-/out/
-
-# production
-/build
-
-# misc
-.DS_Store
-*.pem
-
-# debug
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
-.pnpm-debug.log*
-
-# env files
-.env
-.env.local
-.env.development.local
-.env.test.local
-.env.production.local
-
-# vercel
-.vercel
-
-# typescript
-*.tsbuildinfo
-next-env.d.ts
diff --git a/dashboard/README.md b/dashboard/README.md
deleted file mode 100644
index e215bc4..0000000
--- a/dashboard/README.md
+++ /dev/null
@@ -1,36 +0,0 @@
-This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
-
-## Getting Started
-
-First, run the development server:
-
-```bash
-npm run dev
-# or
-yarn dev
-# or
-pnpm dev
-# or
-bun dev
-```
-
-Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
-
-You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
-
-This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
-
-## Learn More
-
-To learn more about Next.js, take a look at the following resources:
-
-- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
-- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
-
-You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
-
-## Deploy on Vercel
-
-The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
-
-Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
diff --git a/dashboard/eslint.config.mjs b/dashboard/eslint.config.mjs
deleted file mode 100644
index 05e726d..0000000
--- a/dashboard/eslint.config.mjs
+++ /dev/null
@@ -1,18 +0,0 @@
-import { defineConfig, globalIgnores } from "eslint/config";
-import nextVitals from "eslint-config-next/core-web-vitals";
-import nextTs from "eslint-config-next/typescript";
-
-const eslintConfig = defineConfig([
- ...nextVitals,
- ...nextTs,
- // Override default ignores of eslint-config-next.
- globalIgnores([
- // Default ignores of eslint-config-next:
- ".next/**",
- "out/**",
- "build/**",
- "next-env.d.ts",
- ]),
-]);
-
-export default eslintConfig;
diff --git a/dashboard/next.config.ts b/dashboard/next.config.ts
deleted file mode 100644
index 7fd0a3f..0000000
--- a/dashboard/next.config.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import type { NextConfig } from "next";
-
-const nextConfig: NextConfig = {
- transpilePackages: ["three"],
-};
-
-export default nextConfig;
diff --git a/dashboard/package-lock.json b/dashboard/package-lock.json
deleted file mode 100644
index 2617eab..0000000
--- a/dashboard/package-lock.json
+++ /dev/null
@@ -1,8898 +0,0 @@
-{
- "name": "dashboard",
- "version": "0.1.0",
- "lockfileVersion": 3,
- "requires": true,
- "packages": {
- "": {
- "name": "dashboard",
- "version": "0.1.0",
- "dependencies": {
- "@radix-ui/react-accordion": "^1.2.12",
- "@radix-ui/react-alert-dialog": "^1.1.15",
- "@radix-ui/react-collapsible": "^1.1.12",
- "@radix-ui/react-dialog": "^1.1.15",
- "@radix-ui/react-select": "^2.2.6",
- "@radix-ui/react-slider": "^1.3.6",
- "@radix-ui/react-slot": "^1.2.4",
- "@radix-ui/react-tabs": "^1.1.13",
- "@radix-ui/react-tooltip": "^1.2.8",
- "@react-three/drei": "^10.7.7",
- "@react-three/fiber": "^9.5.0",
- "@react-three/postprocessing": "^3.0.4",
- "@types/three": "^0.182.0",
- "class-variance-authority": "^0.7.1",
- "clsx": "^2.1.1",
- "d3-force": "^3.0.0",
- "framer-motion": "^12.34.0",
- "lucide-react": "^0.563.0",
- "next": "16.1.6",
- "pixi.js": "^8.16.0",
- "react": "19.2.3",
- "react-dom": "19.2.3",
- "recharts": "^3.7.0",
- "swr": "^2.4.0",
- "tailwind-merge": "^3.4.0",
- "three": "^0.172.0",
- "zustand": "^5.0.11"
- },
- "devDependencies": {
- "@tailwindcss/postcss": "^4",
- "@types/d3-force": "^3.0.10",
- "@types/node": "^20",
- "@types/react": "^19",
- "@types/react-dom": "^19",
- "eslint": "^9",
- "eslint-config-next": "16.1.6",
- "tailwindcss": "^4",
- "typescript": "^5"
- }
- },
- "node_modules/@alloc/quick-lru": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
- "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@babel/code-frame": {
- "version": "7.29.0",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
- "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.28.5",
- "js-tokens": "^4.0.0",
- "picocolors": "^1.1.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/compat-data": {
- "version": "7.29.0",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
- "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/core": {
- "version": "7.29.0",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
- "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.29.0",
- "@babel/generator": "^7.29.0",
- "@babel/helper-compilation-targets": "^7.28.6",
- "@babel/helper-module-transforms": "^7.28.6",
- "@babel/helpers": "^7.28.6",
- "@babel/parser": "^7.29.0",
- "@babel/template": "^7.28.6",
- "@babel/traverse": "^7.29.0",
- "@babel/types": "^7.29.0",
- "@jridgewell/remapping": "^2.3.5",
- "convert-source-map": "^2.0.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.2",
- "json5": "^2.2.3",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/babel"
- }
- },
- "node_modules/@babel/generator": {
- "version": "7.29.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
- "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/parser": "^7.29.0",
- "@babel/types": "^7.29.0",
- "@jridgewell/gen-mapping": "^0.3.12",
- "@jridgewell/trace-mapping": "^0.3.28",
- "jsesc": "^3.0.2"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-compilation-targets": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
- "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/compat-data": "^7.28.6",
- "@babel/helper-validator-option": "^7.27.1",
- "browserslist": "^4.24.0",
- "lru-cache": "^5.1.1",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-globals": {
- "version": "7.28.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
- "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-imports": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
- "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/traverse": "^7.28.6",
- "@babel/types": "^7.28.6"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-transforms": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
- "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-module-imports": "^7.28.6",
- "@babel/helper-validator-identifier": "^7.28.5",
- "@babel/traverse": "^7.28.6"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-string-parser": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
- "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-identifier": {
- "version": "7.28.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
- "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-option": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
- "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helpers": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.6.tgz",
- "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/template": "^7.28.6",
- "@babel/types": "^7.28.6"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/parser": {
- "version": "7.29.0",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.0.tgz",
- "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.29.0"
- },
- "bin": {
- "parser": "bin/babel-parser.js"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@babel/runtime": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.6.tgz",
- "integrity": "sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==",
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/template": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
- "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.28.6",
- "@babel/parser": "^7.28.6",
- "@babel/types": "^7.28.6"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/traverse": {
- "version": "7.29.0",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
- "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.29.0",
- "@babel/generator": "^7.29.0",
- "@babel/helper-globals": "^7.28.0",
- "@babel/parser": "^7.29.0",
- "@babel/template": "^7.28.6",
- "@babel/types": "^7.29.0",
- "debug": "^4.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/types": {
- "version": "7.29.0",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
- "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-string-parser": "^7.27.1",
- "@babel/helper-validator-identifier": "^7.28.5"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@dimforge/rapier3d-compat": {
- "version": "0.12.0",
- "resolved": "https://registry.npmjs.org/@dimforge/rapier3d-compat/-/rapier3d-compat-0.12.0.tgz",
- "integrity": "sha512-uekIGetywIgopfD97oDL5PfeezkFpNhwlzlaEYNOA0N6ghdsOvh/HYjSMek5Q2O1PYvRSDFcqFVJl4r4ZBwOow==",
- "license": "Apache-2.0"
- },
- "node_modules/@emnapi/core": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.8.1.tgz",
- "integrity": "sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@emnapi/wasi-threads": "1.1.0",
- "tslib": "^2.4.0"
- }
- },
- "node_modules/@emnapi/runtime": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz",
- "integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "tslib": "^2.4.0"
- }
- },
- "node_modules/@emnapi/wasi-threads": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz",
- "integrity": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "tslib": "^2.4.0"
- }
- },
- "node_modules/@eslint-community/eslint-utils": {
- "version": "4.9.1",
- "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz",
- "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "eslint-visitor-keys": "^3.4.3"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- },
- "peerDependencies": {
- "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
- }
- },
- "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
- "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- }
- },
- "node_modules/@eslint-community/regexpp": {
- "version": "4.12.2",
- "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
- "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
- }
- },
- "node_modules/@eslint/config-array": {
- "version": "0.21.1",
- "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz",
- "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "@eslint/object-schema": "^2.1.7",
- "debug": "^4.3.1",
- "minimatch": "^3.1.2"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- }
- },
- "node_modules/@eslint/config-helpers": {
- "version": "0.4.2",
- "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz",
- "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "@eslint/core": "^0.17.0"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- }
- },
- "node_modules/@eslint/core": {
- "version": "0.17.0",
- "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz",
- "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "@types/json-schema": "^7.0.15"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- }
- },
- "node_modules/@eslint/eslintrc": {
- "version": "3.3.3",
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.3.tgz",
- "integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ajv": "^6.12.4",
- "debug": "^4.3.2",
- "espree": "^10.0.1",
- "globals": "^14.0.0",
- "ignore": "^5.2.0",
- "import-fresh": "^3.2.1",
- "js-yaml": "^4.1.1",
- "minimatch": "^3.1.2",
- "strip-json-comments": "^3.1.1"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- }
- },
- "node_modules/@eslint/js": {
- "version": "9.39.2",
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.2.tgz",
- "integrity": "sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "url": "https://eslint.org/donate"
- }
- },
- "node_modules/@eslint/object-schema": {
- "version": "2.1.7",
- "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz",
- "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- }
- },
- "node_modules/@eslint/plugin-kit": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz",
- "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "@eslint/core": "^0.17.0",
- "levn": "^0.4.1"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- }
- },
- "node_modules/@floating-ui/core": {
- "version": "1.7.4",
- "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.4.tgz",
- "integrity": "sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg==",
- "license": "MIT",
- "dependencies": {
- "@floating-ui/utils": "^0.2.10"
- }
- },
- "node_modules/@floating-ui/dom": {
- "version": "1.7.5",
- "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.5.tgz",
- "integrity": "sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg==",
- "license": "MIT",
- "dependencies": {
- "@floating-ui/core": "^1.7.4",
- "@floating-ui/utils": "^0.2.10"
- }
- },
- "node_modules/@floating-ui/react-dom": {
- "version": "2.1.7",
- "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.7.tgz",
- "integrity": "sha512-0tLRojf/1Go2JgEVm+3Frg9A3IW8bJgKgdO0BN5RkF//ufuz2joZM63Npau2ff3J6lUVYgDSNzNkR+aH3IVfjg==",
- "license": "MIT",
- "dependencies": {
- "@floating-ui/dom": "^1.7.5"
- },
- "peerDependencies": {
- "react": ">=16.8.0",
- "react-dom": ">=16.8.0"
- }
- },
- "node_modules/@floating-ui/utils": {
- "version": "0.2.10",
- "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.10.tgz",
- "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==",
- "license": "MIT"
- },
- "node_modules/@humanfs/core": {
- "version": "0.19.1",
- "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
- "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": ">=18.18.0"
- }
- },
- "node_modules/@humanfs/node": {
- "version": "0.16.7",
- "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz",
- "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "@humanfs/core": "^0.19.1",
- "@humanwhocodes/retry": "^0.4.0"
- },
- "engines": {
- "node": ">=18.18.0"
- }
- },
- "node_modules/@humanwhocodes/module-importer": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
- "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": ">=12.22"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/nzakas"
- }
- },
- "node_modules/@humanwhocodes/retry": {
- "version": "0.4.3",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
- "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": ">=18.18"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/nzakas"
- }
- },
- "node_modules/@img/colour": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz",
- "integrity": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@img/sharp-darwin-arm64": {
- "version": "0.34.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz",
- "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==",
- "cpu": [
- "arm64"
- ],
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-darwin-arm64": "1.2.4"
- }
- },
- "node_modules/@img/sharp-darwin-x64": {
- "version": "0.34.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz",
- "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==",
- "cpu": [
- "x64"
- ],
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-darwin-x64": "1.2.4"
- }
- },
- "node_modules/@img/sharp-libvips-darwin-arm64": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz",
- "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==",
- "cpu": [
- "arm64"
- ],
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "darwin"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/@img/sharp-libvips-darwin-x64": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz",
- "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==",
- "cpu": [
- "x64"
- ],
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "darwin"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/@img/sharp-libvips-linux-arm": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz",
- "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==",
- "cpu": [
- "arm"
- ],
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/@img/sharp-libvips-linux-arm64": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz",
- "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==",
- "cpu": [
- "arm64"
- ],
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/@img/sharp-libvips-linux-ppc64": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz",
- "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==",
- "cpu": [
- "ppc64"
- ],
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/@img/sharp-libvips-linux-riscv64": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz",
- "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==",
- "cpu": [
- "riscv64"
- ],
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/@img/sharp-libvips-linux-s390x": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz",
- "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==",
- "cpu": [
- "s390x"
- ],
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/@img/sharp-libvips-linux-x64": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz",
- "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==",
- "cpu": [
- "x64"
- ],
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz",
- "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==",
- "cpu": [
- "arm64"
- ],
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/@img/sharp-libvips-linuxmusl-x64": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz",
- "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==",
- "cpu": [
- "x64"
- ],
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/@img/sharp-linux-arm": {
- "version": "0.34.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz",
- "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==",
- "cpu": [
- "arm"
- ],
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linux-arm": "1.2.4"
- }
- },
- "node_modules/@img/sharp-linux-arm64": {
- "version": "0.34.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz",
- "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==",
- "cpu": [
- "arm64"
- ],
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linux-arm64": "1.2.4"
- }
- },
- "node_modules/@img/sharp-linux-ppc64": {
- "version": "0.34.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz",
- "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==",
- "cpu": [
- "ppc64"
- ],
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linux-ppc64": "1.2.4"
- }
- },
- "node_modules/@img/sharp-linux-riscv64": {
- "version": "0.34.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz",
- "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==",
- "cpu": [
- "riscv64"
- ],
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linux-riscv64": "1.2.4"
- }
- },
- "node_modules/@img/sharp-linux-s390x": {
- "version": "0.34.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz",
- "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==",
- "cpu": [
- "s390x"
- ],
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linux-s390x": "1.2.4"
- }
- },
- "node_modules/@img/sharp-linux-x64": {
- "version": "0.34.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz",
- "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==",
- "cpu": [
- "x64"
- ],
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linux-x64": "1.2.4"
- }
- },
- "node_modules/@img/sharp-linuxmusl-arm64": {
- "version": "0.34.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz",
- "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==",
- "cpu": [
- "arm64"
- ],
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linuxmusl-arm64": "1.2.4"
- }
- },
- "node_modules/@img/sharp-linuxmusl-x64": {
- "version": "0.34.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz",
- "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==",
- "cpu": [
- "x64"
- ],
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linuxmusl-x64": "1.2.4"
- }
- },
- "node_modules/@img/sharp-wasm32": {
- "version": "0.34.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz",
- "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==",
- "cpu": [
- "wasm32"
- ],
- "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
- "optional": true,
- "dependencies": {
- "@emnapi/runtime": "^1.7.0"
- },
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/@img/sharp-win32-arm64": {
- "version": "0.34.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz",
- "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==",
- "cpu": [
- "arm64"
- ],
- "license": "Apache-2.0 AND LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/@img/sharp-win32-ia32": {
- "version": "0.34.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz",
- "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==",
- "cpu": [
- "ia32"
- ],
- "license": "Apache-2.0 AND LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/@img/sharp-win32-x64": {
- "version": "0.34.5",
- "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz",
- "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==",
- "cpu": [
- "x64"
- ],
- "license": "Apache-2.0 AND LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.13",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
- "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@jridgewell/sourcemap-codec": "^1.5.0",
- "@jridgewell/trace-mapping": "^0.3.24"
- }
- },
- "node_modules/@jridgewell/remapping": {
- "version": "2.3.5",
- "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
- "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@jridgewell/gen-mapping": "^0.3.5",
- "@jridgewell/trace-mapping": "^0.3.24"
- }
- },
- "node_modules/@jridgewell/resolve-uri": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
- "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/sourcemap-codec": {
- "version": "1.5.5",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
- "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.31",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
- "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@jridgewell/resolve-uri": "^3.1.0",
- "@jridgewell/sourcemap-codec": "^1.4.14"
- }
- },
- "node_modules/@mediapipe/tasks-vision": {
- "version": "0.10.17",
- "resolved": "https://registry.npmjs.org/@mediapipe/tasks-vision/-/tasks-vision-0.10.17.tgz",
- "integrity": "sha512-CZWV/q6TTe8ta61cZXjfnnHsfWIdFhms03M9T7Cnd5y2mdpylJM0rF1qRq+wsQVRMLz1OYPVEBU9ph2Bx8cxrg==",
- "license": "Apache-2.0"
- },
- "node_modules/@monogrid/gainmap-js": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/@monogrid/gainmap-js/-/gainmap-js-3.4.0.tgz",
- "integrity": "sha512-2Z0FATFHaoYJ8b+Y4y4Hgfn3FRFwuU5zRrk+9dFWp4uGAdHGqVEdP7HP+gLA3X469KXHmfupJaUbKo1b/aDKIg==",
- "license": "MIT",
- "dependencies": {
- "promise-worker-transferable": "^1.0.4"
- },
- "peerDependencies": {
- "three": ">= 0.159.0"
- }
- },
- "node_modules/@napi-rs/wasm-runtime": {
- "version": "0.2.12",
- "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz",
- "integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@emnapi/core": "^1.4.3",
- "@emnapi/runtime": "^1.4.3",
- "@tybys/wasm-util": "^0.10.0"
- }
- },
- "node_modules/@next/env": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/env/-/env-16.1.6.tgz",
- "integrity": "sha512-N1ySLuZjnAtN3kFnwhAwPvZah8RJxKasD7x1f8shFqhncnWZn4JMfg37diLNuoHsLAlrDfM3g4mawVdtAG8XLQ==",
- "license": "MIT"
- },
- "node_modules/@next/eslint-plugin-next": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-16.1.6.tgz",
- "integrity": "sha512-/Qq3PTagA6+nYVfryAtQ7/9FEr/6YVyvOtl6rZnGsbReGLf0jZU6gkpr1FuChAQpvV46a78p4cmHOVP8mbfSMQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fast-glob": "3.3.1"
- }
- },
- "node_modules/@next/swc-darwin-arm64": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.1.6.tgz",
- "integrity": "sha512-wTzYulosJr/6nFnqGW7FrG3jfUUlEf8UjGA0/pyypJl42ExdVgC6xJgcXQ+V8QFn6niSG2Pb8+MIG1mZr2vczw==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-darwin-x64": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.1.6.tgz",
- "integrity": "sha512-BLFPYPDO+MNJsiDWbeVzqvYd4NyuRrEYVB5k2N3JfWncuHAy2IVwMAOlVQDFjj+krkWzhY2apvmekMkfQR0CUQ==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-arm64-gnu": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.1.6.tgz",
- "integrity": "sha512-OJYkCd5pj/QloBvoEcJ2XiMnlJkRv9idWA/j0ugSuA34gMT6f5b7vOiCQHVRpvStoZUknhl6/UxOXL4OwtdaBw==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-arm64-musl": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.1.6.tgz",
- "integrity": "sha512-S4J2v+8tT3NIO9u2q+S0G5KdvNDjXfAv06OhfOzNDaBn5rw84DGXWndOEB7d5/x852A20sW1M56vhC/tRVbccQ==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-x64-gnu": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.1.6.tgz",
- "integrity": "sha512-2eEBDkFlMMNQnkTyPBhQOAyn2qMxyG2eE7GPH2WIDGEpEILcBPI/jdSv4t6xupSP+ot/jkfrCShLAa7+ZUPcJQ==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-x64-musl": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.1.6.tgz",
- "integrity": "sha512-oicJwRlyOoZXVlxmIMaTq7f8pN9QNbdes0q2FXfRsPhfCi8n8JmOZJm5oo1pwDaFbnnD421rVU409M3evFbIqg==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-win32-arm64-msvc": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.1.6.tgz",
- "integrity": "sha512-gQmm8izDTPgs+DCWH22kcDmuUp7NyiJgEl18bcr8irXA5N2m2O+JQIr6f3ct42GOs9c0h8QF3L5SzIxcYAAXXw==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-win32-x64-msvc": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.1.6.tgz",
- "integrity": "sha512-NRfO39AIrzBnixKbjuo2YiYhB6o9d8v/ymU9m/Xk8cyVk+k7XylniXkHwjs4s70wedVffc6bQNbufk5v0xEm0A==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@nodelib/fs.scandir": {
- "version": "2.1.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
- "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@nodelib/fs.stat": "2.0.5",
- "run-parallel": "^1.1.9"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@nodelib/fs.stat": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
- "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@nodelib/fs.walk": {
- "version": "1.2.8",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
- "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@nodelib/fs.scandir": "2.1.5",
- "fastq": "^1.6.0"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@nolyfill/is-core-module": {
- "version": "1.0.39",
- "resolved": "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz",
- "integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12.4.0"
- }
- },
- "node_modules/@pixi/colord": {
- "version": "2.9.6",
- "resolved": "https://registry.npmjs.org/@pixi/colord/-/colord-2.9.6.tgz",
- "integrity": "sha512-nezytU2pw587fQstUu1AsJZDVEynjskwOL+kibwcdxsMBFqPsFFNA7xl0ii/gXuDi6M0xj3mfRJj8pBSc2jCfA==",
- "license": "MIT"
- },
- "node_modules/@radix-ui/number": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.1.tgz",
- "integrity": "sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==",
- "license": "MIT"
- },
- "node_modules/@radix-ui/primitive": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.3.tgz",
- "integrity": "sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==",
- "license": "MIT"
- },
- "node_modules/@radix-ui/react-accordion": {
- "version": "1.2.12",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-accordion/-/react-accordion-1.2.12.tgz",
- "integrity": "sha512-T4nygeh9YE9dLRPhAHSeOZi7HBXo+0kYIPJXayZfvWOWA0+n3dESrZbjfDPUABkUNym6Hd+f2IR113To8D2GPA==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-collapsible": "1.1.12",
- "@radix-ui/react-collection": "1.1.7",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-controllable-state": "1.2.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-alert-dialog": {
- "version": "1.1.15",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-alert-dialog/-/react-alert-dialog-1.1.15.tgz",
- "integrity": "sha512-oTVLkEw5GpdRe29BqJ0LSDFWI3qu0vR1M0mUkOQWDIUnY/QIkLpgDMWuKxP94c2NAC2LGcgVhG1ImF3jkZ5wXw==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-dialog": "1.1.15",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-slot": "1.2.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-alert-dialog/node_modules/@radix-ui/react-slot": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz",
- "integrity": "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-compose-refs": "1.1.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-arrow": {
- "version": "1.1.7",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.1.7.tgz",
- "integrity": "sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-primitive": "2.1.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-collapsible": {
- "version": "1.1.12",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-collapsible/-/react-collapsible-1.1.12.tgz",
- "integrity": "sha512-Uu+mSh4agx2ib1uIGPP4/CKNULyajb3p92LsVXmH2EHVMTfZWpll88XJ0j4W0z3f8NK1eYl1+Mf/szHPmcHzyA==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-collection": {
- "version": "1.1.7",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.1.7.tgz",
- "integrity": "sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-slot": "1.2.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-collection/node_modules/@radix-ui/react-slot": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz",
- "integrity": "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-compose-refs": "1.1.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-compose-refs": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz",
- "integrity": "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==",
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-context": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.2.tgz",
- "integrity": "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==",
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-dialog": {
- "version": "1.1.15",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.15.tgz",
- "integrity": "sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-dismissable-layer": "1.1.11",
- "@radix-ui/react-focus-guards": "1.1.3",
- "@radix-ui/react-focus-scope": "1.1.7",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-portal": "1.1.9",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-slot": "1.2.3",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "aria-hidden": "^1.2.4",
- "react-remove-scroll": "^2.6.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-slot": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz",
- "integrity": "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-compose-refs": "1.1.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-direction": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.1.tgz",
- "integrity": "sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==",
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-dismissable-layer": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.11.tgz",
- "integrity": "sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-callback-ref": "1.1.1",
- "@radix-ui/react-use-escape-keydown": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-focus-guards": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.3.tgz",
- "integrity": "sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==",
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-focus-scope": {
- "version": "1.1.7",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.7.tgz",
- "integrity": "sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-callback-ref": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-id": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.1.tgz",
- "integrity": "sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-popper": {
- "version": "1.2.8",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.2.8.tgz",
- "integrity": "sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==",
- "license": "MIT",
- "dependencies": {
- "@floating-ui/react-dom": "^2.0.0",
- "@radix-ui/react-arrow": "1.1.7",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-callback-ref": "1.1.1",
- "@radix-ui/react-use-layout-effect": "1.1.1",
- "@radix-ui/react-use-rect": "1.1.1",
- "@radix-ui/react-use-size": "1.1.1",
- "@radix-ui/rect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-portal": {
- "version": "1.1.9",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.9.tgz",
- "integrity": "sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-presence": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.5.tgz",
- "integrity": "sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-primitive": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz",
- "integrity": "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-slot": "1.2.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-primitive/node_modules/@radix-ui/react-slot": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz",
- "integrity": "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-compose-refs": "1.1.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-roving-focus": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.1.11.tgz",
- "integrity": "sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-collection": "1.1.7",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-callback-ref": "1.1.1",
- "@radix-ui/react-use-controllable-state": "1.2.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select": {
- "version": "2.2.6",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-select/-/react-select-2.2.6.tgz",
- "integrity": "sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/number": "1.1.1",
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-collection": "1.1.7",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-dismissable-layer": "1.1.11",
- "@radix-ui/react-focus-guards": "1.1.3",
- "@radix-ui/react-focus-scope": "1.1.7",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-popper": "1.2.8",
- "@radix-ui/react-portal": "1.1.9",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-slot": "1.2.3",
- "@radix-ui/react-use-callback-ref": "1.1.1",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "@radix-ui/react-use-layout-effect": "1.1.1",
- "@radix-ui/react-use-previous": "1.1.1",
- "@radix-ui/react-visually-hidden": "1.2.3",
- "aria-hidden": "^1.2.4",
- "react-remove-scroll": "^2.6.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-slot": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz",
- "integrity": "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-compose-refs": "1.1.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-slider": {
- "version": "1.3.6",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slider/-/react-slider-1.3.6.tgz",
- "integrity": "sha512-JPYb1GuM1bxfjMRlNLE+BcmBC8onfCi60Blk7OBqi2MLTFdS+8401U4uFjnwkOr49BLmXxLC6JHkvAsx5OJvHw==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/number": "1.1.1",
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-collection": "1.1.7",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "@radix-ui/react-use-layout-effect": "1.1.1",
- "@radix-ui/react-use-previous": "1.1.1",
- "@radix-ui/react-use-size": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-slot": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.4.tgz",
- "integrity": "sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-compose-refs": "1.1.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-tabs": {
- "version": "1.1.13",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-tabs/-/react-tabs-1.1.13.tgz",
- "integrity": "sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-roving-focus": "1.1.11",
- "@radix-ui/react-use-controllable-state": "1.2.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-tooltip": {
- "version": "1.2.8",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-tooltip/-/react-tooltip-1.2.8.tgz",
- "integrity": "sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-dismissable-layer": "1.1.11",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-popper": "1.2.8",
- "@radix-ui/react-portal": "1.1.9",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-slot": "1.2.3",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "@radix-ui/react-visually-hidden": "1.2.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-slot": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz",
- "integrity": "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-compose-refs": "1.1.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-callback-ref": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.1.tgz",
- "integrity": "sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==",
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-controllable-state": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.2.2.tgz",
- "integrity": "sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-use-effect-event": "0.0.2",
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-effect-event": {
- "version": "0.0.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-effect-event/-/react-use-effect-event-0.0.2.tgz",
- "integrity": "sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-escape-keydown": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.1.tgz",
- "integrity": "sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-use-callback-ref": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-layout-effect": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz",
- "integrity": "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==",
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-previous": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.1.1.tgz",
- "integrity": "sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==",
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-rect": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.1.1.tgz",
- "integrity": "sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/rect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-size": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.1.1.tgz",
- "integrity": "sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-visually-hidden": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.2.3.tgz",
- "integrity": "sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-primitive": "2.1.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/rect": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.1.1.tgz",
- "integrity": "sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==",
- "license": "MIT"
- },
- "node_modules/@react-three/drei": {
- "version": "10.7.7",
- "resolved": "https://registry.npmjs.org/@react-three/drei/-/drei-10.7.7.tgz",
- "integrity": "sha512-ff+J5iloR0k4tC++QtD/j9u3w5fzfgFAWDtAGQah9pF2B1YgOq/5JxqY0/aVoQG5r3xSZz0cv5tk2YuBob4xEQ==",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.26.0",
- "@mediapipe/tasks-vision": "0.10.17",
- "@monogrid/gainmap-js": "^3.0.6",
- "@use-gesture/react": "^10.3.1",
- "camera-controls": "^3.1.0",
- "cross-env": "^7.0.3",
- "detect-gpu": "^5.0.56",
- "glsl-noise": "^0.0.0",
- "hls.js": "^1.5.17",
- "maath": "^0.10.8",
- "meshline": "^3.3.1",
- "stats-gl": "^2.2.8",
- "stats.js": "^0.17.0",
- "suspend-react": "^0.1.3",
- "three-mesh-bvh": "^0.8.3",
- "three-stdlib": "^2.35.6",
- "troika-three-text": "^0.52.4",
- "tunnel-rat": "^0.1.2",
- "use-sync-external-store": "^1.4.0",
- "utility-types": "^3.11.0",
- "zustand": "^5.0.1"
- },
- "peerDependencies": {
- "@react-three/fiber": "^9.0.0",
- "react": "^19",
- "react-dom": "^19",
- "three": ">=0.159"
- },
- "peerDependenciesMeta": {
- "react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@react-three/fiber": {
- "version": "9.5.0",
- "resolved": "https://registry.npmjs.org/@react-three/fiber/-/fiber-9.5.0.tgz",
- "integrity": "sha512-FiUzfYW4wB1+PpmsE47UM+mCads7j2+giRBltfwH7SNhah95rqJs3ltEs9V3pP8rYdS0QlNne+9Aj8dS/SiaIA==",
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.17.8",
- "@types/webxr": "*",
- "base64-js": "^1.5.1",
- "buffer": "^6.0.3",
- "its-fine": "^2.0.0",
- "react-use-measure": "^2.1.7",
- "scheduler": "^0.27.0",
- "suspend-react": "^0.1.3",
- "use-sync-external-store": "^1.4.0",
- "zustand": "^5.0.3"
- },
- "peerDependencies": {
- "expo": ">=43.0",
- "expo-asset": ">=8.4",
- "expo-file-system": ">=11.0",
- "expo-gl": ">=11.0",
- "react": ">=19 <19.3",
- "react-dom": ">=19 <19.3",
- "react-native": ">=0.78",
- "three": ">=0.156"
- },
- "peerDependenciesMeta": {
- "expo": {
- "optional": true
- },
- "expo-asset": {
- "optional": true
- },
- "expo-file-system": {
- "optional": true
- },
- "expo-gl": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- },
- "react-native": {
- "optional": true
- }
- }
- },
- "node_modules/@react-three/postprocessing": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/@react-three/postprocessing/-/postprocessing-3.0.4.tgz",
- "integrity": "sha512-e4+F5xtudDYvhxx3y0NtWXpZbwvQ0x1zdOXWTbXMK6fFLVDd4qucN90YaaStanZGS4Bd5siQm0lGL/5ogf8iDQ==",
- "license": "MIT",
- "dependencies": {
- "maath": "^0.6.0",
- "n8ao": "^1.9.4",
- "postprocessing": "^6.36.6"
- },
- "peerDependencies": {
- "@react-three/fiber": "^9.0.0",
- "react": "^19.0",
- "three": ">= 0.156.0"
- }
- },
- "node_modules/@react-three/postprocessing/node_modules/maath": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/maath/-/maath-0.6.0.tgz",
- "integrity": "sha512-dSb2xQuP7vDnaYqfoKzlApeRcR2xtN8/f7WV/TMAkBC8552TwTLtOO0JTcSygkYMjNDPoo6V01jTw/aPi4JrMw==",
- "license": "MIT",
- "peerDependencies": {
- "@types/three": ">=0.144.0",
- "three": ">=0.144.0"
- }
- },
- "node_modules/@reduxjs/toolkit": {
- "version": "2.11.2",
- "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.11.2.tgz",
- "integrity": "sha512-Kd6kAHTA6/nUpp8mySPqj3en3dm0tdMIgbttnQ1xFMVpufoj+ADi8pXLBsd4xzTRHQa7t/Jv8W5UnCuW4kuWMQ==",
- "license": "MIT",
- "dependencies": {
- "@standard-schema/spec": "^1.0.0",
- "@standard-schema/utils": "^0.3.0",
- "immer": "^11.0.0",
- "redux": "^5.0.1",
- "redux-thunk": "^3.1.0",
- "reselect": "^5.1.0"
- },
- "peerDependencies": {
- "react": "^16.9.0 || ^17.0.0 || ^18 || ^19",
- "react-redux": "^7.2.1 || ^8.1.3 || ^9.0.0"
- },
- "peerDependenciesMeta": {
- "react": {
- "optional": true
- },
- "react-redux": {
- "optional": true
- }
- }
- },
- "node_modules/@reduxjs/toolkit/node_modules/immer": {
- "version": "11.1.4",
- "resolved": "https://registry.npmjs.org/immer/-/immer-11.1.4.tgz",
- "integrity": "sha512-XREFCPo6ksxVzP4E0ekD5aMdf8WMwmdNaz6vuvxgI40UaEiu6q3p8X52aU6GdyvLY3XXX/8R7JOTXStz/nBbRw==",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/immer"
- }
- },
- "node_modules/@rtsao/scc": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz",
- "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@standard-schema/spec": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
- "integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
- "license": "MIT"
- },
- "node_modules/@standard-schema/utils": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/@standard-schema/utils/-/utils-0.3.0.tgz",
- "integrity": "sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==",
- "license": "MIT"
- },
- "node_modules/@swc/helpers": {
- "version": "0.5.15",
- "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz",
- "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==",
- "license": "Apache-2.0",
- "dependencies": {
- "tslib": "^2.8.0"
- }
- },
- "node_modules/@tailwindcss/node": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.18.tgz",
- "integrity": "sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@jridgewell/remapping": "^2.3.4",
- "enhanced-resolve": "^5.18.3",
- "jiti": "^2.6.1",
- "lightningcss": "1.30.2",
- "magic-string": "^0.30.21",
- "source-map-js": "^1.2.1",
- "tailwindcss": "4.1.18"
- }
- },
- "node_modules/@tailwindcss/oxide": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.18.tgz",
- "integrity": "sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 10"
- },
- "optionalDependencies": {
- "@tailwindcss/oxide-android-arm64": "4.1.18",
- "@tailwindcss/oxide-darwin-arm64": "4.1.18",
- "@tailwindcss/oxide-darwin-x64": "4.1.18",
- "@tailwindcss/oxide-freebsd-x64": "4.1.18",
- "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.18",
- "@tailwindcss/oxide-linux-arm64-gnu": "4.1.18",
- "@tailwindcss/oxide-linux-arm64-musl": "4.1.18",
- "@tailwindcss/oxide-linux-x64-gnu": "4.1.18",
- "@tailwindcss/oxide-linux-x64-musl": "4.1.18",
- "@tailwindcss/oxide-wasm32-wasi": "4.1.18",
- "@tailwindcss/oxide-win32-arm64-msvc": "4.1.18",
- "@tailwindcss/oxide-win32-x64-msvc": "4.1.18"
- }
- },
- "node_modules/@tailwindcss/oxide-android-arm64": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.18.tgz",
- "integrity": "sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-darwin-arm64": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.18.tgz",
- "integrity": "sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-darwin-x64": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.18.tgz",
- "integrity": "sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-freebsd-x64": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.18.tgz",
- "integrity": "sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.18.tgz",
- "integrity": "sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.18.tgz",
- "integrity": "sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.18.tgz",
- "integrity": "sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.18.tgz",
- "integrity": "sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-linux-x64-musl": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.18.tgz",
- "integrity": "sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-wasm32-wasi": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.18.tgz",
- "integrity": "sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==",
- "bundleDependencies": [
- "@napi-rs/wasm-runtime",
- "@emnapi/core",
- "@emnapi/runtime",
- "@tybys/wasm-util",
- "@emnapi/wasi-threads",
- "tslib"
- ],
- "cpu": [
- "wasm32"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@emnapi/core": "^1.7.1",
- "@emnapi/runtime": "^1.7.1",
- "@emnapi/wasi-threads": "^1.1.0",
- "@napi-rs/wasm-runtime": "^1.1.0",
- "@tybys/wasm-util": "^0.10.1",
- "tslib": "^2.4.0"
- },
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.18.tgz",
- "integrity": "sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.18.tgz",
- "integrity": "sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/postcss": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.1.18.tgz",
- "integrity": "sha512-Ce0GFnzAOuPyfV5SxjXGn0CubwGcuDB0zcdaPuCSzAa/2vII24JTkH+I6jcbXLb1ctjZMZZI6OjDaLPJQL1S0g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@alloc/quick-lru": "^5.2.0",
- "@tailwindcss/node": "4.1.18",
- "@tailwindcss/oxide": "4.1.18",
- "postcss": "^8.4.41",
- "tailwindcss": "4.1.18"
- }
- },
- "node_modules/@tweenjs/tween.js": {
- "version": "23.1.3",
- "resolved": "https://registry.npmjs.org/@tweenjs/tween.js/-/tween.js-23.1.3.tgz",
- "integrity": "sha512-vJmvvwFxYuGnF2axRtPYocag6Clbb5YS7kLL+SO/TeVFzHqDIWrNKYtcsPMibjDx9O+bu+psAy9NKfWklassUA==",
- "license": "MIT"
- },
- "node_modules/@tybys/wasm-util": {
- "version": "0.10.1",
- "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
- "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "tslib": "^2.4.0"
- }
- },
- "node_modules/@types/d3-array": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.2.tgz",
- "integrity": "sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==",
- "license": "MIT"
- },
- "node_modules/@types/d3-color": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz",
- "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==",
- "license": "MIT"
- },
- "node_modules/@types/d3-ease": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz",
- "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==",
- "license": "MIT"
- },
- "node_modules/@types/d3-force": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@types/d3-force/-/d3-force-3.0.10.tgz",
- "integrity": "sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/d3-interpolate": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz",
- "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==",
- "license": "MIT",
- "dependencies": {
- "@types/d3-color": "*"
- }
- },
- "node_modules/@types/d3-path": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.1.tgz",
- "integrity": "sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==",
- "license": "MIT"
- },
- "node_modules/@types/d3-scale": {
- "version": "4.0.9",
- "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.9.tgz",
- "integrity": "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==",
- "license": "MIT",
- "dependencies": {
- "@types/d3-time": "*"
- }
- },
- "node_modules/@types/d3-shape": {
- "version": "3.1.8",
- "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.8.tgz",
- "integrity": "sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==",
- "license": "MIT",
- "dependencies": {
- "@types/d3-path": "*"
- }
- },
- "node_modules/@types/d3-time": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.4.tgz",
- "integrity": "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==",
- "license": "MIT"
- },
- "node_modules/@types/d3-timer": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz",
- "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==",
- "license": "MIT"
- },
- "node_modules/@types/draco3d": {
- "version": "1.4.10",
- "resolved": "https://registry.npmjs.org/@types/draco3d/-/draco3d-1.4.10.tgz",
- "integrity": "sha512-AX22jp8Y7wwaBgAixaSvkoG4M/+PlAcm3Qs4OW8yT9DM4xUpWKeFhLueTAyZF39pviAdcDdeJoACapiAceqNcw==",
- "license": "MIT"
- },
- "node_modules/@types/earcut": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/@types/earcut/-/earcut-3.0.0.tgz",
- "integrity": "sha512-k/9fOUGO39yd2sCjrbAJvGDEQvRwRnQIZlBz43roGwUZo5SHAmyVvSFyaVVZkicRVCaDXPKlbxrUcBuJoSWunQ==",
- "license": "MIT"
- },
- "node_modules/@types/estree": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
- "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/json-schema": {
- "version": "7.0.15",
- "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
- "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/json5": {
- "version": "0.0.29",
- "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
- "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/node": {
- "version": "20.19.33",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.33.tgz",
- "integrity": "sha512-Rs1bVAIdBs5gbTIKza/tgpMuG1k3U/UMJLWecIMxNdJFDMzcM5LOiLVRYh3PilWEYDIeUDv7bpiHPLPsbydGcw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "undici-types": "~6.21.0"
- }
- },
- "node_modules/@types/offscreencanvas": {
- "version": "2019.7.3",
- "resolved": "https://registry.npmjs.org/@types/offscreencanvas/-/offscreencanvas-2019.7.3.tgz",
- "integrity": "sha512-ieXiYmgSRXUDeOntE1InxjWyvEelZGP63M+cGuquuRLuIKKT1osnkXjxev9B7d1nXSug5vpunx+gNlbVxMlC9A==",
- "license": "MIT"
- },
- "node_modules/@types/react": {
- "version": "19.2.14",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz",
- "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
- "license": "MIT",
- "dependencies": {
- "csstype": "^3.2.2"
- }
- },
- "node_modules/@types/react-dom": {
- "version": "19.2.3",
- "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
- "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
- "devOptional": true,
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "^19.2.0"
- }
- },
- "node_modules/@types/react-reconciler": {
- "version": "0.28.9",
- "resolved": "https://registry.npmjs.org/@types/react-reconciler/-/react-reconciler-0.28.9.tgz",
- "integrity": "sha512-HHM3nxyUZ3zAylX8ZEyrDNd2XZOnQ0D5XfunJF5FLQnZbHHYq4UWvW1QfelQNXv1ICNkwYhfxjwfnqivYB6bFg==",
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "*"
- }
- },
- "node_modules/@types/stats.js": {
- "version": "0.17.4",
- "resolved": "https://registry.npmjs.org/@types/stats.js/-/stats.js-0.17.4.tgz",
- "integrity": "sha512-jIBvWWShCvlBqBNIZt0KAshWpvSjhkwkEu4ZUcASoAvhmrgAUI2t1dXrjSL4xXVLB4FznPrIsX3nKXFl/Dt4vA==",
- "license": "MIT"
- },
- "node_modules/@types/three": {
- "version": "0.182.0",
- "resolved": "https://registry.npmjs.org/@types/three/-/three-0.182.0.tgz",
- "integrity": "sha512-WByN9V3Sbwbe2OkWuSGyoqQO8Du6yhYaXtXLoA5FkKTUJorZ+yOHBZ35zUUPQXlAKABZmbYp5oAqpA4RBjtJ/Q==",
- "license": "MIT",
- "dependencies": {
- "@dimforge/rapier3d-compat": "~0.12.0",
- "@tweenjs/tween.js": "~23.1.3",
- "@types/stats.js": "*",
- "@types/webxr": ">=0.5.17",
- "@webgpu/types": "*",
- "fflate": "~0.8.2",
- "meshoptimizer": "~0.22.0"
- }
- },
- "node_modules/@types/use-sync-external-store": {
- "version": "0.0.6",
- "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.6.tgz",
- "integrity": "sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==",
- "license": "MIT"
- },
- "node_modules/@types/webxr": {
- "version": "0.5.24",
- "resolved": "https://registry.npmjs.org/@types/webxr/-/webxr-0.5.24.tgz",
- "integrity": "sha512-h8fgEd/DpoS9CBrjEQXR+dIDraopAEfu4wYVNY2tEPwk60stPWhvZMf4Foo5FakuQ7HFZoa8WceaWFervK2Ovg==",
- "license": "MIT"
- },
- "node_modules/@typescript-eslint/eslint-plugin": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.55.0.tgz",
- "integrity": "sha512-1y/MVSz0NglV1ijHC8OT49mPJ4qhPYjiK08YUQVbIOyu+5k862LKUHFkpKHWu//zmr7hDR2rhwUm6gnCGNmGBQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@eslint-community/regexpp": "^4.12.2",
- "@typescript-eslint/scope-manager": "8.55.0",
- "@typescript-eslint/type-utils": "8.55.0",
- "@typescript-eslint/utils": "8.55.0",
- "@typescript-eslint/visitor-keys": "8.55.0",
- "ignore": "^7.0.5",
- "natural-compare": "^1.4.0",
- "ts-api-utils": "^2.4.0"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "@typescript-eslint/parser": "^8.55.0",
- "eslint": "^8.57.0 || ^9.0.0",
- "typescript": ">=4.8.4 <6.0.0"
- }
- },
- "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
- "version": "7.0.5",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
- "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/@typescript-eslint/parser": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.55.0.tgz",
- "integrity": "sha512-4z2nCSBfVIMnbuu8uinj+f0o4qOeggYJLbjpPHka3KH1om7e+H9yLKTYgksTaHcGco+NClhhY2vyO3HsMH1RGw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/scope-manager": "8.55.0",
- "@typescript-eslint/types": "8.55.0",
- "@typescript-eslint/typescript-estree": "8.55.0",
- "@typescript-eslint/visitor-keys": "8.55.0",
- "debug": "^4.4.3"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^8.57.0 || ^9.0.0",
- "typescript": ">=4.8.4 <6.0.0"
- }
- },
- "node_modules/@typescript-eslint/project-service": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.55.0.tgz",
- "integrity": "sha512-zRcVVPFUYWa3kNnjaZGXSu3xkKV1zXy8M4nO/pElzQhFweb7PPtluDLQtKArEOGmjXoRjnUZ29NjOiF0eCDkcQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/tsconfig-utils": "^8.55.0",
- "@typescript-eslint/types": "^8.55.0",
- "debug": "^4.4.3"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "typescript": ">=4.8.4 <6.0.0"
- }
- },
- "node_modules/@typescript-eslint/scope-manager": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.55.0.tgz",
- "integrity": "sha512-fVu5Omrd3jeqeQLiB9f1YsuK/iHFOwb04bCtY4BSCLgjNbOD33ZdV6KyEqplHr+IlpgT0QTZ/iJ+wT7hvTx49Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/types": "8.55.0",
- "@typescript-eslint/visitor-keys": "8.55.0"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "node_modules/@typescript-eslint/tsconfig-utils": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.55.0.tgz",
- "integrity": "sha512-1R9cXqY7RQd7WuqSN47PK9EDpgFUK3VqdmbYrvWJZYDd0cavROGn+74ktWBlmJ13NXUQKlZ/iAEQHI/V0kKe0Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "typescript": ">=4.8.4 <6.0.0"
- }
- },
- "node_modules/@typescript-eslint/type-utils": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.55.0.tgz",
- "integrity": "sha512-x1iH2unH4qAt6I37I2CGlsNs+B9WGxurP2uyZLRz6UJoZWDBx9cJL1xVN/FiOmHEONEg6RIufdvyT0TEYIgC5g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/types": "8.55.0",
- "@typescript-eslint/typescript-estree": "8.55.0",
- "@typescript-eslint/utils": "8.55.0",
- "debug": "^4.4.3",
- "ts-api-utils": "^2.4.0"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^8.57.0 || ^9.0.0",
- "typescript": ">=4.8.4 <6.0.0"
- }
- },
- "node_modules/@typescript-eslint/types": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.55.0.tgz",
- "integrity": "sha512-ujT0Je8GI5BJWi+/mMoR0wxwVEQaxM+pi30xuMiJETlX80OPovb2p9E8ss87gnSVtYXtJoU9U1Cowcr6w2FE0w==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "node_modules/@typescript-eslint/typescript-estree": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.55.0.tgz",
- "integrity": "sha512-EwrH67bSWdx/3aRQhCoxDaHM+CrZjotc2UCCpEDVqfCE+7OjKAGWNY2HsCSTEVvWH2clYQK8pdeLp42EVs+xQw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/project-service": "8.55.0",
- "@typescript-eslint/tsconfig-utils": "8.55.0",
- "@typescript-eslint/types": "8.55.0",
- "@typescript-eslint/visitor-keys": "8.55.0",
- "debug": "^4.4.3",
- "minimatch": "^9.0.5",
- "semver": "^7.7.3",
- "tinyglobby": "^0.2.15",
- "ts-api-utils": "^2.4.0"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "typescript": ">=4.8.4 <6.0.0"
- }
- },
- "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
- "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0"
- }
- },
- "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
- "version": "9.0.5",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
- "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=16 || 14 >=14.17"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
- "version": "7.7.4",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
- "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@typescript-eslint/utils": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.55.0.tgz",
- "integrity": "sha512-BqZEsnPGdYpgyEIkDC1BadNY8oMwckftxBT+C8W0g1iKPdeqKZBtTfnvcq0nf60u7MkjFO8RBvpRGZBPw4L2ow==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@eslint-community/eslint-utils": "^4.9.1",
- "@typescript-eslint/scope-manager": "8.55.0",
- "@typescript-eslint/types": "8.55.0",
- "@typescript-eslint/typescript-estree": "8.55.0"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^8.57.0 || ^9.0.0",
- "typescript": ">=4.8.4 <6.0.0"
- }
- },
- "node_modules/@typescript-eslint/visitor-keys": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.55.0.tgz",
- "integrity": "sha512-AxNRwEie8Nn4eFS1FzDMJWIISMGoXMb037sgCBJ3UR6o0fQTzr2tqN9WT+DkWJPhIdQCfV7T6D387566VtnCJA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/types": "8.55.0",
- "eslint-visitor-keys": "^4.2.1"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "node_modules/@unrs/resolver-binding-android-arm-eabi": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz",
- "integrity": "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ]
- },
- "node_modules/@unrs/resolver-binding-android-arm64": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz",
- "integrity": "sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ]
- },
- "node_modules/@unrs/resolver-binding-darwin-arm64": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz",
- "integrity": "sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ]
- },
- "node_modules/@unrs/resolver-binding-darwin-x64": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz",
- "integrity": "sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ]
- },
- "node_modules/@unrs/resolver-binding-freebsd-x64": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz",
- "integrity": "sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ]
- },
- "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz",
- "integrity": "sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz",
- "integrity": "sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@unrs/resolver-binding-linux-arm64-gnu": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz",
- "integrity": "sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@unrs/resolver-binding-linux-arm64-musl": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz",
- "integrity": "sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz",
- "integrity": "sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==",
- "cpu": [
- "ppc64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz",
- "integrity": "sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==",
- "cpu": [
- "riscv64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@unrs/resolver-binding-linux-riscv64-musl": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz",
- "integrity": "sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==",
- "cpu": [
- "riscv64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@unrs/resolver-binding-linux-s390x-gnu": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz",
- "integrity": "sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==",
- "cpu": [
- "s390x"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@unrs/resolver-binding-linux-x64-gnu": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz",
- "integrity": "sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@unrs/resolver-binding-linux-x64-musl": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz",
- "integrity": "sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@unrs/resolver-binding-wasm32-wasi": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz",
- "integrity": "sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==",
- "cpu": [
- "wasm32"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@napi-rs/wasm-runtime": "^0.2.11"
- },
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/@unrs/resolver-binding-win32-arm64-msvc": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz",
- "integrity": "sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ]
- },
- "node_modules/@unrs/resolver-binding-win32-ia32-msvc": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz",
- "integrity": "sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==",
- "cpu": [
- "ia32"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ]
- },
- "node_modules/@unrs/resolver-binding-win32-x64-msvc": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz",
- "integrity": "sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ]
- },
- "node_modules/@use-gesture/core": {
- "version": "10.3.1",
- "resolved": "https://registry.npmjs.org/@use-gesture/core/-/core-10.3.1.tgz",
- "integrity": "sha512-WcINiDt8WjqBdUXye25anHiNxPc0VOrlT8F6LLkU6cycrOGUDyY/yyFmsg3k8i5OLvv25llc0QC45GhR/C8llw==",
- "license": "MIT"
- },
- "node_modules/@use-gesture/react": {
- "version": "10.3.1",
- "resolved": "https://registry.npmjs.org/@use-gesture/react/-/react-10.3.1.tgz",
- "integrity": "sha512-Yy19y6O2GJq8f7CHf7L0nxL8bf4PZCPaVOCgJrusOeFHY1LvHgYXnmnXg6N5iwAnbgbZCDjo60SiM6IPJi9C5g==",
- "license": "MIT",
- "dependencies": {
- "@use-gesture/core": "10.3.1"
- },
- "peerDependencies": {
- "react": ">= 16.8.0"
- }
- },
- "node_modules/@webgpu/types": {
- "version": "0.1.69",
- "resolved": "https://registry.npmjs.org/@webgpu/types/-/types-0.1.69.tgz",
- "integrity": "sha512-RPmm6kgRbI8e98zSD3RVACvnuktIja5+yLgDAkTmxLr90BEwdTXRQWNLF3ETTTyH/8mKhznZuN5AveXYFEsMGQ==",
- "license": "BSD-3-Clause"
- },
- "node_modules/@xmldom/xmldom": {
- "version": "0.8.11",
- "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.11.tgz",
- "integrity": "sha512-cQzWCtO6C8TQiYl1ruKNn2U6Ao4o4WBBcbL61yJl84x+j5sOWWFU9X7DpND8XZG3daDppSsigMdfAIl2upQBRw==",
- "license": "MIT",
- "engines": {
- "node": ">=10.0.0"
- }
- },
- "node_modules/acorn": {
- "version": "8.15.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
- "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
- "dev": true,
- "license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/acorn-jsx": {
- "version": "5.3.2",
- "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
- "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
- "dev": true,
- "license": "MIT",
- "peerDependencies": {
- "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
- }
- },
- "node_modules/ajv": {
- "version": "6.12.6",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
- "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/argparse": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
- "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
- "dev": true,
- "license": "Python-2.0"
- },
- "node_modules/aria-hidden": {
- "version": "1.2.6",
- "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.6.tgz",
- "integrity": "sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/aria-query": {
- "version": "5.3.2",
- "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz",
- "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/array-buffer-byte-length": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz",
- "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.3",
- "is-array-buffer": "^3.0.5"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/array-includes": {
- "version": "3.1.9",
- "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz",
- "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "call-bound": "^1.0.4",
- "define-properties": "^1.2.1",
- "es-abstract": "^1.24.0",
- "es-object-atoms": "^1.1.1",
- "get-intrinsic": "^1.3.0",
- "is-string": "^1.1.1",
- "math-intrinsics": "^1.1.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/array.prototype.findlast": {
- "version": "1.2.5",
- "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz",
- "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.7",
- "define-properties": "^1.2.1",
- "es-abstract": "^1.23.2",
- "es-errors": "^1.3.0",
- "es-object-atoms": "^1.0.0",
- "es-shim-unscopables": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/array.prototype.findlastindex": {
- "version": "1.2.6",
- "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz",
- "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "call-bound": "^1.0.4",
- "define-properties": "^1.2.1",
- "es-abstract": "^1.23.9",
- "es-errors": "^1.3.0",
- "es-object-atoms": "^1.1.1",
- "es-shim-unscopables": "^1.1.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/array.prototype.flat": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz",
- "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "define-properties": "^1.2.1",
- "es-abstract": "^1.23.5",
- "es-shim-unscopables": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/array.prototype.flatmap": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz",
- "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "define-properties": "^1.2.1",
- "es-abstract": "^1.23.5",
- "es-shim-unscopables": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/array.prototype.tosorted": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz",
- "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.7",
- "define-properties": "^1.2.1",
- "es-abstract": "^1.23.3",
- "es-errors": "^1.3.0",
- "es-shim-unscopables": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/arraybuffer.prototype.slice": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz",
- "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "array-buffer-byte-length": "^1.0.1",
- "call-bind": "^1.0.8",
- "define-properties": "^1.2.1",
- "es-abstract": "^1.23.5",
- "es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.6",
- "is-array-buffer": "^3.0.4"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/ast-types-flow": {
- "version": "0.0.8",
- "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz",
- "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/async-function": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz",
- "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/available-typed-arrays": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
- "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "possible-typed-array-names": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/axe-core": {
- "version": "4.11.1",
- "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.11.1.tgz",
- "integrity": "sha512-BASOg+YwO2C+346x3LZOeoovTIoTrRqEsqMa6fmfAV0P+U9mFr9NsyOEpiYvFjbc64NMrSswhV50WdXzdb/Z5A==",
- "dev": true,
- "license": "MPL-2.0",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/axobject-query": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz",
- "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/balanced-match": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/base64-js": {
- "version": "1.5.1",
- "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
- "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
- "node_modules/baseline-browser-mapping": {
- "version": "2.9.19",
- "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.19.tgz",
- "integrity": "sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==",
- "license": "Apache-2.0",
- "bin": {
- "baseline-browser-mapping": "dist/cli.js"
- }
- },
- "node_modules/bidi-js": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz",
- "integrity": "sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==",
- "license": "MIT",
- "dependencies": {
- "require-from-string": "^2.0.2"
- }
- },
- "node_modules/brace-expansion": {
- "version": "1.1.12",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
- "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "node_modules/braces": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
- "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fill-range": "^7.1.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/browserslist": {
- "version": "4.28.1",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
- "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "baseline-browser-mapping": "^2.9.0",
- "caniuse-lite": "^1.0.30001759",
- "electron-to-chromium": "^1.5.263",
- "node-releases": "^2.0.27",
- "update-browserslist-db": "^1.2.0"
- },
- "bin": {
- "browserslist": "cli.js"
- },
- "engines": {
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
- }
- },
- "node_modules/buffer": {
- "version": "6.0.3",
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
- "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "base64-js": "^1.3.1",
- "ieee754": "^1.2.1"
- }
- },
- "node_modules/call-bind": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
- "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind-apply-helpers": "^1.0.0",
- "es-define-property": "^1.0.0",
- "get-intrinsic": "^1.2.4",
- "set-function-length": "^1.2.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/call-bind-apply-helpers": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
- "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "function-bind": "^1.1.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/call-bound": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
- "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind-apply-helpers": "^1.0.2",
- "get-intrinsic": "^1.3.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/callsites": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/camera-controls": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/camera-controls/-/camera-controls-3.1.2.tgz",
- "integrity": "sha512-xkxfpG2ECZ6Ww5/9+kf4mfg1VEYAoe9aDSY+IwF0UEs7qEzwy0aVRfs2grImIECs/PoBtWFrh7RXsQkwG922JA==",
- "license": "MIT",
- "engines": {
- "node": ">=22.0.0",
- "npm": ">=10.5.1"
- },
- "peerDependencies": {
- "three": ">=0.126.1"
- }
- },
- "node_modules/caniuse-lite": {
- "version": "1.0.30001769",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001769.tgz",
- "integrity": "sha512-BCfFL1sHijQlBGWBMuJyhZUhzo7wer5sVj9hqekB/7xn0Ypy+pER/edCYQm4exbXj4WiySGp40P8UuTh6w1srg==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "CC-BY-4.0"
- },
- "node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/class-variance-authority": {
- "version": "0.7.1",
- "resolved": "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.1.tgz",
- "integrity": "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==",
- "license": "Apache-2.0",
- "dependencies": {
- "clsx": "^2.1.1"
- },
- "funding": {
- "url": "https://polar.sh/cva"
- }
- },
- "node_modules/client-only": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
- "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==",
- "license": "MIT"
- },
- "node_modules/clsx": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
- "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/concat-map": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/convert-source-map": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/cross-env": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz",
- "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==",
- "license": "MIT",
- "dependencies": {
- "cross-spawn": "^7.0.1"
- },
- "bin": {
- "cross-env": "src/bin/cross-env.js",
- "cross-env-shell": "src/bin/cross-env-shell.js"
- },
- "engines": {
- "node": ">=10.14",
- "npm": ">=6",
- "yarn": ">=1"
- }
- },
- "node_modules/cross-spawn": {
- "version": "7.0.6",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
- "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
- "license": "MIT",
- "dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/csstype": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
- "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
- "license": "MIT"
- },
- "node_modules/d3-array": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz",
- "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==",
- "license": "ISC",
- "dependencies": {
- "internmap": "1 - 2"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-color": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
- "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
- "license": "ISC",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-dispatch": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz",
- "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==",
- "license": "ISC",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-ease": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz",
- "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-force": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz",
- "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==",
- "license": "ISC",
- "dependencies": {
- "d3-dispatch": "1 - 3",
- "d3-quadtree": "1 - 3",
- "d3-timer": "1 - 3"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-format": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.2.tgz",
- "integrity": "sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==",
- "license": "ISC",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-interpolate": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
- "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
- "license": "ISC",
- "dependencies": {
- "d3-color": "1 - 3"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-path": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz",
- "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==",
- "license": "ISC",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-quadtree": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz",
- "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==",
- "license": "ISC",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-scale": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz",
- "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==",
- "license": "ISC",
- "dependencies": {
- "d3-array": "2.10.0 - 3",
- "d3-format": "1 - 3",
- "d3-interpolate": "1.2.0 - 3",
- "d3-time": "2.1.1 - 3",
- "d3-time-format": "2 - 4"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-shape": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz",
- "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==",
- "license": "ISC",
- "dependencies": {
- "d3-path": "^3.1.0"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-time": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz",
- "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==",
- "license": "ISC",
- "dependencies": {
- "d3-array": "2 - 3"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-time-format": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz",
- "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==",
- "license": "ISC",
- "dependencies": {
- "d3-time": "1 - 3"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-timer": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
- "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
- "license": "ISC",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/damerau-levenshtein": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
- "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==",
- "dev": true,
- "license": "BSD-2-Clause"
- },
- "node_modules/data-view-buffer": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz",
- "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.3",
- "es-errors": "^1.3.0",
- "is-data-view": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/data-view-byte-length": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz",
- "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.3",
- "es-errors": "^1.3.0",
- "is-data-view": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/inspect-js"
- }
- },
- "node_modules/data-view-byte-offset": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz",
- "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.2",
- "es-errors": "^1.3.0",
- "is-data-view": "^1.0.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/debug": {
- "version": "4.4.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
- "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ms": "^2.1.3"
- },
- "engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
- }
- },
- "node_modules/decimal.js-light": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz",
- "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==",
- "license": "MIT"
- },
- "node_modules/deep-is": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
- "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/define-data-property": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
- "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "es-define-property": "^1.0.0",
- "es-errors": "^1.3.0",
- "gopd": "^1.0.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/define-properties": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
- "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "define-data-property": "^1.0.1",
- "has-property-descriptors": "^1.0.0",
- "object-keys": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/dequal": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
- "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/detect-gpu": {
- "version": "5.0.70",
- "resolved": "https://registry.npmjs.org/detect-gpu/-/detect-gpu-5.0.70.tgz",
- "integrity": "sha512-bqerEP1Ese6nt3rFkwPnGbsUF9a4q+gMmpTVVOEzoCyeCc+y7/RvJnQZJx1JwhgQI5Ntg0Kgat8Uu7XpBqnz1w==",
- "license": "MIT",
- "dependencies": {
- "webgl-constants": "^1.1.1"
- }
- },
- "node_modules/detect-libc": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
- "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
- "devOptional": true,
- "license": "Apache-2.0",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/detect-node-es": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz",
- "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==",
- "license": "MIT"
- },
- "node_modules/doctrine": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
- "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "esutils": "^2.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/draco3d": {
- "version": "1.5.7",
- "resolved": "https://registry.npmjs.org/draco3d/-/draco3d-1.5.7.tgz",
- "integrity": "sha512-m6WCKt/erDXcw+70IJXnG7M3awwQPAsZvJGX5zY7beBqpELw6RDGkYVU0W43AFxye4pDZ5i2Lbyc/NNGqwjUVQ==",
- "license": "Apache-2.0"
- },
- "node_modules/dunder-proto": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
- "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind-apply-helpers": "^1.0.1",
- "es-errors": "^1.3.0",
- "gopd": "^1.2.0"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/earcut": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/earcut/-/earcut-3.0.2.tgz",
- "integrity": "sha512-X7hshQbLyMJ/3RPhyObLARM2sNxxmRALLKx1+NVFFnQ9gKzmCrxm9+uLIAdBcvc8FNLpctqlQ2V6AE92Ol9UDQ==",
- "license": "ISC"
- },
- "node_modules/electron-to-chromium": {
- "version": "1.5.286",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.286.tgz",
- "integrity": "sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/emoji-regex": {
- "version": "9.2.2",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
- "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/enhanced-resolve": {
- "version": "5.19.0",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.19.0.tgz",
- "integrity": "sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.2.4",
- "tapable": "^2.3.0"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/es-abstract": {
- "version": "1.24.1",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.1.tgz",
- "integrity": "sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "array-buffer-byte-length": "^1.0.2",
- "arraybuffer.prototype.slice": "^1.0.4",
- "available-typed-arrays": "^1.0.7",
- "call-bind": "^1.0.8",
- "call-bound": "^1.0.4",
- "data-view-buffer": "^1.0.2",
- "data-view-byte-length": "^1.0.2",
- "data-view-byte-offset": "^1.0.1",
- "es-define-property": "^1.0.1",
- "es-errors": "^1.3.0",
- "es-object-atoms": "^1.1.1",
- "es-set-tostringtag": "^2.1.0",
- "es-to-primitive": "^1.3.0",
- "function.prototype.name": "^1.1.8",
- "get-intrinsic": "^1.3.0",
- "get-proto": "^1.0.1",
- "get-symbol-description": "^1.1.0",
- "globalthis": "^1.0.4",
- "gopd": "^1.2.0",
- "has-property-descriptors": "^1.0.2",
- "has-proto": "^1.2.0",
- "has-symbols": "^1.1.0",
- "hasown": "^2.0.2",
- "internal-slot": "^1.1.0",
- "is-array-buffer": "^3.0.5",
- "is-callable": "^1.2.7",
- "is-data-view": "^1.0.2",
- "is-negative-zero": "^2.0.3",
- "is-regex": "^1.2.1",
- "is-set": "^2.0.3",
- "is-shared-array-buffer": "^1.0.4",
- "is-string": "^1.1.1",
- "is-typed-array": "^1.1.15",
- "is-weakref": "^1.1.1",
- "math-intrinsics": "^1.1.0",
- "object-inspect": "^1.13.4",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.7",
- "own-keys": "^1.0.1",
- "regexp.prototype.flags": "^1.5.4",
- "safe-array-concat": "^1.1.3",
- "safe-push-apply": "^1.0.0",
- "safe-regex-test": "^1.1.0",
- "set-proto": "^1.0.0",
- "stop-iteration-iterator": "^1.1.0",
- "string.prototype.trim": "^1.2.10",
- "string.prototype.trimend": "^1.0.9",
- "string.prototype.trimstart": "^1.0.8",
- "typed-array-buffer": "^1.0.3",
- "typed-array-byte-length": "^1.0.3",
- "typed-array-byte-offset": "^1.0.4",
- "typed-array-length": "^1.0.7",
- "unbox-primitive": "^1.1.0",
- "which-typed-array": "^1.1.19"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/es-define-property": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
- "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/es-errors": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
- "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/es-iterator-helpers": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.2.tgz",
- "integrity": "sha512-BrUQ0cPTB/IwXj23HtwHjS9n7O4h9FX94b4xc5zlTHxeLgTAdzYUDyy6KdExAl9lbN5rtfe44xpjpmj9grxs5w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "call-bound": "^1.0.4",
- "define-properties": "^1.2.1",
- "es-abstract": "^1.24.1",
- "es-errors": "^1.3.0",
- "es-set-tostringtag": "^2.1.0",
- "function-bind": "^1.1.2",
- "get-intrinsic": "^1.3.0",
- "globalthis": "^1.0.4",
- "gopd": "^1.2.0",
- "has-property-descriptors": "^1.0.2",
- "has-proto": "^1.2.0",
- "has-symbols": "^1.1.0",
- "internal-slot": "^1.1.0",
- "iterator.prototype": "^1.1.5",
- "safe-array-concat": "^1.1.3"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/es-object-atoms": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
- "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/es-set-tostringtag": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
- "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.6",
- "has-tostringtag": "^1.0.2",
- "hasown": "^2.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/es-shim-unscopables": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz",
- "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "hasown": "^2.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/es-to-primitive": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz",
- "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-callable": "^1.2.7",
- "is-date-object": "^1.0.5",
- "is-symbol": "^1.0.4"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/es-toolkit": {
- "version": "1.44.0",
- "resolved": "https://registry.npmjs.org/es-toolkit/-/es-toolkit-1.44.0.tgz",
- "integrity": "sha512-6penXeZalaV88MM3cGkFZZfOoLGWshWWfdy0tWw/RlVVyhvMaWSBTOvXNeiW3e5FwdS5ePW0LGEu17zT139ktg==",
- "license": "MIT",
- "workspaces": [
- "docs",
- "benchmarks"
- ]
- },
- "node_modules/escalade": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
- "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/escape-string-regexp": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
- "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/eslint": {
- "version": "9.39.2",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.2.tgz",
- "integrity": "sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@eslint-community/eslint-utils": "^4.8.0",
- "@eslint-community/regexpp": "^4.12.1",
- "@eslint/config-array": "^0.21.1",
- "@eslint/config-helpers": "^0.4.2",
- "@eslint/core": "^0.17.0",
- "@eslint/eslintrc": "^3.3.1",
- "@eslint/js": "9.39.2",
- "@eslint/plugin-kit": "^0.4.1",
- "@humanfs/node": "^0.16.6",
- "@humanwhocodes/module-importer": "^1.0.1",
- "@humanwhocodes/retry": "^0.4.2",
- "@types/estree": "^1.0.6",
- "ajv": "^6.12.4",
- "chalk": "^4.0.0",
- "cross-spawn": "^7.0.6",
- "debug": "^4.3.2",
- "escape-string-regexp": "^4.0.0",
- "eslint-scope": "^8.4.0",
- "eslint-visitor-keys": "^4.2.1",
- "espree": "^10.4.0",
- "esquery": "^1.5.0",
- "esutils": "^2.0.2",
- "fast-deep-equal": "^3.1.3",
- "file-entry-cache": "^8.0.0",
- "find-up": "^5.0.0",
- "glob-parent": "^6.0.2",
- "ignore": "^5.2.0",
- "imurmurhash": "^0.1.4",
- "is-glob": "^4.0.0",
- "json-stable-stringify-without-jsonify": "^1.0.1",
- "lodash.merge": "^4.6.2",
- "minimatch": "^3.1.2",
- "natural-compare": "^1.4.0",
- "optionator": "^0.9.3"
- },
- "bin": {
- "eslint": "bin/eslint.js"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "url": "https://eslint.org/donate"
- },
- "peerDependencies": {
- "jiti": "*"
- },
- "peerDependenciesMeta": {
- "jiti": {
- "optional": true
- }
- }
- },
- "node_modules/eslint-config-next": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-16.1.6.tgz",
- "integrity": "sha512-vKq40io2B0XtkkNDYyleATwblNt8xuh3FWp8SpSz3pt7P01OkBFlKsJZ2mWt5WsCySlDQLckb1zMY9yE9Qy0LA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@next/eslint-plugin-next": "16.1.6",
- "eslint-import-resolver-node": "^0.3.6",
- "eslint-import-resolver-typescript": "^3.5.2",
- "eslint-plugin-import": "^2.32.0",
- "eslint-plugin-jsx-a11y": "^6.10.0",
- "eslint-plugin-react": "^7.37.0",
- "eslint-plugin-react-hooks": "^7.0.0",
- "globals": "16.4.0",
- "typescript-eslint": "^8.46.0"
- },
- "peerDependencies": {
- "eslint": ">=9.0.0",
- "typescript": ">=3.3.1"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/eslint-config-next/node_modules/globals": {
- "version": "16.4.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-16.4.0.tgz",
- "integrity": "sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/eslint-import-resolver-node": {
- "version": "0.3.9",
- "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz",
- "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "debug": "^3.2.7",
- "is-core-module": "^2.13.0",
- "resolve": "^1.22.4"
- }
- },
- "node_modules/eslint-import-resolver-node/node_modules/debug": {
- "version": "3.2.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
- "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ms": "^2.1.1"
- }
- },
- "node_modules/eslint-import-resolver-typescript": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.1.tgz",
- "integrity": "sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "@nolyfill/is-core-module": "1.0.39",
- "debug": "^4.4.0",
- "get-tsconfig": "^4.10.0",
- "is-bun-module": "^2.0.0",
- "stable-hash": "^0.0.5",
- "tinyglobby": "^0.2.13",
- "unrs-resolver": "^1.6.2"
- },
- "engines": {
- "node": "^14.18.0 || >=16.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint-import-resolver-typescript"
- },
- "peerDependencies": {
- "eslint": "*",
- "eslint-plugin-import": "*",
- "eslint-plugin-import-x": "*"
- },
- "peerDependenciesMeta": {
- "eslint-plugin-import": {
- "optional": true
- },
- "eslint-plugin-import-x": {
- "optional": true
- }
- }
- },
- "node_modules/eslint-module-utils": {
- "version": "2.12.1",
- "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz",
- "integrity": "sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "debug": "^3.2.7"
- },
- "engines": {
- "node": ">=4"
- },
- "peerDependenciesMeta": {
- "eslint": {
- "optional": true
- }
- }
- },
- "node_modules/eslint-module-utils/node_modules/debug": {
- "version": "3.2.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
- "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ms": "^2.1.1"
- }
- },
- "node_modules/eslint-plugin-import": {
- "version": "2.32.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz",
- "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@rtsao/scc": "^1.1.0",
- "array-includes": "^3.1.9",
- "array.prototype.findlastindex": "^1.2.6",
- "array.prototype.flat": "^1.3.3",
- "array.prototype.flatmap": "^1.3.3",
- "debug": "^3.2.7",
- "doctrine": "^2.1.0",
- "eslint-import-resolver-node": "^0.3.9",
- "eslint-module-utils": "^2.12.1",
- "hasown": "^2.0.2",
- "is-core-module": "^2.16.1",
- "is-glob": "^4.0.3",
- "minimatch": "^3.1.2",
- "object.fromentries": "^2.0.8",
- "object.groupby": "^1.0.3",
- "object.values": "^1.2.1",
- "semver": "^6.3.1",
- "string.prototype.trimend": "^1.0.9",
- "tsconfig-paths": "^3.15.0"
- },
- "engines": {
- "node": ">=4"
- },
- "peerDependencies": {
- "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9"
- }
- },
- "node_modules/eslint-plugin-import/node_modules/debug": {
- "version": "3.2.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
- "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ms": "^2.1.1"
- }
- },
- "node_modules/eslint-plugin-jsx-a11y": {
- "version": "6.10.2",
- "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz",
- "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "aria-query": "^5.3.2",
- "array-includes": "^3.1.8",
- "array.prototype.flatmap": "^1.3.2",
- "ast-types-flow": "^0.0.8",
- "axe-core": "^4.10.0",
- "axobject-query": "^4.1.0",
- "damerau-levenshtein": "^1.0.8",
- "emoji-regex": "^9.2.2",
- "hasown": "^2.0.2",
- "jsx-ast-utils": "^3.3.5",
- "language-tags": "^1.0.9",
- "minimatch": "^3.1.2",
- "object.fromentries": "^2.0.8",
- "safe-regex-test": "^1.0.3",
- "string.prototype.includes": "^2.0.1"
- },
- "engines": {
- "node": ">=4.0"
- },
- "peerDependencies": {
- "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9"
- }
- },
- "node_modules/eslint-plugin-react": {
- "version": "7.37.5",
- "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz",
- "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "array-includes": "^3.1.8",
- "array.prototype.findlast": "^1.2.5",
- "array.prototype.flatmap": "^1.3.3",
- "array.prototype.tosorted": "^1.1.4",
- "doctrine": "^2.1.0",
- "es-iterator-helpers": "^1.2.1",
- "estraverse": "^5.3.0",
- "hasown": "^2.0.2",
- "jsx-ast-utils": "^2.4.1 || ^3.0.0",
- "minimatch": "^3.1.2",
- "object.entries": "^1.1.9",
- "object.fromentries": "^2.0.8",
- "object.values": "^1.2.1",
- "prop-types": "^15.8.1",
- "resolve": "^2.0.0-next.5",
- "semver": "^6.3.1",
- "string.prototype.matchall": "^4.0.12",
- "string.prototype.repeat": "^1.0.0"
- },
- "engines": {
- "node": ">=4"
- },
- "peerDependencies": {
- "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7"
- }
- },
- "node_modules/eslint-plugin-react-hooks": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz",
- "integrity": "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.24.4",
- "@babel/parser": "^7.24.4",
- "hermes-parser": "^0.25.1",
- "zod": "^3.25.0 || ^4.0.0",
- "zod-validation-error": "^3.5.0 || ^4.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "peerDependencies": {
- "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
- }
- },
- "node_modules/eslint-plugin-react/node_modules/resolve": {
- "version": "2.0.0-next.5",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz",
- "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-core-module": "^2.13.0",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
- },
- "bin": {
- "resolve": "bin/resolve"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/eslint-scope": {
- "version": "8.4.0",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz",
- "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "esrecurse": "^4.3.0",
- "estraverse": "^5.2.0"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- }
- },
- "node_modules/eslint-visitor-keys": {
- "version": "4.2.1",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
- "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- }
- },
- "node_modules/espree": {
- "version": "10.4.0",
- "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz",
- "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "acorn": "^8.15.0",
- "acorn-jsx": "^5.3.2",
- "eslint-visitor-keys": "^4.2.1"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- }
- },
- "node_modules/esquery": {
- "version": "1.7.0",
- "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz",
- "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "estraverse": "^5.1.0"
- },
- "engines": {
- "node": ">=0.10"
- }
- },
- "node_modules/esrecurse": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
- "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "estraverse": "^5.2.0"
- },
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/estraverse": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/esutils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/eventemitter3": {
- "version": "5.0.4",
- "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz",
- "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==",
- "license": "MIT"
- },
- "node_modules/fast-deep-equal": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/fast-glob": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz",
- "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@nodelib/fs.stat": "^2.0.2",
- "@nodelib/fs.walk": "^1.2.3",
- "glob-parent": "^5.1.2",
- "merge2": "^1.3.0",
- "micromatch": "^4.0.4"
- },
- "engines": {
- "node": ">=8.6.0"
- }
- },
- "node_modules/fast-glob/node_modules/glob-parent": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "is-glob": "^4.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/fast-json-stable-stringify": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/fast-levenshtein": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
- "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/fastq": {
- "version": "1.20.1",
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz",
- "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "reusify": "^1.0.4"
- }
- },
- "node_modules/fflate": {
- "version": "0.8.2",
- "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz",
- "integrity": "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==",
- "license": "MIT"
- },
- "node_modules/file-entry-cache": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
- "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "flat-cache": "^4.0.0"
- },
- "engines": {
- "node": ">=16.0.0"
- }
- },
- "node_modules/fill-range": {
- "version": "7.1.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
- "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "to-regex-range": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/find-up": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
- "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "locate-path": "^6.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/flat-cache": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
- "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "flatted": "^3.2.9",
- "keyv": "^4.5.4"
- },
- "engines": {
- "node": ">=16"
- }
- },
- "node_modules/flatted": {
- "version": "3.3.3",
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz",
- "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/for-each": {
- "version": "0.3.5",
- "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz",
- "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-callable": "^1.2.7"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/framer-motion": {
- "version": "12.34.0",
- "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-12.34.0.tgz",
- "integrity": "sha512-+/H49owhzkzQyxtn7nZeF4kdH++I2FWrESQ184Zbcw5cEqNHYkE5yxWxcTLSj5lNx3NWdbIRy5FHqUvetD8FWg==",
- "license": "MIT",
- "dependencies": {
- "motion-dom": "^12.34.0",
- "motion-utils": "^12.29.2",
- "tslib": "^2.4.0"
- },
- "peerDependencies": {
- "@emotion/is-prop-valid": "*",
- "react": "^18.0.0 || ^19.0.0",
- "react-dom": "^18.0.0 || ^19.0.0"
- },
- "peerDependenciesMeta": {
- "@emotion/is-prop-valid": {
- "optional": true
- },
- "react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/function-bind": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/function.prototype.name": {
- "version": "1.1.8",
- "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz",
- "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "call-bound": "^1.0.3",
- "define-properties": "^1.2.1",
- "functions-have-names": "^1.2.3",
- "hasown": "^2.0.2",
- "is-callable": "^1.2.7"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/functions-have-names": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
- "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/generator-function": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz",
- "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/gensync": {
- "version": "1.0.0-beta.2",
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/get-intrinsic": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
- "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind-apply-helpers": "^1.0.2",
- "es-define-property": "^1.0.1",
- "es-errors": "^1.3.0",
- "es-object-atoms": "^1.1.1",
- "function-bind": "^1.1.2",
- "get-proto": "^1.0.1",
- "gopd": "^1.2.0",
- "has-symbols": "^1.1.0",
- "hasown": "^2.0.2",
- "math-intrinsics": "^1.1.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/get-nonce": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz",
- "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/get-proto": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
- "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "dunder-proto": "^1.0.1",
- "es-object-atoms": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/get-symbol-description": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz",
- "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.3",
- "es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.6"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/get-tsconfig": {
- "version": "4.13.6",
- "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.6.tgz",
- "integrity": "sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "resolve-pkg-maps": "^1.0.0"
- },
- "funding": {
- "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
- }
- },
- "node_modules/gifuct-js": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/gifuct-js/-/gifuct-js-2.1.2.tgz",
- "integrity": "sha512-rI2asw77u0mGgwhV3qA+OEgYqaDn5UNqgs+Bx0FGwSpuqfYn+Ir6RQY5ENNQ8SbIiG/m5gVa7CD5RriO4f4Lsg==",
- "license": "MIT",
- "dependencies": {
- "js-binary-schema-parser": "^2.0.3"
- }
- },
- "node_modules/glob-parent": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
- "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "is-glob": "^4.0.3"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/globals": {
- "version": "14.0.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
- "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/globalthis": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz",
- "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "define-properties": "^1.2.1",
- "gopd": "^1.0.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/glsl-noise": {
- "version": "0.0.0",
- "resolved": "https://registry.npmjs.org/glsl-noise/-/glsl-noise-0.0.0.tgz",
- "integrity": "sha512-b/ZCF6amfAUb7dJM/MxRs7AetQEahYzJ8PtgfrmEdtw6uyGOr+ZSGtgjFm6mfsBkxJ4d2W7kg+Nlqzqvn3Bc0w==",
- "license": "MIT"
- },
- "node_modules/gopd": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
- "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/graceful-fs": {
- "version": "4.2.11",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
- "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/has-bigints": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz",
- "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/has-property-descriptors": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
- "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "es-define-property": "^1.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/has-proto": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz",
- "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "dunder-proto": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/has-symbols": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
- "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/has-tostringtag": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
- "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-symbols": "^1.0.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/hasown": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
- "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "function-bind": "^1.1.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/hermes-estree": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz",
- "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/hermes-parser": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz",
- "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "hermes-estree": "0.25.1"
- }
- },
- "node_modules/hls.js": {
- "version": "1.6.15",
- "resolved": "https://registry.npmjs.org/hls.js/-/hls.js-1.6.15.tgz",
- "integrity": "sha512-E3a5VwgXimGHwpRGV+WxRTKeSp2DW5DI5MWv34ulL3t5UNmyJWCQ1KmLEHbYzcfThfXG8amBL+fCYPneGHC4VA==",
- "license": "Apache-2.0"
- },
- "node_modules/ieee754": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
- "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "BSD-3-Clause"
- },
- "node_modules/ignore": {
- "version": "5.3.2",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
- "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/immediate": {
- "version": "3.0.6",
- "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
- "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==",
- "license": "MIT"
- },
- "node_modules/immer": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/immer/-/immer-10.2.0.tgz",
- "integrity": "sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/immer"
- }
- },
- "node_modules/import-fresh": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
- "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/imurmurhash": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.8.19"
- }
- },
- "node_modules/internal-slot": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz",
- "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "hasown": "^2.0.2",
- "side-channel": "^1.1.0"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/internmap": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz",
- "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==",
- "license": "ISC",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/is-array-buffer": {
- "version": "3.0.5",
- "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz",
- "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "call-bound": "^1.0.3",
- "get-intrinsic": "^1.2.6"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-async-function": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz",
- "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "async-function": "^1.0.0",
- "call-bound": "^1.0.3",
- "get-proto": "^1.0.1",
- "has-tostringtag": "^1.0.2",
- "safe-regex-test": "^1.1.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-bigint": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz",
- "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-bigints": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-boolean-object": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz",
- "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.3",
- "has-tostringtag": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-bun-module": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz",
- "integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "semver": "^7.7.1"
- }
- },
- "node_modules/is-bun-module/node_modules/semver": {
- "version": "7.7.4",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
- "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/is-callable": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
- "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-core-module": {
- "version": "2.16.1",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
- "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "hasown": "^2.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-data-view": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz",
- "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.2",
- "get-intrinsic": "^1.2.6",
- "is-typed-array": "^1.1.13"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-date-object": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz",
- "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.2",
- "has-tostringtag": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-extglob": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-finalizationregistry": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz",
- "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-generator-function": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz",
- "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.4",
- "generator-function": "^2.0.0",
- "get-proto": "^1.0.1",
- "has-tostringtag": "^1.0.2",
- "safe-regex-test": "^1.1.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-glob": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-extglob": "^2.1.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-map": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz",
- "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-negative-zero": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz",
- "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.12.0"
- }
- },
- "node_modules/is-number-object": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz",
- "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.3",
- "has-tostringtag": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-promise": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz",
- "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==",
- "license": "MIT"
- },
- "node_modules/is-regex": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz",
- "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.2",
- "gopd": "^1.2.0",
- "has-tostringtag": "^1.0.2",
- "hasown": "^2.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-set": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz",
- "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-shared-array-buffer": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz",
- "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-string": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz",
- "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.3",
- "has-tostringtag": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-symbol": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz",
- "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.2",
- "has-symbols": "^1.1.0",
- "safe-regex-test": "^1.1.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-typed-array": {
- "version": "1.1.15",
- "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz",
- "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "which-typed-array": "^1.1.16"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-weakmap": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz",
- "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-weakref": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz",
- "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-weakset": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz",
- "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.3",
- "get-intrinsic": "^1.2.6"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/isarray": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
- "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/isexe": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
- "license": "ISC"
- },
- "node_modules/ismobilejs": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/ismobilejs/-/ismobilejs-1.1.1.tgz",
- "integrity": "sha512-VaFW53yt8QO61k2WJui0dHf4SlL8lxBofUuUmwBo0ljPk0Drz2TiuDW4jo3wDcv41qy/SxrJ+VAzJ/qYqsmzRw==",
- "license": "MIT"
- },
- "node_modules/iterator.prototype": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz",
- "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "define-data-property": "^1.1.4",
- "es-object-atoms": "^1.0.0",
- "get-intrinsic": "^1.2.6",
- "get-proto": "^1.0.0",
- "has-symbols": "^1.1.0",
- "set-function-name": "^2.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/its-fine": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/its-fine/-/its-fine-2.0.0.tgz",
- "integrity": "sha512-KLViCmWx94zOvpLwSlsx6yOCeMhZYaxrJV87Po5k/FoZzcPSahvK5qJ7fYhS61sZi5ikmh2S3Hz55A2l3U69ng==",
- "license": "MIT",
- "dependencies": {
- "@types/react-reconciler": "^0.28.9"
- },
- "peerDependencies": {
- "react": "^19.0.0"
- }
- },
- "node_modules/jiti": {
- "version": "2.6.1",
- "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
- "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
- "dev": true,
- "license": "MIT",
- "bin": {
- "jiti": "lib/jiti-cli.mjs"
- }
- },
- "node_modules/js-binary-schema-parser": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/js-binary-schema-parser/-/js-binary-schema-parser-2.0.3.tgz",
- "integrity": "sha512-xezGJmOb4lk/M1ZZLTR/jaBHQ4gG/lqQnJqdIv4721DMggsa1bDVlHXNeHYogaIEHD9vCRv0fcL4hMA+Coarkg==",
- "license": "MIT"
- },
- "node_modules/js-tokens": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/js-yaml": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
- "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "argparse": "^2.0.1"
- },
- "bin": {
- "js-yaml": "bin/js-yaml.js"
- }
- },
- "node_modules/jsesc": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
- "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
- "dev": true,
- "license": "MIT",
- "bin": {
- "jsesc": "bin/jsesc"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/json-buffer": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
- "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/json-schema-traverse": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/json-stable-stringify-without-jsonify": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
- "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/json5": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
- "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
- "dev": true,
- "license": "MIT",
- "bin": {
- "json5": "lib/cli.js"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/jsx-ast-utils": {
- "version": "3.3.5",
- "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz",
- "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "array-includes": "^3.1.6",
- "array.prototype.flat": "^1.3.1",
- "object.assign": "^4.1.4",
- "object.values": "^1.1.6"
- },
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/keyv": {
- "version": "4.5.4",
- "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
- "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "json-buffer": "3.0.1"
- }
- },
- "node_modules/language-subtag-registry": {
- "version": "0.3.23",
- "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz",
- "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==",
- "dev": true,
- "license": "CC0-1.0"
- },
- "node_modules/language-tags": {
- "version": "1.0.9",
- "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz",
- "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "language-subtag-registry": "^0.3.20"
- },
- "engines": {
- "node": ">=0.10"
- }
- },
- "node_modules/levn": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
- "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "prelude-ls": "^1.2.1",
- "type-check": "~0.4.0"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/lie": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz",
- "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
- "license": "MIT",
- "dependencies": {
- "immediate": "~3.0.5"
- }
- },
- "node_modules/lightningcss": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.2.tgz",
- "integrity": "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==",
- "dev": true,
- "license": "MPL-2.0",
- "dependencies": {
- "detect-libc": "^2.0.3"
- },
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- },
- "optionalDependencies": {
- "lightningcss-android-arm64": "1.30.2",
- "lightningcss-darwin-arm64": "1.30.2",
- "lightningcss-darwin-x64": "1.30.2",
- "lightningcss-freebsd-x64": "1.30.2",
- "lightningcss-linux-arm-gnueabihf": "1.30.2",
- "lightningcss-linux-arm64-gnu": "1.30.2",
- "lightningcss-linux-arm64-musl": "1.30.2",
- "lightningcss-linux-x64-gnu": "1.30.2",
- "lightningcss-linux-x64-musl": "1.30.2",
- "lightningcss-win32-arm64-msvc": "1.30.2",
- "lightningcss-win32-x64-msvc": "1.30.2"
- }
- },
- "node_modules/lightningcss-android-arm64": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz",
- "integrity": "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-darwin-arm64": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz",
- "integrity": "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-darwin-x64": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz",
- "integrity": "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-freebsd-x64": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz",
- "integrity": "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-arm-gnueabihf": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz",
- "integrity": "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-arm64-gnu": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz",
- "integrity": "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-arm64-musl": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz",
- "integrity": "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-x64-gnu": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz",
- "integrity": "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-x64-musl": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz",
- "integrity": "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-win32-arm64-msvc": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz",
- "integrity": "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-win32-x64-msvc": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz",
- "integrity": "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/locate-path": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
- "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-locate": "^5.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/lodash.merge": {
- "version": "4.6.2",
- "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
- "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/loose-envify": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
- "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "js-tokens": "^3.0.0 || ^4.0.0"
- },
- "bin": {
- "loose-envify": "cli.js"
- }
- },
- "node_modules/lru-cache": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
- "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "yallist": "^3.0.2"
- }
- },
- "node_modules/lucide-react": {
- "version": "0.563.0",
- "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.563.0.tgz",
- "integrity": "sha512-8dXPB2GI4dI8jV4MgUDGBeLdGk8ekfqVZ0BdLcrRzocGgG75ltNEmWS+gE7uokKF/0oSUuczNDT+g9hFJ23FkA==",
- "license": "ISC",
- "peerDependencies": {
- "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
- }
- },
- "node_modules/maath": {
- "version": "0.10.8",
- "resolved": "https://registry.npmjs.org/maath/-/maath-0.10.8.tgz",
- "integrity": "sha512-tRvbDF0Pgqz+9XUa4jjfgAQ8/aPKmQdWXilFu2tMy4GWj4NOsx99HlULO4IeREfbO3a0sA145DZYyvXPkybm0g==",
- "license": "MIT",
- "peerDependencies": {
- "@types/three": ">=0.134.0",
- "three": ">=0.134.0"
- }
- },
- "node_modules/magic-string": {
- "version": "0.30.21",
- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
- "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@jridgewell/sourcemap-codec": "^1.5.5"
- }
- },
- "node_modules/math-intrinsics": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
- "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/merge2": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
- "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/meshline": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/meshline/-/meshline-3.3.1.tgz",
- "integrity": "sha512-/TQj+JdZkeSUOl5Mk2J7eLcYTLiQm2IDzmlSvYm7ov15anEcDJ92GHqqazxTSreeNgfnYu24kiEvvv0WlbCdFQ==",
- "license": "MIT",
- "peerDependencies": {
- "three": ">=0.137"
- }
- },
- "node_modules/meshoptimizer": {
- "version": "0.22.0",
- "resolved": "https://registry.npmjs.org/meshoptimizer/-/meshoptimizer-0.22.0.tgz",
- "integrity": "sha512-IebiK79sqIy+E4EgOr+CAw+Ke8hAspXKzBd0JdgEmPHiAwmvEj2S4h1rfvo+o/BnfEYd/jAOg5IeeIjzlzSnDg==",
- "license": "MIT"
- },
- "node_modules/micromatch": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
- "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "braces": "^3.0.3",
- "picomatch": "^2.3.1"
- },
- "engines": {
- "node": ">=8.6"
- }
- },
- "node_modules/minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^1.1.7"
- },
- "engines": {
- "node": "*"
- }
- },
- "node_modules/minimist": {
- "version": "1.2.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
- "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/motion-dom": {
- "version": "12.34.0",
- "resolved": "https://registry.npmjs.org/motion-dom/-/motion-dom-12.34.0.tgz",
- "integrity": "sha512-Lql3NuEcScRDxTAO6GgUsRHBZOWI/3fnMlkMcH5NftzcN37zJta+bpbMAV9px4Nj057TuvRooMK7QrzMCgtz6Q==",
- "license": "MIT",
- "dependencies": {
- "motion-utils": "^12.29.2"
- }
- },
- "node_modules/motion-utils": {
- "version": "12.29.2",
- "resolved": "https://registry.npmjs.org/motion-utils/-/motion-utils-12.29.2.tgz",
- "integrity": "sha512-G3kc34H2cX2gI63RqU+cZq+zWRRPSsNIOjpdl9TN4AQwC4sgwYPl/Q/Obf/d53nOm569T0fYK+tcoSV50BWx8A==",
- "license": "MIT"
- },
- "node_modules/ms": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/n8ao": {
- "version": "1.10.1",
- "resolved": "https://registry.npmjs.org/n8ao/-/n8ao-1.10.1.tgz",
- "integrity": "sha512-hhI1pC+BfOZBV1KMwynBrVlIm8wqLxj/abAWhF2nZ0qQKyzTSQa1QtLVS2veRiuoBQXojxobcnp0oe+PUoxf/w==",
- "license": "ISC",
- "peerDependencies": {
- "postprocessing": ">=6.30.0",
- "three": ">=0.137"
- }
- },
- "node_modules/nanoid": {
- "version": "3.3.11",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
- "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "bin": {
- "nanoid": "bin/nanoid.cjs"
- },
- "engines": {
- "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
- }
- },
- "node_modules/napi-postinstall": {
- "version": "0.3.4",
- "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.4.tgz",
- "integrity": "sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==",
- "dev": true,
- "license": "MIT",
- "bin": {
- "napi-postinstall": "lib/cli.js"
- },
- "engines": {
- "node": "^12.20.0 || ^14.18.0 || >=16.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/napi-postinstall"
- }
- },
- "node_modules/natural-compare": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
- "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/next": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/next/-/next-16.1.6.tgz",
- "integrity": "sha512-hkyRkcu5x/41KoqnROkfTm2pZVbKxvbZRuNvKXLRXxs3VfyO0WhY50TQS40EuKO9SW3rBj/sF3WbVwDACeMZyw==",
- "license": "MIT",
- "dependencies": {
- "@next/env": "16.1.6",
- "@swc/helpers": "0.5.15",
- "baseline-browser-mapping": "^2.8.3",
- "caniuse-lite": "^1.0.30001579",
- "postcss": "8.4.31",
- "styled-jsx": "5.1.6"
- },
- "bin": {
- "next": "dist/bin/next"
- },
- "engines": {
- "node": ">=20.9.0"
- },
- "optionalDependencies": {
- "@next/swc-darwin-arm64": "16.1.6",
- "@next/swc-darwin-x64": "16.1.6",
- "@next/swc-linux-arm64-gnu": "16.1.6",
- "@next/swc-linux-arm64-musl": "16.1.6",
- "@next/swc-linux-x64-gnu": "16.1.6",
- "@next/swc-linux-x64-musl": "16.1.6",
- "@next/swc-win32-arm64-msvc": "16.1.6",
- "@next/swc-win32-x64-msvc": "16.1.6",
- "sharp": "^0.34.4"
- },
- "peerDependencies": {
- "@opentelemetry/api": "^1.1.0",
- "@playwright/test": "^1.51.1",
- "babel-plugin-react-compiler": "*",
- "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
- "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
- "sass": "^1.3.0"
- },
- "peerDependenciesMeta": {
- "@opentelemetry/api": {
- "optional": true
- },
- "@playwright/test": {
- "optional": true
- },
- "babel-plugin-react-compiler": {
- "optional": true
- },
- "sass": {
- "optional": true
- }
- }
- },
- "node_modules/next/node_modules/postcss": {
- "version": "8.4.31",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
- "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/postcss"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "nanoid": "^3.3.6",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
- },
- "engines": {
- "node": "^10 || ^12 || >=14"
- }
- },
- "node_modules/node-releases": {
- "version": "2.0.27",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
- "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/object-assign": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
- "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-inspect": {
- "version": "1.13.4",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
- "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/object-keys": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
- "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/object.assign": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz",
- "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "call-bound": "^1.0.3",
- "define-properties": "^1.2.1",
- "es-object-atoms": "^1.0.0",
- "has-symbols": "^1.1.0",
- "object-keys": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/object.entries": {
- "version": "1.1.9",
- "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz",
- "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "call-bound": "^1.0.4",
- "define-properties": "^1.2.1",
- "es-object-atoms": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/object.fromentries": {
- "version": "2.0.8",
- "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz",
- "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.7",
- "define-properties": "^1.2.1",
- "es-abstract": "^1.23.2",
- "es-object-atoms": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/object.groupby": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz",
- "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.7",
- "define-properties": "^1.2.1",
- "es-abstract": "^1.23.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/object.values": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz",
- "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "call-bound": "^1.0.3",
- "define-properties": "^1.2.1",
- "es-object-atoms": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/optionator": {
- "version": "0.9.4",
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
- "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "deep-is": "^0.1.3",
- "fast-levenshtein": "^2.0.6",
- "levn": "^0.4.1",
- "prelude-ls": "^1.2.1",
- "type-check": "^0.4.0",
- "word-wrap": "^1.2.5"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/own-keys": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz",
- "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.2.6",
- "object-keys": "^1.1.1",
- "safe-push-apply": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/p-limit": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "yocto-queue": "^0.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/p-locate": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
- "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-limit": "^3.0.2"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/parent-module": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
- "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "callsites": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/parse-svg-path": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/parse-svg-path/-/parse-svg-path-0.1.2.tgz",
- "integrity": "sha512-JyPSBnkTJ0AI8GGJLfMXvKq42cj5c006fnLz6fXy6zfoVjJizi8BNTpu8on8ziI1cKy9d9DGNuY17Ce7wuejpQ==",
- "license": "MIT"
- },
- "node_modules/path-exists": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-key": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-parse": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/picocolors": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
- "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
- "license": "ISC"
- },
- "node_modules/picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/pixi.js": {
- "version": "8.16.0",
- "resolved": "https://registry.npmjs.org/pixi.js/-/pixi.js-8.16.0.tgz",
- "integrity": "sha512-gu2xw3sZGAn3cWBtk0HqTQT+v19YAfiaYXwUGgWoJl5NKz4cEZJUgWrwkmdfDszGyYBAGqOvJNbd2M9+vzLLMg==",
- "license": "MIT",
- "dependencies": {
- "@pixi/colord": "^2.9.6",
- "@types/earcut": "^3.0.0",
- "@webgpu/types": "^0.1.69",
- "@xmldom/xmldom": "^0.8.11",
- "earcut": "^3.0.2",
- "eventemitter3": "^5.0.1",
- "gifuct-js": "^2.1.2",
- "ismobilejs": "^1.1.1",
- "parse-svg-path": "^0.1.2",
- "tiny-lru": "^11.4.7"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/pixijs"
- }
- },
- "node_modules/possible-typed-array-names": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz",
- "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/postcss": {
- "version": "8.5.6",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
- "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/postcss"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "nanoid": "^3.3.11",
- "picocolors": "^1.1.1",
- "source-map-js": "^1.2.1"
- },
- "engines": {
- "node": "^10 || ^12 || >=14"
- }
- },
- "node_modules/postprocessing": {
- "version": "6.38.2",
- "resolved": "https://registry.npmjs.org/postprocessing/-/postprocessing-6.38.2.tgz",
- "integrity": "sha512-7DwuT7Tkst41ZjSj287g7C9c5/D3Xx5rMgBosg0dadbUPoZD2HNzkadKPol1d2PJAoI9f+Jeh1/v9YfLzpFGVw==",
- "license": "Zlib",
- "peerDependencies": {
- "three": ">= 0.157.0 < 0.183.0"
- }
- },
- "node_modules/potpack": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/potpack/-/potpack-1.0.2.tgz",
- "integrity": "sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==",
- "license": "ISC"
- },
- "node_modules/prelude-ls": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
- "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/promise-worker-transferable": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/promise-worker-transferable/-/promise-worker-transferable-1.0.4.tgz",
- "integrity": "sha512-bN+0ehEnrXfxV2ZQvU2PetO0n4gqBD4ulq3MI1WOPLgr7/Mg9yRQkX5+0v1vagr74ZTsl7XtzlaYDo2EuCeYJw==",
- "license": "Apache-2.0",
- "dependencies": {
- "is-promise": "^2.1.0",
- "lie": "^3.0.2"
- }
- },
- "node_modules/prop-types": {
- "version": "15.8.1",
- "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
- "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "loose-envify": "^1.4.0",
- "object-assign": "^4.1.1",
- "react-is": "^16.13.1"
- }
- },
- "node_modules/punycode": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
- "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/queue-microtask": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
- "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
- "node_modules/react": {
- "version": "19.2.3",
- "resolved": "https://registry.npmjs.org/react/-/react-19.2.3.tgz",
- "integrity": "sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dom": {
- "version": "19.2.3",
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.3.tgz",
- "integrity": "sha512-yELu4WmLPw5Mr/lmeEpox5rw3RETacE++JgHqQzd2dg+YbJuat3jH4ingc+WPZhxaoFzdv9y33G+F7Nl5O0GBg==",
- "license": "MIT",
- "dependencies": {
- "scheduler": "^0.27.0"
- },
- "peerDependencies": {
- "react": "^19.2.3"
- }
- },
- "node_modules/react-is": {
- "version": "16.13.1",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
- "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
- "license": "MIT"
- },
- "node_modules/react-redux": {
- "version": "9.2.0",
- "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-9.2.0.tgz",
- "integrity": "sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g==",
- "license": "MIT",
- "dependencies": {
- "@types/use-sync-external-store": "^0.0.6",
- "use-sync-external-store": "^1.4.0"
- },
- "peerDependencies": {
- "@types/react": "^18.2.25 || ^19",
- "react": "^18.0 || ^19",
- "redux": "^5.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "redux": {
- "optional": true
- }
- }
- },
- "node_modules/react-remove-scroll": {
- "version": "2.7.2",
- "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.7.2.tgz",
- "integrity": "sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==",
- "license": "MIT",
- "dependencies": {
- "react-remove-scroll-bar": "^2.3.7",
- "react-style-singleton": "^2.2.3",
- "tslib": "^2.1.0",
- "use-callback-ref": "^1.3.3",
- "use-sidecar": "^1.1.3"
- },
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/react-remove-scroll-bar": {
- "version": "2.3.8",
- "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.8.tgz",
- "integrity": "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==",
- "license": "MIT",
- "dependencies": {
- "react-style-singleton": "^2.2.2",
- "tslib": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/react-style-singleton": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.3.tgz",
- "integrity": "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==",
- "license": "MIT",
- "dependencies": {
- "get-nonce": "^1.0.0",
- "tslib": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/react-use-measure": {
- "version": "2.1.7",
- "resolved": "https://registry.npmjs.org/react-use-measure/-/react-use-measure-2.1.7.tgz",
- "integrity": "sha512-KrvcAo13I/60HpwGO5jpW7E9DfusKyLPLvuHlUyP5zqnmAPhNc6qTRjUQrdTADl0lpPpDVU2/Gg51UlOGHXbdg==",
- "license": "MIT",
- "peerDependencies": {
- "react": ">=16.13",
- "react-dom": ">=16.13"
- },
- "peerDependenciesMeta": {
- "react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/recharts": {
- "version": "3.7.0",
- "resolved": "https://registry.npmjs.org/recharts/-/recharts-3.7.0.tgz",
- "integrity": "sha512-l2VCsy3XXeraxIID9fx23eCb6iCBsxUQDnE8tWm6DFdszVAO7WVY/ChAD9wVit01y6B2PMupYiMmQwhgPHc9Ew==",
- "license": "MIT",
- "workspaces": [
- "www"
- ],
- "dependencies": {
- "@reduxjs/toolkit": "1.x.x || 2.x.x",
- "clsx": "^2.1.1",
- "decimal.js-light": "^2.5.1",
- "es-toolkit": "^1.39.3",
- "eventemitter3": "^5.0.1",
- "immer": "^10.1.1",
- "react-redux": "8.x.x || 9.x.x",
- "reselect": "5.1.1",
- "tiny-invariant": "^1.3.3",
- "use-sync-external-store": "^1.2.2",
- "victory-vendor": "^37.0.2"
- },
- "engines": {
- "node": ">=18"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
- "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
- "react-is": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
- }
- },
- "node_modules/redux": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz",
- "integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==",
- "license": "MIT"
- },
- "node_modules/redux-thunk": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-3.1.0.tgz",
- "integrity": "sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==",
- "license": "MIT",
- "peerDependencies": {
- "redux": "^5.0.0"
- }
- },
- "node_modules/reflect.getprototypeof": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz",
- "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "define-properties": "^1.2.1",
- "es-abstract": "^1.23.9",
- "es-errors": "^1.3.0",
- "es-object-atoms": "^1.0.0",
- "get-intrinsic": "^1.2.7",
- "get-proto": "^1.0.1",
- "which-builtin-type": "^1.2.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/regexp.prototype.flags": {
- "version": "1.5.4",
- "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz",
- "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "define-properties": "^1.2.1",
- "es-errors": "^1.3.0",
- "get-proto": "^1.0.1",
- "gopd": "^1.2.0",
- "set-function-name": "^2.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/require-from-string": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
- "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/reselect": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/reselect/-/reselect-5.1.1.tgz",
- "integrity": "sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==",
- "license": "MIT"
- },
- "node_modules/resolve": {
- "version": "1.22.11",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz",
- "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-core-module": "^2.16.1",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
- },
- "bin": {
- "resolve": "bin/resolve"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/resolve-from": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/resolve-pkg-maps": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
- "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
- }
- },
- "node_modules/reusify": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
- "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "iojs": ">=1.0.0",
- "node": ">=0.10.0"
- }
- },
- "node_modules/run-parallel": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
- "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "queue-microtask": "^1.2.2"
- }
- },
- "node_modules/safe-array-concat": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz",
- "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "call-bound": "^1.0.2",
- "get-intrinsic": "^1.2.6",
- "has-symbols": "^1.1.0",
- "isarray": "^2.0.5"
- },
- "engines": {
- "node": ">=0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/safe-push-apply": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz",
- "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "isarray": "^2.0.5"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/safe-regex-test": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz",
- "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.2",
- "es-errors": "^1.3.0",
- "is-regex": "^1.2.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/scheduler": {
- "version": "0.27.0",
- "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
- "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
- "license": "MIT"
- },
- "node_modules/semver": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/set-function-length": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
- "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "define-data-property": "^1.1.4",
- "es-errors": "^1.3.0",
- "function-bind": "^1.1.2",
- "get-intrinsic": "^1.2.4",
- "gopd": "^1.0.1",
- "has-property-descriptors": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/set-function-name": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz",
- "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "define-data-property": "^1.1.4",
- "es-errors": "^1.3.0",
- "functions-have-names": "^1.2.3",
- "has-property-descriptors": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/set-proto": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz",
- "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "dunder-proto": "^1.0.1",
- "es-errors": "^1.3.0",
- "es-object-atoms": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/sharp": {
- "version": "0.34.5",
- "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz",
- "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==",
- "hasInstallScript": true,
- "license": "Apache-2.0",
- "optional": true,
- "dependencies": {
- "@img/colour": "^1.0.0",
- "detect-libc": "^2.1.2",
- "semver": "^7.7.3"
- },
- "engines": {
- "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-darwin-arm64": "0.34.5",
- "@img/sharp-darwin-x64": "0.34.5",
- "@img/sharp-libvips-darwin-arm64": "1.2.4",
- "@img/sharp-libvips-darwin-x64": "1.2.4",
- "@img/sharp-libvips-linux-arm": "1.2.4",
- "@img/sharp-libvips-linux-arm64": "1.2.4",
- "@img/sharp-libvips-linux-ppc64": "1.2.4",
- "@img/sharp-libvips-linux-riscv64": "1.2.4",
- "@img/sharp-libvips-linux-s390x": "1.2.4",
- "@img/sharp-libvips-linux-x64": "1.2.4",
- "@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
- "@img/sharp-libvips-linuxmusl-x64": "1.2.4",
- "@img/sharp-linux-arm": "0.34.5",
- "@img/sharp-linux-arm64": "0.34.5",
- "@img/sharp-linux-ppc64": "0.34.5",
- "@img/sharp-linux-riscv64": "0.34.5",
- "@img/sharp-linux-s390x": "0.34.5",
- "@img/sharp-linux-x64": "0.34.5",
- "@img/sharp-linuxmusl-arm64": "0.34.5",
- "@img/sharp-linuxmusl-x64": "0.34.5",
- "@img/sharp-wasm32": "0.34.5",
- "@img/sharp-win32-arm64": "0.34.5",
- "@img/sharp-win32-ia32": "0.34.5",
- "@img/sharp-win32-x64": "0.34.5"
- }
- },
- "node_modules/sharp/node_modules/semver": {
- "version": "7.7.4",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
- "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
- "license": "ISC",
- "optional": true,
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/shebang-command": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
- "license": "MIT",
- "dependencies": {
- "shebang-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/shebang-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/side-channel": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
- "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "object-inspect": "^1.13.3",
- "side-channel-list": "^1.0.0",
- "side-channel-map": "^1.0.1",
- "side-channel-weakmap": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/side-channel-list": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
- "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "object-inspect": "^1.13.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/side-channel-map": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
- "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.2",
- "es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.5",
- "object-inspect": "^1.13.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/side-channel-weakmap": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
- "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.2",
- "es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.5",
- "object-inspect": "^1.13.3",
- "side-channel-map": "^1.0.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/source-map-js": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
- "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/stable-hash": {
- "version": "0.0.5",
- "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz",
- "integrity": "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/stats-gl": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/stats-gl/-/stats-gl-2.4.2.tgz",
- "integrity": "sha512-g5O9B0hm9CvnM36+v7SFl39T7hmAlv541tU81ME8YeSb3i1CIP5/QdDeSB3A0la0bKNHpxpwxOVRo2wFTYEosQ==",
- "license": "MIT",
- "dependencies": {
- "@types/three": "*",
- "three": "^0.170.0"
- },
- "peerDependencies": {
- "@types/three": "*",
- "three": "*"
- }
- },
- "node_modules/stats-gl/node_modules/three": {
- "version": "0.170.0",
- "resolved": "https://registry.npmjs.org/three/-/three-0.170.0.tgz",
- "integrity": "sha512-FQK+LEpYc0fBD+J8g6oSEyyNzjp+Q7Ks1C568WWaoMRLW+TkNNWmenWeGgJjV105Gd+p/2ql1ZcjYvNiPZBhuQ==",
- "license": "MIT"
- },
- "node_modules/stats.js": {
- "version": "0.17.0",
- "resolved": "https://registry.npmjs.org/stats.js/-/stats.js-0.17.0.tgz",
- "integrity": "sha512-hNKz8phvYLPEcRkeG1rsGmV5ChMjKDAWU7/OJJdDErPBNChQXxCo3WZurGpnWc6gZhAzEPFad1aVgyOANH1sMw==",
- "license": "MIT"
- },
- "node_modules/stop-iteration-iterator": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz",
- "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "internal-slot": "^1.1.0"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/string.prototype.includes": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz",
- "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.7",
- "define-properties": "^1.2.1",
- "es-abstract": "^1.23.3"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/string.prototype.matchall": {
- "version": "4.0.12",
- "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz",
- "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "call-bound": "^1.0.3",
- "define-properties": "^1.2.1",
- "es-abstract": "^1.23.6",
- "es-errors": "^1.3.0",
- "es-object-atoms": "^1.0.0",
- "get-intrinsic": "^1.2.6",
- "gopd": "^1.2.0",
- "has-symbols": "^1.1.0",
- "internal-slot": "^1.1.0",
- "regexp.prototype.flags": "^1.5.3",
- "set-function-name": "^2.0.2",
- "side-channel": "^1.1.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/string.prototype.repeat": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz",
- "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.17.5"
- }
- },
- "node_modules/string.prototype.trim": {
- "version": "1.2.10",
- "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz",
- "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "call-bound": "^1.0.2",
- "define-data-property": "^1.1.4",
- "define-properties": "^1.2.1",
- "es-abstract": "^1.23.5",
- "es-object-atoms": "^1.0.0",
- "has-property-descriptors": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/string.prototype.trimend": {
- "version": "1.0.9",
- "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz",
- "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "call-bound": "^1.0.2",
- "define-properties": "^1.2.1",
- "es-object-atoms": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/string.prototype.trimstart": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz",
- "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.7",
- "define-properties": "^1.2.1",
- "es-object-atoms": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/strip-bom": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
- "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/strip-json-comments": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/styled-jsx": {
- "version": "5.1.6",
- "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz",
- "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==",
- "license": "MIT",
- "dependencies": {
- "client-only": "0.0.1"
- },
- "engines": {
- "node": ">= 12.0.0"
- },
- "peerDependencies": {
- "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0"
- },
- "peerDependenciesMeta": {
- "@babel/core": {
- "optional": true
- },
- "babel-plugin-macros": {
- "optional": true
- }
- }
- },
- "node_modules/supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/supports-preserve-symlinks-flag": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
- "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/suspend-react": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/suspend-react/-/suspend-react-0.1.3.tgz",
- "integrity": "sha512-aqldKgX9aZqpoDp3e8/BZ8Dm7x1pJl+qI3ZKxDN0i/IQTWUwBx/ManmlVJ3wowqbno6c2bmiIfs+Um6LbsjJyQ==",
- "license": "MIT",
- "peerDependencies": {
- "react": ">=17.0"
- }
- },
- "node_modules/swr": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/swr/-/swr-2.4.0.tgz",
- "integrity": "sha512-sUlC20T8EOt1pHmDiqueUWMmRRX03W7w5YxovWX7VR2KHEPCTMly85x05vpkP5i6Bu4h44ePSMD9Tc+G2MItFw==",
- "license": "MIT",
- "dependencies": {
- "dequal": "^2.0.3",
- "use-sync-external-store": "^1.6.0"
- },
- "peerDependencies": {
- "react": "^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
- }
- },
- "node_modules/tailwind-merge": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.4.0.tgz",
- "integrity": "sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g==",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/dcastil"
- }
- },
- "node_modules/tailwindcss": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.18.tgz",
- "integrity": "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/tapable": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",
- "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/three": {
- "version": "0.172.0",
- "resolved": "https://registry.npmjs.org/three/-/three-0.172.0.tgz",
- "integrity": "sha512-6HMgMlzU97MsV7D/tY8Va38b83kz8YJX+BefKjspMNAv0Vx6dxMogHOrnRl/sbMIs3BPUKijPqDqJ/+UwJbIow==",
- "license": "MIT"
- },
- "node_modules/three-mesh-bvh": {
- "version": "0.8.3",
- "resolved": "https://registry.npmjs.org/three-mesh-bvh/-/three-mesh-bvh-0.8.3.tgz",
- "integrity": "sha512-4G5lBaF+g2auKX3P0yqx+MJC6oVt6sB5k+CchS6Ob0qvH0YIhuUk1eYr7ktsIpY+albCqE80/FVQGV190PmiAg==",
- "license": "MIT",
- "peerDependencies": {
- "three": ">= 0.159.0"
- }
- },
- "node_modules/three-stdlib": {
- "version": "2.36.1",
- "resolved": "https://registry.npmjs.org/three-stdlib/-/three-stdlib-2.36.1.tgz",
- "integrity": "sha512-XyGQrFmNQ5O/IoKm556ftwKsBg11TIb301MB5dWNicziQBEs2g3gtOYIf7pFiLa0zI2gUwhtCjv9fmjnxKZ1Cg==",
- "license": "MIT",
- "dependencies": {
- "@types/draco3d": "^1.4.0",
- "@types/offscreencanvas": "^2019.6.4",
- "@types/webxr": "^0.5.2",
- "draco3d": "^1.4.1",
- "fflate": "^0.6.9",
- "potpack": "^1.0.1"
- },
- "peerDependencies": {
- "three": ">=0.128.0"
- }
- },
- "node_modules/three-stdlib/node_modules/fflate": {
- "version": "0.6.10",
- "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.6.10.tgz",
- "integrity": "sha512-IQrh3lEPM93wVCEczc9SaAOvkmcoQn/G8Bo1e8ZPlY3X3bnAxWaBdvTdvM1hP62iZp0BXWDy4vTAy4fF0+Dlpg==",
- "license": "MIT"
- },
- "node_modules/tiny-invariant": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
- "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==",
- "license": "MIT"
- },
- "node_modules/tiny-lru": {
- "version": "11.4.7",
- "resolved": "https://registry.npmjs.org/tiny-lru/-/tiny-lru-11.4.7.tgz",
- "integrity": "sha512-w/Te7uMUVeH0CR8vZIjr+XiN41V+30lkDdK+NRIDCUYKKuL9VcmaUEmaPISuwGhLlrTGh5yu18lENtR9axSxYw==",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/tinyglobby": {
- "version": "0.2.15",
- "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
- "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fdir": "^6.5.0",
- "picomatch": "^4.0.3"
- },
- "engines": {
- "node": ">=12.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/SuperchupuDev"
- }
- },
- "node_modules/tinyglobby/node_modules/fdir": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
- "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12.0.0"
- },
- "peerDependencies": {
- "picomatch": "^3 || ^4"
- },
- "peerDependenciesMeta": {
- "picomatch": {
- "optional": true
- }
- }
- },
- "node_modules/tinyglobby/node_modules/picomatch": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
- "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-number": "^7.0.0"
- },
- "engines": {
- "node": ">=8.0"
- }
- },
- "node_modules/troika-three-text": {
- "version": "0.52.4",
- "resolved": "https://registry.npmjs.org/troika-three-text/-/troika-three-text-0.52.4.tgz",
- "integrity": "sha512-V50EwcYGruV5rUZ9F4aNsrytGdKcXKALjEtQXIOBfhVoZU9VAqZNIoGQ3TMiooVqFAbR1w15T+f+8gkzoFzawg==",
- "license": "MIT",
- "dependencies": {
- "bidi-js": "^1.0.2",
- "troika-three-utils": "^0.52.4",
- "troika-worker-utils": "^0.52.0",
- "webgl-sdf-generator": "1.1.1"
- },
- "peerDependencies": {
- "three": ">=0.125.0"
- }
- },
- "node_modules/troika-three-utils": {
- "version": "0.52.4",
- "resolved": "https://registry.npmjs.org/troika-three-utils/-/troika-three-utils-0.52.4.tgz",
- "integrity": "sha512-NORAStSVa/BDiG52Mfudk4j1FG4jC4ILutB3foPnfGbOeIs9+G5vZLa0pnmnaftZUGm4UwSoqEpWdqvC7zms3A==",
- "license": "MIT",
- "peerDependencies": {
- "three": ">=0.125.0"
- }
- },
- "node_modules/troika-worker-utils": {
- "version": "0.52.0",
- "resolved": "https://registry.npmjs.org/troika-worker-utils/-/troika-worker-utils-0.52.0.tgz",
- "integrity": "sha512-W1CpvTHykaPH5brv5VHLfQo9D1OYuo0cSBEUQFFT/nBUzM8iD6Lq2/tgG/f1OelbAS1WtaTPQzE5uM49egnngw==",
- "license": "MIT"
- },
- "node_modules/ts-api-utils": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.4.0.tgz",
- "integrity": "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18.12"
- },
- "peerDependencies": {
- "typescript": ">=4.8.4"
- }
- },
- "node_modules/tsconfig-paths": {
- "version": "3.15.0",
- "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz",
- "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/json5": "^0.0.29",
- "json5": "^1.0.2",
- "minimist": "^1.2.6",
- "strip-bom": "^3.0.0"
- }
- },
- "node_modules/tsconfig-paths/node_modules/json5": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
- "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "minimist": "^1.2.0"
- },
- "bin": {
- "json5": "lib/cli.js"
- }
- },
- "node_modules/tslib": {
- "version": "2.8.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
- "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
- "license": "0BSD"
- },
- "node_modules/tunnel-rat": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/tunnel-rat/-/tunnel-rat-0.1.2.tgz",
- "integrity": "sha512-lR5VHmkPhzdhrM092lI2nACsLO4QubF0/yoOhzX7c+wIpbN1GjHNzCc91QlpxBi+cnx8vVJ+Ur6vL5cEoQPFpQ==",
- "license": "MIT",
- "dependencies": {
- "zustand": "^4.3.2"
- }
- },
- "node_modules/tunnel-rat/node_modules/zustand": {
- "version": "4.5.7",
- "resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.7.tgz",
- "integrity": "sha512-CHOUy7mu3lbD6o6LJLfllpjkzhHXSBlX8B9+qPddUsIfeF5S/UZ5q0kmCsnRqT1UHFQZchNFDDzMbQsuesHWlw==",
- "license": "MIT",
- "dependencies": {
- "use-sync-external-store": "^1.2.2"
- },
- "engines": {
- "node": ">=12.7.0"
- },
- "peerDependencies": {
- "@types/react": ">=16.8",
- "immer": ">=9.0.6",
- "react": ">=16.8"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "immer": {
- "optional": true
- },
- "react": {
- "optional": true
- }
- }
- },
- "node_modules/type-check": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
- "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "prelude-ls": "^1.2.1"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/typed-array-buffer": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz",
- "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.3",
- "es-errors": "^1.3.0",
- "is-typed-array": "^1.1.14"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/typed-array-byte-length": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz",
- "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.8",
- "for-each": "^0.3.3",
- "gopd": "^1.2.0",
- "has-proto": "^1.2.0",
- "is-typed-array": "^1.1.14"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/typed-array-byte-offset": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz",
- "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "available-typed-arrays": "^1.0.7",
- "call-bind": "^1.0.8",
- "for-each": "^0.3.3",
- "gopd": "^1.2.0",
- "has-proto": "^1.2.0",
- "is-typed-array": "^1.1.15",
- "reflect.getprototypeof": "^1.0.9"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/typed-array-length": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz",
- "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.7",
- "for-each": "^0.3.3",
- "gopd": "^1.0.1",
- "is-typed-array": "^1.1.13",
- "possible-typed-array-names": "^1.0.0",
- "reflect.getprototypeof": "^1.0.6"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/typescript": {
- "version": "5.9.3",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
- "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
- "dev": true,
- "license": "Apache-2.0",
- "bin": {
- "tsc": "bin/tsc",
- "tsserver": "bin/tsserver"
- },
- "engines": {
- "node": ">=14.17"
- }
- },
- "node_modules/typescript-eslint": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.55.0.tgz",
- "integrity": "sha512-HE4wj+r5lmDVS9gdaN0/+iqNvPZwGfnJ5lZuz7s5vLlg9ODw0bIiiETaios9LvFI1U94/VBXGm3CB2Y5cNFMpw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/eslint-plugin": "8.55.0",
- "@typescript-eslint/parser": "8.55.0",
- "@typescript-eslint/typescript-estree": "8.55.0",
- "@typescript-eslint/utils": "8.55.0"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^8.57.0 || ^9.0.0",
- "typescript": ">=4.8.4 <6.0.0"
- }
- },
- "node_modules/unbox-primitive": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz",
- "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.3",
- "has-bigints": "^1.0.2",
- "has-symbols": "^1.1.0",
- "which-boxed-primitive": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/undici-types": {
- "version": "6.21.0",
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
- "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/unrs-resolver": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.11.1.tgz",
- "integrity": "sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==",
- "dev": true,
- "hasInstallScript": true,
- "license": "MIT",
- "dependencies": {
- "napi-postinstall": "^0.3.0"
- },
- "funding": {
- "url": "https://opencollective.com/unrs-resolver"
- },
- "optionalDependencies": {
- "@unrs/resolver-binding-android-arm-eabi": "1.11.1",
- "@unrs/resolver-binding-android-arm64": "1.11.1",
- "@unrs/resolver-binding-darwin-arm64": "1.11.1",
- "@unrs/resolver-binding-darwin-x64": "1.11.1",
- "@unrs/resolver-binding-freebsd-x64": "1.11.1",
- "@unrs/resolver-binding-linux-arm-gnueabihf": "1.11.1",
- "@unrs/resolver-binding-linux-arm-musleabihf": "1.11.1",
- "@unrs/resolver-binding-linux-arm64-gnu": "1.11.1",
- "@unrs/resolver-binding-linux-arm64-musl": "1.11.1",
- "@unrs/resolver-binding-linux-ppc64-gnu": "1.11.1",
- "@unrs/resolver-binding-linux-riscv64-gnu": "1.11.1",
- "@unrs/resolver-binding-linux-riscv64-musl": "1.11.1",
- "@unrs/resolver-binding-linux-s390x-gnu": "1.11.1",
- "@unrs/resolver-binding-linux-x64-gnu": "1.11.1",
- "@unrs/resolver-binding-linux-x64-musl": "1.11.1",
- "@unrs/resolver-binding-wasm32-wasi": "1.11.1",
- "@unrs/resolver-binding-win32-arm64-msvc": "1.11.1",
- "@unrs/resolver-binding-win32-ia32-msvc": "1.11.1",
- "@unrs/resolver-binding-win32-x64-msvc": "1.11.1"
- }
- },
- "node_modules/update-browserslist-db": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
- "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "escalade": "^3.2.0",
- "picocolors": "^1.1.1"
- },
- "bin": {
- "update-browserslist-db": "cli.js"
- },
- "peerDependencies": {
- "browserslist": ">= 4.21.0"
- }
- },
- "node_modules/uri-js": {
- "version": "4.4.1",
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
- "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "punycode": "^2.1.0"
- }
- },
- "node_modules/use-callback-ref": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.3.tgz",
- "integrity": "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/use-sidecar": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.3.tgz",
- "integrity": "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==",
- "license": "MIT",
- "dependencies": {
- "detect-node-es": "^1.1.0",
- "tslib": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/use-sync-external-store": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz",
- "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==",
- "license": "MIT",
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
- }
- },
- "node_modules/utility-types": {
- "version": "3.11.0",
- "resolved": "https://registry.npmjs.org/utility-types/-/utility-types-3.11.0.tgz",
- "integrity": "sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==",
- "license": "MIT",
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/victory-vendor": {
- "version": "37.3.6",
- "resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-37.3.6.tgz",
- "integrity": "sha512-SbPDPdDBYp+5MJHhBCAyI7wKM3d5ivekigc2Dk2s7pgbZ9wIgIBYGVw4zGHBml/qTFbexrofXW6Gu4noGxrOwQ==",
- "license": "MIT AND ISC",
- "dependencies": {
- "@types/d3-array": "^3.0.3",
- "@types/d3-ease": "^3.0.0",
- "@types/d3-interpolate": "^3.0.1",
- "@types/d3-scale": "^4.0.2",
- "@types/d3-shape": "^3.1.0",
- "@types/d3-time": "^3.0.0",
- "@types/d3-timer": "^3.0.0",
- "d3-array": "^3.1.6",
- "d3-ease": "^3.0.1",
- "d3-interpolate": "^3.0.1",
- "d3-scale": "^4.0.2",
- "d3-shape": "^3.1.0",
- "d3-time": "^3.0.0",
- "d3-timer": "^3.0.1"
- }
- },
- "node_modules/webgl-constants": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/webgl-constants/-/webgl-constants-1.1.1.tgz",
- "integrity": "sha512-LkBXKjU5r9vAW7Gcu3T5u+5cvSvh5WwINdr0C+9jpzVB41cjQAP5ePArDtk/WHYdVj0GefCgM73BA7FlIiNtdg=="
- },
- "node_modules/webgl-sdf-generator": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/webgl-sdf-generator/-/webgl-sdf-generator-1.1.1.tgz",
- "integrity": "sha512-9Z0JcMTFxeE+b2x1LJTdnaT8rT8aEp7MVxkNwoycNmJWwPdzoXzMh0BjJSh/AEFP+KPYZUli814h8bJZFIZ2jA==",
- "license": "MIT"
- },
- "node_modules/which": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
- "license": "ISC",
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/which-boxed-primitive": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz",
- "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-bigint": "^1.1.0",
- "is-boolean-object": "^1.2.1",
- "is-number-object": "^1.1.1",
- "is-string": "^1.1.1",
- "is-symbol": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/which-builtin-type": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz",
- "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.2",
- "function.prototype.name": "^1.1.6",
- "has-tostringtag": "^1.0.2",
- "is-async-function": "^2.0.0",
- "is-date-object": "^1.1.0",
- "is-finalizationregistry": "^1.1.0",
- "is-generator-function": "^1.0.10",
- "is-regex": "^1.2.1",
- "is-weakref": "^1.0.2",
- "isarray": "^2.0.5",
- "which-boxed-primitive": "^1.1.0",
- "which-collection": "^1.0.2",
- "which-typed-array": "^1.1.16"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/which-collection": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz",
- "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-map": "^2.0.3",
- "is-set": "^2.0.3",
- "is-weakmap": "^2.0.2",
- "is-weakset": "^2.0.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/which-typed-array": {
- "version": "1.1.20",
- "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.20.tgz",
- "integrity": "sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "available-typed-arrays": "^1.0.7",
- "call-bind": "^1.0.8",
- "call-bound": "^1.0.4",
- "for-each": "^0.3.5",
- "get-proto": "^1.0.1",
- "gopd": "^1.2.0",
- "has-tostringtag": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/word-wrap": {
- "version": "1.2.5",
- "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
- "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/yallist": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
- "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/yocto-queue": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/zod": {
- "version": "4.3.6",
- "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz",
- "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/colinhacks"
- }
- },
- "node_modules/zod-validation-error": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz",
- "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18.0.0"
- },
- "peerDependencies": {
- "zod": "^3.25.0 || ^4.0.0"
- }
- },
- "node_modules/zustand": {
- "version": "5.0.11",
- "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.11.tgz",
- "integrity": "sha512-fdZY+dk7zn/vbWNCYmzZULHRrss0jx5pPFiOuMZ/5HJN6Yv3u+1Wswy/4MpZEkEGhtNH+pwxZB8OKgUBPzYAGg==",
- "license": "MIT",
- "engines": {
- "node": ">=12.20.0"
- },
- "peerDependencies": {
- "@types/react": ">=18.0.0",
- "immer": ">=9.0.6",
- "react": ">=18.0.0",
- "use-sync-external-store": ">=1.2.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "immer": {
- "optional": true
- },
- "react": {
- "optional": true
- },
- "use-sync-external-store": {
- "optional": true
- }
- }
- }
- }
-}
diff --git a/dashboard/package.json b/dashboard/package.json
deleted file mode 100644
index 2226851..0000000
--- a/dashboard/package.json
+++ /dev/null
@@ -1,51 +0,0 @@
-{
- "name": "dashboard",
- "version": "0.1.0",
- "private": true,
- "scripts": {
- "dev": "next dev",
- "build": "next build",
- "start": "next start",
- "lint": "eslint"
- },
- "dependencies": {
- "@radix-ui/react-accordion": "^1.2.12",
- "@radix-ui/react-alert-dialog": "^1.1.15",
- "@radix-ui/react-collapsible": "^1.1.12",
- "@radix-ui/react-dialog": "^1.1.15",
- "@radix-ui/react-select": "^2.2.6",
- "@radix-ui/react-slider": "^1.3.6",
- "@radix-ui/react-slot": "^1.2.4",
- "@radix-ui/react-tabs": "^1.1.13",
- "@radix-ui/react-tooltip": "^1.2.8",
- "@react-three/drei": "^10.7.7",
- "@react-three/fiber": "^9.5.0",
- "@react-three/postprocessing": "^3.0.4",
- "@types/three": "^0.182.0",
- "class-variance-authority": "^0.7.1",
- "clsx": "^2.1.1",
- "d3-force": "^3.0.0",
- "framer-motion": "^12.34.0",
- "lucide-react": "^0.563.0",
- "next": "16.1.6",
- "pixi.js": "^8.16.0",
- "react": "19.2.3",
- "react-dom": "19.2.3",
- "recharts": "^3.7.0",
- "swr": "^2.4.0",
- "tailwind-merge": "^3.4.0",
- "three": "^0.172.0",
- "zustand": "^5.0.11"
- },
- "devDependencies": {
- "@tailwindcss/postcss": "^4",
- "@types/d3-force": "^3.0.10",
- "@types/node": "^20",
- "@types/react": "^19",
- "@types/react-dom": "^19",
- "eslint": "^9",
- "eslint-config-next": "16.1.6",
- "tailwindcss": "^4",
- "typescript": "^5"
- }
-}
diff --git a/dashboard/postcss.config.mjs b/dashboard/postcss.config.mjs
deleted file mode 100644
index 61e3684..0000000
--- a/dashboard/postcss.config.mjs
+++ /dev/null
@@ -1,7 +0,0 @@
-const config = {
- plugins: {
- "@tailwindcss/postcss": {},
- },
-};
-
-export default config;
diff --git a/dashboard/public/file.svg b/dashboard/public/file.svg
deleted file mode 100644
index 004145c..0000000
--- a/dashboard/public/file.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/dashboard/public/globe.svg b/dashboard/public/globe.svg
deleted file mode 100644
index 567f17b..0000000
--- a/dashboard/public/globe.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/dashboard/public/next.svg b/dashboard/public/next.svg
deleted file mode 100644
index 5174b28..0000000
--- a/dashboard/public/next.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/dashboard/public/vercel.svg b/dashboard/public/vercel.svg
deleted file mode 100644
index 7705396..0000000
--- a/dashboard/public/vercel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/dashboard/public/window.svg b/dashboard/public/window.svg
deleted file mode 100644
index b2b2a44..0000000
--- a/dashboard/public/window.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/dashboard/src/app/categories/page.tsx b/dashboard/src/app/categories/page.tsx
deleted file mode 100644
index 1c9c301..0000000
--- a/dashboard/src/app/categories/page.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import { redirect } from "next/navigation";
-
-export default function CategoriesRedirect() {
- redirect("/cortex");
-}
diff --git a/dashboard/src/app/conflicts/page.tsx b/dashboard/src/app/conflicts/page.tsx
deleted file mode 100644
index 4677335..0000000
--- a/dashboard/src/app/conflicts/page.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import { redirect } from "next/navigation";
-
-export default function ConflictsRedirect() {
- redirect("/synapses");
-}
diff --git a/dashboard/src/app/constellation/page.tsx b/dashboard/src/app/constellation/page.tsx
deleted file mode 100644
index d7ffe61..0000000
--- a/dashboard/src/app/constellation/page.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import { redirect } from "next/navigation";
-
-export default function ConstellationRedirect() {
- redirect("/cortex");
-}
diff --git a/dashboard/src/app/cortex/page.tsx b/dashboard/src/app/cortex/page.tsx
deleted file mode 100644
index bb14909..0000000
--- a/dashboard/src/app/cortex/page.tsx
+++ /dev/null
@@ -1,36 +0,0 @@
-"use client";
-
-import dynamic from "next/dynamic";
-import { ClusterToolbar } from "@/components/clusters/cluster-toolbar";
-
-const ClusterCanvas = dynamic(
- () => import("@/components/clusters/cluster-canvas").then(m => ({ default: m.ClusterCanvas })),
- {
- ssr: false,
- loading: () => (
-
- ),
- }
-);
-
-export default function CortexPage() {
- return (
-
- {/* Toolbar */}
-
-
-
Cortex
-
Cluster explorer — regroup memories by any dimension
-
-
-
-
- {/* Canvas */}
-
-
-
-
- );
-}
diff --git a/dashboard/src/app/dashboard/page.tsx b/dashboard/src/app/dashboard/page.tsx
deleted file mode 100644
index 61930d8..0000000
--- a/dashboard/src/app/dashboard/page.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import { redirect } from "next/navigation";
-
-export default function DashboardRedirect() {
- redirect("/");
-}
diff --git a/dashboard/src/app/favicon.ico b/dashboard/src/app/favicon.ico
deleted file mode 100644
index 718d6fe..0000000
Binary files a/dashboard/src/app/favicon.ico and /dev/null differ
diff --git a/dashboard/src/app/globals.css b/dashboard/src/app/globals.css
deleted file mode 100644
index f3d77de..0000000
--- a/dashboard/src/app/globals.css
+++ /dev/null
@@ -1,128 +0,0 @@
-@import "tailwindcss";
-
-@theme inline {
- --color-background: #050510;
- --color-foreground: #e2e8f0;
- --color-muted: #12122a;
- --color-muted-foreground: #94a3b8;
- --color-border: rgba(124, 58, 237, 0.15);
- --color-ring: #7c3aed;
- --color-sml: #22d3ee;
- --color-lml: #fbbf24;
- --color-brand: #7c3aed;
- --color-destructive: #ef4444;
- --color-success: #22c55e;
- --color-episodic: #7c3aed;
- --color-semantic: #06d6a0;
- --color-s-fast: #ef4444;
- --color-s-mid: #f59e0b;
- --color-s-slow: #22c55e;
- --color-void: #050510;
- --color-cortex: #0a0a1a;
- --color-synapse: #12122a;
- --color-membrane: #1a1a3a;
- --color-neural-glow: #7c3aed40;
- --color-synapse-glow: #22d3ee30;
- --font-sans: var(--font-geist-sans);
- --font-mono: var(--font-geist-mono);
-}
-
-body {
- background: var(--color-void);
- color: var(--color-foreground);
- font-family: var(--font-sans), system-ui, sans-serif;
-}
-
-/* Glass-morphism utility */
-.glass {
- background: rgba(26, 26, 58, 0.6);
- backdrop-filter: blur(12px);
- -webkit-backdrop-filter: blur(12px);
- border: 1px solid rgba(124, 58, 237, 0.15);
- border-radius: 12px;
-}
-
-.glass-subtle {
- background: rgba(18, 18, 42, 0.5);
- backdrop-filter: blur(8px);
- -webkit-backdrop-filter: blur(8px);
- border: 1px solid rgba(124, 58, 237, 0.08);
- border-radius: 8px;
-}
-
-/* Neural glow effects */
-.glow-episodic {
- box-shadow: 0 0 20px rgba(124, 58, 237, 0.3), 0 0 60px rgba(124, 58, 237, 0.1);
-}
-
-.glow-semantic {
- box-shadow: 0 0 20px rgba(6, 214, 160, 0.3), 0 0 60px rgba(6, 214, 160, 0.1);
-}
-
-.glow-sml {
- box-shadow: 0 0 20px rgba(34, 211, 238, 0.3), 0 0 60px rgba(34, 211, 238, 0.1);
-}
-
-.glow-lml {
- box-shadow: 0 0 20px rgba(251, 191, 36, 0.3), 0 0 60px rgba(251, 191, 36, 0.1);
-}
-
-/* Pulse animation */
-@keyframes neural-pulse {
- 0%, 100% { opacity: 0.6; transform: scale(1); }
- 50% { opacity: 1; transform: scale(1.05); }
-}
-
-.animate-neural-pulse {
- animation: neural-pulse 3s ease-in-out infinite;
-}
-
-@keyframes breathe {
- 0%, 100% { opacity: 0.4; }
- 50% { opacity: 0.8; }
-}
-
-.animate-breathe {
- animation: breathe 4s ease-in-out infinite;
-}
-
-/* Scrollbar styling */
-::-webkit-scrollbar {
- width: 6px;
- height: 6px;
-}
-
-::-webkit-scrollbar-track {
- background: transparent;
-}
-
-::-webkit-scrollbar-thumb {
- background: rgba(124, 58, 237, 0.3);
- border-radius: 3px;
-}
-
-::-webkit-scrollbar-thumb:hover {
- background: rgba(124, 58, 237, 0.5);
-}
-
-/* Recharts dark theme overrides */
-.recharts-text {
- fill: #94a3b8 !important;
-}
-
-.recharts-cartesian-grid line {
- stroke: rgba(124, 58, 237, 0.08) !important;
-}
-
-.recharts-tooltip-wrapper .recharts-default-tooltip {
- background: rgba(26, 26, 58, 0.9) !important;
- border: 1px solid rgba(124, 58, 237, 0.2) !important;
- border-radius: 8px !important;
- backdrop-filter: blur(8px);
-}
-
-/* Selection color */
-::selection {
- background: rgba(124, 58, 237, 0.4);
- color: #e2e8f0;
-}
diff --git a/dashboard/src/app/hippocampus/page.tsx b/dashboard/src/app/hippocampus/page.tsx
deleted file mode 100644
index ad01416..0000000
--- a/dashboard/src/app/hippocampus/page.tsx
+++ /dev/null
@@ -1,39 +0,0 @@
-"use client";
-
-import { SceneCorridor } from "@/components/hippocampus/scene-corridor";
-import { SleepVisualizer } from "@/components/hippocampus/sleep-visualizer";
-import { TraceCascadeViz } from "@/components/hippocampus/trace-cascade-viz";
-import { ForgettingDashboard } from "@/components/hippocampus/forgetting-dashboard";
-import { DecaySparkline } from "@/components/dashboard/decay-sparkline";
-import { useDecayLog } from "@/lib/hooks/use-decay-log";
-
-export default function HippocampusPage() {
- const { data: decayLog } = useDecayLog();
-
- return (
-
-
-
Hippocampus
-
Memory lifecycle — scenes, sleep cycles, distillation, and forgetting
-
-
- {/* Scene corridor */}
-
-
Memory Palace — Scene Timeline
-
-
-
- {/* Sleep cycle visualizer */}
-
-
- {/* Trace cascade + Decay */}
-
-
-
-
-
- {/* Forgetting dashboard */}
-
-
- );
-}
diff --git a/dashboard/src/app/layout.tsx b/dashboard/src/app/layout.tsx
deleted file mode 100644
index 4916767..0000000
--- a/dashboard/src/app/layout.tsx
+++ /dev/null
@@ -1,37 +0,0 @@
-import type { Metadata } from "next";
-import { Geist, Geist_Mono } from "next/font/google";
-import "./globals.css";
-import { NeuralSidebar } from "@/components/layout/neural-sidebar";
-import { TopBar } from "@/components/layout/top-bar";
-import { InspectorWrapper } from "@/components/memory-inspector/inspector-panel";
-
-const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"] });
-const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"] });
-
-export const metadata: Metadata = {
- title: "Engram — Neural Memory",
- description: "Living neural memory visualizer",
-};
-
-export default function RootLayout({
- children,
-}: {
- children: React.ReactNode;
-}) {
- return (
-
-
-
-
-
-
-
- {children}
-
-
-
-
-
-
- );
-}
diff --git a/dashboard/src/app/memories/page.tsx b/dashboard/src/app/memories/page.tsx
deleted file mode 100644
index 0ec3d27..0000000
--- a/dashboard/src/app/memories/page.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import { redirect } from "next/navigation";
-
-export default function MemoriesRedirect() {
- redirect("/cortex");
-}
diff --git a/dashboard/src/app/page.tsx b/dashboard/src/app/page.tsx
deleted file mode 100644
index 9f6318a..0000000
--- a/dashboard/src/app/page.tsx
+++ /dev/null
@@ -1,176 +0,0 @@
-"use client";
-
-import dynamic from "next/dynamic";
-import { useStats } from "@/lib/hooks/use-stats";
-import { useConflicts } from "@/lib/hooks/use-conflicts";
-import { useStaging } from "@/lib/hooks/use-staging";
-import { useDecayLog } from "@/lib/hooks/use-decay-log";
-import { StatCardsRow } from "@/components/dashboard/stat-cards-row";
-import { LayerDonut } from "@/components/dashboard/layer-donut";
-import { CategoriesBar } from "@/components/dashboard/categories-bar";
-import { DecaySparkline } from "@/components/dashboard/decay-sparkline";
-import { useScrollProgress } from "@/lib/hooks/use-scroll-progress";
-import { NEURAL } from "@/lib/utils/neural-palette";
-
-const BrainCanvas = dynamic(() => import("@/components/brain/brain-canvas").then(m => ({ default: m.BrainCanvas })), {
- ssr: false,
- loading: () => (
-
-
Loading neural mesh...
-
- ),
-});
-
-function ScrollSection({
- children,
- className,
- id,
-}: {
- children: React.ReactNode;
- className?: string;
- id?: string;
-}) {
- return (
-
- );
-}
-
-export default function BrainHeroPage() {
- const scrollProgress = useScrollProgress();
- const { data: stats } = useStats();
- const { data: conflicts } = useConflicts("UNRESOLVED");
- const { data: staging } = useStaging("PENDING");
- const { data: decayLog } = useDecayLog();
-
- const totalMemories = stats?.total_memories ?? 0;
- const smlCount = stats?.sml_count ?? 0;
- const lmlCount = stats?.lml_count ?? 0;
- const categoryCount = stats ? Object.keys(stats.categories).length : 0;
- const conflictCount = conflicts?.conflicts?.length ?? 0;
- const pendingCount = staging?.commits?.length ?? 0;
-
- return (
-
- {/* Fixed 3D brain background */}
-
-
-
-
- {/* Scroll sections overlay */}
-
- {/* Section 0: Brain overview + floating stats */}
-
-
-
-
- Neural Memory
-
-
- {totalMemories} memories across {categoryCount} categories
-
-
-
-
-
-
-
-
- {/* Section 1: Layer split — SML vs LML */}
-
-
-
-
-
Short-Term Memory
-
{smlCount}
-
Active in SML — fast recall, rapid decay
-
-
0 ? `${(smlCount / totalMemories) * 100}%` : '0%',
- backgroundColor: NEURAL.sml,
- boxShadow: `0 0 8px ${NEURAL.sml}`,
- }}
- />
-
-
-
-
Long-Term Memory
-
{lmlCount}
-
Consolidated in LML — durable, stable
-
-
0 ? `${(lmlCount / totalMemories) * 100}%` : '0%',
- backgroundColor: NEURAL.lml,
- boxShadow: `0 0 8px ${NEURAL.lml}`,
- }}
- />
-
-
-
-
-
-
- {/* Section 2: Categories + Distribution */}
-
-
-
-
Category Clusters
-
How memories organize into knowledge regions
-
-
-
-
-
-
-
-
- {/* Section 3: Decay landscape */}
-
-
-
-
Decay Landscape
-
Memory strength fading over time — the rhythm of forgetting
-
-
-
-
-
-
-
- {/* Section 4: CTA scroll end */}
-
-
-
- Explore the Cortex
-
-
- Dive into the cluster explorer for full interactive visualization
-
-
- Open Cortex
-
-
-
-
-
- );
-}
diff --git a/dashboard/src/app/profiles/page.tsx b/dashboard/src/app/profiles/page.tsx
deleted file mode 100644
index f960c3f..0000000
--- a/dashboard/src/app/profiles/page.tsx
+++ /dev/null
@@ -1,103 +0,0 @@
-"use client";
-
-import { useProfiles } from "@/lib/hooks/use-profiles";
-import { IdentityRings } from "@/components/profiles/identity-rings";
-import { EmptyState } from "@/components/shared/empty-state";
-import { Users } from "lucide-react";
-import { NEURAL } from "@/lib/utils/neural-palette";
-
-export default function ProfilesPage() {
- const { data, isLoading } = useProfiles();
- const profiles = data?.profiles ?? [];
-
- return (
-
-
-
Identity Cortex
-
- Concentric rings — self at center, contacts in middle, entities at outer edge
-
-
-
- {isLoading ? (
-
-
Mapping identities...
-
- ) : profiles.length === 0 ? (
-
- ) : (
- <>
-
-
- {/* Profile list */}
-
- {profiles.map((profile) => {
- const typeColors: Record
= {
- self: NEURAL.lml,
- contact: NEURAL.sml,
- entity: NEURAL.semantic,
- };
- const color = typeColors[profile.type] || NEURAL.episodic;
-
- return (
-
-
-
- {profile.name.charAt(0).toUpperCase()}
-
-
-
{profile.name}
-
- {profile.type}
-
-
-
-
- {profile.facts && profile.facts.length > 0 && (
-
-
Facts
-
- {profile.facts.slice(0, 3).map((fact, i) => (
- {fact}
- ))}
- {profile.facts.length > 3 && (
- +{profile.facts.length - 3} more
- )}
-
-
- )}
-
- {profile.relationships && profile.relationships.length > 0 && (
-
-
Connections
-
- {profile.relationships.map((rel, i) => (
-
- {rel.target_name}
-
- ))}
-
-
- )}
-
- );
- })}
-
- >
- )}
-
- );
-}
diff --git a/dashboard/src/app/scenes/page.tsx b/dashboard/src/app/scenes/page.tsx
deleted file mode 100644
index bb3c339..0000000
--- a/dashboard/src/app/scenes/page.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import { redirect } from "next/navigation";
-
-export default function ScenesRedirect() {
- redirect("/hippocampus");
-}
diff --git a/dashboard/src/app/staging/page.tsx b/dashboard/src/app/staging/page.tsx
deleted file mode 100644
index 9e2f6b4..0000000
--- a/dashboard/src/app/staging/page.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import { redirect } from "next/navigation";
-
-export default function StagingRedirect() {
- redirect("/synapses");
-}
diff --git a/dashboard/src/app/synapses/page.tsx b/dashboard/src/app/synapses/page.tsx
deleted file mode 100644
index 15b6c0c..0000000
--- a/dashboard/src/app/synapses/page.tsx
+++ /dev/null
@@ -1,99 +0,0 @@
-"use client";
-
-import dynamic from "next/dynamic";
-import { useConflicts } from "@/lib/hooks/use-conflicts";
-import { useStaging } from "@/lib/hooks/use-staging";
-import { ConflictSynapse } from "@/components/synapses/conflict-synapse";
-import { StagingSynapse } from "@/components/synapses/staging-synapse";
-import { EmptyState } from "@/components/shared/empty-state";
-import { AlertTriangle, GitBranch, Cable } from "lucide-react";
-import { useState } from "react";
-import { cn } from "@/lib/utils/format";
-import { NEURAL } from "@/lib/utils/neural-palette";
-
-const SynapseGraph = dynamic(
- () => import("@/components/synapses/synapse-graph").then(m => ({ default: m.SynapseGraph })),
- { ssr: false, loading: () => }
-);
-
-type Tab = "graph" | "conflicts" | "staging";
-
-export default function SynapsesPage() {
- const [tab, setTab] = useState("graph");
- const { data: conflictsData, mutate: mutateConflicts } = useConflicts();
- const { data: stagingData, mutate: mutateStaging } = useStaging();
-
- const conflicts = conflictsData?.conflicts ?? [];
- const commits = stagingData?.commits ?? [];
- const unresolvedCount = conflicts.filter(c => !c.resolution).length;
- const pendingCount = commits.filter(c => c.status === "PENDING").length;
-
- return (
-
- {/* Header */}
-
-
-
Synapses
-
Connections, conflicts, and staging proposals
-
-
- {([
- { id: "graph" as Tab, label: "Graph", icon: Cable },
- { id: "conflicts" as Tab, label: `Conflicts${unresolvedCount > 0 ? ` (${unresolvedCount})` : ''}`, icon: AlertTriangle },
- { id: "staging" as Tab, label: `Staging${pendingCount > 0 ? ` (${pendingCount})` : ''}`, icon: GitBranch },
- ]).map(({ id, label, icon: Icon }) => (
- setTab(id)}
- className={cn(
- "flex items-center gap-1.5 rounded-lg px-3 py-1.5 text-xs font-medium transition-all",
- tab === id ? "text-purple-300" : "text-slate-500 hover:text-slate-300"
- )}
- style={tab === id ? { background: 'rgba(124, 58, 237, 0.15)' } : undefined}
- >
-
- {label}
-
- ))}
-
-
-
- {/* Content */}
-
- {tab === "graph" && (
-
-
-
- )}
-
- {tab === "conflicts" && (
-
- {conflicts.length === 0 ? (
-
- ) : (
-
- {conflicts.map(c => (
-
- ))}
-
- )}
-
- )}
-
- {tab === "staging" && (
-
- {commits.length === 0 ? (
-
- ) : (
-
- {commits.map(c => (
-
- ))}
-
- )}
-
- )}
-
-
- );
-}
diff --git a/dashboard/src/components/brain/brain-canvas.tsx b/dashboard/src/components/brain/brain-canvas.tsx
deleted file mode 100644
index d4d4e32..0000000
--- a/dashboard/src/components/brain/brain-canvas.tsx
+++ /dev/null
@@ -1,216 +0,0 @@
-"use client";
-
-import { Canvas } from "@react-three/fiber";
-import { OrbitControls, Float } from "@react-three/drei";
-import { EffectComposer, Bloom } from "@react-three/postprocessing";
-import { Suspense, useMemo, useRef } from "react";
-import * as THREE from "three";
-import { useConstellation } from "@/lib/hooks/use-constellation";
-import { NEURAL } from "@/lib/utils/neural-palette";
-import { useFrame } from "@react-three/fiber";
-
-function BrainParticles({ scrollProgress }: { scrollProgress: number }) {
- const { data } = useConstellation();
- const meshRef = useRef(null);
- const timeRef = useRef(0);
-
- const { count, positions, colors, scales } = useMemo(() => {
- const nodes = data?.nodes || [];
- // Use real data if available, otherwise generate placeholder particles
- const particleCount = nodes.length > 0 ? nodes.length : 200;
- const pos = new Float32Array(particleCount * 3);
- const col = new Float32Array(particleCount * 3);
- const scl = new Float32Array(particleCount);
-
- if (nodes.length > 0) {
- nodes.forEach((node, i) => {
- // Map to brain-like 3D positions
- const angle = (i / nodes.length) * Math.PI * 2;
- const radius = 2 + Math.random() * 2;
- const y = (Math.random() - 0.5) * 3;
- pos[i * 3] = Math.cos(angle) * radius + (Math.random() - 0.5) * 0.5;
- pos[i * 3 + 1] = y;
- pos[i * 3 + 2] = Math.sin(angle) * radius + (Math.random() - 0.5) * 0.5;
-
- // Color based on layer
- const color = new THREE.Color(node.layer === "sml" ? NEURAL.sml : NEURAL.lml);
- col[i * 3] = color.r;
- col[i * 3 + 1] = color.g;
- col[i * 3 + 2] = color.b;
-
- scl[i] = 0.03 + node.strength * 0.08;
- });
- } else {
- // Placeholder brain shape
- for (let i = 0; i < particleCount; i++) {
- const theta = Math.random() * Math.PI * 2;
- const phi = Math.acos(2 * Math.random() - 1);
- const r = 2.5 + (Math.random() - 0.5) * 1.5;
-
- // Brain-like shape: wider at sides, narrower at top/bottom
- const xScale = 1.3;
- const yScale = 1.0;
- const zScale = 1.1;
-
- pos[i * 3] = r * Math.sin(phi) * Math.cos(theta) * xScale;
- pos[i * 3 + 1] = r * Math.cos(phi) * yScale;
- pos[i * 3 + 2] = r * Math.sin(phi) * Math.sin(theta) * zScale;
-
- const color = new THREE.Color(i % 3 === 0 ? NEURAL.episodic : i % 3 === 1 ? NEURAL.sml : NEURAL.semantic);
- col[i * 3] = color.r;
- col[i * 3 + 1] = color.g;
- col[i * 3 + 2] = color.b;
-
- scl[i] = 0.02 + Math.random() * 0.06;
- }
- }
-
- return { count: particleCount, positions: pos, colors: col, scales: scl };
- }, [data]);
-
- const dummy = useMemo(() => new THREE.Object3D(), []);
-
- useFrame((_, delta) => {
- if (!meshRef.current) return;
- timeRef.current += delta;
-
- // Hemisphere split based on scroll
- const splitAmount = Math.max(0, (scrollProgress - 0.15) / 0.2) * 1.5;
- // Rotation slowdown as you scroll
- const rotSpeed = 0.15 * (1 - scrollProgress * 0.8);
-
- for (let i = 0; i < count; i++) {
- const x = positions[i * 3];
- const y = positions[i * 3 + 1];
- const z = positions[i * 3 + 2];
-
- // Breathing effect
- const breathe = 1 + Math.sin(timeRef.current * 0.5 + i * 0.1) * 0.03;
-
- // Split hemispheres (left/right based on x position)
- const splitOffset = x > 0 ? splitAmount : -splitAmount;
-
- dummy.position.set(
- (x + splitOffset) * breathe,
- y * breathe,
- z * breathe
- );
- dummy.scale.setScalar(scales[i] * (1 + Math.sin(timeRef.current + i) * 0.2));
- dummy.rotation.y = timeRef.current * rotSpeed;
- dummy.updateMatrix();
- meshRef.current.setMatrixAt(i, dummy.matrix);
- }
- meshRef.current.instanceMatrix.needsUpdate = true;
- });
-
- return (
-
-
-
-
-
-
- );
-}
-
-function BrainPathways({ scrollProgress }: { scrollProgress: number }) {
- const { data } = useConstellation();
- const linesRef = useRef(null);
-
- const geometry = useMemo(() => {
- const edges = data?.edges || [];
- const nodes = data?.nodes || [];
- if (edges.length === 0 || nodes.length === 0) return null;
-
- const nodeMap = new Map(nodes.map((n, i) => [n.id, i]));
- const positions: number[] = [];
- const colors: number[] = [];
-
- for (const edge of edges.slice(0, 200)) {
- const si = nodeMap.get(edge.source);
- const ti = nodeMap.get(edge.target);
- if (si === undefined || ti === undefined) continue;
-
- // Generate rough 3D positions matching BrainParticles
- for (const idx of [si, ti]) {
- const angle = (idx / nodes.length) * Math.PI * 2;
- const radius = 2 + ((idx * 7919) % 100) / 100 * 2;
- const y = (((idx * 6271) % 100) / 100 - 0.5) * 3;
- positions.push(
- Math.cos(angle) * radius,
- y,
- Math.sin(angle) * radius
- );
- }
-
- const edgeColor = new THREE.Color(edge.type === "category" ? NEURAL.episodic : NEURAL.sml);
- colors.push(edgeColor.r, edgeColor.g, edgeColor.b);
- colors.push(edgeColor.r, edgeColor.g, edgeColor.b);
- }
-
- if (positions.length === 0) return null;
-
- const geo = new THREE.BufferGeometry();
- geo.setAttribute("position", new THREE.Float32BufferAttribute(positions, 3));
- geo.setAttribute("color", new THREE.Float32BufferAttribute(colors, 3));
- return geo;
- }, [data]);
-
- if (!geometry) return null;
-
- return (
-
-
-
- );
-}
-
-export function BrainCanvas({ scrollProgress }: { scrollProgress: number }) {
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
-}
diff --git a/dashboard/src/components/categories/category-tree.tsx b/dashboard/src/components/categories/category-tree.tsx
deleted file mode 100644
index 3b3d7c3..0000000
--- a/dashboard/src/components/categories/category-tree.tsx
+++ /dev/null
@@ -1,68 +0,0 @@
-"use client";
-
-import { useState } from "react";
-import { ChevronDown, ChevronRight, FolderTree } from "lucide-react";
-import { StrengthIndicator } from "@/components/shared/strength-indicator";
-import type { Category } from "@/lib/types/category";
-import Link from "next/link";
-
-function CategoryNode({ category, depth = 0 }: { category: Category; depth?: number }) {
- const [expanded, setExpanded] = useState(depth < 1);
- const hasChildren = category.children && category.children.length > 0;
-
- return (
-
-
- {hasChildren ? (
-
setExpanded(!expanded)} className="p-0.5">
- {expanded ? (
-
- ) : (
-
- )}
-
- ) : (
-
- )}
-
-
-
-
- {category.name}
-
-
-
- {category.memory_count}
-
-
-
-
-
-
-
- {hasChildren && expanded && (
-
- {category.children!.map((child) => (
-
- ))}
-
- )}
-
- );
-}
-
-export function CategoryTree({ categories }: { categories: Category[] }) {
- return (
-
- {categories.map((cat) => (
-
- ))}
-
- );
-}
diff --git a/dashboard/src/components/clusters/cluster-canvas.tsx b/dashboard/src/components/clusters/cluster-canvas.tsx
deleted file mode 100644
index 5d25a47..0000000
--- a/dashboard/src/components/clusters/cluster-canvas.tsx
+++ /dev/null
@@ -1,171 +0,0 @@
-"use client";
-
-import { useRef, useEffect, useCallback, useMemo } from "react";
-import { Application, Graphics, Text, TextStyle, Container, FederatedPointerEvent } from "pixi.js";
-import { useMemories } from "@/lib/hooks/use-memories";
-import { useClusterStore } from "@/lib/stores/cluster-store";
-import { useInspectorStore } from "@/lib/stores/inspector-store";
-import { computeClusterLayout } from "@/lib/utils/cluster-layout";
-import { NEURAL } from "@/lib/utils/neural-palette";
-import type { Memory } from "@/lib/types/memory";
-
-export function ClusterCanvas() {
- const canvasRef = useRef(null);
- const appRef = useRef(null);
- const { data } = useMemories({ limit: 500 });
- const { dimension, transitioning } = useClusterStore();
- const openInspectorRef = useRef(useInspectorStore.getState().open);
-
- // Keep ref in sync without causing redraws
- useEffect(() => {
- return useInspectorStore.subscribe((s) => {
- openInspectorRef.current = s.open;
- });
- }, []);
-
- const memories = useMemo(() => data?.memories ?? [], [data]);
-
- const draw = useCallback(async () => {
- const canvas = canvasRef.current;
- if (!canvas) return;
-
- // Destroy existing app
- if (appRef.current) {
- appRef.current.destroy(true);
- appRef.current = null;
- }
-
- const app = new Application();
- await app.init({
- canvas,
- resizeTo: canvas.parentElement || undefined,
- backgroundColor: 0x050510,
- antialias: false,
- resolution: Math.min(window.devicePixelRatio || 1, 2),
- autoDensity: true,
- });
- appRef.current = app;
-
- if (memories.length === 0) {
- const text = new Text({
- text: "No memories to display",
- style: new TextStyle({ fontSize: 14, fill: 0x64748b, fontFamily: "system-ui" }),
- });
- text.anchor.set(0.5);
- text.position.set(canvas.clientWidth / 2, canvas.clientHeight / 2);
- app.stage.addChild(text);
- return;
- }
-
- const { clusters, nodes } = computeClusterLayout(
- memories,
- dimension,
- canvas.clientWidth,
- canvas.clientHeight
- );
-
- const clustersContainer = new Container();
- const nodesContainer = new Container();
- app.stage.addChild(clustersContainer);
- app.stage.addChild(nodesContainer);
-
- // Draw cluster boundaries
- for (const cluster of clusters) {
- const gfx = new Graphics();
-
- // Cluster halo
- gfx.circle(cluster.x, cluster.y, cluster.radius * 1.2);
- gfx.fill({ color: parseInt(cluster.color.slice(1), 16), alpha: 0.03 });
-
- // Cluster boundary
- gfx.circle(cluster.x, cluster.y, cluster.radius);
- gfx.stroke({ width: 1, color: parseInt(cluster.color.slice(1), 16), alpha: 0.15 });
-
- clustersContainer.addChild(gfx);
-
- // Cluster label
- const label = new Text({
- text: cluster.label,
- style: new TextStyle({
- fontSize: 11,
- fill: parseInt(cluster.color.slice(1), 16),
- fontFamily: "system-ui",
- fontWeight: "600",
- }),
- });
- label.anchor.set(0.5);
- label.position.set(cluster.x, cluster.y - cluster.radius - 12);
- clustersContainer.addChild(label);
-
- // Count label
- const count = new Text({
- text: `${cluster.memories.length}`,
- style: new TextStyle({
- fontSize: 9,
- fill: 0x64748b,
- fontFamily: "system-ui",
- }),
- });
- count.anchor.set(0.5);
- count.position.set(cluster.x, cluster.y + cluster.radius + 8);
- clustersContainer.addChild(count);
- }
-
- // Draw memory nodes
- const nodeMap = new Map(nodes.map(n => [n.id, n]));
- for (const memory of memories) {
- const nodePos = nodeMap.get(memory.id);
- if (!nodePos) continue;
-
- const clusterColor = clusters[nodePos.clusterIndex]?.color || NEURAL.episodic;
- const radius = 3 + memory.strength * 8;
- const colorHex = parseInt(clusterColor.slice(1), 16);
-
- const gfx = new Graphics();
-
- // Glow
- gfx.circle(0, 0, radius * 2);
- gfx.fill({ color: colorHex, alpha: 0.06 });
-
- // Node
- gfx.circle(0, 0, radius);
- gfx.fill({ color: colorHex, alpha: 0.7 + memory.strength * 0.3 });
-
- gfx.position.set(nodePos.x, nodePos.y);
- gfx.eventMode = "static";
- gfx.cursor = "pointer";
-
- gfx.on("pointerdown", (e: FederatedPointerEvent) => {
- e.stopPropagation();
- openInspectorRef.current(memory.id);
- });
-
- gfx.on("pointerover", () => gfx.scale.set(1.5));
- gfx.on("pointerout", () => gfx.scale.set(1));
-
- nodesContainer.addChild(gfx);
- }
- }, [memories, dimension]);
-
- useEffect(() => {
- draw();
- return () => {
- appRef.current?.destroy(true);
- appRef.current = null;
- };
- }, [draw]);
-
- return (
-
-
-
- );
-}
diff --git a/dashboard/src/components/clusters/cluster-toolbar.tsx b/dashboard/src/components/clusters/cluster-toolbar.tsx
deleted file mode 100644
index c4819d8..0000000
--- a/dashboard/src/components/clusters/cluster-toolbar.tsx
+++ /dev/null
@@ -1,55 +0,0 @@
-"use client";
-
-import { useClusterStore, type ClusterDimension } from "@/lib/stores/cluster-store";
-import { cn } from "@/lib/utils/format";
-import {
- FolderTree,
- Brain,
- Layers,
- Film,
- Sparkles,
- Gauge,
- Clock,
- Users,
-} from "lucide-react";
-import type { LucideIcon } from "lucide-react";
-
-const DIMENSIONS: { id: ClusterDimension; label: string; icon: LucideIcon }[] = [
- { id: "category", label: "Category", icon: FolderTree },
- { id: "memory_type", label: "Type", icon: Brain },
- { id: "layer", label: "Layer", icon: Layers },
- { id: "scene", label: "Scene", icon: Film },
- { id: "echo_depth", label: "Echo", icon: Sparkles },
- { id: "strength", label: "Strength", icon: Gauge },
- { id: "time", label: "Time", icon: Clock },
- { id: "profile", label: "Profile", icon: Users },
-];
-
-export function ClusterToolbar() {
- const { dimension, setDimension, transitioning } = useClusterStore();
-
- return (
-
- {DIMENSIONS.map(({ id, label, icon: Icon }) => (
- setDimension(id)}
- disabled={transitioning}
- className={cn(
- "flex items-center gap-1.5 rounded-lg px-3 py-1.5 text-xs font-medium transition-all disabled:opacity-50",
- dimension === id
- ? "text-purple-300"
- : "text-slate-500 hover:text-slate-300 hover:bg-white/[0.03]"
- )}
- style={dimension === id ? {
- background: 'rgba(124, 58, 237, 0.15)',
- boxShadow: '0 0 12px rgba(124, 58, 237, 0.1)',
- } : undefined}
- >
-
- {label}
-
- ))}
-
- );
-}
diff --git a/dashboard/src/components/conflicts/conflict-card.tsx b/dashboard/src/components/conflicts/conflict-card.tsx
deleted file mode 100644
index d8e705c..0000000
--- a/dashboard/src/components/conflicts/conflict-card.tsx
+++ /dev/null
@@ -1,80 +0,0 @@
-"use client";
-
-import { useState } from "react";
-import { resolveConflict } from "@/lib/api/conflicts";
-import type { Conflict } from "@/lib/types/conflict";
-import { timeAgo } from "@/lib/utils/format";
-
-export function ConflictCard({
- conflict,
- onResolved,
-}: {
- conflict: Conflict;
- onResolved: () => void;
-}) {
- const [loading, setLoading] = useState(false);
-
- const handleResolve = async (resolution: string) => {
- setLoading(true);
- await resolveConflict(conflict.stash_id || conflict.id, resolution);
- setLoading(false);
- onResolved();
- };
-
- return (
-
-
- {conflict.id}
- {timeAgo(conflict.created_at)}
-
-
-
- {/* Existing */}
-
-
- Existing
-
-
- {conflict.existing_content}
-
-
- {/* Proposed */}
-
-
- Proposed
-
-
- {conflict.proposed_content}
-
-
-
-
-
-
- Similarity: {(conflict.similarity * 100).toFixed(0)}%
-
- handleResolve("KEEP_EXISTING")}
- disabled={loading}
- className="rounded-md border border-cyan-200 bg-cyan-50 px-3 py-1.5 text-xs font-medium text-cyan-700 hover:bg-cyan-100 disabled:opacity-50"
- >
- Keep Existing
-
- handleResolve("ACCEPT_PROPOSED")}
- disabled={loading}
- className="rounded-md border border-amber-200 bg-amber-50 px-3 py-1.5 text-xs font-medium text-amber-700 hover:bg-amber-100 disabled:opacity-50"
- >
- Accept Proposed
-
- handleResolve("KEEP_BOTH")}
- disabled={loading}
- className="rounded-md border border-gray-200 px-3 py-1.5 text-xs font-medium text-gray-600 hover:bg-gray-50 disabled:opacity-50"
- >
- Keep Both
-
-
-
- );
-}
diff --git a/dashboard/src/components/constellation/graph-controls.tsx b/dashboard/src/components/constellation/graph-controls.tsx
deleted file mode 100644
index 8d9cc2b..0000000
--- a/dashboard/src/components/constellation/graph-controls.tsx
+++ /dev/null
@@ -1,46 +0,0 @@
-"use client";
-
-import { RotateCcw } from "lucide-react";
-import { useGraphStore } from "@/lib/stores/graph-store";
-
-export function GraphControls() {
- const { showSml, showLml, toggleSml, toggleLml, resetView } = useGraphStore();
-
- return (
-
- );
-}
diff --git a/dashboard/src/components/constellation/graph-legend.tsx b/dashboard/src/components/constellation/graph-legend.tsx
deleted file mode 100644
index db66b8a..0000000
--- a/dashboard/src/components/constellation/graph-legend.tsx
+++ /dev/null
@@ -1,35 +0,0 @@
-"use client";
-
-import { COLORS } from "@/lib/utils/colors";
-
-const LEGEND_ITEMS = [
- { label: "SML Memory", color: COLORS.sml, shape: "circle" as const },
- { label: "LML Memory", color: COLORS.lml, shape: "circle" as const },
- { label: "Scene Link", color: COLORS.scene, shape: "line" as const },
- { label: "Category Link", color: COLORS.category, shape: "line" as const },
-];
-
-export function GraphLegend() {
- return (
-
-
- {LEGEND_ITEMS.map(({ label, color, shape }) => (
-
- {shape === "circle" ? (
-
- ) : (
-
- )}
- {label}
-
- ))}
-
-
- );
-}
diff --git a/dashboard/src/components/constellation/graph-renderer.ts b/dashboard/src/components/constellation/graph-renderer.ts
deleted file mode 100644
index d3e9f76..0000000
--- a/dashboard/src/components/constellation/graph-renderer.ts
+++ /dev/null
@@ -1,134 +0,0 @@
-import { Application, Graphics, Text, TextStyle, Container, FederatedPointerEvent } from "pixi.js";
-import { COLORS } from "@/lib/utils/colors";
-import type { ConstellationNode, ConstellationEdge } from "@/lib/types/constellation";
-
-interface NodePosition {
- id: string;
- x: number;
- y: number;
-}
-
-export class GraphRenderer {
- private app: Application | null = null;
- private nodesContainer: Container = new Container();
- private edgesContainer: Container = new Container();
- private nodes: ConstellationNode[] = [];
- private edges: ConstellationEdge[] = [];
- private nodeGraphics: Map = new Map();
- private positions: Map = new Map();
- private onNodeClick?: (id: string) => void;
-
- async init(canvas: HTMLCanvasElement, onNodeClick?: (id: string) => void) {
- this.onNodeClick = onNodeClick;
- this.app = new Application();
- await this.app.init({
- canvas,
- resizeTo: canvas.parentElement || undefined,
- backgroundColor: 0x050510,
- antialias: true,
- resolution: window.devicePixelRatio || 1,
- autoDensity: true,
- });
- this.app.stage.addChild(this.edgesContainer);
- this.app.stage.addChild(this.nodesContainer);
- }
-
- setData(nodes: ConstellationNode[], edges: ConstellationEdge[]) {
- this.nodes = nodes;
- this.edges = edges;
- }
-
- updatePositions(positions: NodePosition[]) {
- for (const p of positions) {
- this.positions.set(p.id, { x: p.x, y: p.y });
- }
- this.draw();
- }
-
- private draw() {
- // Draw edges
- this.edgesContainer.removeChildren();
- const edgeGfx = new Graphics();
- for (const edge of this.edges) {
- const sPos = this.positions.get(edge.source);
- const tPos = this.positions.get(edge.target);
- if (!sPos || !tPos) continue;
- const color = edge.type === "category" ? 0x7c3aed : 0x22d3ee;
- edgeGfx.moveTo(sPos.x, sPos.y);
- edgeGfx.lineTo(tPos.x, tPos.y);
- edgeGfx.stroke({ width: 0.5, color, alpha: 0.15 });
- }
- this.edgesContainer.addChild(edgeGfx);
-
- // Draw nodes
- this.nodesContainer.removeChildren();
- this.nodeGraphics.clear();
-
- for (const node of this.nodes) {
- const pos = this.positions.get(node.id);
- if (!pos) continue;
-
- const radius = 4 + node.strength * 10;
- const colorHex =
- node.layer === "sml"
- ? parseInt(COLORS.sml.slice(1), 16)
- : parseInt(COLORS.lml.slice(1), 16);
-
- const gfx = new Graphics();
-
- // Glow halo
- gfx.circle(0, 0, radius * 2);
- gfx.fill({ color: colorHex, alpha: 0.08 });
-
- // Main node
- gfx.circle(0, 0, radius);
- gfx.fill({ color: colorHex, alpha: 0.85 });
-
- gfx.position.set(pos.x, pos.y);
- gfx.eventMode = "static";
- gfx.cursor = "pointer";
-
- gfx.on("pointerdown", (e: FederatedPointerEvent) => {
- e.stopPropagation();
- this.onNodeClick?.(node.id);
- });
-
- gfx.on("pointerover", () => {
- gfx.scale.set(1.3);
- });
-
- gfx.on("pointerout", () => {
- gfx.scale.set(1);
- });
-
- this.nodesContainer.addChild(gfx);
- this.nodeGraphics.set(node.id, gfx);
-
- // Label for larger nodes
- if (node.strength > 0.5 && node.label) {
- const label = new Text({
- text: node.label.slice(0, 20),
- style: new TextStyle({
- fontSize: 9,
- fill: 0x94a3b8,
- fontFamily: "system-ui",
- }),
- });
- label.anchor.set(0.5, 0);
- label.position.set(pos.x, pos.y + radius + 3);
- this.nodesContainer.addChild(label);
- }
- }
- }
-
- highlightNode(id: string | null) {
- for (const [nodeId, gfx] of this.nodeGraphics) {
- gfx.alpha = id === null || nodeId === id ? 1 : 0.3;
- }
- }
-
- destroy() {
- this.app?.destroy(true);
- this.app = null;
- }
-}
diff --git a/dashboard/src/components/constellation/memory-graph.tsx b/dashboard/src/components/constellation/memory-graph.tsx
deleted file mode 100644
index d6a23a1..0000000
--- a/dashboard/src/components/constellation/memory-graph.tsx
+++ /dev/null
@@ -1,86 +0,0 @@
-"use client";
-
-import { useRef, useEffect, useCallback } from "react";
-import { GraphRenderer } from "./graph-renderer";
-import { useConstellation } from "@/lib/hooks/use-constellation";
-import { useInspectorStore } from "@/lib/stores/inspector-store";
-import { useGraphStore } from "@/lib/stores/graph-store";
-
-export function MemoryGraph() {
- const canvasRef = useRef(null);
- const rendererRef = useRef(null);
- const workerRef = useRef(null);
- const { data } = useConstellation();
- const openInspector = useInspectorStore((s) => s.open);
- const { showSml, showLml } = useGraphStore();
-
- const handleNodeClick = useCallback(
- (id: string) => {
- openInspector(id);
- },
- [openInspector]
- );
-
- useEffect(() => {
- if (!canvasRef.current || !data) return;
-
- const canvas = canvasRef.current;
- const renderer = new GraphRenderer();
- rendererRef.current = renderer;
-
- // Filter nodes by layer visibility
- const filteredNodes = (data.nodes || []).filter((n) => {
- if (n.layer === "sml" && !showSml) return false;
- if (n.layer === "lml" && !showLml) return false;
- return true;
- });
-
- const filteredIds = new Set(filteredNodes.map((n) => n.id));
- const filteredEdges = (data.edges || []).filter(
- (e) => filteredIds.has(e.source) && filteredIds.has(e.target)
- );
-
- renderer.init(canvas, handleNodeClick).then(() => {
- renderer.setData(filteredNodes, filteredEdges);
-
- // Start force layout in worker
- const worker = new Worker(
- new URL("@/workers/force-layout.worker.ts", import.meta.url)
- );
- workerRef.current = worker;
-
- worker.postMessage({
- type: "init",
- nodes: filteredNodes.map((n) => ({
- id: n.id,
- layer: n.layer,
- strength: n.strength,
- })),
- edges: filteredEdges.map((e) => ({
- source: e.source,
- target: e.target,
- type: e.type,
- })),
- width: canvas.clientWidth,
- height: canvas.clientHeight,
- });
-
- worker.onmessage = (e) => {
- renderer.updatePositions(e.data.nodes);
- };
- });
-
- return () => {
- workerRef.current?.terminate();
- rendererRef.current?.destroy();
- };
- }, [data, showSml, showLml, handleNodeClick]);
-
- return (
-
- );
-}
diff --git a/dashboard/src/components/dashboard/categories-bar.tsx b/dashboard/src/components/dashboard/categories-bar.tsx
deleted file mode 100644
index f26318c..0000000
--- a/dashboard/src/components/dashboard/categories-bar.tsx
+++ /dev/null
@@ -1,62 +0,0 @@
-"use client";
-
-import {
- BarChart,
- Bar,
- XAxis,
- YAxis,
- ResponsiveContainer,
- Tooltip,
-} from "recharts";
-import { COLORS } from "@/lib/utils/colors";
-
-export function CategoriesBar({
- categories,
-}: {
- categories: Record;
-}) {
- const data = Object.entries(categories)
- .sort((a, b) => b[1] - a[1])
- .slice(0, 8)
- .map(([name, count]) => ({ name, count }));
-
- if (data.length === 0) {
- return (
-
-
Top Categories
-
No categories yet
-
- );
- }
-
- return (
-
-
Top Categories
-
-
-
-
-
-
-
-
-
-
-
- );
-}
diff --git a/dashboard/src/components/dashboard/decay-sparkline.tsx b/dashboard/src/components/dashboard/decay-sparkline.tsx
deleted file mode 100644
index 2bf13c8..0000000
--- a/dashboard/src/components/dashboard/decay-sparkline.tsx
+++ /dev/null
@@ -1,69 +0,0 @@
-"use client";
-
-import {
- AreaChart,
- Area,
- XAxis,
- YAxis,
- ResponsiveContainer,
- Tooltip,
-} from "recharts";
-import { COLORS } from "@/lib/utils/colors";
-import type { DecayLogEntry } from "@/lib/api/decay";
-
-export function DecaySparkline({ entries }: { entries: DecayLogEntry[] }) {
- const data = entries.map((e) => ({
- time: new Date(e.timestamp).toLocaleDateString("en-US", {
- month: "short",
- day: "numeric",
- }),
- decayed: e.decayed,
- forgotten: e.forgotten,
- promoted: e.promoted,
- }));
-
- if (data.length === 0) {
- return (
-
-
Decay History
-
No decay data yet
-
- );
- }
-
- return (
-
-
Decay History
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
-}
diff --git a/dashboard/src/components/dashboard/layer-donut.tsx b/dashboard/src/components/dashboard/layer-donut.tsx
deleted file mode 100644
index 1a8651a..0000000
--- a/dashboard/src/components/dashboard/layer-donut.tsx
+++ /dev/null
@@ -1,61 +0,0 @@
-"use client";
-
-import { PieChart, Pie, Cell, ResponsiveContainer, Tooltip, Legend } from "recharts";
-import { COLORS } from "@/lib/utils/colors";
-
-export function LayerDonut({
- smlCount,
- lmlCount,
-}: {
- smlCount: number;
- lmlCount: number;
-}) {
- const data = [
- { name: "SML", value: smlCount },
- { name: "LML", value: lmlCount },
- ];
- const colors = [COLORS.sml, COLORS.lml];
-
- return (
-
-
Layer Distribution
-
-
-
-
- {data.map((_, i) => (
- |
- ))}
-
-
- (
- {value}
- )}
- />
-
-
-
-
- );
-}
diff --git a/dashboard/src/components/dashboard/stat-card.tsx b/dashboard/src/components/dashboard/stat-card.tsx
deleted file mode 100644
index 7a14dd3..0000000
--- a/dashboard/src/components/dashboard/stat-card.tsx
+++ /dev/null
@@ -1,44 +0,0 @@
-"use client";
-
-import type { LucideIcon } from "lucide-react";
-
-export function StatCard({
- label,
- value,
- icon: Icon,
- color = "#7c3aed",
- badge,
-}: {
- label: string;
- value: number | string;
- icon: LucideIcon;
- color?: string;
- badge?: string;
-}) {
- return (
-
-
-
-
-
- {badge && (
-
- {badge}
-
- )}
-
-
{value}
-
{label}
-
- );
-}
diff --git a/dashboard/src/components/dashboard/stat-cards-row.tsx b/dashboard/src/components/dashboard/stat-cards-row.tsx
deleted file mode 100644
index 6eaca29..0000000
--- a/dashboard/src/components/dashboard/stat-cards-row.tsx
+++ /dev/null
@@ -1,70 +0,0 @@
-"use client";
-
-import {
- Brain,
- Zap,
- Shield,
- FolderTree,
- AlertTriangle,
- GitBranch,
-} from "lucide-react";
-import { StatCard } from "./stat-card";
-import { COLORS } from "@/lib/utils/colors";
-
-export function StatCardsRow({
- totalMemories,
- smlCount,
- lmlCount,
- categoryCount,
- conflictCount,
- pendingCount,
-}: {
- totalMemories: number;
- smlCount: number;
- lmlCount: number;
- categoryCount: number;
- conflictCount: number;
- pendingCount: number;
-}) {
- return (
-
-
-
-
-
- 0 ? String(conflictCount) : undefined}
- />
-
-
- );
-}
diff --git a/dashboard/src/components/hippocampus/forgetting-dashboard.tsx b/dashboard/src/components/hippocampus/forgetting-dashboard.tsx
deleted file mode 100644
index 9844169..0000000
--- a/dashboard/src/components/hippocampus/forgetting-dashboard.tsx
+++ /dev/null
@@ -1,98 +0,0 @@
-"use client";
-
-import { NEURAL } from "@/lib/utils/neural-palette";
-import { useDecayLog } from "@/lib/hooks/use-decay-log";
-import { useMemo } from "react";
-
-function GaugeMeter({
- label,
- description,
- value,
- color,
-}: {
- label: string;
- description: string;
- value: number;
- color: string;
-}) {
- const angle = value * 180;
- const circumference = Math.PI * 50;
- const dashOffset = circumference - (value * circumference);
-
- return (
-
-
-
- {/* Background arc */}
-
- {/* Value arc */}
-
-
-
- {(value * 100).toFixed(0)}%
-
-
-
{label}
-
{description}
-
- );
-}
-
-export function ForgettingDashboard() {
- const { data } = useDecayLog();
- const entries = data?.entries ?? [];
-
- const stats = useMemo(() => {
- if (entries.length === 0) return { interference: 0, redundancy: 0, homeostasis: 0 };
- const latest = entries[entries.length - 1];
- const total = (latest.decayed + latest.forgotten + latest.promoted) || 1;
- return {
- interference: latest.forgotten / total,
- redundancy: latest.decayed / total,
- homeostasis: latest.promoted / total,
- };
- }, [entries]);
-
- return (
-
-
Forgetting Mechanisms
-
-
-
-
-
-
- );
-}
diff --git a/dashboard/src/components/hippocampus/scene-corridor.tsx b/dashboard/src/components/hippocampus/scene-corridor.tsx
deleted file mode 100644
index f52b094..0000000
--- a/dashboard/src/components/hippocampus/scene-corridor.tsx
+++ /dev/null
@@ -1,71 +0,0 @@
-"use client";
-
-import { useScenes } from "@/lib/hooks/use-scenes";
-import { NEURAL } from "@/lib/utils/neural-palette";
-import { formatDateTime, timeAgo } from "@/lib/utils/format";
-import { Film } from "lucide-react";
-
-export function SceneCorridor() {
- const { data } = useScenes();
- const scenes = data?.scenes ?? [];
-
- if (scenes.length === 0) {
- return (
-
-
No scenes recorded yet.
-
- );
- }
-
- return (
-
-
- {scenes.map((scene, i) => (
-
-
-
-
- {scene.title || `Scene ${scene.id.slice(0, 8)}`}
-
-
-
- {scene.topic && (
-
- {scene.topic}
-
- )}
-
- {scene.summary && (
-
- {scene.summary}
-
- )}
-
-
- {scene.memory_count} memories
- {timeAgo(scene.start_time)}
-
-
- {/* Timeline bar */}
-
-
- ))}
-
-
- );
-}
diff --git a/dashboard/src/components/hippocampus/sleep-visualizer.tsx b/dashboard/src/components/hippocampus/sleep-visualizer.tsx
deleted file mode 100644
index 551f357..0000000
--- a/dashboard/src/components/hippocampus/sleep-visualizer.tsx
+++ /dev/null
@@ -1,114 +0,0 @@
-"use client";
-
-import { NEURAL } from "@/lib/utils/neural-palette";
-import { useStats } from "@/lib/hooks/use-stats";
-
-export function SleepVisualizer() {
- const { data: stats } = useStats();
- const sml = stats?.sml_count ?? 0;
- const lml = stats?.lml_count ?? 0;
- const total = sml + lml || 1;
-
- return (
-
-
Sleep Cycle — Consolidation Flow
-
-
- {/* SML pool */}
-
-
- {/* Flow arrows */}
-
-
-
CONSOLIDATE
-
-
DEMOTE
-
-
- {/* Hippocampus */}
-
-
-
Hippocampus
-
Processing
-
-
- {/* Flow arrows */}
-
-
- {/* LML pool */}
-
-
-
- {/* Progress bar */}
-
-
- Memory Distribution
- {((lml / total) * 100).toFixed(0)}% consolidated
-
-
-
-
- );
-}
diff --git a/dashboard/src/components/hippocampus/trace-cascade-viz.tsx b/dashboard/src/components/hippocampus/trace-cascade-viz.tsx
deleted file mode 100644
index ea124ca..0000000
--- a/dashboard/src/components/hippocampus/trace-cascade-viz.tsx
+++ /dev/null
@@ -1,89 +0,0 @@
-"use client";
-
-import { NEURAL } from "@/lib/utils/neural-palette";
-import { useMemories } from "@/lib/hooks/use-memories";
-import { useMemo } from "react";
-
-export function TraceCascadeViz() {
- const { data } = useMemories({ limit: 200 });
- const memories = data?.memories ?? [];
-
- const traceStats = useMemo(() => {
- let fastSum = 0, midSum = 0, slowSum = 0, count = 0;
- for (const m of memories) {
- if (m.s_fast !== undefined || m.s_mid !== undefined || m.s_slow !== undefined) {
- fastSum += m.s_fast ?? 0;
- midSum += m.s_mid ?? 0;
- slowSum += m.s_slow ?? 0;
- count++;
- }
- }
- if (count === 0) return null;
- return {
- avgFast: fastSum / count,
- avgMid: midSum / count,
- avgSlow: slowSum / count,
- count,
- };
- }, [memories]);
-
- if (!traceStats) {
- return (
-
-
Multi-Trace Cascade
-
- No trace data available. Enable CLS distillation features.
-
-
- );
- }
-
- return (
-
-
Multi-Trace Cascade
-
- Average trace strengths across {traceStats.count} memories
-
-
- {/* Cascade visualization */}
-
- {[
- { label: "Fast", value: traceStats.avgFast, color: NEURAL.sFast, desc: "Immediate" },
- { label: "Mid", value: traceStats.avgMid, color: NEURAL.sMid, desc: "Session" },
- { label: "Slow", value: traceStats.avgSlow, color: NEURAL.sSlow, desc: "Consolidated" },
- ].map(({ label, value, color, desc }) => (
-
-
{(value * 100).toFixed(0)}%
-
-
{label}
-
{desc}
-
- ))}
-
-
- {/* Flow arrows */}
-
-
s_fast
-
-
-
s_mid
-
-
-
s_slow
-
-
- );
-}
diff --git a/dashboard/src/components/layout/neural-sidebar.tsx b/dashboard/src/components/layout/neural-sidebar.tsx
deleted file mode 100644
index 4c551d2..0000000
--- a/dashboard/src/components/layout/neural-sidebar.tsx
+++ /dev/null
@@ -1,90 +0,0 @@
-"use client";
-
-import Link from "next/link";
-import { usePathname } from "next/navigation";
-import {
- Brain,
- Scan,
- Cable,
- Moon,
- Users,
-} from "lucide-react";
-import { cn } from "@/lib/utils/format";
-import { NEURAL } from "@/lib/utils/neural-palette";
-
-const NAV_ITEMS = [
- { href: "/", label: "Brain", icon: Brain },
- { href: "/cortex", label: "Cortex", icon: Scan },
- { href: "/synapses", label: "Synapses", icon: Cable },
- { href: "/hippocampus", label: "Hippocampus", icon: Moon },
- { href: "/profiles", label: "Profiles", icon: Users },
-];
-
-export function NeuralSidebar() {
- const pathname = usePathname();
-
- return (
-
- {/* Logo */}
-
-
-
-
Engram
-
Neural Memory
-
-
-
- {/* Navigation */}
-
- {NAV_ITEMS.map(({ href, label, icon: Icon }) => {
- const active = href === "/"
- ? pathname === "/"
- : pathname === href || pathname?.startsWith(href + "/");
- return (
-
-
- {label}
-
- );
- })}
-
-
- {/* Footer */}
-
-
- );
-}
diff --git a/dashboard/src/components/layout/sidebar.tsx b/dashboard/src/components/layout/sidebar.tsx
deleted file mode 100644
index 1823089..0000000
--- a/dashboard/src/components/layout/sidebar.tsx
+++ /dev/null
@@ -1,68 +0,0 @@
-"use client";
-
-import Link from "next/link";
-import { usePathname } from "next/navigation";
-import {
- LayoutDashboard,
- Sparkles,
- List,
- Film,
- FolderTree,
- Users,
- AlertTriangle,
- GitBranch,
-} from "lucide-react";
-import { cn } from "@/lib/utils/format";
-
-const NAV_ITEMS = [
- { href: "/dashboard", label: "Dashboard", icon: LayoutDashboard },
- { href: "/constellation", label: "Constellation", icon: Sparkles },
- { href: "/memories", label: "Memories", icon: List },
- { href: "/scenes", label: "Scenes", icon: Film },
- { href: "/categories", label: "Categories", icon: FolderTree },
- { href: "/profiles", label: "Profiles", icon: Users },
- { href: "/conflicts", label: "Conflicts", icon: AlertTriangle },
- { href: "/staging", label: "Staging", icon: GitBranch },
-];
-
-export function Sidebar() {
- const pathname = usePathname();
-
- return (
-
-
-
-
- {NAV_ITEMS.map(({ href, label, icon: Icon }) => {
- const active = pathname === href || pathname?.startsWith(href + "/");
- return (
-
-
- {label}
-
- );
- })}
-
-
-
-
- );
-}
diff --git a/dashboard/src/components/layout/top-bar.tsx b/dashboard/src/components/layout/top-bar.tsx
deleted file mode 100644
index 89500b7..0000000
--- a/dashboard/src/components/layout/top-bar.tsx
+++ /dev/null
@@ -1,45 +0,0 @@
-"use client";
-
-import { Search } from "lucide-react";
-import { useFilterStore } from "@/lib/stores/filter-store";
-import { useCallback, useState } from "react";
-import { NEURAL } from "@/lib/utils/neural-palette";
-
-export function TopBar() {
- const setSearchQuery = useFilterStore((s) => s.setSearchQuery);
- const [value, setValue] = useState("");
-
- const handleSubmit = useCallback(
- (e: React.FormEvent) => {
- e.preventDefault();
- setSearchQuery(value);
- },
- [value, setSearchQuery]
- );
-
- return (
-
- );
-}
diff --git a/dashboard/src/components/memories/memory-filters.tsx b/dashboard/src/components/memories/memory-filters.tsx
deleted file mode 100644
index d004733..0000000
--- a/dashboard/src/components/memories/memory-filters.tsx
+++ /dev/null
@@ -1,22 +0,0 @@
-"use client";
-
-import { useFilterStore } from "@/lib/stores/filter-store";
-
-export function MemoryFilters() {
- const { layer, setLayer } = useFilterStore();
-
- return (
-
- Layer
- setLayer(e.target.value as "all" | "sml" | "lml")}
- className="rounded-md border border-gray-200 bg-white px-2.5 py-1.5 text-xs text-gray-700 focus:border-purple-300 focus:outline-none focus:ring-1 focus:ring-purple-300"
- >
- All
- SML
- LML
-
-
- );
-}
diff --git a/dashboard/src/components/memories/memory-table.tsx b/dashboard/src/components/memories/memory-table.tsx
deleted file mode 100644
index f74ccbd..0000000
--- a/dashboard/src/components/memories/memory-table.tsx
+++ /dev/null
@@ -1,72 +0,0 @@
-"use client";
-
-import { LayerBadge } from "@/components/shared/layer-badge";
-import { StrengthIndicator } from "@/components/shared/strength-indicator";
-import { CategoryPill } from "@/components/shared/category-pill";
-import { useInspectorStore } from "@/lib/stores/inspector-store";
-import { truncate, timeAgo } from "@/lib/utils/format";
-import type { Memory } from "@/lib/types/memory";
-
-export function MemoryTable({ memories }: { memories: Memory[] }) {
- const open = useInspectorStore((s) => s.open);
-
- return (
-
-
-
-
-
- Content
-
-
- Layer
-
-
- Strength
-
-
- Categories
-
-
- Created
-
-
-
-
- {memories.map((mem) => (
- open(mem.id)}
- className="cursor-pointer hover:bg-gray-50 transition-colors"
- >
-
- {truncate(mem.content, 100)}
-
-
-
-
-
-
-
-
-
- {(mem.categories || []).slice(0, 3).map((cat) => (
-
- ))}
- {(mem.categories || []).length > 3 && (
-
- +{mem.categories.length - 3}
-
- )}
-
-
-
- {timeAgo(mem.created_at)}
-
-
- ))}
-
-
-
- );
-}
diff --git a/dashboard/src/components/memory-inspector/category-tab.tsx b/dashboard/src/components/memory-inspector/category-tab.tsx
deleted file mode 100644
index 856da81..0000000
--- a/dashboard/src/components/memory-inspector/category-tab.tsx
+++ /dev/null
@@ -1,26 +0,0 @@
-"use client";
-
-import { CategoryPill } from "@/components/shared/category-pill";
-import type { Memory } from "@/lib/types/memory";
-import { NEURAL } from "@/lib/utils/neural-palette";
-
-export function CategoryTab({ memory }: { memory: Memory }) {
- const categories = memory.categories || [];
-
- if (categories.length === 0) {
- return No categories assigned.
;
- }
-
- return (
-
-
-
Categories
-
- {categories.map((cat) => (
-
- ))}
-
-
-
- );
-}
diff --git a/dashboard/src/components/memory-inspector/echo-tab.tsx b/dashboard/src/components/memory-inspector/echo-tab.tsx
deleted file mode 100644
index cf2772b..0000000
--- a/dashboard/src/components/memory-inspector/echo-tab.tsx
+++ /dev/null
@@ -1,127 +0,0 @@
-"use client";
-
-import type { Memory } from "@/lib/types/memory";
-import { NEURAL } from "@/lib/utils/neural-palette";
-
-function Section({ title, children }: { title: string; children: React.ReactNode }) {
- return (
-
-
{title}
- {children}
-
- );
-}
-
-function TagList({ items }: { items: string[] }) {
- return (
-
- {items.map((item, i) => (
-
- {item}
-
- ))}
-
- );
-}
-
-function StringList({ items }: { items: string[] }) {
- return (
-
- {items.map((item, i) => (
-
- {item}
-
- ))}
-
- );
-}
-
-export function EchoTab({ memory }: { memory: Memory }) {
- const meta = memory.metadata || {};
- const depth = meta.echo_depth || "none";
- const paraphrases = meta.echo_paraphrases || [];
- const keywords = meta.echo_keywords || [];
- const implications = meta.echo_implications || [];
- const questions = meta.echo_questions || [];
- const importance = meta.echo_importance;
-
- const hasEchoData =
- paraphrases.length > 0 ||
- keywords.length > 0 ||
- implications.length > 0 ||
- questions.length > 0;
-
- return (
-
- {/* Echo depth badge */}
-
-
Echo Depth
-
- {depth}
-
- {importance !== undefined && (
- <>
-
Importance
-
-
-
- {((importance as number) * 100).toFixed(0)}%
-
-
- >
- )}
-
-
- {!hasEchoData && (
-
No echo encoding data available.
- )}
-
- {paraphrases.length > 0 && (
-
- )}
-
- {keywords.length > 0 && (
-
- )}
-
- {implications.length > 0 && (
-
- )}
-
- {questions.length > 0 && (
-
- )}
-
- );
-}
diff --git a/dashboard/src/components/memory-inspector/fadem-tab.tsx b/dashboard/src/components/memory-inspector/fadem-tab.tsx
deleted file mode 100644
index def9a6e..0000000
--- a/dashboard/src/components/memory-inspector/fadem-tab.tsx
+++ /dev/null
@@ -1,199 +0,0 @@
-"use client";
-
-import { LayerBadge } from "@/components/shared/layer-badge";
-import { StrengthIndicator } from "@/components/shared/strength-indicator";
-import {
- decayProjectionSeries,
- FORGET_THRESHOLD,
- PROMOTE_THRESHOLD,
- PROMOTE_ACCESS_THRESHOLD,
-} from "@/lib/utils/decay-math";
-import { timeAgo } from "@/lib/utils/format";
-import { COLORS } from "@/lib/utils/colors";
-import { NEURAL } from "@/lib/utils/neural-palette";
-import type { Memory } from "@/lib/types/memory";
-import {
- AreaChart,
- Area,
- XAxis,
- YAxis,
- ReferenceLine,
- ResponsiveContainer,
- Tooltip,
-} from "recharts";
-
-function StrengthRing({ strength, layer }: { strength: number; layer: string }) {
- const pct = strength * 100;
- const circumference = 2 * Math.PI * 40;
- const offset = circumference - (pct / 100) * circumference;
- const color = layer === "sml" ? COLORS.sml : COLORS.lml;
-
- return (
-
-
-
-
-
-
- {Math.round(pct)}%
-
-
- );
-}
-
-function ProgressBar({ value, max, label }: { value: number; max: number; label: string }) {
- const pct = Math.min((value / max) * 100, 100);
- const met = value >= max;
- return (
-
-
- {label}
-
- {typeof value === 'number' && value < 1 ? value.toFixed(2) : value} / {max}
-
-
-
-
- );
-}
-
-export function FadeMemTab({ memory }: { memory: Memory }) {
- const series = decayProjectionSeries(
- memory.strength,
- memory.access_count,
- memory.layer
- );
-
- return (
-
- {/* Strength ring + metadata */}
-
-
-
-
-
-
-
- Accessed {memory.access_count} time{memory.access_count !== 1 ? "s" : ""}
-
- {memory.last_accessed && (
-
- Last accessed {timeAgo(memory.last_accessed)}
-
- )}
-
-
-
- {/* 30-day decay projection */}
-
-
- 30-Day Decay Projection
-
-
-
-
-
-
-
-
-
-
-
-
- [`${(Number(v) * 100).toFixed(1)}%`, "Strength"]}
- labelFormatter={(l) => `Day ${l}`}
- />
-
-
-
-
-
-
-
-
- Forget ({FORGET_THRESHOLD})
-
-
- Promote ({PROMOTE_THRESHOLD})
-
-
-
-
- {/* Promotion pathway */}
- {memory.layer === "sml" && (
-
-
- Promotion Pathway (SML → LML)
-
-
-
- )}
-
- {/* Current strength bar */}
-
-
Current Strength
-
-
-
- );
-}
diff --git a/dashboard/src/components/memory-inspector/history-timeline.tsx b/dashboard/src/components/memory-inspector/history-timeline.tsx
deleted file mode 100644
index 37ff2b5..0000000
--- a/dashboard/src/components/memory-inspector/history-timeline.tsx
+++ /dev/null
@@ -1,55 +0,0 @@
-"use client";
-
-import { formatDateTime } from "@/lib/utils/format";
-import type { MemoryHistoryEntry } from "@/lib/types/memory";
-import { NEURAL } from "@/lib/utils/neural-palette";
-
-const EVENT_COLORS: Record = {
- CREATE: NEURAL.success,
- DECAY: NEURAL.lml,
- PROMOTE: NEURAL.lml,
- DEMOTE: NEURAL.sml,
- ACCESS: "#60a5fa",
- UPDATE: NEURAL.episodic,
- DELETE: NEURAL.conflict,
-};
-
-export function HistoryTimeline({ entries }: { entries: MemoryHistoryEntry[] }) {
- if (entries.length === 0) {
- return No history available.
;
- }
-
- return (
-
-
-
- {entries.map((entry, i) => (
-
-
- {entry.event}
-
- {formatDateTime(entry.timestamp)}
-
- {entry.details && (
-
- {JSON.stringify(entry.details, null, 2)}
-
- )}
-
- ))}
-
-
- );
-}
diff --git a/dashboard/src/components/memory-inspector/inspector-actions.tsx b/dashboard/src/components/memory-inspector/inspector-actions.tsx
deleted file mode 100644
index 47ed48d..0000000
--- a/dashboard/src/components/memory-inspector/inspector-actions.tsx
+++ /dev/null
@@ -1,161 +0,0 @@
-"use client";
-
-import { useState } from "react";
-import { ArrowUp, ArrowDown, Trash2, Pencil } from "lucide-react";
-import { promoteMemory, demoteMemory, deleteMemory, updateMemory } from "@/lib/api/memories";
-import { useInspectorStore } from "@/lib/stores/inspector-store";
-import type { Memory } from "@/lib/types/memory";
-import type { KeyedMutator } from "swr";
-import { NEURAL } from "@/lib/utils/neural-palette";
-
-export function InspectorActions({
- memory,
- onMutate,
-}: {
- memory: Memory;
- onMutate: KeyedMutator;
-}) {
- const close = useInspectorStore((s) => s.close);
- const [editing, setEditing] = useState(false);
- const [editContent, setEditContent] = useState(memory.content);
- const [confirmDelete, setConfirmDelete] = useState(false);
- const [loading, setLoading] = useState(false);
-
- const handlePromote = async () => {
- setLoading(true);
- await promoteMemory(memory.id);
- await onMutate();
- setLoading(false);
- };
-
- const handleDemote = async () => {
- setLoading(true);
- await demoteMemory(memory.id);
- await onMutate();
- setLoading(false);
- };
-
- const handleDelete = async () => {
- setLoading(true);
- await deleteMemory(memory.id);
- setLoading(false);
- close();
- };
-
- const handleSaveEdit = async () => {
- setLoading(true);
- await updateMemory(memory.id, { content: editContent });
- await onMutate();
- setEditing(false);
- setLoading(false);
- };
-
- if (editing) {
- return (
-
- );
- }
-
- if (confirmDelete) {
- return (
-
-
- Delete this memory? This action cannot be undone.
-
-
-
- Confirm Delete
-
- setConfirmDelete(false)}
- className="rounded-lg px-3 py-1.5 text-xs font-medium hover:bg-white/[0.05]"
- style={{ color: NEURAL.shallow, border: `1px solid rgba(124,58,237,0.15)` }}
- >
- Cancel
-
-
-
- );
- }
-
- return (
-
-
setEditing(true)}
- className="inline-flex items-center gap-1.5 rounded-lg px-2.5 py-1.5 text-xs font-medium hover:bg-white/[0.05] transition-colors"
- style={{ color: NEURAL.shallow, border: `1px solid rgba(124,58,237,0.15)` }}
- >
- Edit
-
- {memory.layer === "sml" ? (
-
- Promote to LML
-
- ) : (
-
- Demote to SML
-
- )}
-
setConfirmDelete(true)}
- className="ml-auto inline-flex items-center gap-1.5 rounded-lg px-2.5 py-1.5 text-xs font-medium transition-colors"
- style={{
- color: NEURAL.conflict,
- border: `1px solid ${NEURAL.conflict}30`,
- }}
- >
- Delete
-
-
- );
-}
diff --git a/dashboard/src/components/memory-inspector/inspector-panel.tsx b/dashboard/src/components/memory-inspector/inspector-panel.tsx
deleted file mode 100644
index f6c6d92..0000000
--- a/dashboard/src/components/memory-inspector/inspector-panel.tsx
+++ /dev/null
@@ -1,105 +0,0 @@
-"use client";
-
-import { useEffect } from "react";
-import { X } from "lucide-react";
-import { useInspectorStore } from "@/lib/stores/inspector-store";
-import { useMemory, useMemoryHistory } from "@/lib/hooks/use-memory";
-import { FadeMemTab } from "./fadem-tab";
-import { EchoTab } from "./echo-tab";
-import { CategoryTab } from "./category-tab";
-import { TraceTab } from "./trace-tab";
-import { HistoryTimeline } from "./history-timeline";
-import { InspectorActions } from "./inspector-actions";
-import { cn } from "@/lib/utils/format";
-import { useState } from "react";
-import { NEURAL } from "@/lib/utils/neural-palette";
-
-const TABS = ["FadeMem", "EchoMem", "Traces", "CategoryMem", "History"] as const;
-type Tab = (typeof TABS)[number];
-
-function InspectorContent() {
- const { selectedMemoryId, close } = useInspectorStore();
- const { data: memory, mutate } = useMemory(selectedMemoryId);
- const { data: history } = useMemoryHistory(selectedMemoryId);
- const [activeTab, setActiveTab] = useState("FadeMem");
-
- useEffect(() => {
- const handleKey = (e: KeyboardEvent) => {
- if (e.key === "Escape") close();
- };
- window.addEventListener("keydown", handleKey);
- return () => window.removeEventListener("keydown", handleKey);
- }, [close]);
-
- if (!memory) {
- return (
-
- Loading...
-
- );
- }
-
- return (
-
- {/* Header */}
-
-
-
{memory.id}
-
{memory.content}
-
-
-
-
-
-
- {/* Tabs */}
-
- {TABS.map((tab) => (
- setActiveTab(tab)}
- className={cn(
- "px-3 py-2.5 text-xs font-medium transition-colors border-b-2 -mb-px whitespace-nowrap",
- activeTab === tab
- ? "border-purple-500 text-purple-300"
- : "border-transparent text-slate-500 hover:text-slate-300"
- )}
- >
- {tab}
-
- ))}
-
-
- {/* Tab content */}
-
- {activeTab === "FadeMem" && }
- {activeTab === "EchoMem" && }
- {activeTab === "Traces" && }
- {activeTab === "CategoryMem" && }
- {activeTab === "History" && }
-
-
- {/* Actions */}
-
-
- );
-}
-
-export function InspectorWrapper() {
- const { isOpen } = useInspectorStore();
-
- return (
-
- {isOpen && }
-
- );
-}
diff --git a/dashboard/src/components/memory-inspector/trace-tab.tsx b/dashboard/src/components/memory-inspector/trace-tab.tsx
deleted file mode 100644
index 7c5c78c..0000000
--- a/dashboard/src/components/memory-inspector/trace-tab.tsx
+++ /dev/null
@@ -1,148 +0,0 @@
-"use client";
-
-import type { Memory } from "@/lib/types/memory";
-import { NEURAL } from "@/lib/utils/neural-palette";
-
-function TraceBar({
- label,
- value,
- color,
-}: {
- label: string;
- value: number;
- color: string;
-}) {
- const pct = Math.round(value * 100);
- return (
-
-
- {label}
- {pct}%
-
-
-
- );
-}
-
-function TraceCascadePreview({ sFast, sMid, sSlow }: { sFast: number; sMid: number; sSlow: number }) {
- return (
-
- {/* Fast ring */}
-
-
-
-
-
-
-
-
-
-
- {/* Legend */}
-
-
-
- Fast (volatile)
-
-
-
- Mid (consolidating)
-
-
-
- Slow (permanent)
-
-
-
- );
-}
-
-export function TraceTab({ memory }: { memory: Memory }) {
- const sFast = memory.s_fast ?? 0;
- const sMid = memory.s_mid ?? 0;
- const sSlow = memory.s_slow ?? 0;
- const hasTraces = sFast > 0 || sMid > 0 || sSlow > 0;
-
- if (!hasTraces) {
- return (
-
-
- No multi-trace data available. CLS distillation features may not be enabled.
-
-
-
- Multi-trace encoding records how strongly a memory is encoded across three time-scale systems:
- fast (immediate), mid (session), and slow (consolidated).
-
-
-
- );
- }
-
- return (
-
- {/* Concentric rings preview */}
-
-
Trace Cascade
-
-
-
- {/* Individual bars */}
-
-
-
-
-
-
- {/* Memory type */}
- {memory.memory_type && (
-
-
Memory Type
-
- {memory.memory_type}
-
-
- )}
-
- );
-}
diff --git a/dashboard/src/components/profiles/identity-rings.tsx b/dashboard/src/components/profiles/identity-rings.tsx
deleted file mode 100644
index 01bb70f..0000000
--- a/dashboard/src/components/profiles/identity-rings.tsx
+++ /dev/null
@@ -1,136 +0,0 @@
-"use client";
-
-import { useProfiles } from "@/lib/hooks/use-profiles";
-import { NEURAL } from "@/lib/utils/neural-palette";
-import type { Profile } from "@/lib/types/profile";
-
-function ProfileHub({ profile, ring, angle, totalInRing }: {
- profile: Profile;
- ring: number;
- angle: number;
- totalInRing: number;
-}) {
- const typeColors: Record = {
- self: NEURAL.lml,
- contact: NEURAL.sml,
- entity: NEURAL.semantic,
- };
- const color = typeColors[profile.type] || NEURAL.episodic;
-
- // Position on ring
- const radius = ring === 0 ? 0 : ring * 120;
- const x = 50 + (radius * Math.cos(angle * Math.PI / 180)) / 3.5;
- const y = 50 + (radius * Math.sin(angle * Math.PI / 180)) / 3.5;
-
- const factCount = (profile.facts?.length || 0) + (profile.preferences?.length || 0);
-
- return (
-
- {/* Glow */}
-
-
- {/* Node */}
-
-
- {profile.name.split(' ')[0]}
-
-
-
- {/* Tooltip */}
-
-
{profile.name}
-
- {profile.type} · {factCount} facts
-
-
-
- );
-}
-
-export function IdentityRings() {
- const { data } = useProfiles();
- const profiles = data?.profiles ?? [];
-
- // Group by type
- const self = profiles.filter(p => p.type === 'self');
- const contacts = profiles.filter(p => p.type === 'contact');
- const entities = profiles.filter(p => p.type === 'entity');
-
- return (
-
- {/* Ring circles */}
- {[1, 2, 3].map(ring => (
-
- ))}
-
- {/* Ring labels */}
-
- ENTITIES
-
-
- CONTACTS
-
-
- {/* Self (center) */}
- {self.map((p, i) => (
-
- ))}
-
- {/* Contacts (middle ring) */}
- {contacts.map((p, i) => (
-
- ))}
-
- {/* Entities (outer ring) */}
- {entities.map((p, i) => (
-
- ))}
-
- );
-}
diff --git a/dashboard/src/components/profiles/profile-card.tsx b/dashboard/src/components/profiles/profile-card.tsx
deleted file mode 100644
index 60316f3..0000000
--- a/dashboard/src/components/profiles/profile-card.tsx
+++ /dev/null
@@ -1,110 +0,0 @@
-"use client";
-
-import { useState } from "react";
-import { profileTypeColor } from "@/lib/utils/colors";
-import type { Profile } from "@/lib/types/profile";
-import { cn } from "@/lib/utils/format";
-
-function getInitials(name: string): string {
- return name
- .split(/\s+/)
- .map((w) => w[0])
- .join("")
- .toUpperCase()
- .slice(0, 2);
-}
-
-export function ProfileCard({ profile }: { profile: Profile }) {
- const [tab, setTab] = useState<"facts" | "preferences" | "relationships">(
- "facts"
- );
- const color = profileTypeColor(profile.type);
-
- const tabs = ["facts", "preferences", "relationships"] as const;
-
- return (
-
-
-
- {getInitials(profile.name)}
-
-
-
{profile.name}
-
- {profile.type}
-
-
-
-
-
- {tabs.map((t) => (
- setTab(t)}
- className={cn(
- "px-2 py-1.5 text-[10px] font-medium border-b -mb-px transition-colors capitalize",
- tab === t
- ? "border-purple-600 text-purple-700"
- : "border-transparent text-gray-400 hover:text-gray-600"
- )}
- >
- {t}
-
- ))}
-
-
-
- {tab === "facts" && (
-
- {(profile.facts || []).length === 0 ? (
- No facts recorded
- ) : (
- profile.facts!.map((fact, i) => (
-
- {fact}
-
- ))
- )}
-
- )}
- {tab === "preferences" && (
-
- {(profile.preferences || []).length === 0 ? (
- No preferences recorded
- ) : (
- profile.preferences!.map((pref, i) => (
-
- {pref}
-
- ))
- )}
-
- )}
- {tab === "relationships" && (
-
- {(profile.relationships || []).length === 0 ? (
- No relationships recorded
- ) : (
- profile.relationships!.map((rel, i) => (
-
- {rel.target_name}
- {" — "}
- {rel.relationship_type}
-
- ))
- )}
-
- )}
-
-
- );
-}
diff --git a/dashboard/src/components/scenes/scene-card.tsx b/dashboard/src/components/scenes/scene-card.tsx
deleted file mode 100644
index 7bcaf73..0000000
--- a/dashboard/src/components/scenes/scene-card.tsx
+++ /dev/null
@@ -1,71 +0,0 @@
-"use client";
-
-import { useState } from "react";
-import { ChevronDown, ChevronRight, Film } from "lucide-react";
-import { formatDateTime } from "@/lib/utils/format";
-import type { Scene } from "@/lib/types/scene";
-
-export function SceneCard({ scene }: { scene: Scene }) {
- const [expanded, setExpanded] = useState(false);
-
- return (
-
-
setExpanded(!expanded)}
- className="flex w-full items-center gap-3 p-4 text-left hover:bg-gray-50 transition-colors"
- >
-
-
-
-
-
- {scene.title || scene.topic || "Untitled Scene"}
-
-
- {formatDateTime(scene.start_time)}
- {scene.end_time && (
- <>
- —
- {formatDateTime(scene.end_time)}
- >
- )}
-
- {scene.memory_count} memories
-
-
-
- {expanded ? (
-
- ) : (
-
- )}
-
-
- {expanded && (
-
- {scene.summary && (
-
{scene.summary}
- )}
- {scene.participants && scene.participants.length > 0 && (
-
- {scene.participants.map((p) => (
-
- {p}
-
- ))}
-
- )}
- {scene.memory_ids && scene.memory_ids.length > 0 && (
-
- Memory IDs: {scene.memory_ids.slice(0, 5).join(", ")}
- {scene.memory_ids.length > 5 && ` +${scene.memory_ids.length - 5} more`}
-
- )}
-
- )}
-
- );
-}
diff --git a/dashboard/src/components/shared/category-pill.tsx b/dashboard/src/components/shared/category-pill.tsx
deleted file mode 100644
index afb93e5..0000000
--- a/dashboard/src/components/shared/category-pill.tsx
+++ /dev/null
@@ -1,19 +0,0 @@
-"use client";
-
-export function CategoryPill({
- name,
- onClick,
-}: {
- name: string;
- onClick?: () => void;
-}) {
- return (
-
- {name}
-
- );
-}
diff --git a/dashboard/src/components/shared/empty-state.tsx b/dashboard/src/components/shared/empty-state.tsx
deleted file mode 100644
index f369018..0000000
--- a/dashboard/src/components/shared/empty-state.tsx
+++ /dev/null
@@ -1,21 +0,0 @@
-"use client";
-
-import { InboxIcon } from "lucide-react";
-
-export function EmptyState({
- title = "No data",
- description = "Nothing to show yet.",
- icon: Icon = InboxIcon,
-}: {
- title?: string;
- description?: string;
- icon?: React.ComponentType<{ className?: string }>;
-}) {
- return (
-
-
-
{title}
-
{description}
-
- );
-}
diff --git a/dashboard/src/components/shared/glass-card.tsx b/dashboard/src/components/shared/glass-card.tsx
deleted file mode 100644
index 091ea59..0000000
--- a/dashboard/src/components/shared/glass-card.tsx
+++ /dev/null
@@ -1,30 +0,0 @@
-"use client";
-
-import { cn } from "@/lib/utils/format";
-
-export function GlassCard({
- children,
- className,
- glow,
- ...props
-}: {
- children: React.ReactNode;
- className?: string;
- glow?: "episodic" | "semantic" | "sml" | "lml";
-} & React.HTMLAttributes) {
- return (
-
- {children}
-
- );
-}
diff --git a/dashboard/src/components/shared/layer-badge.tsx b/dashboard/src/components/shared/layer-badge.tsx
deleted file mode 100644
index e27797b..0000000
--- a/dashboard/src/components/shared/layer-badge.tsx
+++ /dev/null
@@ -1,19 +0,0 @@
-"use client";
-
-import { cn } from "@/lib/utils/format";
-
-export function LayerBadge({ layer }: { layer: string }) {
- const isSml = layer === "sml";
- return (
-
- {layer}
-
- );
-}
diff --git a/dashboard/src/components/shared/pulse-dot.tsx b/dashboard/src/components/shared/pulse-dot.tsx
deleted file mode 100644
index d15981e..0000000
--- a/dashboard/src/components/shared/pulse-dot.tsx
+++ /dev/null
@@ -1,27 +0,0 @@
-"use client";
-
-import { cn } from "@/lib/utils/format";
-
-export function PulseDot({
- color = "#7c3aed",
- size = "sm",
- className,
-}: {
- color?: string;
- size?: "sm" | "md" | "lg";
- className?: string;
-}) {
- const sizeMap = { sm: "h-2 w-2", md: "h-3 w-3", lg: "h-4 w-4" };
- return (
-
-
-
-
- );
-}
diff --git a/dashboard/src/components/shared/strength-indicator.tsx b/dashboard/src/components/shared/strength-indicator.tsx
deleted file mode 100644
index 75f2d7d..0000000
--- a/dashboard/src/components/shared/strength-indicator.tsx
+++ /dev/null
@@ -1,35 +0,0 @@
-"use client";
-
-import { layerColor } from "@/lib/utils/colors";
-
-export function StrengthIndicator({
- strength,
- layer,
- size = "sm",
-}: {
- strength: number;
- layer: string;
- size?: "sm" | "md";
-}) {
- const pct = Math.round(strength * 100);
- const color = layerColor(layer);
- const h = size === "sm" ? "h-1.5" : "h-2.5";
-
- return (
-
- );
-}
diff --git a/dashboard/src/components/staging/commit-card.tsx b/dashboard/src/components/staging/commit-card.tsx
deleted file mode 100644
index 972cff8..0000000
--- a/dashboard/src/components/staging/commit-card.tsx
+++ /dev/null
@@ -1,119 +0,0 @@
-"use client";
-
-import { useState } from "react";
-import { approveCommit, rejectCommit } from "@/lib/api/staging";
-import type { StagingCommit } from "@/lib/types/staging";
-import { timeAgo, truncate } from "@/lib/utils/format";
-import { Check, X } from "lucide-react";
-
-export function CommitCard({
- commit,
- onAction,
-}: {
- commit: StagingCommit;
- onAction: () => void;
-}) {
- const [loading, setLoading] = useState(false);
- const [showReject, setShowReject] = useState(false);
- const [reason, setReason] = useState("");
-
- const handleApprove = async () => {
- setLoading(true);
- await approveCommit(commit.id);
- setLoading(false);
- onAction();
- };
-
- const handleReject = async () => {
- setLoading(true);
- await rejectCommit(commit.id, reason);
- setLoading(false);
- setShowReject(false);
- onAction();
- };
-
- const isPending = commit.status === "PENDING";
-
- return (
-
-
-
-
- {commit.agent_id}
-
-
- {commit.status}
-
-
-
{timeAgo(commit.created_at)}
-
-
-
{truncate(commit.content, 200)}
-
- {showReject ? (
-
- ) : (
- isPending && (
-
-
- Approve
-
- setShowReject(true)}
- disabled={loading}
- className="inline-flex items-center gap-1 rounded-md border border-red-200 px-3 py-1.5 text-xs font-medium text-red-600 hover:bg-red-50 disabled:opacity-50"
- >
- Reject
-
-
- )
- )}
-
- {commit.rejection_reason && (
-
- Reason: {commit.rejection_reason}
-
- )}
-
- );
-}
-
-function cn(...classes: (string | false | null | undefined)[]): string {
- return classes.filter(Boolean).join(" ");
-}
diff --git a/dashboard/src/components/synapses/conflict-synapse.tsx b/dashboard/src/components/synapses/conflict-synapse.tsx
deleted file mode 100644
index 21f6cf5..0000000
--- a/dashboard/src/components/synapses/conflict-synapse.tsx
+++ /dev/null
@@ -1,97 +0,0 @@
-"use client";
-
-import { useState } from "react";
-import { AlertTriangle, Check, X, Copy } from "lucide-react";
-import { resolveConflict } from "@/lib/api/conflicts";
-import type { Conflict } from "@/lib/types/conflict";
-import { NEURAL } from "@/lib/utils/neural-palette";
-import { timeAgo } from "@/lib/utils/format";
-import type { KeyedMutator } from "swr";
-
-export function ConflictSynapse({
- conflict,
- onMutate,
-}: {
- conflict: Conflict;
- onMutate: KeyedMutator<{ conflicts: Conflict[] }>;
-}) {
- const [loading, setLoading] = useState(false);
-
- const handleResolve = async (resolution: string) => {
- setLoading(true);
- try {
- await resolveConflict(conflict.stash_id, resolution);
- await onMutate();
- } finally {
- setLoading(false);
- }
- };
-
- const isResolved = !!conflict.resolution;
-
- return (
-
-
-
-
-
-
- {isResolved ? `Resolved: ${conflict.resolution}` : "Unresolved Conflict"}
-
-
- {timeAgo(conflict.created_at)}
-
-
-
- Similarity: {(conflict.similarity * 100).toFixed(0)}%
-
-
-
-
- {/* Content comparison */}
-
-
-
Existing
-
{conflict.existing_content}
-
-
-
Proposed
-
{conflict.proposed_content}
-
-
-
- {/* Resolution buttons */}
- {!isResolved && (
-
- handleResolve("KEEP_EXISTING")}
- disabled={loading}
- className="flex items-center gap-1 rounded-lg px-2.5 py-1.5 text-xs font-medium disabled:opacity-50 transition-colors"
- style={{ color: NEURAL.sml, border: `1px solid ${NEURAL.sml}30`, backgroundColor: `${NEURAL.sml}08` }}
- >
- Keep Existing
-
- handleResolve("ACCEPT_PROPOSED")}
- disabled={loading}
- className="flex items-center gap-1 rounded-lg px-2.5 py-1.5 text-xs font-medium disabled:opacity-50 transition-colors"
- style={{ color: NEURAL.pending, border: `1px solid ${NEURAL.pending}30`, backgroundColor: `${NEURAL.pending}08` }}
- >
- Accept New
-
- handleResolve("KEEP_BOTH")}
- disabled={loading}
- className="flex items-center gap-1 rounded-lg px-2.5 py-1.5 text-xs font-medium disabled:opacity-50 transition-colors"
- style={{ color: NEURAL.shallow, border: `1px solid rgba(124,58,237,0.15)` }}
- >
- Keep Both
-
-
- )}
-
- );
-}
diff --git a/dashboard/src/components/synapses/staging-synapse.tsx b/dashboard/src/components/synapses/staging-synapse.tsx
deleted file mode 100644
index 1264eb8..0000000
--- a/dashboard/src/components/synapses/staging-synapse.tsx
+++ /dev/null
@@ -1,111 +0,0 @@
-"use client";
-
-import { useState } from "react";
-import { GitBranch, Check, X } from "lucide-react";
-import { approveCommit, rejectCommit } from "@/lib/api/staging";
-import type { StagingCommit } from "@/lib/types/staging";
-import { NEURAL } from "@/lib/utils/neural-palette";
-import { timeAgo } from "@/lib/utils/format";
-import type { KeyedMutator } from "swr";
-
-export function StagingSynapse({
- commit,
- onMutate,
-}: {
- commit: StagingCommit;
- onMutate: KeyedMutator<{ commits: StagingCommit[] }>;
-}) {
- const [loading, setLoading] = useState(false);
- const isPending = commit.status === "PENDING";
-
- const handleApprove = async () => {
- setLoading(true);
- try {
- await approveCommit(commit.id);
- await onMutate();
- } finally {
- setLoading(false);
- }
- };
-
- const handleReject = async () => {
- setLoading(true);
- try {
- await rejectCommit(commit.id, "Rejected from dashboard");
- await onMutate();
- } finally {
- setLoading(false);
- }
- };
-
- const statusColor = commit.status === "APPROVED" ? NEURAL.success :
- commit.status === "REJECTED" ? NEURAL.conflict : NEURAL.pending;
-
- return (
-
-
-
-
-
-
- {commit.status}
-
-
- {timeAgo(commit.created_at)}
-
-
- from {commit.agent_id}
-
-
-
-
-
-
{commit.content}
-
- {isPending && (
-
-
- Approve
-
-
- Reject
-
-
- )}
-
- {commit.rejection_reason && (
-
- Reason: {commit.rejection_reason}
-
- )}
-
- );
-}
diff --git a/dashboard/src/components/synapses/synapse-graph.tsx b/dashboard/src/components/synapses/synapse-graph.tsx
deleted file mode 100644
index 8f75a18..0000000
--- a/dashboard/src/components/synapses/synapse-graph.tsx
+++ /dev/null
@@ -1,171 +0,0 @@
-"use client";
-
-import { useRef, useEffect, useCallback } from "react";
-import { Application, Graphics, Text, TextStyle, Container, FederatedPointerEvent } from "pixi.js";
-import { useConstellation } from "@/lib/hooks/use-constellation";
-import { useInspectorStore } from "@/lib/stores/inspector-store";
-import { NEURAL } from "@/lib/utils/neural-palette";
-import {
- forceSimulation,
- forceLink,
- forceManyBody,
- forceCenter,
- forceCollide,
- type SimulationNodeDatum,
- type SimulationLinkDatum,
-} from "d3-force";
-
-interface ForceNode extends SimulationNodeDatum {
- id: string;
- layer: string;
- strength: number;
- label: string;
-}
-
-export function SynapseGraph() {
- const canvasRef = useRef(null);
- const appRef = useRef(null);
- const { data } = useConstellation();
- const openInspector = useInspectorStore((s) => s.open);
-
- const draw = useCallback(async () => {
- const canvas = canvasRef.current;
- if (!canvas || !data) return;
-
- if (appRef.current) {
- appRef.current.destroy(true);
- appRef.current = null;
- }
-
- const app = new Application();
- await app.init({
- canvas,
- resizeTo: canvas.parentElement || undefined,
- backgroundColor: 0x050510,
- antialias: false,
- resolution: Math.min(window.devicePixelRatio || 1, 2),
- autoDensity: true,
- });
- appRef.current = app;
-
- const nodes = data.nodes || [];
- const edges = data.edges || [];
- if (nodes.length === 0) {
- const text = new Text({
- text: "No synaptic connections to display",
- style: new TextStyle({ fontSize: 14, fill: 0x64748b, fontFamily: "system-ui" }),
- });
- text.anchor.set(0.5);
- text.position.set(canvas.clientWidth / 2, canvas.clientHeight / 2);
- app.stage.addChild(text);
- return;
- }
-
- // Build force nodes
- const forceNodes: ForceNode[] = nodes.map(n => ({
- id: n.id,
- layer: n.layer,
- strength: n.strength,
- label: n.label || '',
- }));
-
- const forceEdges: SimulationLinkDatum[] = edges.map(e => ({
- source: e.source,
- target: e.target,
- type: e.type,
- })) as SimulationLinkDatum[];
-
- // Pre-run simulation to completion synchronously — no per-tick rendering
- const sim = forceSimulation(forceNodes)
- .force(
- "link",
- forceLink>(forceEdges)
- .id(d => d.id)
- .distance(80)
- .strength(0.2)
- )
- .force("charge", forceManyBody().strength(-100))
- .force("center", forceCenter(canvas.clientWidth / 2, canvas.clientHeight / 2))
- .force("collide", forceCollide(15))
- .stop(); // Don't auto-run
-
- // Run 300 ticks synchronously (no rendering in between)
- for (let i = 0; i < 300; i++) {
- sim.tick();
- }
-
- // Build node lookup map for O(1) edge resolution
- const nodeMap = new Map(forceNodes.map(n => [n.id, n]));
-
- // Draw once — edges
- const edgesContainer = new Container();
- const nodesContainer = new Container();
- app.stage.addChild(edgesContainer);
- app.stage.addChild(nodesContainer);
-
- const edgeGfx = new Graphics();
- for (const edge of forceEdges) {
- const sourceNode = edge.source as unknown as ForceNode;
- const targetNode = edge.target as unknown as ForceNode;
- if (!sourceNode.x || !sourceNode.y || !targetNode.x || !targetNode.y) continue;
-
- const color = (edge as { type?: string }).type === "category" ? 0x7c3aed : 0x22d3ee;
- edgeGfx.moveTo(sourceNode.x, sourceNode.y);
- edgeGfx.lineTo(targetNode.x, targetNode.y);
- edgeGfx.stroke({ width: 1, color, alpha: 0.12 });
- }
- edgesContainer.addChild(edgeGfx);
-
- // Draw once — nodes
- for (const node of forceNodes) {
- if (!node.x || !node.y) continue;
-
- const radius = 4 + node.strength * 8;
- const colorHex = node.layer === "sml" ? 0x22d3ee : 0xfbbf24;
-
- const gfx = new Graphics();
- // Glow
- gfx.circle(0, 0, radius * 2.5);
- gfx.fill({ color: colorHex, alpha: 0.05 });
- // Node
- gfx.circle(0, 0, radius);
- gfx.fill({ color: colorHex, alpha: 0.8 });
-
- gfx.position.set(node.x, node.y);
- gfx.eventMode = "static";
- gfx.cursor = "pointer";
-
- gfx.on("pointerdown", (e: FederatedPointerEvent) => {
- e.stopPropagation();
- openInspector(node.id);
- });
- gfx.on("pointerover", () => gfx.scale.set(1.4));
- gfx.on("pointerout", () => gfx.scale.set(1));
-
- nodesContainer.addChild(gfx);
-
- // Label only for strong nodes
- if (node.strength > 0.5 && node.label) {
- const label = new Text({
- text: node.label.slice(0, 25),
- style: new TextStyle({ fontSize: 8, fill: 0x94a3b8, fontFamily: "system-ui" }),
- });
- label.anchor.set(0.5, 0);
- label.position.set(node.x, node.y + radius + 4);
- nodesContainer.addChild(label);
- }
- }
- }, [data, openInspector]);
-
- useEffect(() => {
- draw();
- return () => {
- appRef.current?.destroy(true);
- appRef.current = null;
- };
- }, [draw]);
-
- return (
-
- );
-}
diff --git a/dashboard/src/lib/api/categories.ts b/dashboard/src/lib/api/categories.ts
deleted file mode 100644
index bd6482f..0000000
--- a/dashboard/src/lib/api/categories.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-import { get } from "./client";
-import type { Category } from "../types/category";
-
-export function listCategories(): Promise<{ categories: Category[] }> {
- return get("/v1/categories");
-}
-
-export function getCategoryTree(): Promise<{ tree: Category[] }> {
- return get("/v1/categories/tree");
-}
-
-export function getCategorySummary(
- id: string,
- regenerate = false
-): Promise<{ category_id: string; summary: string }> {
- return get(`/v1/categories/${id}/summary?regenerate=${regenerate}`);
-}
diff --git a/dashboard/src/lib/api/client.ts b/dashboard/src/lib/api/client.ts
deleted file mode 100644
index 5d72094..0000000
--- a/dashboard/src/lib/api/client.ts
+++ /dev/null
@@ -1,46 +0,0 @@
-const API_URL = process.env.NEXT_PUBLIC_API_URL || "http://localhost:8100";
-
-export class ApiError extends Error {
- constructor(public status: number, message: string) {
- super(message);
- this.name = "ApiError";
- }
-}
-
-async function request(path: string, options?: RequestInit): Promise {
- const res = await fetch(`${API_URL}${path}`, {
- headers: { "Content-Type": "application/json", ...options?.headers },
- ...options,
- });
- if (!res.ok) {
- const body = await res.text().catch(() => "");
- throw new ApiError(res.status, body || res.statusText);
- }
- return res.json();
-}
-
-export function get(path: string): Promise {
- return request(path);
-}
-
-export function post(path: string, body?: unknown): Promise {
- return request(path, {
- method: "POST",
- body: body ? JSON.stringify(body) : undefined,
- });
-}
-
-export function put(path: string, body: unknown): Promise {
- return request(path, {
- method: "PUT",
- body: JSON.stringify(body),
- });
-}
-
-export function del(path: string): Promise {
- return request(path, { method: "DELETE" });
-}
-
-export function fetcher(path: string): Promise {
- return get(path);
-}
diff --git a/dashboard/src/lib/api/conflicts.ts b/dashboard/src/lib/api/conflicts.ts
deleted file mode 100644
index 3b89636..0000000
--- a/dashboard/src/lib/api/conflicts.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-import { get, post } from "./client";
-import type { Conflict } from "../types/conflict";
-
-export function listConflicts(params?: {
- user_id?: string;
- resolution?: string;
- limit?: number;
-}): Promise<{ conflicts: Conflict[] }> {
- const q = new URLSearchParams();
- if (params?.user_id) q.set("user_id", params.user_id);
- if (params?.resolution) q.set("resolution", params.resolution);
- if (params?.limit) q.set("limit", String(params.limit));
- const qs = q.toString();
- return get(`/v1/conflicts${qs ? `?${qs}` : ""}`);
-}
-
-export function resolveConflict(
- stashId: string,
- resolution: string
-): Promise> {
- return post(`/v1/conflicts/${stashId}/resolve`, { resolution });
-}
diff --git a/dashboard/src/lib/api/constellation.ts b/dashboard/src/lib/api/constellation.ts
deleted file mode 100644
index 652c419..0000000
--- a/dashboard/src/lib/api/constellation.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { get } from "./client";
-import type { ConstellationData } from "../types/constellation";
-
-export function getConstellationData(params?: {
- user_id?: string;
- limit?: number;
-}): Promise {
- const q = new URLSearchParams();
- if (params?.user_id) q.set("user_id", params.user_id);
- if (params?.limit) q.set("limit", String(params.limit));
- const qs = q.toString();
- return get(`/v1/dashboard/constellation${qs ? `?${qs}` : ""}`);
-}
diff --git a/dashboard/src/lib/api/decay.ts b/dashboard/src/lib/api/decay.ts
deleted file mode 100644
index 247a591..0000000
--- a/dashboard/src/lib/api/decay.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import { get } from "./client";
-
-export interface DecayLogEntry {
- timestamp: string;
- decayed: number;
- forgotten: number;
- promoted: number;
-}
-
-export function getDecayLog(limit = 20): Promise<{ entries: DecayLogEntry[] }> {
- return get(`/v1/decay-log?limit=${limit}`);
-}
diff --git a/dashboard/src/lib/api/memories.ts b/dashboard/src/lib/api/memories.ts
deleted file mode 100644
index 0c0e2fa..0000000
--- a/dashboard/src/lib/api/memories.ts
+++ /dev/null
@@ -1,47 +0,0 @@
-import { get, post, put, del } from "./client";
-import type { Memory, MemoryListResponse, MemoryHistoryEntry, MemoryUpdatePayload } from "../types/memory";
-
-export function listMemories(params?: {
- user_id?: string;
- layer?: string;
- limit?: number;
-}): Promise {
- const q = new URLSearchParams();
- if (params?.user_id) q.set("user_id", params.user_id);
- if (params?.layer) q.set("layer", params.layer);
- if (params?.limit) q.set("limit", String(params.limit));
- const qs = q.toString();
- return get(`/v1/memories${qs ? `?${qs}` : ""}`);
-}
-
-export function getMemory(id: string): Promise {
- return get(`/v1/memories/${id}`);
-}
-
-export function updateMemory(id: string, payload: MemoryUpdatePayload): Promise {
- return put(`/v1/memories/${id}`, payload);
-}
-
-export function deleteMemory(id: string): Promise<{ status: string; id: string }> {
- return del(`/v1/memories/${id}`);
-}
-
-export function getMemoryHistory(id: string): Promise {
- return get(`/v1/memories/${id}/history`);
-}
-
-export function promoteMemory(id: string): Promise<{ status: string; id: string }> {
- return post(`/v1/memories/${id}/promote`);
-}
-
-export function demoteMemory(id: string): Promise<{ status: string; id: string }> {
- return post(`/v1/memories/${id}/demote`);
-}
-
-export function searchMemories(query: string, params?: {
- user_id?: string;
- limit?: number;
- categories?: string[];
-}): Promise<{ results: Memory[]; count: number }> {
- return post("/v1/search", { query, ...params });
-}
diff --git a/dashboard/src/lib/api/profiles.ts b/dashboard/src/lib/api/profiles.ts
deleted file mode 100644
index cffa808..0000000
--- a/dashboard/src/lib/api/profiles.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import { get } from "./client";
-import type { Profile } from "../types/profile";
-
-export function listProfiles(params?: {
- user_id?: string;
-}): Promise<{ profiles: Profile[] }> {
- const q = new URLSearchParams();
- if (params?.user_id) q.set("user_id", params.user_id);
- const qs = q.toString();
- return get(`/v1/profiles${qs ? `?${qs}` : ""}`);
-}
diff --git a/dashboard/src/lib/api/scenes.ts b/dashboard/src/lib/api/scenes.ts
deleted file mode 100644
index c312187..0000000
--- a/dashboard/src/lib/api/scenes.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-import { get } from "./client";
-import type { Scene } from "../types/scene";
-
-export function listScenes(params?: {
- user_id?: string;
- topic?: string;
- limit?: number;
-}): Promise<{ scenes: Scene[] }> {
- const q = new URLSearchParams();
- if (params?.user_id) q.set("user_id", params.user_id);
- if (params?.topic) q.set("topic", params.topic);
- if (params?.limit) q.set("limit", String(params.limit));
- const qs = q.toString();
- return get(`/v1/scenes${qs ? `?${qs}` : ""}`);
-}
-
-export function getScene(id: string): Promise {
- return get(`/v1/scenes/${id}`);
-}
diff --git a/dashboard/src/lib/api/staging.ts b/dashboard/src/lib/api/staging.ts
deleted file mode 100644
index f1045b2..0000000
--- a/dashboard/src/lib/api/staging.ts
+++ /dev/null
@@ -1,28 +0,0 @@
-import { get, post } from "./client";
-import type { StagingCommit } from "../types/staging";
-
-export function listStagingCommits(params?: {
- user_id?: string;
- agent_id?: string;
- status?: string;
- limit?: number;
-}): Promise<{ commits: StagingCommit[] }> {
- const q = new URLSearchParams();
- if (params?.user_id) q.set("user_id", params.user_id);
- if (params?.agent_id) q.set("agent_id", params.agent_id);
- if (params?.status) q.set("status", params.status);
- if (params?.limit) q.set("limit", String(params.limit));
- const qs = q.toString();
- return get(`/v1/staging/commits${qs ? `?${qs}` : ""}`);
-}
-
-export function approveCommit(id: string): Promise> {
- return post(`/v1/staging/commits/${id}/approve`);
-}
-
-export function rejectCommit(
- id: string,
- reason: string
-): Promise> {
- return post(`/v1/staging/commits/${id}/reject`, { reason });
-}
diff --git a/dashboard/src/lib/api/stats.ts b/dashboard/src/lib/api/stats.ts
deleted file mode 100644
index 7ea0b9d..0000000
--- a/dashboard/src/lib/api/stats.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { get } from "./client";
-import type { Stats } from "../types/stats";
-
-export function getStats(params?: {
- user_id?: string;
- agent_id?: string;
-}): Promise {
- const q = new URLSearchParams();
- if (params?.user_id) q.set("user_id", params.user_id);
- if (params?.agent_id) q.set("agent_id", params.agent_id);
- const qs = q.toString();
- return get(`/v1/stats${qs ? `?${qs}` : ""}`);
-}
diff --git a/dashboard/src/lib/hooks/use-categories.ts b/dashboard/src/lib/hooks/use-categories.ts
deleted file mode 100644
index 1bb990d..0000000
--- a/dashboard/src/lib/hooks/use-categories.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import useSWR from "swr";
-import { fetcher } from "../api/client";
-import type { Category } from "../types/category";
-
-export function useCategories() {
- return useSWR<{ categories: Category[] }>("/v1/categories", fetcher);
-}
-
-export function useCategoryTree() {
- return useSWR<{ tree: Category[] }>("/v1/categories/tree", fetcher);
-}
diff --git a/dashboard/src/lib/hooks/use-conflicts.ts b/dashboard/src/lib/hooks/use-conflicts.ts
deleted file mode 100644
index 96c0b05..0000000
--- a/dashboard/src/lib/hooks/use-conflicts.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import useSWR from "swr";
-import { fetcher } from "../api/client";
-import type { Conflict } from "../types/conflict";
-
-export function useConflicts(resolution?: string) {
- const q = resolution ? `?resolution=${resolution}` : "";
- return useSWR<{ conflicts: Conflict[] }>(`/v1/conflicts${q}`, fetcher);
-}
diff --git a/dashboard/src/lib/hooks/use-constellation.ts b/dashboard/src/lib/hooks/use-constellation.ts
deleted file mode 100644
index d6ce6bf..0000000
--- a/dashboard/src/lib/hooks/use-constellation.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import useSWR from "swr";
-import { fetcher } from "../api/client";
-import type { ConstellationData } from "../types/constellation";
-
-export function useConstellation(limit = 1000) {
- return useSWR(
- `/v1/dashboard/constellation?limit=${limit}`,
- fetcher
- );
-}
diff --git a/dashboard/src/lib/hooks/use-decay-log.ts b/dashboard/src/lib/hooks/use-decay-log.ts
deleted file mode 100644
index 05cd1c1..0000000
--- a/dashboard/src/lib/hooks/use-decay-log.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import useSWR from "swr";
-import { fetcher } from "../api/client";
-import type { DecayLogEntry } from "../api/decay";
-
-export function useDecayLog(limit = 20) {
- return useSWR<{ entries: DecayLogEntry[] }>(
- `/v1/decay-log?limit=${limit}`,
- fetcher
- );
-}
diff --git a/dashboard/src/lib/hooks/use-memories.ts b/dashboard/src/lib/hooks/use-memories.ts
deleted file mode 100644
index d0b5f5c..0000000
--- a/dashboard/src/lib/hooks/use-memories.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import useSWR from "swr";
-import { fetcher } from "../api/client";
-import type { MemoryListResponse } from "../types/memory";
-
-export function useMemories(params?: { layer?: string; limit?: number }) {
- const q = new URLSearchParams();
- if (params?.layer && params.layer !== "all") q.set("layer", params.layer);
- if (params?.limit) q.set("limit", String(params.limit));
- const qs = q.toString();
- return useSWR(
- `/v1/memories${qs ? `?${qs}` : ""}`,
- fetcher
- );
-}
diff --git a/dashboard/src/lib/hooks/use-memory.ts b/dashboard/src/lib/hooks/use-memory.ts
deleted file mode 100644
index 3f10ab0..0000000
--- a/dashboard/src/lib/hooks/use-memory.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import useSWR from "swr";
-import { fetcher } from "../api/client";
-import type { Memory, MemoryHistoryEntry } from "../types/memory";
-
-export function useMemory(id: string | null) {
- return useSWR(id ? `/v1/memories/${id}` : null, fetcher);
-}
-
-export function useMemoryHistory(id: string | null) {
- return useSWR(
- id ? `/v1/memories/${id}/history` : null,
- fetcher
- );
-}
diff --git a/dashboard/src/lib/hooks/use-profiles.ts b/dashboard/src/lib/hooks/use-profiles.ts
deleted file mode 100644
index a4df9a8..0000000
--- a/dashboard/src/lib/hooks/use-profiles.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import useSWR from "swr";
-import { fetcher } from "../api/client";
-import type { Profile } from "../types/profile";
-
-export function useProfiles() {
- return useSWR<{ profiles: Profile[] }>("/v1/profiles", fetcher);
-}
diff --git a/dashboard/src/lib/hooks/use-scenes.ts b/dashboard/src/lib/hooks/use-scenes.ts
deleted file mode 100644
index 6e92591..0000000
--- a/dashboard/src/lib/hooks/use-scenes.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import useSWR from "swr";
-import { fetcher } from "../api/client";
-import type { Scene } from "../types/scene";
-
-export function useScenes(limit = 50) {
- return useSWR<{ scenes: Scene[] }>(`/v1/scenes?limit=${limit}`, fetcher);
-}
diff --git a/dashboard/src/lib/hooks/use-scroll-progress.ts b/dashboard/src/lib/hooks/use-scroll-progress.ts
deleted file mode 100644
index 7c26571..0000000
--- a/dashboard/src/lib/hooks/use-scroll-progress.ts
+++ /dev/null
@@ -1,27 +0,0 @@
-"use client";
-
-import { useState, useEffect } from "react";
-
-export function useScrollProgress(): number {
- const [progress, setProgress] = useState(0);
-
- useEffect(() => {
- const main = document.querySelector("main");
- if (!main) return;
-
- const handleScroll = () => {
- const scrollTop = main.scrollTop;
- const scrollHeight = main.scrollHeight - main.clientHeight;
- if (scrollHeight <= 0) {
- setProgress(0);
- return;
- }
- setProgress(Math.min(1, Math.max(0, scrollTop / scrollHeight)));
- };
-
- main.addEventListener("scroll", handleScroll, { passive: true });
- return () => main.removeEventListener("scroll", handleScroll);
- }, []);
-
- return progress;
-}
diff --git a/dashboard/src/lib/hooks/use-staging.ts b/dashboard/src/lib/hooks/use-staging.ts
deleted file mode 100644
index 8c6489f..0000000
--- a/dashboard/src/lib/hooks/use-staging.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import useSWR from "swr";
-import { fetcher } from "../api/client";
-import type { StagingCommit } from "../types/staging";
-
-export function useStaging(status?: string) {
- const q = status ? `?status=${status}` : "";
- return useSWR<{ commits: StagingCommit[] }>(`/v1/staging/commits${q}`, fetcher);
-}
diff --git a/dashboard/src/lib/hooks/use-stats.ts b/dashboard/src/lib/hooks/use-stats.ts
deleted file mode 100644
index 527d5c8..0000000
--- a/dashboard/src/lib/hooks/use-stats.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import useSWR from "swr";
-import { fetcher } from "../api/client";
-import type { Stats } from "../types/stats";
-
-export function useStats() {
- return useSWR("/v1/stats", fetcher);
-}
diff --git a/dashboard/src/lib/stores/cluster-store.ts b/dashboard/src/lib/stores/cluster-store.ts
deleted file mode 100644
index f4fc056..0000000
--- a/dashboard/src/lib/stores/cluster-store.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { create } from "zustand";
-
-export type ClusterDimension =
- | "category"
- | "memory_type"
- | "layer"
- | "scene"
- | "echo_depth"
- | "strength"
- | "time"
- | "profile";
-
-interface ClusterState {
- dimension: ClusterDimension;
- expandedCluster: string | null;
- transitioning: boolean;
- setDimension: (d: ClusterDimension) => void;
- expandCluster: (id: string | null) => void;
- setTransitioning: (t: boolean) => void;
-}
-
-export const useClusterStore = create((set) => ({
- dimension: "category",
- expandedCluster: null,
- transitioning: false,
- setDimension: (dimension) => {
- set({ transitioning: true, expandedCluster: null });
- setTimeout(() => set({ dimension, transitioning: false }), 800);
- },
- expandCluster: (expandedCluster) => set({ expandedCluster }),
- setTransitioning: (transitioning) => set({ transitioning }),
-}));
diff --git a/dashboard/src/lib/stores/filter-store.ts b/dashboard/src/lib/stores/filter-store.ts
deleted file mode 100644
index e9773c7..0000000
--- a/dashboard/src/lib/stores/filter-store.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-import { create } from "zustand";
-
-interface FilterState {
- layer: "all" | "sml" | "lml";
- strengthRange: [number, number];
- categories: string[];
- searchQuery: string;
- setLayer: (layer: "all" | "sml" | "lml") => void;
- setStrengthRange: (range: [number, number]) => void;
- setCategories: (categories: string[]) => void;
- setSearchQuery: (query: string) => void;
- reset: () => void;
-}
-
-export const useFilterStore = create((set) => ({
- layer: "all",
- strengthRange: [0, 1],
- categories: [],
- searchQuery: "",
- setLayer: (layer) => set({ layer }),
- setStrengthRange: (strengthRange) => set({ strengthRange }),
- setCategories: (categories) => set({ categories }),
- setSearchQuery: (searchQuery) => set({ searchQuery }),
- reset: () =>
- set({ layer: "all", strengthRange: [0, 1], categories: [], searchQuery: "" }),
-}));
diff --git a/dashboard/src/lib/stores/graph-store.ts b/dashboard/src/lib/stores/graph-store.ts
deleted file mode 100644
index e29ec1c..0000000
--- a/dashboard/src/lib/stores/graph-store.ts
+++ /dev/null
@@ -1,31 +0,0 @@
-import { create } from "zustand";
-
-interface GraphState {
- zoom: number;
- offsetX: number;
- offsetY: number;
- selectedNodeId: string | null;
- showSml: boolean;
- showLml: boolean;
- setZoom: (zoom: number) => void;
- setOffset: (x: number, y: number) => void;
- selectNode: (id: string | null) => void;
- toggleSml: () => void;
- toggleLml: () => void;
- resetView: () => void;
-}
-
-export const useGraphStore = create((set) => ({
- zoom: 1,
- offsetX: 0,
- offsetY: 0,
- selectedNodeId: null,
- showSml: true,
- showLml: true,
- setZoom: (zoom) => set({ zoom }),
- setOffset: (offsetX, offsetY) => set({ offsetX, offsetY }),
- selectNode: (selectedNodeId) => set({ selectedNodeId }),
- toggleSml: () => set((s) => ({ showSml: !s.showSml })),
- toggleLml: () => set((s) => ({ showLml: !s.showLml })),
- resetView: () => set({ zoom: 1, offsetX: 0, offsetY: 0, selectedNodeId: null }),
-}));
diff --git a/dashboard/src/lib/stores/inspector-store.ts b/dashboard/src/lib/stores/inspector-store.ts
deleted file mode 100644
index 7d40556..0000000
--- a/dashboard/src/lib/stores/inspector-store.ts
+++ /dev/null
@@ -1,24 +0,0 @@
-import { create } from "zustand";
-
-interface InspectorState {
- selectedMemoryId: string | null;
- isOpen: boolean;
- open: (memoryId: string) => void;
- close: () => void;
- toggle: (memoryId: string) => void;
-}
-
-export const useInspectorStore = create((set, get) => ({
- selectedMemoryId: null,
- isOpen: false,
- open: (memoryId) => set({ selectedMemoryId: memoryId, isOpen: true }),
- close: () => set({ isOpen: false, selectedMemoryId: null }),
- toggle: (memoryId) => {
- const state = get();
- if (state.isOpen && state.selectedMemoryId === memoryId) {
- set({ isOpen: false, selectedMemoryId: null });
- } else {
- set({ selectedMemoryId: memoryId, isOpen: true });
- }
- },
-}));
diff --git a/dashboard/src/lib/types/category.ts b/dashboard/src/lib/types/category.ts
deleted file mode 100644
index e201435..0000000
--- a/dashboard/src/lib/types/category.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-export interface Category {
- id: string;
- name: string;
- parent_id?: string;
- memory_count: number;
- strength: number;
- keywords?: string[];
- children?: Category[];
-}
-
-export interface CategoryTree {
- tree: Category[];
-}
diff --git a/dashboard/src/lib/types/conflict.ts b/dashboard/src/lib/types/conflict.ts
deleted file mode 100644
index c6aab8b..0000000
--- a/dashboard/src/lib/types/conflict.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-export interface Conflict {
- id: string;
- stash_id: string;
- existing_memory_id: string;
- existing_content: string;
- proposed_content: string;
- similarity: number;
- resolution?: "KEEP_EXISTING" | "ACCEPT_PROPOSED" | "KEEP_BOTH";
- user_id?: string;
- created_at: string;
- resolved_at?: string;
-}
diff --git a/dashboard/src/lib/types/constellation.ts b/dashboard/src/lib/types/constellation.ts
deleted file mode 100644
index 4291958..0000000
--- a/dashboard/src/lib/types/constellation.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-export interface ConstellationNode {
- id: string;
- label: string;
- layer: "sml" | "lml";
- strength: number;
- category?: string;
- x?: number;
- y?: number;
-}
-
-export interface ConstellationEdge {
- source: string;
- target: string;
- type: "scene" | "category" | "entity";
- weight?: number;
-}
-
-export interface ConstellationData {
- nodes: ConstellationNode[];
- edges: ConstellationEdge[];
-}
diff --git a/dashboard/src/lib/types/memory.ts b/dashboard/src/lib/types/memory.ts
deleted file mode 100644
index 9b57259..0000000
--- a/dashboard/src/lib/types/memory.ts
+++ /dev/null
@@ -1,49 +0,0 @@
-export interface Memory {
- id: string;
- content: string;
- layer: "sml" | "lml";
- strength: number;
- user_id: string;
- agent_id?: string;
- categories: string[];
- access_count: number;
- created_at: string;
- updated_at: string;
- last_accessed?: string;
- memory_type?: "episodic" | "semantic";
- scene_id?: string;
- s_fast?: number;
- s_mid?: number;
- s_slow?: number;
- metadata?: MemoryMetadata;
-}
-
-export interface MemoryMetadata {
- echo_depth?: string;
- echo_paraphrases?: string[];
- echo_keywords?: string[];
- echo_implications?: string[];
- echo_questions?: string[];
- echo_importance?: number;
- source_type?: string;
- source_app?: string;
- related_memories?: string[];
- [key: string]: unknown;
-}
-
-export interface MemoryHistoryEntry {
- event: string;
- timestamp: string;
- details?: Record;
-}
-
-export interface MemoryListResponse {
- memories: Memory[];
- count: number;
-}
-
-export interface MemoryUpdatePayload {
- content?: string;
- categories?: string[];
- metadata?: Record;
-}
diff --git a/dashboard/src/lib/types/profile.ts b/dashboard/src/lib/types/profile.ts
deleted file mode 100644
index 4a9c2f4..0000000
--- a/dashboard/src/lib/types/profile.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-export interface Profile {
- id: string;
- name: string;
- type: "self" | "contact" | "entity";
- user_id: string;
- facts?: string[];
- preferences?: string[];
- relationships?: ProfileRelationship[];
- created_at: string;
- updated_at: string;
-}
-
-export interface ProfileRelationship {
- target_id: string;
- target_name: string;
- relationship_type: string;
-}
diff --git a/dashboard/src/lib/types/scene.ts b/dashboard/src/lib/types/scene.ts
deleted file mode 100644
index 53300a0..0000000
--- a/dashboard/src/lib/types/scene.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-export interface Scene {
- id: string;
- title?: string;
- topic?: string;
- summary?: string;
- start_time: string;
- end_time?: string;
- memory_ids: string[];
- participants?: string[];
- memory_count: number;
-}
diff --git a/dashboard/src/lib/types/staging.ts b/dashboard/src/lib/types/staging.ts
deleted file mode 100644
index 522445f..0000000
--- a/dashboard/src/lib/types/staging.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-export interface StagingCommit {
- id: string;
- agent_id: string;
- content: string;
- status: "PENDING" | "APPROVED" | "REJECTED";
- checks_summary?: Record;
- user_id?: string;
- created_at: string;
- resolved_at?: string;
- rejection_reason?: string;
-}
diff --git a/dashboard/src/lib/types/stats.ts b/dashboard/src/lib/types/stats.ts
deleted file mode 100644
index 2c37bee..0000000
--- a/dashboard/src/lib/types/stats.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-export interface Stats {
- total_memories: number;
- sml_count: number;
- lml_count: number;
- categories: Record;
- storage_mb?: number;
-}
diff --git a/dashboard/src/lib/utils/cluster-layout.ts b/dashboard/src/lib/utils/cluster-layout.ts
deleted file mode 100644
index c56cef9..0000000
--- a/dashboard/src/lib/utils/cluster-layout.ts
+++ /dev/null
@@ -1,124 +0,0 @@
-import type { Memory } from "@/lib/types/memory";
-import type { ClusterDimension } from "@/lib/stores/cluster-store";
-
-export interface ClusterGroup {
- id: string;
- label: string;
- memories: Memory[];
- color: string;
- x: number;
- y: number;
- radius: number;
-}
-
-export interface NodePosition {
- id: string;
- x: number;
- y: number;
- clusterIndex: number;
-}
-
-const CLUSTER_COLORS = [
- '#7c3aed', '#06d6a0', '#22d3ee', '#fbbf24', '#ef4444',
- '#f59e0b', '#22c55e', '#a78bfa', '#c084fc', '#60a5fa',
- '#f472b6', '#34d399', '#fb923c', '#818cf8', '#94a3b8',
-];
-
-function groupBy(memories: Memory[], dimension: ClusterDimension): Map {
- const groups = new Map();
-
- for (const m of memories) {
- let keys: string[];
- switch (dimension) {
- case 'category':
- keys = m.categories.length > 0 ? [m.categories[0]] : ['Uncategorized'];
- break;
- case 'memory_type':
- keys = [m.memory_type || 'episodic'];
- break;
- case 'layer':
- keys = [m.layer];
- break;
- case 'scene':
- keys = [m.scene_id || 'No Scene'];
- break;
- case 'echo_depth':
- keys = [m.metadata?.echo_depth || 'none'];
- break;
- case 'strength': {
- const s = m.strength;
- keys = [s < 0.3 ? 'Weak' : s < 0.7 ? 'Moderate' : 'Strong'];
- break;
- }
- case 'time': {
- const age = (Date.now() - new Date(m.created_at).getTime()) / (1000 * 60 * 60 * 24);
- keys = [age < 1 ? 'Today' : age < 7 ? 'This Week' : age < 30 ? 'This Month' : 'Older'];
- break;
- }
- case 'profile':
- keys = [m.user_id || 'Unknown'];
- break;
- default:
- keys = ['Other'];
- }
-
- for (const key of keys) {
- if (!groups.has(key)) groups.set(key, []);
- groups.get(key)!.push(m);
- }
- }
-
- return groups;
-}
-
-export function computeClusterLayout(
- memories: Memory[],
- dimension: ClusterDimension,
- width: number,
- height: number,
-): { clusters: ClusterGroup[]; nodes: NodePosition[] } {
- const groups = groupBy(memories, dimension);
- const entries = Array.from(groups.entries()).sort((a, b) => b[1].length - a[1].length);
-
- const clusters: ClusterGroup[] = [];
- const nodes: NodePosition[] = [];
- const totalGroups = entries.length;
-
- // Pack clusters in a circle layout
- const cx = width / 2;
- const cy = height / 2;
- const layoutRadius = Math.min(width, height) * 0.35;
-
- entries.forEach(([label, mems], i) => {
- const angle = (i / Math.max(1, totalGroups)) * Math.PI * 2 - Math.PI / 2;
- const clusterRadius = Math.max(40, Math.sqrt(mems.length) * 20);
-
- const x = totalGroups === 1 ? cx : cx + Math.cos(angle) * layoutRadius;
- const y = totalGroups === 1 ? cy : cy + Math.sin(angle) * layoutRadius;
-
- clusters.push({
- id: `cluster-${i}`,
- label,
- memories: mems,
- color: CLUSTER_COLORS[i % CLUSTER_COLORS.length],
- x,
- y,
- radius: clusterRadius,
- });
-
- // Place nodes within cluster
- mems.forEach((m, j) => {
- const nodeAngle = (j / mems.length) * Math.PI * 2;
- const nodeR = clusterRadius * 0.7 * Math.sqrt(Math.random());
-
- nodes.push({
- id: m.id,
- x: x + Math.cos(nodeAngle) * nodeR,
- y: y + Math.sin(nodeAngle) * nodeR,
- clusterIndex: i,
- });
- });
- });
-
- return { clusters, nodes };
-}
diff --git a/dashboard/src/lib/utils/colors.ts b/dashboard/src/lib/utils/colors.ts
deleted file mode 100644
index 67c87f2..0000000
--- a/dashboard/src/lib/utils/colors.ts
+++ /dev/null
@@ -1,30 +0,0 @@
-import { NEURAL } from './neural-palette';
-
-export const COLORS = {
- sml: NEURAL.sml,
- lml: NEURAL.lml,
- brand: NEURAL.episodic,
- destructive: NEURAL.conflict,
- success: NEURAL.success,
- scene: '#6b7280',
- category: NEURAL.episodic,
- entity: NEURAL.semantic,
- episodic: NEURAL.episodic,
- semantic: NEURAL.semantic,
- sFast: NEURAL.sFast,
- sMid: NEURAL.sMid,
- sSlow: NEURAL.sSlow,
-} as const;
-
-export function layerColor(layer: string): string {
- return layer === 'lml' ? COLORS.lml : COLORS.sml;
-}
-
-export function profileTypeColor(type: string): string {
- switch (type) {
- case 'self': return COLORS.lml;
- case 'contact': return COLORS.sml;
- case 'entity': return COLORS.brand;
- default: return COLORS.scene;
- }
-}
diff --git a/dashboard/src/lib/utils/decay-math.ts b/dashboard/src/lib/utils/decay-math.ts
deleted file mode 100644
index 7e0a9da..0000000
--- a/dashboard/src/lib/utils/decay-math.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-// Client-side replica of engram/core/decay.py:calculate_decayed_strength
-const SML_RATE = 0.15;
-const LML_RATE = 0.02;
-const ACCESS_DAMPENING = 0.5;
-export const FORGET_THRESHOLD = 0.1;
-export const PROMOTE_THRESHOLD = 0.7;
-export const PROMOTE_ACCESS_THRESHOLD = 3;
-
-export function projectDecay(
- currentStrength: number,
- accessCount: number,
- layer: "sml" | "lml",
- days: number
-): number {
- const rate = layer === "sml" ? SML_RATE : LML_RATE;
- const dampening = 1 + ACCESS_DAMPENING * Math.log1p(accessCount);
- const projected = currentStrength * Math.exp((-rate * days) / dampening);
- return Math.max(0, Math.min(1, projected));
-}
-
-export function decayProjectionSeries(
- currentStrength: number,
- accessCount: number,
- layer: "sml" | "lml",
- totalDays = 30
-): { day: number; strength: number }[] {
- const points: { day: number; strength: number }[] = [];
- for (let d = 0; d <= totalDays; d++) {
- points.push({ day: d, strength: projectDecay(currentStrength, accessCount, layer, d) });
- }
- return points;
-}
diff --git a/dashboard/src/lib/utils/format.ts b/dashboard/src/lib/utils/format.ts
deleted file mode 100644
index 87ddd12..0000000
--- a/dashboard/src/lib/utils/format.ts
+++ /dev/null
@@ -1,37 +0,0 @@
-export function formatDate(iso: string): string {
- return new Date(iso).toLocaleDateString("en-US", {
- month: "short",
- day: "numeric",
- year: "numeric",
- });
-}
-
-export function formatDateTime(iso: string): string {
- return new Date(iso).toLocaleString("en-US", {
- month: "short",
- day: "numeric",
- hour: "numeric",
- minute: "2-digit",
- });
-}
-
-export function timeAgo(iso: string): string {
- const seconds = Math.floor((Date.now() - new Date(iso).getTime()) / 1000);
- if (seconds < 60) return "just now";
- const minutes = Math.floor(seconds / 60);
- if (minutes < 60) return `${minutes}m ago`;
- const hours = Math.floor(minutes / 60);
- if (hours < 24) return `${hours}h ago`;
- const days = Math.floor(hours / 24);
- if (days < 30) return `${days}d ago`;
- return formatDate(iso);
-}
-
-export function truncate(text: string, maxLen = 80): string {
- if (text.length <= maxLen) return text;
- return text.slice(0, maxLen).trimEnd() + "...";
-}
-
-export function cn(...classes: (string | false | null | undefined)[]): string {
- return classes.filter(Boolean).join(" ");
-}
diff --git a/dashboard/src/lib/utils/neural-palette.ts b/dashboard/src/lib/utils/neural-palette.ts
deleted file mode 100644
index 2e91fba..0000000
--- a/dashboard/src/lib/utils/neural-palette.ts
+++ /dev/null
@@ -1,74 +0,0 @@
-export const NEURAL = {
- // Backgrounds (dark depth layers)
- void: '#050510',
- cortex: '#0a0a1a',
- synapse: '#12122a',
- membrane: '#1a1a3a',
-
- // Memory types
- episodic: '#7c3aed',
- semantic: '#06d6a0',
-
- // Layers
- sml: '#22d3ee',
- lml: '#fbbf24',
-
- // Multi-trace
- sFast: '#ef4444',
- sMid: '#f59e0b',
- sSlow: '#22c55e',
-
- // Echo depths
- shallow: '#94a3b8',
- medium: '#a78bfa',
- deep: '#c084fc',
-
- // States
- conflict: '#ef4444',
- pending: '#f59e0b',
- success: '#22c55e',
- forgotten: '#334155',
-
- // Glow
- neuralGlow: '#7c3aed40',
- synapseGlow: '#22d3ee30',
-} as const;
-
-export const GLASS = {
- background: 'rgba(26, 26, 58, 0.6)',
- backdropFilter: 'blur(12px)',
- border: 'rgba(124, 58, 237, 0.15)',
- borderRadius: '12px',
-} as const;
-
-export function memoryTypeColor(type: string): string {
- return type === 'semantic' ? NEURAL.semantic : NEURAL.episodic;
-}
-
-export function layerColor(layer: string): string {
- return layer === 'lml' ? NEURAL.lml : NEURAL.sml;
-}
-
-export function traceColor(trace: 'fast' | 'mid' | 'slow'): string {
- switch (trace) {
- case 'fast': return NEURAL.sFast;
- case 'mid': return NEURAL.sMid;
- case 'slow': return NEURAL.sSlow;
- }
-}
-
-export function echoDepthColor(depth: string): string {
- switch (depth) {
- case 'deep': return NEURAL.deep;
- case 'medium': return NEURAL.medium;
- default: return NEURAL.shallow;
- }
-}
-
-export function strengthToGlow(strength: number): number {
- return 0.3 + strength * 0.7;
-}
-
-export function strengthToSize(strength: number, min = 4, max = 16): number {
- return min + strength * (max - min);
-}
diff --git a/dashboard/src/workers/force-layout.worker.ts b/dashboard/src/workers/force-layout.worker.ts
deleted file mode 100644
index 30d79a7..0000000
--- a/dashboard/src/workers/force-layout.worker.ts
+++ /dev/null
@@ -1,77 +0,0 @@
-import {
- forceSimulation,
- forceLink,
- forceManyBody,
- forceCenter,
- forceCollide,
- type SimulationNodeDatum,
- type SimulationLinkDatum,
-} from "d3-force";
-
-interface WorkerNode extends SimulationNodeDatum {
- id: string;
- layer: string;
- strength: number;
-}
-
-interface WorkerEdge {
- source: string;
- target: string;
- type: string;
-}
-
-interface InitMessage {
- type: "init";
- nodes: WorkerNode[];
- edges: WorkerEdge[];
- width: number;
- height: number;
-}
-
-interface TickResult {
- type: "tick" | "end";
- nodes: { id: string; x: number; y: number }[];
-}
-
-self.onmessage = (e: MessageEvent) => {
- const { nodes, edges, width, height } = e.data;
-
- const sim = forceSimulation(nodes)
- .force(
- "link",
- forceLink>(
- edges.map((e) => ({ ...e }))
- )
- .id((d) => d.id)
- .distance(60)
- .strength(0.3)
- )
- .force("charge", forceManyBody().strength(-80))
- .force("center", forceCenter(width / 2, height / 2))
- .force("collide", forceCollide(12))
- .alphaDecay(0.02);
-
- sim.on("tick", () => {
- const positions = nodes.map((n) => ({
- id: n.id,
- x: n.x ?? 0,
- y: n.y ?? 0,
- }));
- (self as unknown as Worker).postMessage({
- type: "tick",
- nodes: positions,
- } as TickResult);
- });
-
- sim.on("end", () => {
- const positions = nodes.map((n) => ({
- id: n.id,
- x: n.x ?? 0,
- y: n.y ?? 0,
- }));
- (self as unknown as Worker).postMessage({
- type: "end",
- nodes: positions,
- } as TickResult);
- });
-};
diff --git a/dashboard/tsconfig.json b/dashboard/tsconfig.json
deleted file mode 100644
index cf9c65d..0000000
--- a/dashboard/tsconfig.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "compilerOptions": {
- "target": "ES2017",
- "lib": ["dom", "dom.iterable", "esnext"],
- "allowJs": true,
- "skipLibCheck": true,
- "strict": true,
- "noEmit": true,
- "esModuleInterop": true,
- "module": "esnext",
- "moduleResolution": "bundler",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "jsx": "react-jsx",
- "incremental": true,
- "plugins": [
- {
- "name": "next"
- }
- ],
- "paths": {
- "@/*": ["./src/*"]
- }
- },
- "include": [
- "next-env.d.ts",
- "**/*.ts",
- "**/*.tsx",
- ".next/types/**/*.ts",
- ".next/dev/types/**/*.ts",
- "**/*.mts"
- ],
- "exclude": ["node_modules"]
-}
diff --git a/data/arc-agi-3-agents b/data/arc-agi-3-agents
deleted file mode 160000
index 135f20a..0000000
--- a/data/arc-agi-3-agents
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 135f20aaf44f13341ebc425666bf03b5cac58d3c
diff --git a/data/arc-agi/evaluation/00576224.json b/data/arc-agi/evaluation/00576224.json
deleted file mode 100644
index 6adeeec..0000000
--- a/data/arc-agi/evaluation/00576224.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 6], [6, 4]], "output": [[8, 6, 8, 6, 8, 6], [6, 4, 6, 4, 6, 4], [6, 8, 6, 8, 6, 8], [4, 6, 4, 6, 4, 6], [8, 6, 8, 6, 8, 6], [6, 4, 6, 4, 6, 4]]}, {"input": [[7, 9], [4, 3]], "output": [[7, 9, 7, 9, 7, 9], [4, 3, 4, 3, 4, 3], [9, 7, 9, 7, 9, 7], [3, 4, 3, 4, 3, 4], [7, 9, 7, 9, 7, 9], [4, 3, 4, 3, 4, 3]]}], "test": [{"input": [[3, 2], [7, 8]], "output": [[3, 2, 3, 2, 3, 2], [7, 8, 7, 8, 7, 8], [2, 3, 2, 3, 2, 3], [8, 7, 8, 7, 8, 7], [3, 2, 3, 2, 3, 2], [7, 8, 7, 8, 7, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/009d5c81.json b/data/arc-agi/evaluation/009d5c81.json
deleted file mode 100644
index c7c1fbe..0000000
--- a/data/arc-agi/evaluation/009d5c81.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 8, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 2, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 8, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 8, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 3, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 3, 0, 3, 0, 3, 0, 3, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 3, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 0, 0, 8, 8, 8, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 0, 7, 7, 7, 0], [0, 0, 0, 0, 7, 7, 0, 0, 7, 7, 7, 0, 7, 7], [0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8], [0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 8], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 7, 0, 0, 0, 7, 0, 7, 0, 7], [0, 0, 0, 0, 0, 7, 0, 7, 0, 7, 0, 0, 0, 7], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/00dbd492.json b/data/arc-agi/evaluation/00dbd492.json
deleted file mode 100644
index fff8be9..0000000
--- a/data/arc-agi/evaluation/00dbd492.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 2, 2, 2, 0, 0], [2, 0, 0, 0, 2, 0, 0], [2, 0, 2, 0, 2, 0, 0], [2, 0, 0, 0, 2, 0, 0], [2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 0, 0], [2, 8, 8, 8, 2, 0, 0], [2, 8, 2, 8, 2, 0, 0], [2, 8, 8, 8, 2, 0, 0], [2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[2, 2, 2, 2, 2, 2, 2, 0, 0], [2, 0, 0, 0, 0, 0, 2, 0, 0], [2, 0, 0, 0, 0, 0, 2, 0, 0], [2, 0, 0, 2, 0, 0, 2, 0, 0], [2, 0, 0, 0, 0, 0, 2, 0, 0], [2, 0, 0, 0, 0, 0, 2, 0, 0], [2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 0, 0], [2, 4, 4, 4, 4, 4, 2, 0, 0], [2, 4, 4, 4, 4, 4, 2, 0, 0], [2, 4, 4, 2, 4, 4, 2, 0, 0], [2, 4, 4, 4, 4, 4, 2, 0, 0], [2, 4, 4, 4, 4, 4, 2, 0, 0], [2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 3, 3, 3, 3, 2], [0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 3, 3, 3, 3, 2], [0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 3, 3, 3, 3, 2], [0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 2, 3, 3, 3, 2], [0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 3, 3, 3, 3, 2], [0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 3, 3, 3, 3, 2], [0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 3, 3, 3, 3, 2], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 8, 8, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 8, 2, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 8, 8, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0]], "output": [[0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 8, 8, 8, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 8, 2, 8, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 8, 8, 8, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 2, 4, 4, 4, 4, 4, 2, 0], [0, 0, 0, 0, 0, 2, 4, 4, 4, 4, 4, 2, 0], [0, 0, 0, 0, 0, 2, 4, 4, 2, 4, 4, 2, 0], [0, 0, 0, 0, 0, 2, 4, 4, 4, 4, 4, 2, 0], [0, 0, 0, 0, 0, 2, 4, 4, 4, 4, 4, 2, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 8, 8, 8, 2, 0, 0, 0, 0], [0, 2, 3, 3, 3, 3, 3, 3, 3, 2, 0, 2, 8, 2, 8, 2, 0, 0, 0, 0], [0, 2, 3, 3, 3, 3, 3, 3, 3, 2, 0, 2, 8, 8, 8, 2, 0, 0, 0, 0], [0, 2, 3, 3, 3, 3, 3, 3, 3, 2, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 2, 3, 3, 3, 2, 3, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 3, 3, 3, 3, 3, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 3, 3, 3, 3, 3, 3, 3, 2, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0], [0, 2, 3, 3, 3, 3, 3, 3, 3, 2, 0, 0, 0, 2, 8, 8, 8, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 2, 8, 2, 8, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 8, 8, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 4, 4, 4, 4, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 4, 4, 4, 4, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 4, 4, 2, 4, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 4, 4, 4, 4, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 4, 4, 4, 4, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/03560426.json b/data/arc-agi/evaluation/03560426.json
deleted file mode 100644
index b0d5cc1..0000000
--- a/data/arc-agi/evaluation/03560426.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [1, 1, 0, 0, 0, 0, 0, 0, 0, 4], [1, 1, 0, 2, 2, 0, 3, 3, 0, 4], [1, 1, 0, 2, 2, 0, 3, 3, 0, 4]], "output": [[1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 7, 7, 0, 2, 2, 2], [8, 8, 8, 0, 7, 7, 0, 2, 2, 2]], "output": [[8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [8, 8, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 7, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 3, 3, 3], [4, 4, 4, 4, 0, 2, 0, 3, 3, 3], [4, 4, 4, 4, 0, 2, 0, 3, 3, 3]], "output": [[4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [4, 4, 4, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 8, 8, 0, 6, 0, 0, 0, 0], [7, 0, 8, 8, 0, 6, 0, 3, 3, 0], [7, 0, 8, 8, 0, 6, 0, 3, 3, 0]], "output": [[7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [8, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/05a7bcf2.json b/data/arc-agi/evaluation/05a7bcf2.json
deleted file mode 100644
index 00b9f10..0000000
--- a/data/arc-agi/evaluation/05a7bcf2.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train":[{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,0],[0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0],[2,0,0,2,2,0,0,2,0,2,0,0,2,2,0,0,0,2,0,2,0,0,2,2,2,0,0,2,0,0],[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],"output":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0],[0,0,0,3,3,0,0,0,0,4,4,0,0,0,0,0,0,4,4,4,0,0,0,0,3,3,0,0,0,0],[0,0,0,4,4,0,0,0,0,4,4,0,0,0,0,0,0,4,4,4,0,0,0,0,3,3,0,0,0,0],[0,0,0,4,4,0,0,0,0,4,4,0,0,0,0,0,0,4,4,4,0,0,0,3,3,3,0,0,0,0],[0,0,0,4,4,0,0,0,0,4,4,0,0,0,0,0,0,4,4,4,0,0,0,4,4,4,0,0,0,0],[0,0,0,4,4,0,0,0,0,4,4,0,0,0,0,0,0,4,4,4,0,0,0,4,4,4,0,0,0,0],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[0,0,0,8,8,0,0,0,0,8,8,0,0,0,0,0,0,8,8,8,0,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,0,0,0,0,8,8,0,0,0,0,0,0,8,8,8,0,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,0,0,0,0,8,8,0,0,0,0,0,0,8,8,8,0,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,0,0,0,0,8,8,0,0,0,0,0,0,8,8,8,0,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,0,0,0,0,8,8,0,0,0,0,0,0,8,8,8,0,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,0,0,0,0,8,8,0,0,0,0,0,0,8,8,8,0,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,0,0,0,0,8,8,0,0,0,0,0,0,8,8,8,0,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,0,0,0,0,8,8,0,0,0,0,0,0,8,8,8,0,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,0,0,0,0,8,8,0,0,2,0,0,0,8,8,8,0,0,2,8,8,8,0,0,0,0],[2,0,0,8,8,0,0,2,0,8,8,0,2,2,0,0,0,8,8,8,0,0,2,8,8,8,0,2,0,0],[2,2,2,8,8,2,2,2,2,8,8,2,2,2,2,2,2,8,8,8,2,2,2,8,8,8,2,2,2,2],[0,0,0,8,8,0,0,0,0,8,8,0,0,0,0,0,0,8,8,8,0,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,0,0,0,0,8,8,0,0,0,0,0,0,8,8,8,0,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,0,0,0,0,8,8,0,0,0,0,0,0,8,8,8,0,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,0,0,0,0,8,8,0,0,0,0,0,0,8,8,8,0,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,0,0,0,0,8,8,0,0,0,0,0,0,8,8,8,0,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,0,0,0,0,8,8,0,0,0,0,0,0,8,8,8,0,0,0,2,8,8,0,0,0,0],[0,0,0,2,2,0,0,0,0,2,8,0,0,0,0,0,0,2,8,2,0,0,0,2,2,8,0,0,0,0],[0,0,0,2,2,0,0,0,0,2,2,0,0,0,0,0,0,2,2,2,0,0,0,2,2,2,0,0,0,0]]},{"input":[[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,4,4,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,4,4,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,4,4,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,4,4,0,0,0,8,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,4,0,0,0,8,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,4,4,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0]],"output":[[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,3,3,4,4,4,4,4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,2],[0,0,3,3,4,4,4,4,4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,2],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,3,4,4,4,4,4,4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,2,2],[0,0,3,4,4,4,4,4,4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,2,2,2],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,3,3,4,4,4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,2,2],[0,0,0,0,3,3,4,4,4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,2,2,2],[0,0,0,0,0,3,4,4,4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,2,2,2],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,3,3,4,4,4,4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,2,2],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0]]},{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,0,0,4,4,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,2,0,2,2,2,2,2,2,0,2,0,2,2,2,0,2,0,2,2,0,2,0,2,2,0,0,0],[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],"output":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,3,3,3,3,0,0,0,0,0,3,3,0,0,0],[0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,3,3,3,3,0,0,0,0,0,4,4,0,0,0],[0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,4,4,4,4,0,0,0,0,0,4,4,0,0,0],[0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,4,4,4,4,0,0,0,0,0,4,4,0,0,0],[0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,4,4,4,4,0,0,0,0,0,4,4,0,0,0],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,8,8,8,8,0,0,0,0,0,8,8,0,0,0],[0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,8,8,8,8,0,0,0,0,0,8,8,0,0,0],[0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,8,8,8,8,0,0,0,0,0,8,8,0,0,0],[0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,8,8,8,8,0,0,0,0,0,8,8,0,0,0],[0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,8,8,8,8,0,0,0,0,0,8,8,0,0,0],[0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,8,8,8,8,0,0,0,0,0,8,8,0,0,0],[0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,8,8,8,8,0,0,0,0,0,8,8,0,0,0],[0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,8,8,8,8,0,0,0,0,0,8,8,0,0,0],[0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,8,8,8,8,0,0,0,0,0,8,8,0,0,0],[0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,2,8,8,8,8,0,0,0,0,0,8,8,0,0,0],[0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,2,8,8,8,8,0,0,0,0,0,8,8,0,0,0],[0,0,2,2,0,2,8,8,8,8,8,0,2,0,2,2,8,8,8,8,2,2,0,2,0,8,8,0,0,0],[2,2,2,2,2,2,8,8,8,8,8,2,2,2,2,2,8,8,8,8,2,2,2,2,2,8,8,2,2,2],[0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,8,8,8,8,0,0,0,0,0,8,8,0,0,0],[0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,8,8,8,8,0,0,0,0,0,8,8,0,0,0],[0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,8,8,8,8,0,0,0,0,0,8,8,0,0,0],[0,0,0,0,0,0,8,8,2,2,8,0,0,0,0,0,8,8,8,8,0,0,0,0,0,8,8,0,0,0],[0,0,0,0,0,0,8,2,2,2,8,0,0,0,0,0,2,8,8,8,0,0,0,0,0,8,8,0,0,0],[0,0,0,0,0,0,2,2,2,2,2,0,0,0,0,0,2,8,2,8,0,0,0,0,0,2,2,0,0,0],[0,0,0,0,0,0,2,2,2,2,2,0,0,0,0,0,2,2,2,2,0,0,0,0,0,2,2,0,0,0]]}],"test":[{"input":[[0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,8,0,0,0,0,0,4,4,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,8,0,0,0,0,0,4,4,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,8,0,0,0,0,0,4,4,4,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,2,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,8,0,0,0,0,4,4,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,8,0,0,0,0,4,4,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,0,0,0,4,4,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,8,0,0,0,0,4,4,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,2,0,0,0,0,0,8,0,0,0,0,4,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,8,0,0,0,0,4,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,8,0,0,0,0,4,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,0,0,0,0,8,0,0,0,0,4,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,8,0,0,0,0,4,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,8,0,0,0,0,4,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,2,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,4],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,8,0,0,0,0,0,4,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0]],"output":[[0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[2,2,2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,4,3,3,0,0,0],[2,2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,4,3,3,0,0,0],[2,2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,4,3,3,3,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,2,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[2,2,2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,3,3,0,0,0,0],[2,2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,3,3,0,0,0,0],[2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,3,3,0,0,0,0],[2,2,2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,3,3,0,0,0,0],[2,2,2,2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,3,0,0,0,0,0],[2,2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,3,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[2,2,2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,3,0,0,0,0,0],[2,2,2,2,2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,3,0,0,0,0,0],[2,2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,3,0,0,0,0,0],[2,2,2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,3,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,2,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[2,2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,4,4,4,4,4,3],[2,2,2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,4,3,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0]]}],"name":"05a7bcf2"}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/0607ce86.json b/data/arc-agi/evaluation/0607ce86.json
deleted file mode 100644
index 1ad231a..0000000
--- a/data/arc-agi/evaluation/0607ce86.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 6, 6, 6, 6, 3, 6, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 3, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 3, 0, 0, 0], [0, 3, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 3, 0, 0, 0, 3, 0, 0], [0, 3, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 6, 6, 3, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 3, 8, 3, 3, 8, 3, 0, 3, 0, 0, 0, 3], [0, 0, 8, 8, 3, 3, 3, 8, 0, 0, 3, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 0], [3, 3, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 3, 6, 6, 6, 0, 3, 6, 6, 6, 3, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 3, 0], [0, 0, 8, 3, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 8, 8, 3, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 3, 0, 0, 0, 3, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 1, 1, 1, 2, 3, 3, 0, 3, 0, 0], [0, 1, 1, 3, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 3, 0, 3, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 1, 3, 3, 0, 0, 0, 3], [0, 1, 3, 3, 3, 1, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 1, 3, 3, 3, 0, 3, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 3, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [0, 1, 1, 2, 3, 3, 0, 1, 3, 2, 1, 3, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [1, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 3, 1, 3, 2, 3, 3, 0, 0, 0, 0], [0, 8, 1, 8, 8, 3, 0, 8, 8, 8, 8, 8, 0, 1, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 3, 0], [0, 1, 1, 3, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 1, 3, 3, 0, 1, 1, 2, 3, 1, 0, 0, 0, 0], [1, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 1, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [3, 8, 8, 8, 3, 3, 1, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 1, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 3, 0, 3, 0, 1, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 1, 1, 2, 3, 3, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 3], [0, 3, 2, 2, 3, 0, 0, 3, 2, 2, 3, 0, 3, 3, 2, 2, 3, 0, 0, 3, 0, 0], [0, 2, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 2, 3, 1, 3, 0, 0, 2, 2, 1, 2, 0, 0, 3, 1, 1, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 2, 2, 2, 2, 3, 0, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 3, 2, 2, 3, 0, 0, 3, 2, 2, 3, 0, 3, 3, 2, 2, 3, 2, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 3, 3, 1, 3, 0, 0, 3, 1, 1, 3, 0, 0, 3, 1, 1, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 3, 2, 3, 2, 0, 0, 2, 3, 2, 2, 0, 0, 0, 0, 0], [0, 3, 2, 2, 3, 0, 0, 3, 2, 3, 3, 0, 0, 3, 2, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 3, 2, 3, 3, 0, 0, 2, 0, 0], [0, 3, 1, 1, 3, 0, 3, 3, 1, 1, 3, 0, 0, 3, 1, 1, 3, 0, 0, 0, 0, 0], [0, 2, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 3, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 3, 2, 2, 3, 0, 0, 3, 2, 2, 3, 0, 0, 3, 2, 2, 3, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 3, 1, 1, 3, 0, 0, 3, 1, 1, 3, 0, 0, 3, 1, 1, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 3, 2, 2, 3, 0, 0, 3, 2, 2, 3, 0, 0, 3, 2, 2, 3, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 3, 1, 1, 3, 0, 0, 3, 1, 1, 3, 0, 0, 3, 1, 1, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 3, 2, 2, 3, 0, 0, 3, 2, 2, 3, 0, 0, 3, 2, 2, 3, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 3, 1, 1, 3, 0, 0, 3, 1, 1, 3, 0, 0, 3, 1, 1, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 2, 2, 8, 3, 2, 0, 2, 2, 8, 2, 2, 0, 3, 2, 8, 2, 2, 0, 0, 0, 3], [0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 3, 0, 0], [0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 0, 0, 0], [3, 8, 8, 3, 3, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 3, 8, 8, 0, 0, 0, 0], [0, 8, 8, 8, 8, 3, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 2, 3, 8, 2, 2, 0, 2, 2, 3, 2, 3, 0, 2, 2, 8, 2, 2, 0, 0, 0, 3], [0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 3, 0, 0], [0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 3, 8, 8, 8, 8, 3, 0, 8, 8, 8, 3, 8, 0, 0, 0, 0], [0, 8, 8, 8, 3, 8, 0, 8, 3, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3], [0, 2, 2, 8, 2, 2, 0, 2, 2, 8, 2, 2, 0, 2, 2, 8, 2, 2, 0, 0, 0, 0], [0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 0, 3, 0], [0, 3, 3, 3, 3, 3, 0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 0, 0, 0], [0, 3, 8, 8, 8, 8, 0, 8, 8, 3, 3, 8, 0, 8, 8, 3, 8, 8, 0, 3, 0, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 3, 8, 8, 0, 3, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 3, 0, 0, 0, 0, 3, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 8, 2, 2, 0, 2, 2, 8, 2, 2, 0, 2, 2, 8, 2, 2, 0, 0, 0, 0], [0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 0, 0, 0], [0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 8, 2, 2, 0, 2, 2, 8, 2, 2, 0, 2, 2, 8, 2, 2, 0, 0, 0, 0], [0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 0, 0, 0], [0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 8, 2, 2, 0, 2, 2, 8, 2, 2, 0, 2, 2, 8, 2, 2, 0, 0, 0, 0], [0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 0, 0, 0], [0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 3, 3, 8, 3, 3, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/0692e18c.json b/data/arc-agi/evaluation/0692e18c.json
deleted file mode 100644
index 020bde3..0000000
--- a/data/arc-agi/evaluation/0692e18c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 7, 0], [7, 7, 7], [0, 7, 0]], "output": [[0, 0, 0, 7, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 7, 0, 0, 0], [7, 0, 7, 7, 0, 7, 7, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 7, 7, 0, 7, 7, 0, 7], [0, 0, 0, 7, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 7, 0, 0, 0]]}, {"input": [[0, 0, 6], [0, 6, 0], [6, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 6, 6, 0], [0, 0, 0, 0, 0, 0, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0, 6, 6], [0, 0, 0, 6, 6, 0, 0, 0, 0], [0, 0, 0, 6, 0, 6, 0, 0, 0], [0, 0, 0, 0, 6, 6, 0, 0, 0], [6, 6, 0, 0, 0, 0, 0, 0, 0], [6, 0, 6, 0, 0, 0, 0, 0, 0], [0, 6, 6, 0, 0, 0, 0, 0, 0]]}, {"input": [[4, 4, 0], [0, 0, 4], [0, 0, 4]], "output": [[0, 0, 4, 0, 0, 4, 0, 0, 0], [4, 4, 0, 4, 4, 0, 0, 0, 0], [4, 4, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 4, 4, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 4, 4, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0]]}], "test": [{"input": [[0, 0, 3], [3, 3, 0], [0, 3, 0]], "output": [[0, 0, 0, 0, 0, 0, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 3, 0, 3], [3, 3, 0, 3, 3, 0, 0, 0, 0], [0, 0, 3, 0, 0, 3, 0, 0, 0], [3, 0, 3, 3, 0, 3, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/070dd51e.json b/data/arc-agi/evaluation/070dd51e.json
deleted file mode 100644
index fb9a9c7..0000000
--- a/data/arc-agi/evaluation/070dd51e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 6, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 3, 4, 3, 3, 3, 3, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 7, 4, 7, 7, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 8, 8, 8, 8, 9, 8, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 3, 2, 2, 2, 2, 2, 5, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 7, 7, 5, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/08573cc6.json b/data/arc-agi/evaluation/08573cc6.json
deleted file mode 100644
index 8f728b3..0000000
--- a/data/arc-agi/evaluation/08573cc6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 5, 5, 1, 0, 6, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 6, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 2, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 3, 3, 1, 0, 2, 0, 0], [0, 0, 2, 0, 2, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 2, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 2, 3, 3, 3, 3, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 5, 5, 5, 5, 5, 5, 3, 0, 3, 0, 0], [0, 3, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0], [0, 3, 0, 5, 5, 1, 0, 3, 0, 3, 0, 0], [0, 3, 0, 3, 0, 0, 0, 3, 0, 3, 0, 0], [0, 3, 0, 3, 0, 0, 0, 3, 0, 3, 0, 0], [0, 3, 0, 3, 5, 5, 5, 5, 0, 3, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 3, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0]]}], "test": [{"input": [[2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 0, 8], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8], [8, 0, 2, 2, 2, 2, 2, 2, 8, 0, 8, 0, 8], [8, 0, 8, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8], [8, 0, 8, 0, 2, 2, 1, 0, 8, 0, 8, 0, 8], [8, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8], [8, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8], [8, 0, 8, 0, 8, 2, 2, 2, 2, 0, 8, 0, 8], [8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8], [8, 0, 8, 2, 2, 2, 2, 2, 2, 2, 2, 0, 8], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/0934a4d8.json b/data/arc-agi/evaluation/0934a4d8.json
deleted file mode 100644
index 2de051d..0000000
--- a/data/arc-agi/evaluation/0934a4d8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[4, 4, 1, 3, 5, 7, 7, 9, 6, 1, 6, 6, 4, 4, 7, 7, 7, 7, 4, 4, 6, 6, 1, 6, 9, 7, 7, 5, 3, 1], [4, 4, 3, 3, 7, 5, 9, 7, 6, 6, 6, 6, 4, 4, 7, 2, 2, 7, 4, 4, 6, 6, 6, 6, 7, 9, 5, 7, 3, 3], [3, 4, 4, 4, 7, 9, 5, 7, 5, 1, 6, 1, 7, 7, 9, 9, 9, 9, 7, 7, 1, 6, 1, 5, 7, 5, 9, 7, 4, 4], [4, 3, 4, 4, 9, 7, 7, 5, 1, 5, 6, 6, 7, 2, 1, 9, 9, 1, 2, 7, 6, 6, 5, 1, 5, 7, 7, 9, 4, 4], [9, 7, 7, 4, 4, 4, 3, 3, 4, 4, 7, 7, 9, 7, 3, 2, 2, 3, 7, 9, 7, 7, 4, 4, 3, 3, 4, 4, 4, 7], [7, 9, 4, 7, 4, 4, 3, 1, 4, 4, 7, 2, 7, 9, 2, 3, 3, 2, 9, 7, 2, 7, 4, 4, 1, 3, 4, 4, 7, 4], [7, 4, 9, 7, 3, 4, 4, 4, 7, 7, 9, 1, 7, 4, 9, 7, 7, 9, 4, 7, 1, 9, 7, 7, 4, 4, 4, 3, 7, 9], [4, 7, 7, 9, 4, 3, 4, 4, 7, 2, 9, 9, 4, 7, 7, 9, 9, 7, 7, 4, 9, 9, 2, 7, 4, 4, 3, 4, 9, 7], [6, 6, 5, 1, 4, 4, 7, 7, 7, 2, 2, 6, 4, 6, 2, 2, 2, 2, 6, 4, 6, 2, 2, 7, 7, 7, 4, 4, 1, 5], [1, 6, 1, 5, 4, 4, 7, 2, 3, 7, 6, 6, 6, 4, 2, 2, 2, 2, 4, 6, 6, 6, 7, 3, 2, 7, 4, 4, 5, 1], [6, 6, 6, 6, 7, 7, 9, 9, 9, 1, 7, 2, 2, 2, 4, 6, 6, 4, 2, 2, 2, 7, 1, 9, 9, 9, 7, 7, 6, 6], [6, 6, 1, 6, 7, 2, 1, 9, 1, 5, 3, 7, 2, 2, 6, 4, 4, 6, 2, 2, 7, 3, 5, 1, 9, 1, 2, 7, 6, 1], [4, 4, 7, 7, 9, 7, 7, 4, 9, 9, 1, 6, 7, 2, 6, 6, 6, 6, 2, 7, 6, 1, 9, 9, 4, 7, 7, 9, 7, 7], [4, 4, 7, 2, 7, 9, 4, 7, 9, 9, 6, 1, 3, 7, 6, 2, 2, 6, 7, 3, 1, 6, 9, 9, 7, 4, 9, 7, 2, 7], [8, 8, 8, 1, 3, 2, 9, 7, 1, 6, 9, 9, 5, 1, 7, 2, 2, 7, 1, 5, 9, 9, 6, 1, 7, 9, 2, 3, 1, 9], [8, 8, 8, 9, 2, 3, 7, 9, 6, 1, 9, 9, 1, 9, 3, 7, 7, 3, 9, 1, 9, 9, 1, 6, 9, 7, 3, 2, 9, 9], [8, 8, 8, 9, 2, 3, 7, 9, 6, 1, 9, 9, 1, 9, 3, 7, 7, 3, 9, 1, 9, 9, 1, 6, 9, 7, 3, 2, 9, 9], [8, 8, 8, 1, 3, 2, 9, 7, 1, 6, 9, 9, 5, 1, 7, 2, 2, 7, 1, 5, 9, 9, 6, 1, 7, 9, 2, 3, 1, 9], [8, 8, 8, 2, 7, 9, 4, 7, 9, 9, 6, 1, 3, 7, 6, 2, 2, 6, 7, 3, 1, 6, 9, 9, 7, 4, 9, 7, 2, 7], [8, 8, 8, 7, 9, 7, 7, 4, 9, 9, 1, 6, 7, 2, 6, 6, 6, 6, 2, 7, 6, 1, 9, 9, 4, 7, 7, 9, 7, 7], [8, 8, 8, 6, 7, 2, 1, 9, 1, 5, 3, 7, 2, 2, 6, 4, 4, 6, 2, 2, 7, 3, 5, 1, 9, 1, 2, 7, 6, 1], [8, 8, 8, 6, 7, 7, 9, 9, 9, 1, 7, 2, 2, 2, 4, 6, 6, 4, 2, 2, 2, 7, 1, 9, 9, 9, 7, 7, 6, 6], [8, 8, 8, 5, 4, 4, 7, 2, 3, 7, 6, 6, 6, 4, 2, 2, 2, 2, 4, 6, 6, 6, 7, 3, 2, 7, 4, 4, 5, 1], [6, 6, 5, 1, 4, 4, 7, 7, 7, 2, 2, 6, 4, 6, 2, 2, 2, 2, 6, 4, 6, 2, 2, 7, 7, 7, 4, 4, 1, 5], [4, 7, 7, 9, 4, 3, 4, 4, 7, 2, 9, 9, 4, 7, 7, 9, 9, 7, 7, 4, 9, 9, 2, 7, 4, 4, 3, 4, 9, 7], [7, 4, 9, 7, 3, 4, 4, 4, 7, 7, 9, 1, 7, 4, 9, 7, 7, 9, 4, 7, 1, 9, 7, 7, 4, 4, 4, 3, 7, 9], [7, 9, 4, 7, 4, 4, 3, 1, 4, 4, 7, 2, 7, 9, 2, 3, 3, 2, 9, 7, 2, 7, 4, 4, 1, 3, 4, 4, 7, 4], [9, 7, 7, 4, 4, 4, 3, 3, 4, 4, 7, 7, 9, 7, 3, 2, 2, 3, 7, 9, 7, 7, 4, 4, 3, 3, 4, 4, 4, 7], [4, 3, 4, 4, 9, 7, 7, 5, 1, 5, 6, 6, 7, 2, 1, 9, 9, 1, 2, 7, 6, 6, 5, 1, 5, 7, 7, 9, 4, 4], [3, 4, 4, 4, 7, 9, 5, 7, 5, 1, 6, 1, 7, 7, 9, 9, 9, 9, 7, 7, 1, 6, 1, 5, 7, 5, 9, 7, 4, 4]], "output": [[7, 7, 9], [7, 2, 9], [7, 2, 9], [7, 7, 9], [4, 4, 7], [4, 4, 7], [6, 6, 1], [6, 6, 6], [1, 6, 1]]}], "train": [{"input": [[3, 1, 1, 9, 5, 6, 7, 1, 1, 4, 5, 7, 3, 9, 9, 1, 1, 9, 9, 3, 7, 5, 4, 1, 1, 7, 6, 5, 9, 1], [1, 3, 9, 5, 6, 5, 1, 7, 4, 1, 7, 5, 4, 3, 1, 3, 3, 1, 3, 4, 5, 7, 1, 4, 7, 1, 5, 6, 5, 9], [6, 9, 3, 1, 7, 1, 5, 6, 9, 9, 1, 4, 9, 1, 1, 4, 4, 1, 1, 9, 4, 1, 9, 9, 6, 5, 1, 7, 1, 3], [9, 1, 1, 3, 1, 7, 6, 5, 9, 9, 4, 1, 1, 3, 4, 1, 1, 4, 3, 1, 1, 4, 9, 9, 5, 6, 7, 1, 3, 1], [6, 6, 6, 7, 3, 1, 5, 9, 3, 4, 9, 1, 6, 7, 2, 5, 5, 2, 7, 6, 1, 9, 4, 3, 9, 5, 1, 3, 7, 6], [6, 6, 7, 6, 1, 3, 9, 1, 9, 3, 1, 3, 7, 6, 5, 2, 2, 5, 6, 7, 3, 1, 3, 9, 1, 9, 3, 1, 6, 7], [6, 7, 6, 6, 1, 9, 3, 1, 9, 1, 1, 4, 6, 9, 6, 7, 7, 6, 9, 6, 4, 1, 1, 9, 1, 3, 9, 1, 6, 6], [7, 6, 6, 6, 9, 6, 1, 3, 1, 3, 4, 1, 9, 6, 7, 6, 6, 7, 6, 9, 1, 4, 3, 1, 3, 1, 8, 8, 8, 8], [1, 4, 9, 9, 3, 9, 9, 1, 1, 1, 6, 1, 5, 2, 5, 5, 5, 5, 2, 5, 1, 6, 1, 1, 1, 9, 8, 8, 8, 8], [4, 1, 9, 9, 4, 3, 1, 3, 1, 1, 1, 6, 2, 5, 5, 5, 5, 5, 5, 2, 6, 1, 1, 1, 3, 1, 8, 8, 8, 8], [5, 7, 1, 4, 9, 1, 1, 4, 2, 2, 1, 1, 5, 5, 5, 2, 2, 5, 5, 5, 1, 1, 2, 2, 4, 1, 8, 8, 8, 8], [7, 5, 4, 1, 1, 3, 4, 1, 2, 1, 1, 1, 5, 5, 2, 5, 5, 2, 5, 5, 1, 1, 1, 2, 1, 4, 3, 1, 1, 4], [3, 4, 9, 1, 6, 7, 6, 9, 7, 6, 3, 3, 1, 1, 6, 1, 1, 6, 1, 1, 3, 3, 6, 7, 9, 6, 7, 6, 1, 9], [9, 3, 1, 3, 7, 6, 9, 6, 6, 7, 3, 3, 1, 1, 1, 6, 6, 1, 1, 1, 3, 3, 7, 6, 6, 9, 6, 7, 3, 1], [9, 1, 1, 4, 2, 5, 6, 7, 3, 3, 7, 6, 1, 2, 1, 1, 1, 1, 2, 1, 6, 7, 3, 3, 7, 6, 5, 2, 4, 1], [1, 3, 4, 1, 5, 2, 7, 6, 3, 3, 6, 7, 2, 2, 1, 1, 1, 1, 2, 2, 7, 6, 3, 3, 6, 7, 2, 5, 1, 4], [1, 3, 4, 1, 5, 2, 7, 6, 3, 3, 6, 7, 2, 2, 1, 1, 1, 1, 2, 2, 7, 6, 3, 3, 6, 7, 2, 5, 1, 4], [9, 1, 1, 4, 2, 5, 6, 7, 3, 3, 7, 6, 1, 2, 1, 1, 1, 1, 2, 1, 6, 7, 3, 3, 7, 6, 5, 2, 4, 1], [9, 3, 1, 3, 7, 6, 9, 6, 6, 7, 3, 3, 1, 1, 1, 6, 6, 1, 1, 1, 3, 3, 7, 6, 6, 9, 6, 7, 3, 1], [3, 4, 9, 1, 6, 7, 6, 9, 7, 6, 3, 3, 1, 1, 6, 1, 1, 6, 1, 1, 3, 3, 6, 7, 9, 6, 7, 6, 1, 9], [7, 5, 4, 1, 1, 3, 4, 1, 2, 1, 1, 1, 5, 5, 2, 5, 5, 2, 5, 5, 1, 1, 1, 2, 1, 4, 3, 1, 1, 4], [5, 7, 1, 4, 9, 1, 1, 4, 2, 2, 1, 1, 5, 5, 5, 2, 2, 5, 5, 5, 1, 1, 2, 2, 4, 1, 1, 9, 4, 1], [4, 1, 9, 9, 4, 3, 1, 3, 1, 1, 1, 6, 2, 5, 5, 5, 5, 5, 5, 2, 6, 1, 1, 1, 3, 1, 3, 4, 9, 9], [1, 4, 9, 9, 3, 9, 9, 1, 1, 1, 6, 1, 5, 2, 5, 5, 5, 5, 2, 5, 1, 6, 1, 1, 1, 9, 9, 3, 9, 9], [7, 6, 6, 6, 9, 6, 1, 3, 1, 3, 4, 1, 9, 6, 7, 6, 6, 7, 6, 9, 1, 4, 3, 1, 3, 1, 6, 9, 6, 6], [6, 7, 6, 6, 1, 9, 3, 1, 9, 1, 1, 4, 6, 9, 6, 7, 7, 6, 9, 6, 4, 1, 1, 9, 1, 3, 9, 1, 6, 6], [6, 6, 7, 6, 1, 3, 9, 1, 9, 3, 1, 3, 7, 6, 5, 2, 2, 5, 6, 7, 3, 1, 3, 9, 1, 9, 3, 1, 6, 7], [6, 6, 6, 7, 3, 1, 5, 9, 3, 4, 9, 1, 6, 7, 2, 5, 5, 2, 7, 6, 1, 9, 4, 3, 9, 5, 1, 3, 7, 6], [9, 1, 1, 3, 1, 7, 6, 5, 9, 9, 4, 1, 1, 3, 4, 1, 1, 4, 3, 1, 1, 4, 9, 9, 5, 6, 7, 1, 3, 1], [6, 9, 3, 1, 7, 1, 5, 6, 9, 9, 1, 4, 9, 1, 1, 4, 4, 1, 1, 9, 4, 1, 9, 9, 6, 5, 1, 7, 1, 3]], "output": [[6, 9, 6, 6], [9, 3, 9, 9], [3, 4, 9, 9], [1, 9, 4, 1]]}, {"input": [[9, 9, 2, 3, 4, 4, 7, 5, 3, 3, 6, 6, 3, 5, 6, 4, 4, 6, 5, 3, 6, 6, 3, 3, 5, 7, 4, 4, 3, 2], [7, 9, 3, 5, 4, 4, 5, 7, 3, 3, 6, 6, 6, 3, 4, 6, 6, 4, 3, 6, 6, 6, 3, 3, 7, 5, 4, 4, 5, 3], [3, 2, 9, 9, 7, 5, 4, 4, 4, 1, 3, 3, 6, 4, 4, 7, 7, 4, 4, 6, 3, 8, 8, 8, 8, 8, 5, 7, 9, 9], [2, 3, 7, 9, 5, 7, 4, 4, 1, 4, 3, 3, 4, 6, 7, 4, 4, 7, 6, 4, 3, 8, 8, 8, 8, 8, 7, 5, 9, 7], [7, 7, 9, 3, 9, 9, 5, 3, 3, 6, 6, 4, 6, 7, 9, 9, 9, 9, 7, 6, 4, 8, 8, 8, 8, 8, 9, 9, 3, 9], [7, 7, 3, 9, 7, 9, 3, 2, 5, 3, 4, 6, 2, 6, 9, 9, 9, 9, 6, 2, 6, 8, 8, 8, 8, 8, 9, 7, 9, 3], [9, 3, 7, 7, 3, 2, 9, 9, 6, 4, 4, 7, 9, 2, 6, 7, 7, 6, 2, 9, 7, 4, 4, 6, 9, 9, 2, 3, 7, 7], [3, 9, 7, 7, 2, 3, 7, 9, 4, 6, 7, 4, 2, 9, 2, 6, 6, 2, 9, 2, 4, 7, 6, 4, 9, 7, 3, 2, 7, 7], [3, 3, 4, 1, 3, 5, 6, 4, 2, 4, 7, 7, 1, 6, 7, 2, 2, 7, 6, 1, 7, 7, 4, 2, 4, 6, 5, 3, 1, 4], [3, 3, 1, 4, 6, 3, 4, 6, 2, 2, 7, 1, 6, 1, 2, 7, 7, 2, 1, 6, 1, 7, 2, 2, 6, 4, 3, 6, 4, 1], [6, 6, 3, 3, 6, 4, 4, 7, 1, 1, 2, 4, 7, 2, 1, 6, 6, 1, 2, 7, 4, 2, 1, 1, 7, 4, 4, 6, 3, 3], [6, 6, 3, 3, 4, 6, 7, 4, 1, 3, 2, 2, 2, 7, 6, 1, 1, 6, 7, 2, 2, 2, 3, 1, 4, 7, 6, 4, 3, 3], [3, 6, 6, 4, 6, 2, 9, 2, 9, 9, 9, 7, 2, 4, 1, 7, 7, 1, 4, 2, 7, 9, 9, 9, 2, 9, 2, 6, 4, 6], [5, 3, 4, 6, 7, 6, 2, 9, 9, 9, 7, 9, 2, 2, 7, 7, 7, 7, 2, 2, 9, 7, 9, 9, 9, 2, 6, 7, 6, 4], [6, 4, 4, 7, 9, 9, 6, 2, 9, 7, 9, 9, 3, 1, 2, 4, 4, 2, 1, 3, 9, 9, 7, 9, 2, 6, 9, 9, 7, 4], [4, 6, 7, 4, 9, 9, 7, 6, 7, 9, 9, 9, 1, 1, 2, 2, 2, 2, 1, 1, 9, 9, 9, 7, 6, 7, 9, 9, 4, 7], [4, 6, 7, 4, 9, 9, 7, 6, 7, 9, 9, 9, 1, 1, 2, 2, 2, 2, 1, 1, 9, 9, 9, 7, 6, 7, 9, 9, 4, 7], [6, 4, 4, 7, 9, 9, 6, 2, 9, 7, 9, 9, 3, 1, 2, 4, 4, 2, 1, 3, 9, 9, 7, 9, 2, 6, 9, 9, 7, 4], [5, 3, 4, 6, 7, 6, 2, 9, 9, 9, 7, 9, 2, 2, 7, 7, 7, 7, 2, 2, 9, 7, 9, 9, 9, 2, 6, 7, 6, 4], [3, 6, 6, 4, 6, 2, 9, 2, 9, 9, 9, 7, 2, 4, 1, 7, 7, 1, 4, 2, 7, 9, 9, 9, 2, 9, 2, 6, 4, 6], [6, 6, 3, 3, 4, 6, 7, 4, 1, 3, 2, 2, 2, 7, 6, 1, 1, 6, 7, 2, 2, 2, 3, 1, 4, 7, 6, 4, 3, 3], [6, 6, 3, 3, 6, 4, 4, 7, 1, 1, 2, 4, 7, 2, 1, 6, 6, 1, 2, 7, 4, 2, 1, 1, 7, 4, 4, 6, 3, 3], [3, 3, 1, 4, 6, 3, 4, 6, 2, 2, 7, 1, 6, 1, 2, 7, 7, 2, 1, 6, 1, 7, 2, 2, 6, 4, 3, 6, 4, 1], [3, 3, 4, 1, 3, 5, 6, 4, 2, 4, 7, 7, 1, 6, 7, 2, 2, 7, 6, 1, 7, 7, 4, 2, 4, 6, 5, 3, 1, 4], [3, 9, 7, 7, 2, 3, 7, 9, 4, 6, 7, 4, 2, 9, 2, 6, 6, 2, 9, 2, 4, 7, 6, 4, 9, 7, 3, 2, 7, 7], [9, 3, 7, 7, 3, 2, 9, 9, 6, 4, 4, 7, 9, 2, 6, 7, 7, 6, 2, 9, 7, 4, 4, 6, 9, 9, 2, 3, 7, 7], [7, 7, 3, 9, 7, 9, 3, 2, 5, 3, 4, 6, 2, 6, 9, 9, 9, 9, 6, 2, 6, 4, 3, 5, 2, 3, 9, 7, 9, 3], [7, 7, 9, 3, 9, 9, 5, 3, 3, 6, 6, 4, 6, 7, 9, 9, 9, 9, 7, 6, 4, 6, 6, 3, 3, 5, 9, 9, 3, 9], [2, 3, 7, 9, 5, 7, 4, 4, 1, 4, 3, 3, 4, 6, 7, 4, 4, 7, 6, 4, 3, 3, 4, 1, 4, 4, 7, 5, 9, 7], [3, 2, 9, 9, 7, 5, 4, 4, 4, 1, 3, 3, 6, 4, 4, 7, 7, 4, 4, 6, 3, 3, 1, 4, 4, 4, 5, 7, 9, 9]], "output": [[3, 1, 4, 4, 4], [3, 4, 1, 4, 4], [6, 6, 3, 3, 5], [4, 3, 5, 2, 3]]}, {"input": [[3, 5, 3, 3, 6, 6, 5, 4, 1, 4, 9, 9, 4, 3, 9, 9, 9, 9, 3, 4, 9, 9, 4, 1, 4, 5, 6, 6, 3, 3], [5, 3, 3, 3, 6, 6, 4, 5, 4, 1, 9, 9, 3, 4, 9, 1, 1, 9, 4, 3, 9, 9, 1, 4, 5, 4, 6, 6, 3, 3], [1, 1, 3, 5, 5, 4, 6, 6, 9, 1, 1, 4, 9, 9, 4, 5, 5, 4, 9, 9, 4, 1, 1, 9, 6, 6, 4, 5, 5, 3], [1, 1, 5, 3, 4, 5, 6, 6, 1, 9, 4, 1, 9, 1, 4, 4, 4, 4, 1, 9, 1, 4, 9, 1, 6, 6, 5, 4, 3, 5], [6, 9, 9, 9, 3, 5, 3, 3, 4, 3, 9, 9, 9, 2, 6, 9, 9, 6, 2, 9, 9, 9, 3, 4, 3, 3, 5, 3, 9, 9], [9, 6, 9, 9, 5, 3, 3, 3, 3, 4, 9, 1, 9, 9, 9, 6, 6, 9, 9, 9, 1, 9, 4, 3, 3, 3, 3, 5, 9, 9], [9, 9, 6, 9, 1, 1, 3, 5, 9, 9, 4, 4, 6, 9, 9, 2, 2, 9, 9, 6, 4, 4, 9, 9, 5, 3, 1, 1, 9, 6], [9, 9, 9, 6, 1, 1, 5, 3, 9, 1, 5, 4, 9, 6, 9, 9, 9, 9, 6, 9, 4, 5, 1, 9, 3, 5, 1, 1, 6, 9], [1, 4, 9, 1, 4, 3, 9, 9, 5, 5, 7, 2, 4, 3, 2, 4, 4, 2, 3, 4, 2, 7, 5, 5, 9, 9, 3, 4, 1, 9], [4, 1, 1, 9, 3, 4, 9, 1, 4, 5, 2, 7, 3, 4, 4, 2, 2, 4, 4, 3, 7, 2, 5, 4, 1, 9, 4, 3, 9, 1], [9, 9, 1, 4, 9, 9, 4, 5, 6, 4, 5, 5, 2, 4, 4, 3, 3, 4, 4, 2, 5, 5, 4, 6, 5, 4, 9, 9, 4, 1], [9, 9, 4, 1, 9, 1, 4, 4, 4, 5, 4, 5, 4, 2, 3, 4, 4, 3, 2, 4, 5, 4, 5, 4, 4, 4, 1, 9, 1, 4], [4, 3, 9, 9, 9, 9, 6, 9, 5, 9, 7, 7, 5, 5, 7, 2, 2, 7, 5, 5, 7, 7, 9, 5, 9, 6, 9, 9, 9, 9], [3, 4, 9, 1, 2, 9, 9, 6, 9, 5, 7, 7, 4, 5, 2, 7, 7, 2, 5, 4, 7, 7, 5, 9, 6, 9, 9, 2, 1, 9], [9, 9, 4, 4, 6, 9, 9, 9, 7, 7, 5, 9, 5, 4, 5, 5, 5, 5, 4, 5, 9, 5, 7, 7, 9, 8, 8, 8, 8, 4], [9, 1, 5, 4, 9, 6, 2, 9, 7, 7, 9, 5, 4, 6, 4, 5, 5, 4, 6, 4, 5, 9, 7, 7, 9, 8, 8, 8, 8, 5], [9, 1, 5, 4, 9, 6, 2, 9, 7, 7, 9, 5, 4, 6, 4, 5, 5, 4, 6, 4, 5, 9, 7, 7, 9, 8, 8, 8, 8, 5], [9, 9, 4, 4, 6, 9, 9, 9, 7, 7, 5, 9, 5, 4, 5, 5, 5, 5, 4, 5, 9, 5, 7, 7, 9, 8, 8, 8, 8, 4], [3, 4, 9, 1, 2, 9, 9, 6, 9, 5, 7, 7, 4, 5, 2, 7, 7, 2, 5, 4, 7, 7, 5, 9, 6, 8, 8, 8, 8, 9], [4, 3, 9, 9, 9, 9, 6, 9, 5, 9, 7, 7, 5, 5, 7, 2, 2, 7, 5, 5, 7, 7, 9, 5, 9, 8, 8, 8, 8, 9], [9, 9, 4, 1, 9, 1, 4, 4, 4, 5, 4, 5, 4, 2, 3, 4, 4, 3, 2, 4, 5, 4, 5, 4, 4, 8, 8, 8, 8, 4], [9, 9, 1, 4, 9, 9, 4, 5, 6, 4, 5, 5, 2, 4, 4, 3, 3, 4, 4, 2, 5, 5, 4, 6, 5, 8, 8, 8, 8, 1], [4, 1, 1, 9, 3, 4, 9, 1, 4, 5, 2, 7, 3, 4, 4, 2, 2, 4, 4, 3, 7, 2, 5, 4, 1, 8, 8, 8, 8, 1], [1, 4, 9, 1, 4, 3, 9, 9, 5, 5, 7, 2, 4, 3, 2, 4, 4, 2, 3, 4, 2, 7, 5, 5, 9, 9, 3, 4, 1, 9], [9, 9, 9, 6, 1, 1, 5, 3, 9, 1, 5, 4, 9, 6, 9, 9, 9, 9, 6, 9, 4, 5, 1, 9, 3, 5, 1, 1, 6, 9], [9, 9, 6, 9, 1, 1, 3, 5, 9, 9, 4, 4, 6, 9, 9, 2, 2, 9, 9, 6, 4, 4, 9, 9, 5, 3, 1, 1, 9, 6], [9, 6, 9, 9, 5, 3, 3, 3, 3, 4, 9, 1, 9, 9, 9, 6, 6, 9, 9, 9, 1, 9, 4, 3, 3, 3, 3, 5, 9, 9], [6, 9, 9, 9, 3, 5, 3, 3, 4, 3, 9, 9, 9, 2, 6, 9, 9, 6, 2, 9, 9, 9, 3, 4, 3, 3, 5, 3, 9, 9], [1, 1, 5, 3, 4, 5, 6, 6, 1, 9, 4, 1, 9, 1, 4, 4, 4, 4, 1, 9, 1, 4, 9, 1, 6, 6, 5, 4, 3, 5], [1, 1, 3, 5, 5, 4, 6, 6, 9, 1, 1, 4, 9, 9, 4, 5, 5, 4, 9, 9, 4, 1, 1, 9, 6, 6, 4, 5, 5, 3]], "output": [[9, 9, 6, 4], [2, 6, 9, 4], [2, 6, 9, 4], [9, 9, 6, 4], [9, 9, 2, 1], [6, 9, 9, 9], [4, 1, 9, 1], [4, 9, 9, 4], [9, 4, 3, 9]]}, {"input": [[1, 9, 4, 4, 9, 9, 2, 7, 6, 6, 9, 9, 7, 6, 7, 2, 2, 7, 6, 7, 9, 9, 6, 6, 7, 2, 9, 9, 4, 4], [7, 1, 4, 4, 9, 9, 7, 2, 6, 6, 9, 9, 6, 7, 2, 7, 7, 2, 7, 6, 9, 9, 6, 6, 2, 7, 9, 9, 4, 4], [2, 7, 1, 9, 2, 7, 9, 9, 4, 4, 6, 6, 7, 2, 5, 1, 1, 5, 2, 7, 6, 6, 4, 4, 9, 9, 7, 2, 9, 1], [7, 2, 7, 1, 7, 2, 9, 9, 4, 4, 6, 6, 2, 7, 5, 5, 5, 5, 7, 2, 6, 6, 4, 4, 9, 9, 2, 7, 1, 7], [9, 6, 7, 2, 1, 9, 4, 4, 7, 6, 7, 2, 9, 2, 6, 4, 4, 6, 2, 9, 2, 7, 6, 7, 4, 4, 9, 1, 2, 7], [6, 9, 2, 7, 7, 1, 4, 4, 6, 7, 2, 7, 9, 9, 4, 6, 6, 4, 9, 9, 7, 2, 7, 6, 4, 4, 1, 7, 7, 2], [7, 2, 9, 6, 2, 7, 1, 9, 7, 2, 5, 5, 4, 5, 9, 2, 2, 9, 5, 4, 5, 5, 2, 7, 9, 1, 7, 2, 6, 9], [2, 7, 6, 9, 7, 2, 7, 1, 2, 7, 1, 5, 5, 4, 9, 9, 9, 9, 4, 5, 5, 1, 7, 2, 1, 7, 2, 7, 9, 6], [6, 6, 4, 4, 7, 6, 7, 2, 3, 7, 1, 4, 9, 7, 7, 6, 6, 7, 7, 9, 4, 1, 7, 3, 2, 7, 6, 7, 4, 4], [6, 6, 4, 4, 6, 7, 2, 7, 4, 3, 4, 4, 7, 9, 6, 7, 7, 6, 9, 7, 4, 4, 3, 4, 7, 2, 7, 6, 4, 4], [9, 9, 6, 6, 7, 2, 5, 1, 3, 7, 3, 7, 7, 6, 9, 7, 7, 9, 6, 7, 7, 3, 7, 3, 1, 5, 2, 7, 6, 6], [9, 9, 6, 6, 2, 7, 5, 5, 7, 7, 4, 3, 6, 7, 7, 9, 9, 7, 7, 6, 3, 4, 7, 7, 5, 5, 7, 2, 6, 6], [7, 6, 7, 2, 9, 9, 4, 5, 6, 6, 5, 9, 3, 7, 4, 4, 4, 4, 7, 3, 9, 5, 6, 6, 5, 4, 9, 9, 2, 7], [6, 7, 2, 7, 2, 9, 5, 4, 6, 6, 9, 5, 4, 3, 4, 1, 1, 4, 3, 4, 5, 9, 6, 6, 4, 5, 9, 2, 7, 2], [7, 2, 5, 5, 6, 4, 9, 9, 5, 9, 6, 6, 7, 7, 3, 7, 7, 3, 7, 7, 6, 6, 9, 5, 9, 9, 4, 6, 5, 5], [2, 7, 1, 5, 4, 6, 2, 9, 9, 5, 6, 6, 7, 3, 4, 3, 3, 4, 3, 7, 6, 6, 5, 9, 9, 2, 6, 4, 5, 1], [2, 7, 1, 5, 4, 6, 2, 9, 9, 5, 6, 6, 7, 3, 4, 3, 3, 4, 3, 7, 6, 6, 5, 9, 9, 2, 6, 4, 5, 1], [7, 2, 5, 5, 6, 4, 9, 9, 5, 9, 6, 6, 7, 7, 3, 7, 7, 3, 7, 7, 6, 6, 9, 5, 9, 9, 4, 6, 5, 5], [6, 7, 2, 7, 2, 9, 5, 4, 6, 6, 9, 5, 4, 3, 4, 1, 1, 4, 3, 4, 5, 9, 6, 6, 4, 5, 9, 2, 7, 2], [7, 6, 7, 2, 9, 9, 4, 5, 6, 6, 5, 9, 8, 8, 8, 8, 8, 8, 8, 3, 9, 5, 6, 6, 5, 4, 9, 9, 2, 7], [9, 9, 6, 6, 2, 7, 5, 5, 7, 7, 4, 3, 8, 8, 8, 8, 8, 8, 8, 6, 3, 4, 7, 7, 5, 5, 7, 2, 6, 6], [9, 9, 6, 6, 7, 2, 5, 1, 3, 7, 3, 7, 8, 8, 8, 8, 8, 8, 8, 7, 7, 3, 7, 3, 1, 5, 2, 7, 6, 6], [6, 6, 4, 4, 6, 7, 2, 7, 4, 3, 4, 4, 7, 9, 6, 7, 7, 6, 9, 7, 4, 4, 3, 4, 7, 2, 7, 6, 4, 4], [6, 6, 4, 4, 7, 6, 7, 2, 3, 7, 1, 4, 9, 7, 7, 6, 6, 7, 7, 9, 4, 1, 7, 3, 2, 7, 6, 7, 4, 4], [2, 7, 6, 9, 7, 2, 7, 1, 2, 7, 1, 5, 5, 4, 9, 9, 9, 9, 4, 5, 5, 1, 7, 2, 1, 7, 2, 7, 9, 6], [7, 2, 9, 6, 2, 7, 1, 9, 7, 2, 5, 5, 4, 5, 9, 2, 2, 9, 5, 4, 5, 5, 2, 7, 9, 1, 7, 2, 6, 9], [6, 9, 2, 7, 7, 1, 4, 4, 6, 7, 2, 7, 9, 9, 4, 6, 6, 4, 9, 9, 7, 2, 7, 6, 4, 4, 1, 7, 7, 2], [9, 6, 7, 2, 1, 9, 4, 4, 7, 6, 7, 2, 9, 2, 6, 4, 4, 6, 2, 9, 2, 7, 6, 7, 4, 4, 9, 1, 2, 7], [7, 2, 7, 1, 7, 2, 9, 9, 4, 4, 6, 6, 2, 7, 5, 5, 5, 5, 7, 2, 6, 6, 4, 4, 9, 9, 2, 7, 1, 7], [2, 7, 1, 9, 2, 7, 9, 9, 4, 4, 6, 6, 7, 2, 5, 1, 1, 5, 2, 7, 6, 6, 4, 4, 9, 9, 7, 2, 9, 1]], "output": [[3, 7, 4, 4, 4, 4, 7], [6, 7, 7, 9, 9, 7, 7], [7, 6, 9, 7, 7, 9, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/09c534e7.json b/data/arc-agi/evaluation/09c534e7.json
deleted file mode 100644
index 3a185e2..0000000
--- a/data/arc-agi/evaluation/09c534e7.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 3, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 2, 2, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 2, 2, 2, 1, 0, 0, 0, 0, 0, 1, 2, 2, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 2, 2, 2, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 1], [0, 0, 0, 0, 0, 1, 2, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 1, 0, 0, 1, 2, 2, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 3, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 2, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 2, 1, 0, 1, 3, 1, 1, 1, 3, 1, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 1, 3, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 1, 3, 1, 1, 1, 1, 3, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 1, 3, 3, 3, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 3, 3, 3, 3, 1, 1, 1, 1, 1, 3, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 3, 3, 3, 1, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 1, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 1, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 4, 1, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 4, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 3, 3, 3, 3, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 1, 3, 3, 3, 3, 1, 1, 1, 3, 1, 0, 0, 0, 1, 4, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 2, 2, 1, 1, 1, 1, 2, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 1, 2, 2, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1], [0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 3, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0], [0, 0, 1, 1, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 4, 4, 1, 1, 1, 1, 4, 4, 1, 0, 0, 1, 1, 1], [0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 4, 4, 1, 1, 1, 1, 4, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0], [0, 0, 0, 1, 4, 4, 1, 0, 0, 1, 3, 1, 1, 1, 3, 1, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 1, 6, 6, 1, 0, 0, 1, 0, 0, 0], [0, 0, 1, 6, 6, 1, 0, 0, 1, 6, 6, 1, 0, 1, 1, 1, 0, 0], [0, 0, 1, 6, 6, 1, 1, 1, 1, 6, 6, 1, 1, 1, 6, 1, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 1, 6, 6, 1, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 4, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 6, 1, 0], [0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0], [0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 1, 1, 0, 0, 1, 4, 4, 4, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 4, 4, 4, 4, 1, 0], [0, 0, 1, 4, 4, 1, 1, 1, 1, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4, 4, 1, 0], [0, 0, 1, 4, 4, 1, 0, 0, 1, 4, 4, 4, 1, 0, 0, 1, 4, 4, 4, 4, 1, 0, 0, 1, 4, 4, 4, 4, 1, 0], [0, 0, 1, 1, 1, 1, 0, 0, 1, 4, 4, 4, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 4, 4, 4, 4, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 1, 4, 4, 1, 1, 1, 4, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 4, 4, 1, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 4, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 8, 8, 8, 1, 1, 1, 8, 8, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 1, 0, 0, 0, 1, 8, 8, 8, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0], [0, 1, 8, 1, 1, 1, 8, 1, 0, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 1, 6, 6, 1, 0], [0, 1, 1, 1, 0, 1, 8, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 1, 6, 6, 1, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 1, 6, 6, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0], [0, 0, 1, 6, 6, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 6, 6, 1, 0], [0, 0, 1, 6, 6, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 1, 1, 6, 6, 1, 0], [0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/0a1d4ef5.json b/data/arc-agi/evaluation/0a1d4ef5.json
deleted file mode 100644
index df2a30e..0000000
--- a/data/arc-agi/evaluation/0a1d4ef5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 2, 0, 0, 0, 2, 5, 2, 2, 0, 5, 2, 5, 5, 0, 2, 2, 5, 2, 2, 5, 5, 0, 2, 0, 0, 2, 0, 0, 0], [5, 0, 0, 5, 2, 2, 5, 2, 5, 0, 0, 2, 2, 5, 5, 2, 2, 5, 0, 5, 2, 0, 0, 0, 5, 0, 5, 5, 0, 2], [5, 0, 2, 2, 8, 8, 8, 8, 8, 8, 8, 5, 0, 2, 4, 4, 4, 4, 5, 0, 0, 2, 3, 3, 3, 3, 3, 0, 0, 2], [0, 5, 0, 5, 8, 8, 8, 8, 8, 8, 8, 2, 0, 0, 4, 4, 4, 4, 0, 0, 2, 0, 3, 3, 3, 3, 3, 0, 2, 0], [5, 0, 5, 0, 8, 8, 8, 8, 8, 8, 8, 2, 2, 0, 4, 4, 4, 4, 2, 2, 0, 2, 3, 3, 3, 3, 3, 5, 0, 5], [0, 0, 0, 5, 8, 8, 8, 8, 8, 8, 8, 2, 0, 0, 4, 4, 4, 4, 0, 0, 2, 2, 3, 3, 3, 3, 3, 0, 0, 2], [0, 0, 0, 2, 5, 5, 5, 2, 2, 0, 0, 0, 2, 5, 0, 5, 2, 0, 2, 0, 5, 0, 5, 2, 0, 2, 0, 5, 5, 2], [0, 0, 2, 2, 5, 5, 0, 0, 2, 0, 5, 0, 5, 0, 0, 0, 2, 2, 0, 0, 2, 0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 5, 2, 0, 0, 0, 5, 2, 0, 5, 2, 0, 0, 5, 2, 0, 0], [0, 2, 0, 2, 0, 0, 2, 0, 0, 0, 2, 5, 2, 0, 0, 2, 0, 0, 2, 0, 2, 0, 0, 0, 2, 0, 5, 0, 5, 0], [0, 2, 2, 2, 1, 1, 1, 1, 1, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 0, 0, 7, 7, 7, 7, 7, 0, 0, 5, 0], [0, 0, 0, 2, 1, 1, 1, 1, 1, 0, 5, 0, 3, 3, 3, 3, 3, 3, 3, 2, 0, 7, 7, 7, 7, 7, 2, 5, 5, 5], [0, 0, 5, 2, 1, 1, 1, 1, 1, 5, 2, 0, 3, 3, 3, 3, 3, 3, 3, 0, 2, 7, 7, 7, 7, 7, 0, 2, 5, 2], [2, 5, 0, 2, 1, 1, 1, 1, 1, 2, 0, 0, 3, 3, 3, 3, 3, 3, 3, 2, 5, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 5, 0, 2, 2, 2, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 7, 7, 7, 7, 7, 2, 0, 2, 2], [0, 0, 2, 0, 0, 5, 0, 2, 0, 2, 0, 5, 5, 0, 0, 2, 0, 5, 2, 2, 2, 2, 0, 5, 2, 0, 0, 2, 2, 0], [0, 0, 5, 2, 0, 0, 2, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 2, 2, 0, 0, 0, 0, 5, 5, 0, 2, 0, 0, 5], [0, 2, 2, 0, 8, 8, 8, 8, 8, 0, 2, 0, 5, 4, 4, 4, 4, 4, 2, 0, 0, 2, 0, 0, 5, 0, 0, 0, 2, 0], [0, 0, 2, 0, 8, 8, 8, 8, 8, 2, 2, 5, 0, 4, 4, 4, 4, 4, 0, 2, 5, 0, 1, 1, 1, 1, 1, 2, 0, 2], [2, 2, 0, 0, 8, 8, 8, 8, 8, 5, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 5, 5, 1, 1, 1, 1, 1, 5, 0, 0], [2, 5, 5, 0, 8, 8, 8, 8, 8, 0, 5, 0, 5, 4, 4, 4, 4, 4, 0, 5, 0, 2, 1, 1, 1, 1, 1, 0, 0, 0], [2, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 5, 2, 5, 0, 0, 2, 5, 0, 2, 2, 1, 1, 1, 1, 1, 0, 0, 0], [0, 5, 2, 5, 5, 2, 2, 0, 2, 0, 0, 2, 5, 0, 5, 0, 0, 5, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0], [2, 0, 0, 0, 2, 5, 0, 0, 5, 5, 2, 0, 2, 2, 0, 0, 5, 5, 0, 0, 0, 5, 0, 2, 0, 5, 0, 0, 2, 5], [0, 0, 5, 0, 0, 0, 0, 2, 0, 5, 5, 0, 2, 5, 0, 0, 0, 2, 0, 2, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5], [0, 2, 0, 2, 0, 5, 2, 5, 0, 5, 2, 0, 0, 0, 0, 0, 0, 5, 2, 2, 5, 2, 0, 0, 0, 0, 0, 5, 5, 0], [0, 0, 0, 5, 5, 0, 2, 2, 2, 0, 0, 2, 0, 2, 0, 0, 5, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 5, 2, 2, 2, 0, 0, 0, 5], [2, 2, 2, 0, 0, 0, 0, 2, 0, 5, 5, 0, 0, 0, 5, 0, 2, 0, 5, 0, 0, 0, 5, 0, 2, 0, 2, 2, 2, 5], [5, 0, 0, 2, 2, 5, 2, 2, 0, 0, 0, 0, 2, 5, 0, 2, 0, 5, 0, 0, 5, 5, 5, 0, 0, 2, 0, 0, 0, 5]], "output": [[8, 4, 3], [1, 3, 7], [8, 4, 1]]}, {"input": [[0, 2, 0, 0, 0, 2, 0, 8, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 2, 8, 0, 0, 2, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 8, 8, 2, 0, 0, 0, 0, 0, 0], [8, 0, 2, 3, 3, 3, 3, 3, 3, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 9, 9, 9, 9, 9, 0, 0], [8, 0, 8, 3, 3, 3, 3, 3, 3, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 8, 0, 8, 9, 9, 9, 9, 9, 8, 8], [2, 8, 0, 3, 3, 3, 3, 3, 3, 8, 8, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 2, 9, 9, 9, 9, 9, 0, 0], [8, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 2, 2, 2, 8, 8, 8, 8, 0, 2, 8, 2, 0, 9, 9, 9, 9, 9, 0, 0], [0, 0, 0, 8, 0, 0, 8, 0, 0, 2, 8, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 8, 0, 9, 9, 9, 9, 9, 8, 8], [0, 8, 8, 8, 0, 0, 2, 0, 8, 0, 0, 0, 2, 8, 8, 0, 0, 0, 8, 0, 2, 0, 2, 0, 8, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 2, 8, 8, 2, 0, 0, 2, 0, 0, 2, 0, 0, 8, 2, 8, 0], [8, 0, 0, 0, 0, 0, 8, 2, 8, 2, 8, 0, 0, 0, 0, 0, 0, 2, 8, 2, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 2, 6, 6, 6, 6, 0, 8, 0, 0, 4, 4, 4, 4, 4, 4, 2, 0, 0, 0, 8, 0, 0, 2, 0, 0, 0, 2, 0], [8, 0, 8, 6, 6, 6, 6, 0, 8, 0, 8, 4, 4, 4, 4, 4, 4, 2, 0, 2, 2, 2, 0, 1, 1, 1, 1, 1, 8, 0], [0, 2, 0, 6, 6, 6, 6, 8, 0, 2, 2, 4, 4, 4, 4, 4, 4, 8, 0, 8, 0, 0, 0, 1, 1, 1, 1, 1, 0, 2], [0, 2, 8, 6, 6, 6, 6, 8, 0, 8, 0, 4, 4, 4, 4, 4, 4, 0, 8, 2, 2, 0, 2, 1, 1, 1, 1, 1, 0, 8], [0, 0, 2, 6, 6, 6, 6, 0, 0, 0, 2, 4, 4, 4, 4, 4, 4, 0, 0, 8, 0, 8, 8, 1, 1, 1, 1, 1, 8, 0], [0, 0, 0, 6, 6, 6, 6, 0, 0, 2, 8, 0, 8, 8, 2, 8, 0, 8, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 2], [2, 8, 0, 6, 6, 6, 6, 0, 2, 0, 0, 0, 0, 2, 8, 0, 0, 0, 2, 8, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 2, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2, 0, 0, 0, 2], [0, 0, 2, 0, 8, 0, 0, 0, 2, 8, 0, 8, 0, 0, 0, 8, 0, 8, 8, 8, 0, 8, 0, 0, 8, 0, 2, 2, 0, 2], [8, 0, 0, 0, 0, 0, 8, 8, 2, 2, 8, 0, 8, 2, 2, 8, 0, 0, 0, 0, 8, 0, 2, 0, 8, 0, 0, 0, 8, 2], [2, 2, 0, 0, 0, 0, 2, 8, 0, 8, 0, 0, 2, 2, 8, 0, 0, 2, 0, 0, 0, 2, 2, 2, 0, 0, 0, 2, 2, 8], [0, 8, 8, 0, 0, 8, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 8, 2, 0, 0], [0, 0, 2, 8, 2, 0, 2, 0, 0, 8, 0, 0, 0, 2, 0, 8, 0, 0, 0, 2, 8, 8, 0, 8, 0, 2, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 2, 0, 8, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 0, 0, 8, 8, 0], [8, 2, 0, 0, 0, 8, 0, 8, 0, 8, 2, 0, 0, 0, 8, 0, 0, 8, 0, 2, 0, 0, 8, 0, 2, 2, 8, 0, 0, 0], [0, 8, 0, 2, 2, 8, 2, 8, 0, 2, 2, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 8, 0, 8, 0, 0, 8, 2], [0, 0, 2, 8, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 2, 0, 2, 2, 0, 0, 8, 0, 2, 0, 0, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 2, 8, 0, 0, 8, 0], [8, 2, 0, 2, 8, 8, 0, 0, 0, 2, 0, 0, 0, 8, 8, 0, 8, 0, 0, 0, 8, 2, 8, 8, 0, 2, 8, 2, 2, 2], [2, 0, 8, 8, 0, 0, 0, 8, 0, 0, 8, 0, 8, 0, 0, 0, 8, 0, 2, 0, 0, 8, 0, 8, 0, 0, 2, 8, 0, 0]], "output": [[3, 1, 9], [6, 4, 1]]}, {"input": [[1, 0, 0, 0, 9, 1, 1, 0, 1, 9, 1, 0, 9, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 9, 0, 1, 1, 9, 9, 9], [0, 0, 0, 0, 9, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 9, 9, 0, 0, 1, 1, 1, 1, 9, 0], [1, 1, 1, 0, 0, 1, 1, 9, 1, 0, 1, 0, 4, 4, 4, 4, 4, 4, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 9], [0, 1, 9, 0, 0, 0, 0, 1, 0, 0, 1, 1, 4, 4, 4, 4, 4, 4, 0, 9, 0, 0, 8, 8, 8, 8, 1, 0, 1, 0], [0, 0, 1, 1, 0, 9, 0, 9, 0, 0, 0, 9, 4, 4, 4, 4, 4, 4, 9, 0, 1, 1, 8, 8, 8, 8, 0, 1, 9, 0], [1, 1, 0, 8, 8, 8, 8, 8, 8, 1, 0, 0, 4, 4, 4, 4, 4, 4, 1, 0, 0, 0, 8, 8, 8, 8, 1, 0, 9, 0], [1, 0, 9, 8, 8, 8, 8, 8, 8, 0, 0, 9, 4, 4, 4, 4, 4, 4, 0, 0, 1, 9, 8, 8, 8, 8, 1, 0, 1, 0], [9, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 9, 9, 0, 9, 0, 0, 1, 0, 1, 9, 1, 0, 0, 9, 1], [0, 9, 1, 1, 0, 1, 9, 1, 0, 1, 0, 9, 1, 0, 0, 0, 9, 9, 1, 0, 1, 1, 0, 0, 0, 0, 0, 9, 0, 1], [1, 1, 0, 9, 9, 0, 0, 9, 0, 0, 0, 0, 7, 7, 7, 7, 1, 1, 1, 0, 1, 0, 3, 3, 3, 3, 3, 0, 1, 0], [0, 1, 0, 0, 3, 3, 3, 1, 9, 1, 0, 0, 7, 7, 7, 7, 0, 1, 0, 9, 0, 0, 3, 3, 3, 3, 3, 1, 1, 9], [1, 0, 1, 1, 3, 3, 3, 1, 0, 0, 1, 0, 7, 7, 7, 7, 0, 0, 9, 0, 0, 0, 3, 3, 3, 3, 3, 0, 1, 0], [0, 1, 1, 0, 3, 3, 3, 9, 0, 1, 0, 9, 1, 1, 0, 0, 0, 1, 9, 1, 1, 1, 3, 3, 3, 3, 3, 0, 0, 9], [0, 0, 0, 1, 0, 9, 9, 9, 0, 9, 9, 1, 9, 9, 0, 0, 1, 0, 1, 0, 0, 9, 0, 0, 0, 0, 9, 0, 9, 0], [0, 1, 0, 1, 0, 9, 1, 0, 1, 9, 1, 9, 0, 0, 1, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0, 9, 9, 1, 0], [1, 0, 9, 0, 1, 9, 0, 0, 0, 0, 9, 9, 1, 1, 1, 9, 0, 1, 9, 1, 4, 4, 4, 4, 4, 9, 0, 1, 0, 0], [9, 0, 0, 0, 9, 0, 9, 0, 0, 9, 0, 0, 9, 0, 0, 0, 1, 0, 0, 9, 4, 4, 4, 4, 4, 0, 1, 0, 0, 0], [9, 0, 9, 2, 2, 2, 2, 2, 9, 9, 1, 9, 8, 8, 8, 8, 0, 9, 0, 9, 4, 4, 4, 4, 4, 0, 0, 0, 0, 1], [0, 0, 1, 2, 2, 2, 2, 2, 1, 0, 1, 0, 8, 8, 8, 8, 1, 9, 9, 1, 4, 4, 4, 4, 4, 1, 0, 9, 9, 0], [0, 1, 0, 2, 2, 2, 2, 2, 0, 1, 0, 1, 8, 8, 8, 8, 0, 9, 1, 0, 4, 4, 4, 4, 4, 0, 1, 1, 1, 1], [1, 0, 0, 2, 2, 2, 2, 2, 0, 0, 1, 0, 8, 8, 8, 8, 0, 9, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0], [9, 1, 9, 0, 9, 0, 9, 9, 1, 9, 9, 9, 1, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0], [9, 0, 9, 0, 0, 1, 0, 0, 9, 1, 1, 9, 9, 1, 0, 9, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 1, 9, 1, 1, 1, 1, 0, 0, 9, 1, 0, 1, 1, 1, 9, 1, 9, 0, 9, 1, 1, 1, 1, 0, 0, 0], [1, 0, 0, 0, 1, 9, 9, 1, 1, 0, 1, 0, 0, 9, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 9, 1, 1], [0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 1, 1, 1, 0, 0, 0, 0], [0, 0, 9, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 9, 9, 0, 1, 0, 1, 1, 0, 1], [0, 0, 0, 9, 0, 1, 9, 1, 1, 1, 1, 0, 9, 9, 0, 0, 0, 0, 0, 0, 9, 0, 1, 0, 0, 0, 0, 9, 0, 1], [1, 0, 1, 9, 0, 9, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 9, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0], [1, 0, 0, 0, 0, 9, 9, 0, 1, 0, 9, 0, 9, 0, 1, 1, 1, 0, 0, 1, 0, 0, 9, 0, 1, 0, 9, 9, 9, 1]], "output": [[8, 4, 8], [3, 7, 3], [2, 8, 4]]}], "test": [{"input": [[5, 5, 0, 0, 0, 8, 5, 0, 0, 8, 8, 8, 0, 8, 0, 0, 5, 5, 0, 5, 0, 5, 8, 0, 0, 0, 0, 0, 0, 8], [8, 8, 5, 5, 0, 8, 0, 0, 5, 8, 0, 0, 5, 8, 0, 8, 0, 8, 0, 8, 0, 0, 5, 0, 8, 8, 0, 0, 0, 0], [0, 5, 5, 5, 0, 5, 8, 0, 5, 8, 0, 0, 0, 5, 0, 5, 8, 8, 5, 8, 5, 0, 5, 0, 0, 0, 0, 0, 5, 5], [0, 0, 0, 5, 5, 5, 8, 8, 0, 0, 0, 5, 8, 3, 3, 3, 3, 3, 5, 0, 8, 0, 8, 8, 0, 8, 8, 0, 0, 5], [0, 5, 0, 5, 2, 2, 2, 2, 2, 2, 0, 5, 8, 3, 3, 3, 3, 3, 8, 8, 8, 3, 3, 3, 3, 3, 3, 0, 0, 5], [8, 8, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 3, 3, 3, 3, 3, 5, 8, 0, 3, 3, 3, 3, 3, 3, 0, 8, 0], [8, 5, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 8, 3, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 3, 3, 5, 0, 0], [5, 0, 8, 8, 2, 2, 2, 2, 2, 2, 8, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 5], [0, 0, 0, 5, 0, 8, 0, 5, 5, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0], [0, 0, 5, 0, 5, 5, 0, 8, 0, 8, 8, 0, 0, 5, 8, 0, 0, 0, 0, 5, 0, 0, 1, 1, 1, 1, 1, 5, 5, 5], [8, 0, 8, 4, 4, 4, 4, 4, 5, 0, 5, 8, 7, 7, 7, 7, 7, 0, 0, 8, 5, 0, 1, 1, 1, 1, 1, 0, 5, 0], [8, 5, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 5, 0, 0, 1, 1, 1, 1, 1, 0, 5, 0], [0, 8, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 7, 7, 7, 7, 7, 5, 0, 0, 5, 8, 1, 1, 1, 1, 1, 5, 5, 0], [0, 8, 5, 4, 4, 4, 4, 4, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 8, 0, 8, 0, 1, 1, 1, 1, 1, 5, 5, 0], [0, 5, 8, 4, 4, 4, 4, 4, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 5, 8], [8, 8, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 5, 8, 0, 5, 0, 5, 8, 0, 0, 0, 5], [0, 8, 0, 5, 0, 0, 0, 5, 5, 8, 5, 5, 3, 3, 3, 3, 3, 3, 3, 8, 0, 5, 0, 7, 7, 7, 7, 5, 0, 5], [0, 0, 5, 5, 0, 5, 1, 1, 1, 1, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 8, 8, 8, 7, 7, 7, 7, 8, 0, 8], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 5, 8, 3, 3, 3, 3, 3, 3, 3, 8, 5, 0, 8, 7, 7, 7, 7, 0, 5, 5], [0, 5, 0, 8, 0, 5, 1, 1, 1, 1, 5, 0, 3, 3, 3, 3, 3, 3, 3, 5, 0, 5, 0, 7, 7, 7, 7, 5, 0, 0], [0, 0, 5, 0, 0, 8, 1, 1, 1, 1, 0, 0, 5, 8, 0, 0, 5, 8, 8, 0, 0, 8, 0, 7, 7, 7, 7, 8, 0, 0], [5, 0, 5, 8, 0, 0, 8, 0, 5, 0, 0, 0, 0, 0, 5, 8, 0, 0, 5, 8, 0, 0, 5, 0, 8, 8, 8, 0, 0, 5], [0, 5, 0, 5, 5, 4, 4, 4, 5, 0, 5, 0, 6, 6, 6, 6, 6, 6, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 5, 5], [0, 8, 0, 5, 5, 4, 4, 4, 0, 8, 5, 0, 6, 6, 6, 6, 6, 6, 0, 0, 2, 2, 2, 2, 2, 2, 5, 0, 8, 5], [8, 0, 0, 0, 0, 4, 4, 4, 5, 0, 8, 0, 6, 6, 6, 6, 6, 6, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 5, 5, 0, 8, 6, 6, 6, 6, 6, 6, 5, 0, 2, 2, 2, 2, 2, 2, 0, 0, 8, 0], [5, 5, 0, 0, 0, 5, 5, 8, 5, 8, 0, 0, 6, 6, 6, 6, 6, 6, 8, 5, 8, 0, 0, 8, 5, 0, 8, 5, 0, 0], [0, 5, 8, 5, 0, 8, 5, 5, 5, 0, 8, 8, 0, 0, 5, 0, 8, 5, 5, 0, 0, 0, 5, 8, 0, 0, 0, 0, 8, 5], [0, 0, 0, 0, 8, 0, 0, 5, 8, 8, 8, 5, 0, 0, 0, 5, 0, 5, 0, 0, 0, 5, 0, 8, 0, 5, 5, 0, 0, 8], [8, 0, 5, 0, 0, 0, 0, 0, 5, 8, 8, 8, 0, 0, 5, 5, 5, 5, 8, 5, 0, 0, 5, 8, 5, 8, 5, 5, 0, 5]], "output": [[2, 3, 3], [4, 7, 1], [1, 3, 7], [4, 6, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/0a2355a6.json b/data/arc-agi/evaluation/0a2355a6.json
deleted file mode 100644
index 6a85e0a..0000000
--- a/data/arc-agi/evaluation/0a2355a6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8], [0, 0, 8, 8, 8, 0, 0, 8, 8, 8, 8], [0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1], [0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 0, 8, 0, 0, 0, 8, 8, 8], [0, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8], [0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 0, 0, 0, 8, 8, 8, 8, 0], [8, 8, 8, 8, 8, 0, 8, 0, 0, 8, 0], [8, 0, 0, 0, 8, 0, 8, 0, 0, 8, 0], [8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 0, 1, 1, 1], [0, 0, 2, 0, 2, 0, 0, 0, 1, 0, 1], [0, 0, 2, 2, 2, 0, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 3, 0, 0, 0, 1, 1, 1, 1, 0], [3, 3, 3, 3, 3, 0, 1, 0, 0, 1, 0], [3, 0, 0, 0, 3, 0, 1, 0, 0, 1, 0], [3, 3, 3, 3, 3, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 8, 8, 8, 8, 8, 0, 0, 8, 0, 8, 0, 0], [0, 0, 8, 0, 0, 0, 8, 0, 0, 8, 8, 8, 0, 0], [0, 0, 8, 8, 8, 8, 8, 0, 0, 8, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 8, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 2, 0, 2, 0, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 2, 2, 2, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 2, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 3, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0], [0, 0, 8, 8, 8, 0, 8, 0, 0, 8, 0, 8, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 0], [0, 8, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 8, 0], [0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 0, 0, 8, 0], [0, 8, 0, 0, 8, 0, 0, 0, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 0, 0, 0, 8, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 8, 8, 8, 0, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 8, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 4, 4, 4, 0, 4, 0, 0, 4, 0, 4, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0, 2, 2, 2, 2, 0], [0, 3, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 2, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0, 2, 0, 0, 2, 0], [0, 3, 0, 0, 3, 0, 0, 0, 2, 2, 2, 2, 2, 0], [0, 3, 3, 3, 3, 0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 2, 0, 0, 2, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 8, 8, 0, 0, 8, 0, 8, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 8, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 8, 0, 8, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0], [0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 4, 4, 0, 0, 2, 0, 2, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 4, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 4, 0, 0, 2, 0, 2, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 3, 3, 3, 3, 3, 3, 3], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 3, 0, 0, 3, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/0b17323b.json b/data/arc-agi/evaluation/0b17323b.json
deleted file mode 100644
index be516b8..0000000
--- a/data/arc-agi/evaluation/0b17323b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/0bb8deee.json b/data/arc-agi/evaluation/0bb8deee.json
deleted file mode 100644
index e911f46..0000000
--- a/data/arc-agi/evaluation/0bb8deee.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 3, 3], [0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 3, 3, 0], [0, 0, 0, 1, 1, 0, 0, 2, 0, 0, 0, 3, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 2, 0, 5, 5, 0, 0], [0, 0, 4, 0, 0, 0, 0, 2, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]], "output": [[1, 1, 0, 0, 3, 3], [0, 1, 0, 3, 3, 0], [0, 1, 1, 0, 3, 0], [0, 4, 0, 5, 5, 0], [4, 0, 4, 0, 5, 0], [0, 4, 0, 0, 0, 5]]}, {"input": [[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0], [0, 2, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 0, 1, 0, 0, 8, 0, 8, 0, 0, 0], [0, 5, 0, 0, 1, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 8, 0, 0, 0, 0, 0]], "output": [[0, 2, 2, 3, 0, 0], [2, 2, 2, 0, 3, 3], [0, 2, 0, 0, 3, 0], [0, 0, 5, 8, 0, 8], [5, 5, 5, 0, 8, 0], [0, 5, 0, 8, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 1, 0], [0, 0, 2, 2, 0, 0, 3, 0, 1, 0, 0, 0], [0, 2, 0, 2, 0, 0, 3, 0, 0, 1, 0, 0], [0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 5, 0, 5], [0, 0, 0, 0, 0, 0, 3, 0, 0, 5, 5, 5], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [4, 4, 4, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]], "output": [[0, 2, 2, 0, 1, 1], [2, 0, 2, 1, 0, 0], [0, 2, 0, 0, 1, 0], [4, 0, 0, 0, 5, 0], [4, 4, 4, 5, 0, 5], [0, 4, 0, 5, 5, 5]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 3, 3, 0], [0, 0, 2, 2, 0, 0, 1, 0, 0, 0, 3, 3, 0], [0, 0, 2, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0], [0, 2, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0], [0, 0, 6, 6, 0, 0, 1, 0, 0, 4, 0, 4, 0], [0, 6, 0, 6, 0, 0, 1, 0, 0, 0, 4, 0, 0], [0, 6, 6, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 2, 3, 3, 3], [0, 2, 0, 0, 3, 3], [2, 0, 2, 3, 0, 0], [0, 6, 6, 0, 4, 0], [6, 0, 6, 4, 0, 4], [6, 6, 0, 0, 4, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/0becf7df.json b/data/arc-agi/evaluation/0becf7df.json
deleted file mode 100644
index 0be9750..0000000
--- a/data/arc-agi/evaluation/0becf7df.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 2, 0, 0, 0, 0, 0, 0, 0, 0], [3, 7, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 3, 4, 4, 0, 0], [0, 0, 0, 0, 0, 3, 2, 4, 0, 0], [0, 0, 0, 7, 7, 3, 2, 4, 0, 0], [0, 0, 0, 7, 3, 3, 2, 0, 0, 0], [0, 0, 0, 7, 0, 0, 2, 2, 0, 0], [0, 0, 0, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 2, 0, 0, 0, 0, 0, 0, 0, 0], [3, 7, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 7, 2, 2, 0, 0], [0, 0, 0, 0, 0, 7, 4, 2, 0, 0], [0, 0, 0, 3, 3, 7, 4, 2, 0, 0], [0, 0, 0, 3, 7, 7, 4, 0, 0, 0], [0, 0, 0, 3, 0, 0, 4, 4, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[1, 3, 0, 0, 0, 0, 0, 0, 0, 0], [2, 8, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 3, 3, 3, 3, 1, 8, 0, 0], [0, 0, 3, 3, 2, 0, 8, 8, 0, 0], [0, 0, 0, 0, 2, 0, 8, 8, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 3, 0, 0, 0, 0, 0, 0, 0, 0], [2, 8, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 1, 1, 1, 1, 3, 2, 0, 0], [0, 0, 1, 1, 8, 0, 2, 2, 0, 0], [0, 0, 0, 0, 8, 0, 2, 2, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[9, 4, 0, 0, 0, 0, 0, 0, 0, 0], [7, 6, 0, 0, 0, 9, 9, 0, 0, 0], [0, 0, 0, 0, 0, 7, 9, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 7, 4, 0, 0, 0, 0], [0, 0, 0, 6, 6, 7, 0, 0, 0, 0], [0, 0, 0, 7, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[9, 4, 0, 0, 0, 0, 0, 0, 0, 0], [7, 6, 0, 0, 0, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 6, 4, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 6, 9, 0, 0, 0, 0], [0, 0, 0, 7, 7, 6, 0, 0, 0, 0], [0, 0, 0, 6, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[8, 9, 0, 0, 0, 0, 0, 0, 0, 0], [2, 4, 0, 0, 0, 9, 9, 0, 0, 0], [0, 0, 0, 8, 8, 8, 9, 0, 0, 0], [0, 0, 0, 2, 8, 8, 9, 0, 0, 0], [0, 0, 0, 2, 4, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 4, 0, 0, 0, 0], [0, 0, 0, 2, 4, 4, 0, 0, 0, 0], [0, 0, 0, 9, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 9, 0, 0, 0, 0, 0, 0, 0, 0], [2, 4, 0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 9, 9, 9, 8, 0, 0, 0], [0, 0, 0, 4, 9, 9, 8, 0, 0, 0], [0, 0, 0, 4, 2, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 2, 0, 0, 0, 0], [0, 0, 0, 4, 2, 2, 0, 0, 0, 0], [0, 0, 0, 8, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/0c786b71.json b/data/arc-agi/evaluation/0c786b71.json
deleted file mode 100644
index f5afb7e..0000000
--- a/data/arc-agi/evaluation/0c786b71.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[8, 5, 7, 8], [7, 7, 8, 8], [5, 5, 8, 5]], "output": [[5, 8, 5, 5, 5, 5, 8, 5], [8, 8, 7, 7, 7, 7, 8, 8], [8, 7, 5, 8, 8, 5, 7, 8], [8, 7, 5, 8, 8, 5, 7, 8], [8, 8, 7, 7, 7, 7, 8, 8], [5, 8, 5, 5, 5, 5, 8, 5]]}], "train": [{"input": [[6, 2, 4, 2], [2, 2, 6, 6], [6, 4, 2, 4]], "output": [[4, 2, 4, 6, 6, 4, 2, 4], [6, 6, 2, 2, 2, 2, 6, 6], [2, 4, 2, 6, 6, 2, 4, 2], [2, 4, 2, 6, 6, 2, 4, 2], [6, 6, 2, 2, 2, 2, 6, 6], [4, 2, 4, 6, 6, 4, 2, 4]]}, {"input": [[5, 5, 9, 9], [9, 5, 5, 5], [5, 7, 5, 7]], "output": [[7, 5, 7, 5, 5, 7, 5, 7], [5, 5, 5, 9, 9, 5, 5, 5], [9, 9, 5, 5, 5, 5, 9, 9], [9, 9, 5, 5, 5, 5, 9, 9], [5, 5, 5, 9, 9, 5, 5, 5], [7, 5, 7, 5, 5, 7, 5, 7]]}, {"input": [[3, 3, 5, 5], [5, 8, 5, 8], [8, 8, 5, 8]], "output": [[8, 5, 8, 8, 8, 8, 5, 8], [8, 5, 8, 5, 5, 8, 5, 8], [5, 5, 3, 3, 3, 3, 5, 5], [5, 5, 3, 3, 3, 3, 5, 5], [8, 5, 8, 5, 5, 8, 5, 8], [8, 5, 8, 8, 8, 8, 5, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/0c9aba6e.json b/data/arc-agi/evaluation/0c9aba6e.json
deleted file mode 100644
index 8794651..0000000
--- a/data/arc-agi/evaluation/0c9aba6e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[0, 0, 0, 2], [0, 2, 2, 0], [2, 0, 0, 2], [0, 2, 2, 0], [2, 0, 2, 2], [0, 0, 0, 2], [7, 7, 7, 7], [6, 6, 0, 6], [6, 6, 6, 0], [0, 0, 0, 0], [6, 6, 0, 6], [6, 0, 6, 0], [0, 0, 6, 6]], "output": [[0, 0, 8, 0], [0, 0, 0, 8], [0, 8, 8, 0], [0, 0, 0, 0], [0, 8, 0, 0], [8, 8, 0, 0]]}], "train": [{"input": [[0, 2, 2, 0], [2, 0, 0, 0], [0, 2, 0, 2], [2, 2, 2, 2], [0, 0, 2, 0], [0, 0, 2, 2], [7, 7, 7, 7], [0, 6, 6, 0], [0, 0, 0, 0], [6, 6, 6, 6], [6, 6, 0, 6], [0, 6, 6, 6], [0, 0, 6, 0]], "output": [[8, 0, 0, 8], [0, 8, 8, 8], [0, 0, 0, 0], [0, 0, 0, 0], [8, 0, 0, 0], [8, 8, 0, 0]]}, {"input": [[2, 2, 0, 2], [2, 0, 2, 2], [2, 2, 0, 0], [0, 2, 0, 2], [0, 2, 2, 0], [2, 0, 0, 2], [7, 7, 7, 7], [6, 0, 6, 6], [0, 6, 0, 0], [0, 0, 0, 0], [0, 0, 0, 6], [6, 6, 0, 0], [6, 0, 6, 0]], "output": [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 8, 8], [8, 0, 8, 0], [0, 0, 0, 8], [0, 8, 0, 0]]}, {"input": [[0, 0, 0, 2], [2, 0, 0, 0], [0, 2, 2, 2], [0, 0, 0, 2], [2, 0, 2, 0], [0, 2, 2, 0], [7, 7, 7, 7], [6, 0, 6, 6], [6, 0, 0, 6], [0, 6, 6, 6], [6, 0, 0, 0], [6, 0, 0, 6], [0, 0, 6, 0]], "output": [[0, 8, 0, 0], [0, 8, 8, 0], [8, 0, 0, 0], [0, 8, 8, 0], [0, 8, 0, 0], [8, 0, 0, 8]]}, {"input": [[2, 2, 0, 0], [0, 2, 2, 0], [2, 2, 0, 0], [2, 0, 0, 0], [0, 0, 0, 2], [2, 2, 0, 0], [7, 7, 7, 7], [6, 6, 6, 6], [6, 0, 6, 6], [6, 6, 0, 0], [0, 0, 0, 0], [6, 6, 0, 0], [0, 0, 6, 0]], "output": [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 8, 8], [0, 8, 8, 8], [0, 0, 8, 0], [0, 0, 0, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/0d87d2a6.json b/data/arc-agi/evaluation/0d87d2a6.json
deleted file mode 100644
index 3e38750..0000000
--- a/data/arc-agi/evaluation/0d87d2a6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 1], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 2, 2, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 2, 2, 0, 0, 1, 0, 0, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 2, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 2, 2, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 1], [0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [2, 2, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 2, 2, 2], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 2, 2, 2], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2, 2], [0, 2, 2, 2, 2, 2, 0, 1, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [2, 2, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 2, 2, 2], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 2, 2, 2], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 2, 2], [0, 2, 2, 2, 2, 2, 0, 1, 0, 0, 0, 2, 2, 2], [0, 2, 2, 2, 2, 2, 0, 1, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 0], [1, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 1], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 2, 2, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 2, 2, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 2, 2, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/0e671a1a.json b/data/arc-agi/evaluation/0e671a1a.json
deleted file mode 100644
index 299b83b..0000000
--- a/data/arc-agi/evaluation/0e671a1a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 4, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2, 0], [0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0], [0, 0, 2, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0], [0, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/0f63c0b9.json b/data/arc-agi/evaluation/0f63c0b9.json
deleted file mode 100644
index cd90416..0000000
--- a/data/arc-agi/evaluation/0f63c0b9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9], [9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9], [9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9], [9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/103eff5b.json b/data/arc-agi/evaluation/103eff5b.json
deleted file mode 100644
index 61574f3..0000000
--- a/data/arc-agi/evaluation/103eff5b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 8, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 1, 1, 3, 3, 3, 3, 0, 0, 0], [0, 0, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0], [0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0], [0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0], [0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 4, 4, 4, 0, 0, 0, 0, 0], [0, 2, 2, 2, 4, 4, 4, 0, 0, 0, 0, 0], [0, 2, 2, 2, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 4, 4, 4, 0, 0, 0, 1, 1, 1, 0, 0], [0, 4, 4, 4, 0, 0, 0, 1, 1, 1, 0, 0], [0, 4, 4, 4, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/11e1fe23.json b/data/arc-agi/evaluation/11e1fe23.json
deleted file mode 100644
index 24b649e..0000000
--- a/data/arc-agi/evaluation/11e1fe23.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/12422b43.json b/data/arc-agi/evaluation/12422b43.json
deleted file mode 100644
index 66c802c..0000000
--- a/data/arc-agi/evaluation/12422b43.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 0, 6, 0, 0], [5, 4, 4, 4, 0], [0, 0, 6, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[5, 0, 6, 0, 0], [5, 4, 4, 4, 0], [0, 0, 6, 0, 0], [0, 0, 6, 0, 0], [0, 4, 4, 4, 0]]}, {"input": [[5, 0, 8, 8, 0, 0, 0], [5, 0, 0, 7, 0, 0, 0], [5, 0, 0, 4, 4, 0, 0], [0, 0, 3, 3, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[5, 0, 8, 8, 0, 0, 0], [5, 0, 0, 7, 0, 0, 0], [5, 0, 0, 4, 4, 0, 0], [0, 0, 3, 3, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0]]}, {"input": [[5, 0, 0, 4, 4, 0, 0], [5, 0, 8, 8, 8, 0, 0], [0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0], [0, 0, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[5, 0, 0, 4, 4, 0, 0], [5, 0, 8, 8, 8, 0, 0], [0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0], [0, 0, 4, 4, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0], [0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 4, 4, 0, 0], [0, 0, 8, 8, 8, 0, 0]]}, {"input": [[5, 0, 0, 3, 3, 0], [5, 0, 0, 3, 2, 0], [5, 0, 0, 2, 3, 0], [5, 0, 0, 8, 8, 0], [0, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[5, 0, 0, 3, 3, 0], [5, 0, 0, 3, 2, 0], [5, 0, 0, 2, 3, 0], [5, 0, 0, 8, 8, 0], [0, 0, 0, 8, 8, 0], [0, 0, 0, 3, 3, 0], [0, 0, 0, 3, 2, 0], [0, 0, 0, 2, 3, 0], [0, 0, 0, 8, 8, 0], [0, 0, 0, 3, 3, 0], [0, 0, 0, 3, 2, 0], [0, 0, 0, 2, 3, 0], [0, 0, 0, 8, 8, 0]]}, {"input": [[5, 0, 6, 8, 0, 0], [0, 0, 8, 3, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[5, 0, 6, 8, 0, 0], [0, 0, 8, 3, 0, 0], [0, 0, 6, 8, 0, 0], [0, 0, 6, 8, 0, 0], [0, 0, 6, 8, 0, 0], [0, 0, 6, 8, 0, 0], [0, 0, 6, 8, 0, 0]]}], "test": [{"input": [[5, 0, 4, 4, 4, 0, 0], [5, 0, 0, 8, 0, 0, 0], [5, 0, 0, 6, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[5, 0, 4, 4, 4, 0, 0], [5, 0, 0, 8, 0, 0, 0], [5, 0, 0, 6, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0], [0, 0, 4, 4, 4, 0, 0], [0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0], [0, 0, 4, 4, 4, 0, 0], [0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0]]}]}
diff --git a/data/arc-agi/evaluation/12997ef3.json b/data/arc-agi/evaluation/12997ef3.json
deleted file mode 100644
index 7bb1a09..0000000
--- a/data/arc-agi/evaluation/12997ef3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 3, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 2, 3, 0, 3, 4, 0, 4], [0, 2, 0, 0, 3, 0, 0, 4, 0], [2, 2, 2, 3, 3, 3, 4, 4, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 8, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 3, 3], [3, 3, 3], [0, 3, 0], [0, 6, 6], [6, 6, 6], [0, 6, 0], [0, 8, 8], [8, 8, 8], [0, 8, 0]]}, {"input": [[0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 3, 3, 0, 2, 2], [3, 3, 0, 2, 2, 0], [0, 3, 3, 0, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 6, 0], [6, 6, 0], [0, 0, 6], [0, 2, 0], [2, 2, 0], [0, 0, 2]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 8, 0, 3, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 2, 0, 8, 8, 0, 3, 3, 0, 6, 6], [2, 2, 0, 8, 8, 0, 3, 3, 0, 6, 6, 0], [2, 2, 0, 8, 8, 0, 3, 3, 0, 6, 6, 0]]}, {"input": [[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 7, 0], [7, 7, 7], [0, 7, 0], [0, 6, 0], [6, 6, 6], [0, 6, 0], [0, 3, 0], [3, 3, 3], [0, 3, 0], [0, 2, 0], [2, 2, 2], [0, 2, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/12eac192.json b/data/arc-agi/evaluation/12eac192.json
deleted file mode 100644
index 89801b0..0000000
--- a/data/arc-agi/evaluation/12eac192.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 1, 0, 7, 7, 7, 0], [8, 8, 0, 0, 5, 5, 0, 0], [0, 8, 8, 0, 0, 5, 5, 0], [0, 1, 1, 0, 8, 0, 0, 1], [0, 7, 0, 1, 8, 0, 0, 0], [8, 0, 0, 0, 1, 0, 7, 0], [0, 8, 8, 8, 1, 0, 0, 0]], "output": [[0, 0, 3, 0, 7, 7, 7, 0], [8, 8, 0, 0, 5, 5, 0, 0], [0, 8, 8, 0, 0, 5, 5, 0], [0, 3, 3, 0, 3, 0, 0, 3], [0, 3, 0, 3, 3, 0, 0, 0], [3, 0, 0, 0, 3, 0, 3, 0], [0, 8, 8, 8, 3, 0, 0, 0]]}, {"input": [[0, 0, 1, 8, 1, 1, 1, 0], [1, 5, 1, 7, 1, 1, 0, 0], [0, 8, 0, 7, 7, 7, 8, 8], [0, 8, 8, 0, 0, 0, 8, 0], [0, 7, 0, 0, 8, 5, 5, 0], [1, 0, 0, 0, 0, 0, 0, 1], [1, 0, 8, 7, 7, 8, 0, 0], [0, 0, 8, 7, 7, 0, 8, 8], [0, 8, 8, 0, 8, 0, 8, 8]], "output": [[0, 0, 3, 3, 1, 1, 1, 0], [3, 3, 3, 7, 1, 1, 0, 0], [0, 8, 0, 7, 7, 7, 8, 8], [0, 8, 8, 0, 0, 0, 8, 0], [0, 3, 0, 0, 3, 3, 3, 0], [3, 0, 0, 0, 0, 0, 0, 3], [3, 0, 8, 7, 7, 3, 0, 0], [0, 0, 8, 7, 7, 0, 8, 8], [0, 8, 8, 0, 3, 0, 8, 8]]}, {"input": [[1, 7, 7, 1, 0, 8, 0, 5], [1, 7, 7, 1, 1, 0, 1, 0], [8, 8, 0, 0, 7, 7, 7, 7], [0, 1, 0, 0, 0, 0, 1, 1], [5, 0, 8, 0, 1, 0, 1, 1]], "output": [[3, 7, 7, 1, 0, 3, 0, 3], [3, 7, 7, 1, 1, 0, 3, 0], [3, 3, 0, 0, 7, 7, 7, 7], [0, 3, 0, 0, 0, 0, 1, 1], [3, 0, 3, 0, 3, 0, 1, 1]]}, {"input": [[1, 0, 5], [1, 0, 0], [7, 7, 7]], "output": [[3, 0, 3], [3, 0, 0], [7, 7, 7]]}], "test": [{"input": [[0, 5, 0, 1, 5, 5, 0, 5], [1, 1, 0, 0, 0, 1, 1, 0], [0, 7, 7, 0, 0, 0, 0, 5], [1, 1, 0, 5, 0, 1, 0, 0], [0, 1, 0, 5, 5, 5, 0, 1], [0, 7, 0, 0, 7, 0, 0, 7], [1, 0, 1, 0, 0, 0, 1, 7], [0, 0, 1, 1, 0, 1, 0, 7]], "output": [[0, 3, 0, 3, 3, 3, 0, 3], [3, 3, 0, 0, 0, 3, 3, 0], [0, 3, 3, 0, 0, 0, 0, 3], [1, 1, 0, 5, 0, 3, 0, 0], [0, 1, 0, 5, 5, 5, 0, 3], [0, 3, 0, 0, 3, 0, 0, 7], [3, 0, 1, 0, 0, 0, 3, 7], [0, 0, 1, 1, 0, 3, 0, 7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/136b0064.json b/data/arc-agi/evaluation/136b0064.json
deleted file mode 100644
index 9c2176b..0000000
--- a/data/arc-agi/evaluation/136b0064.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 0, 0, 2, 0, 2, 4, 0, 0, 0, 5, 0, 0, 0], [1, 0, 1, 0, 2, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 2, 2, 2, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [6, 0, 6, 0, 3, 3, 3, 4, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 3, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 2, 2, 0], [0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[2, 0, 2, 0, 6, 0, 6, 4, 0, 5, 0, 0, 0, 0, 0], [2, 0, 2, 0, 0, 6, 0, 4, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 6, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 3, 3, 3, 4, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 0, 0, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 3, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 6, 0, 6, 4, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 0, 0, 6, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 6, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [6, 0, 6, 0, 1, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 5, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 6, 0, 0], [0, 3, 3, 3, 3, 0, 0], [0, 6, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[2, 0, 2, 0, 6, 0, 6, 4, 0, 0, 0, 0, 5, 0, 0], [2, 0, 2, 0, 0, 6, 0, 4, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 6, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [6, 0, 6, 0, 1, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 6, 0, 6, 4, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 0, 6, 0, 4, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 6, 0, 4, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[1, 1, 0, 0, 1, 1, 0, 4, 0, 0, 5, 0, 0, 0, 0], [1, 0, 1, 0, 1, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 1, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 1, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [6, 0, 6, 0, 6, 0, 6, 4, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 6, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 6, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 0, 3, 3, 3, 4, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0], [3, 0, 3, 0, 3, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [6, 0, 6, 0, 2, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 2, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 2, 2, 2, 4, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 5, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0], [3, 3, 3, 3, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 6, 0, 0], [0, 3, 3, 3, 3, 0, 0], [2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/13713586.json b/data/arc-agi/evaluation/13713586.json
deleted file mode 100644
index 5a52e42..0000000
--- a/data/arc-agi/evaluation/13713586.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 4, 3, 3, 3, 4, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 4, 3, 3, 3, 4, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 4, 3, 3, 3, 4, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 4, 3, 3, 3, 4, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 7, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5], [0, 0, 7, 7, 7, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5], [0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 5], [0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 5], [0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5]]}, {"input": [[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [5, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [5, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [5, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [5, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [5, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [5, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 6, 6, 6, 0, 0, 0], [5, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 6, 6, 6, 0, 0, 0], [5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0], [5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0], [5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0], [5, 2, 2, 2, 2, 2, 2, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0], [5, 2, 2, 2, 2, 2, 2, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0], [5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [4, 4, 4, 4, 3, 3, 3, 3, 2, 2, 2, 2, 2, 0, 8, 8, 8, 0], [4, 4, 4, 4, 3, 3, 3, 3, 2, 2, 2, 2, 2, 0, 8, 8, 8, 0], [4, 4, 4, 4, 3, 3, 3, 3, 2, 2, 2, 2, 2, 0, 8, 8, 8, 0], [4, 4, 4, 4, 3, 3, 3, 3, 2, 2, 2, 2, 2, 0, 8, 8, 8, 0], [4, 4, 4, 4, 3, 3, 3, 3, 2, 2, 2, 2, 2, 0, 8, 8, 8, 0], [4, 4, 4, 4, 3, 3, 3, 3, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [4, 4, 4, 4, 3, 3, 3, 3, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/137f0df0.json b/data/arc-agi/evaluation/137f0df0.json
deleted file mode 100644
index 882177a..0000000
--- a/data/arc-agi/evaluation/137f0df0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 5, 0, 5, 5, 0, 5, 5, 0, 0], [5, 5, 0, 5, 5, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 0, 5, 5, 0, 5, 5, 0, 0], [5, 5, 0, 5, 5, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 0, 5, 5, 0, 5, 5, 0, 0], [5, 5, 0, 5, 5, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 5, 2, 5, 5, 2, 5, 5, 0, 0], [5, 5, 2, 5, 5, 2, 5, 5, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 1, 1], [5, 5, 2, 5, 5, 2, 5, 5, 0, 0], [5, 5, 2, 5, 5, 2, 5, 5, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 1, 1], [5, 5, 2, 5, 5, 2, 5, 5, 0, 0], [5, 5, 2, 5, 5, 2, 5, 5, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 0, 0]]}, {"input": [[0, 0, 5, 5, 0, 0, 5, 5, 0, 0], [0, 0, 5, 5, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 5, 5, 0, 0], [0, 0, 5, 5, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 5, 5, 0, 0], [0, 0, 5, 5, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 5, 5, 2, 2, 5, 5, 0, 0], [0, 0, 5, 5, 2, 2, 5, 5, 0, 0], [1, 1, 2, 2, 2, 2, 2, 2, 1, 1], [0, 0, 5, 5, 2, 2, 5, 5, 0, 0], [0, 0, 5, 5, 2, 2, 5, 5, 0, 0], [1, 1, 2, 2, 2, 2, 2, 2, 1, 1], [0, 0, 5, 5, 2, 2, 5, 5, 0, 0], [0, 0, 5, 5, 2, 2, 5, 5, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0]]}, {"input": [[0, 5, 5, 0, 5, 5, 0, 5, 5, 0], [0, 5, 5, 0, 5, 5, 0, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 5, 5, 0, 5, 5, 0], [0, 5, 5, 0, 5, 5, 0, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 5, 5, 0, 5, 5, 0], [0, 5, 5, 0, 5, 5, 0, 5, 5, 0]], "output": [[0, 5, 5, 2, 5, 5, 2, 5, 5, 0], [0, 5, 5, 2, 5, 5, 2, 5, 5, 0], [1, 2, 2, 2, 2, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 2, 2, 2, 2, 1], [0, 5, 5, 2, 5, 5, 2, 5, 5, 0], [0, 5, 5, 2, 5, 5, 2, 5, 5, 0], [1, 2, 2, 2, 2, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 2, 2, 2, 2, 1], [0, 5, 5, 2, 5, 5, 2, 5, 5, 0], [0, 5, 5, 2, 5, 5, 2, 5, 5, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 5, 5, 0, 5, 5], [0, 5, 5, 0, 0, 5, 5, 0, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 5, 5, 0, 5, 5], [0, 5, 5, 0, 0, 5, 5, 0, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 5, 5, 0, 5, 5], [0, 5, 5, 0, 0, 5, 5, 0, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 1, 1, 0, 0, 1, 0, 0], [0, 5, 5, 2, 2, 5, 5, 2, 5, 5], [0, 5, 5, 2, 2, 5, 5, 2, 5, 5], [1, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 5, 5, 2, 2, 5, 5, 2, 5, 5], [0, 5, 5, 2, 2, 5, 5, 2, 5, 5], [1, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 5, 5, 2, 2, 5, 5, 2, 5, 5], [0, 5, 5, 2, 2, 5, 5, 2, 5, 5], [0, 0, 0, 1, 1, 0, 0, 1, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/140c817e.json b/data/arc-agi/evaluation/140c817e.json
deleted file mode 100644
index 70256f7..0000000
--- a/data/arc-agi/evaluation/140c817e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 1, 8, 8, 1, 8, 8, 8, 1, 3, 1, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1], [8, 3, 1, 3, 8, 1, 8, 8, 8, 1, 3, 1, 3], [1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [8, 3, 1, 3, 8, 1, 8, 8, 8, 1, 8, 1, 8], [8, 8, 1, 8, 8, 1, 8, 8, 3, 1, 3, 1, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1], [8, 8, 1, 8, 8, 1, 8, 8, 3, 1, 3, 1, 8], [8, 8, 1, 8, 3, 1, 3, 8, 8, 1, 8, 1, 8], [1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1], [8, 8, 1, 8, 3, 1, 3, 8, 8, 1, 8, 1, 8], [8, 8, 1, 8, 8, 1, 8, 8, 8, 1, 8, 1, 8], [8, 8, 1, 8, 8, 1, 8, 8, 8, 1, 8, 1, 8]]}, {"input": [[9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 1, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 1, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9]], "output": [[9, 9, 9, 1, 9, 9, 1, 9, 9], [9, 9, 9, 1, 9, 9, 1, 9, 9], [9, 9, 3, 1, 3, 9, 1, 9, 9], [1, 1, 1, 2, 1, 1, 1, 1, 1], [9, 9, 3, 1, 3, 9, 1, 9, 9], [9, 9, 9, 1, 9, 3, 1, 3, 9], [1, 1, 1, 1, 1, 1, 2, 1, 1], [9, 9, 9, 1, 9, 3, 1, 3, 9], [9, 9, 9, 1, 9, 9, 1, 9, 9]]}, {"input": [[7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 1, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 1, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 1, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7]], "output": [[7, 7, 1, 7, 7, 7, 1, 3, 1, 3, 7], [1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1], [7, 7, 1, 7, 7, 7, 1, 3, 1, 3, 7], [7, 3, 1, 3, 7, 7, 1, 7, 1, 7, 7], [1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1], [7, 3, 1, 3, 7, 7, 1, 7, 1, 7, 7], [7, 7, 1, 7, 7, 7, 1, 7, 1, 7, 7], [7, 7, 1, 7, 7, 7, 1, 7, 1, 7, 7], [7, 7, 1, 7, 7, 3, 1, 3, 1, 7, 7], [1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1], [7, 7, 1, 7, 7, 3, 1, 3, 1, 7, 7]]}], "test": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1]], "output": [[8, 8, 1, 8, 1, 8, 8, 1, 8, 8, 8, 8, 8, 1], [8, 8, 1, 8, 1, 8, 3, 1, 3, 8, 8, 8, 8, 1], [1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1], [8, 8, 1, 8, 1, 8, 3, 1, 3, 8, 8, 8, 8, 1], [8, 3, 1, 3, 1, 8, 8, 1, 8, 8, 8, 8, 8, 1], [1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [8, 3, 1, 3, 1, 8, 8, 1, 8, 8, 8, 8, 8, 1], [8, 8, 1, 8, 1, 8, 8, 1, 8, 8, 8, 8, 8, 1], [8, 8, 1, 8, 1, 8, 8, 1, 8, 8, 8, 8, 8, 1], [8, 8, 1, 8, 1, 8, 8, 1, 8, 8, 8, 8, 8, 1], [8, 8, 1, 3, 1, 3, 8, 1, 8, 8, 8, 8, 8, 1], [1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 1, 3, 1, 3, 8, 1, 8, 8, 8, 8, 3, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/14754a24.json b/data/arc-agi/evaluation/14754a24.json
deleted file mode 100644
index 7622785..0000000
--- a/data/arc-agi/evaluation/14754a24.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 5, 0, 5, 5, 0, 5, 5, 5, 0, 0, 0, 5, 0, 0, 5, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 5, 5, 0, 0, 0], [0, 5, 5, 0, 0, 0, 5, 0, 5, 5, 0, 0, 0, 0, 5, 0, 0, 5, 0], [0, 0, 5, 5, 0, 5, 5, 0, 0, 5, 5, 0, 5, 0, 5, 0, 5, 0, 0], [0, 0, 5, 0, 0, 4, 0, 5, 0, 5, 0, 5, 0, 0, 0, 5, 5, 0, 5], [0, 0, 5, 0, 4, 5, 4, 5, 5, 0, 5, 0, 0, 0, 5, 4, 5, 5, 5], [5, 0, 0, 0, 0, 4, 0, 0, 5, 5, 0, 0, 0, 0, 5, 4, 4, 5, 0], [5, 0, 5, 5, 5, 5, 0, 5, 0, 0, 0, 5, 0, 5, 0, 4, 5, 0, 0], [5, 5, 0, 0, 5, 0, 5, 0, 5, 5, 0, 5, 5, 5, 5, 5, 0, 0, 0], [5, 5, 0, 0, 5, 5, 5, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 5, 4, 5, 0, 5, 5, 0, 0, 0, 0, 0], [5, 5, 5, 4, 0, 5, 0, 5, 5, 4, 4, 5, 0, 0, 5, 5, 5, 5, 0], [0, 0, 4, 5, 0, 0, 5, 5, 0, 4, 5, 0, 5, 0, 0, 5, 5, 5, 5], [0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 5, 0, 5, 0, 0, 5, 5], [5, 5, 0, 5, 0, 0, 0, 5, 5, 5, 5, 5, 0, 5, 0, 0, 0, 0, 0], [5, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 5], [5, 0, 5, 0, 5, 5, 0, 5, 5, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0]], "output": [[0, 5, 0, 5, 5, 0, 5, 5, 5, 0, 0, 0, 5, 0, 0, 5, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 5, 5, 0, 0, 0], [0, 5, 5, 0, 0, 0, 5, 0, 5, 5, 0, 0, 0, 0, 5, 0, 0, 5, 0], [0, 0, 5, 5, 0, 5, 5, 0, 0, 5, 5, 0, 5, 0, 5, 0, 5, 0, 0], [0, 0, 5, 0, 0, 4, 0, 5, 0, 5, 0, 5, 0, 0, 0, 5, 5, 0, 5], [0, 0, 5, 0, 4, 2, 4, 5, 5, 0, 5, 0, 0, 0, 5, 4, 5, 5, 5], [5, 0, 0, 0, 0, 4, 0, 0, 5, 5, 0, 0, 0, 0, 2, 4, 4, 5, 0], [5, 0, 5, 5, 5, 5, 0, 5, 0, 0, 0, 5, 0, 5, 0, 4, 5, 0, 0], [5, 5, 0, 0, 5, 0, 5, 0, 5, 5, 0, 5, 5, 5, 5, 5, 0, 0, 0], [5, 5, 0, 0, 5, 5, 5, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0], [0, 0, 2, 5, 0, 0, 0, 0, 5, 4, 5, 0, 5, 5, 0, 0, 0, 0, 0], [5, 2, 2, 4, 0, 5, 0, 5, 2, 4, 4, 5, 0, 0, 5, 5, 5, 5, 0], [0, 0, 4, 5, 0, 0, 5, 5, 0, 4, 5, 0, 5, 0, 0, 5, 5, 5, 5], [0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 5, 0, 5, 0, 0, 5, 5], [5, 5, 0, 5, 0, 0, 0, 5, 5, 5, 5, 5, 0, 5, 0, 0, 0, 0, 0], [5, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 5], [5, 0, 5, 0, 5, 5, 0, 5, 5, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0]]}, {"input": [[0, 5, 0, 0, 5, 5, 0, 0, 0, 5, 5, 0, 5, 0, 0, 5], [5, 5, 0, 0, 0, 0, 5, 0, 5, 0, 0, 5, 5, 5, 0, 0], [0, 0, 4, 5, 0, 5, 0, 5, 5, 0, 0, 4, 5, 5, 5, 0], [0, 5, 5, 4, 0, 0, 5, 0, 0, 5, 0, 0, 4, 0, 0, 5], [0, 0, 4, 5, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 5, 5, 5, 5, 0, 5, 0, 5, 5, 0, 5], [5, 0, 5, 0, 0, 4, 5, 4, 5, 5, 5, 5, 0, 5, 0, 0], [0, 0, 0, 0, 5, 5, 4, 5, 5, 0, 0, 0, 0, 0, 0, 5], [0, 0, 5, 5, 0, 0, 5, 0, 5, 5, 0, 5, 5, 4, 5, 0], [0, 0, 5, 0, 0, 5, 0, 0, 0, 5, 5, 0, 5, 5, 4, 5], [5, 0, 0, 4, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 5, 5], [5, 5, 4, 5, 4, 5, 0, 5, 5, 5, 0, 0, 0, 0, 5, 5], [5, 0, 0, 5, 5, 5, 0, 5, 4, 5, 4, 0, 5, 0, 0, 0], [5, 0, 0, 5, 5, 0, 0, 5, 0, 4, 0, 0, 0, 5, 5, 0], [5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 5, 5, 0, 0], [5, 5, 5, 5, 0, 0, 0, 0, 5, 0, 5, 5, 5, 5, 0, 5], [5, 0, 5, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 5, 0, 0], [5, 0, 0, 0, 0, 5, 0, 0, 5, 5, 5, 5, 0, 0, 0, 5]], "output": [[0, 5, 0, 0, 5, 5, 0, 0, 0, 5, 5, 0, 5, 0, 0, 5], [5, 5, 0, 0, 0, 0, 5, 0, 5, 0, 0, 5, 2, 5, 0, 0], [0, 0, 4, 5, 0, 5, 0, 5, 5, 0, 0, 4, 2, 2, 5, 0], [0, 2, 2, 4, 0, 0, 5, 0, 0, 5, 0, 0, 4, 0, 0, 5], [0, 0, 4, 5, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 5, 2, 5, 5, 0, 5, 0, 5, 5, 0, 5], [5, 0, 5, 0, 0, 4, 2, 4, 5, 5, 5, 5, 0, 5, 0, 0], [0, 0, 0, 0, 5, 5, 4, 5, 5, 0, 0, 0, 0, 0, 0, 5], [0, 0, 5, 5, 0, 0, 5, 0, 5, 5, 0, 5, 5, 4, 5, 0], [0, 0, 5, 0, 0, 5, 0, 0, 0, 5, 5, 0, 2, 2, 4, 5], [5, 0, 0, 4, 0, 0, 0, 0, 5, 0, 0, 0, 0, 2, 5, 5], [5, 5, 4, 2, 4, 5, 0, 5, 5, 2, 0, 0, 0, 0, 5, 5], [5, 0, 0, 2, 5, 5, 0, 5, 4, 2, 4, 0, 5, 0, 0, 0], [5, 0, 0, 5, 5, 0, 0, 5, 0, 4, 0, 0, 0, 5, 5, 0], [5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 5, 5, 0, 0], [5, 5, 5, 5, 0, 0, 0, 0, 5, 0, 5, 5, 5, 5, 0, 5], [5, 0, 5, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 5, 0, 0], [5, 0, 0, 0, 0, 5, 0, 0, 5, 5, 5, 5, 0, 0, 0, 5]]}, {"input": [[0, 5, 5, 4, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5], [0, 0, 4, 0, 0, 5, 5, 4, 5, 0, 0, 5, 0, 5, 5], [5, 0, 5, 0, 0, 0, 4, 4, 5, 0, 5, 5, 5, 0, 5], [5, 0, 0, 5, 0, 5, 5, 4, 0, 0, 0, 5, 5, 0, 5], [5, 5, 0, 5, 0, 5, 0, 0, 0, 5, 5, 0, 0, 5, 0], [0, 5, 0, 0, 5, 0, 5, 5, 0, 0, 5, 5, 5, 0, 0], [5, 5, 0, 5, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 4, 0, 5, 0, 5, 0, 0, 5, 0, 5, 0, 5, 5], [5, 4, 5, 4, 0, 5, 5, 0, 4, 5, 4, 5, 0, 5, 0], [5, 5, 5, 0, 0, 5, 5, 0, 0, 4, 0, 5, 0, 5, 5], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5], [0, 5, 0, 0, 5, 0, 5, 0, 0, 5, 5, 0, 5, 0, 0], [0, 0, 0, 0, 0, 5, 0, 5, 5, 0, 0, 0, 0, 0, 5], [0, 5, 0, 0, 5, 5, 5, 5, 0, 5, 0, 5, 0, 0, 0]], "output": [[0, 2, 2, 4, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5], [0, 0, 4, 0, 0, 5, 5, 4, 5, 0, 0, 5, 0, 5, 5], [5, 0, 5, 0, 0, 0, 4, 4, 2, 0, 5, 5, 5, 0, 5], [5, 0, 0, 5, 0, 5, 5, 4, 0, 0, 0, 5, 5, 0, 5], [5, 5, 0, 5, 0, 5, 0, 0, 0, 5, 5, 0, 0, 5, 0], [0, 5, 0, 0, 5, 0, 5, 5, 0, 0, 5, 5, 5, 0, 0], [5, 5, 0, 5, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 4, 0, 5, 0, 5, 0, 0, 2, 0, 5, 0, 5, 5], [5, 4, 2, 4, 0, 5, 5, 0, 4, 2, 4, 5, 0, 5, 0], [5, 5, 2, 0, 0, 5, 5, 0, 0, 4, 0, 5, 0, 5, 5], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5], [0, 5, 0, 0, 5, 0, 5, 0, 0, 5, 5, 0, 5, 0, 0], [0, 0, 0, 0, 0, 5, 0, 5, 5, 0, 0, 0, 0, 0, 5], [0, 5, 0, 0, 5, 5, 5, 5, 0, 5, 0, 5, 0, 0, 0]]}, {"input": [[0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0], [0, 5, 0, 0, 0, 5, 5, 5, 0, 5, 5, 0, 5, 5, 5], [0, 0, 5, 0, 0, 0, 5, 5, 0, 5, 0, 0, 5, 5, 5], [5, 5, 5, 4, 5, 0, 0, 0, 4, 4, 5, 0, 5, 0, 5], [0, 5, 4, 5, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 5], [5, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 5, 5, 0, 5], [0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 5], [5, 5, 0, 0, 5, 5, 0, 5, 0, 5, 5, 0, 0, 0, 0], [5, 0, 5, 0, 0, 5, 5, 5, 4, 5, 0, 0, 0, 5, 0], [0, 4, 5, 5, 0, 0, 5, 4, 5, 5, 5, 5, 0, 0, 0], [0, 5, 4, 5, 0, 5, 5, 5, 0, 0, 0, 0, 5, 0, 5], [0, 0, 5, 0, 0, 0, 5, 5, 0, 0, 5, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 5, 5], [0, 0, 0, 5, 5, 5, 0, 5, 0, 0, 5, 5, 0, 5, 0]], "output": [[0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0], [0, 5, 0, 0, 0, 5, 5, 5, 0, 5, 5, 0, 5, 5, 5], [0, 0, 2, 0, 0, 0, 5, 5, 0, 2, 0, 0, 5, 5, 5], [5, 2, 2, 4, 5, 0, 0, 0, 4, 4, 2, 0, 5, 0, 5], [0, 5, 4, 5, 0, 0, 0, 0, 0, 2, 0, 5, 0, 0, 5], [5, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 5, 5, 0, 5], [0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 5], [5, 5, 0, 0, 5, 5, 0, 2, 0, 5, 5, 0, 0, 0, 0], [5, 0, 2, 0, 0, 5, 2, 2, 4, 5, 0, 0, 0, 5, 0], [0, 4, 2, 2, 0, 0, 5, 4, 5, 5, 5, 5, 0, 0, 0], [0, 5, 4, 5, 0, 5, 5, 5, 0, 0, 0, 0, 5, 0, 5], [0, 0, 5, 0, 0, 0, 5, 5, 0, 0, 5, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 5, 5], [0, 0, 0, 5, 5, 5, 0, 5, 0, 0, 5, 5, 0, 5, 0]]}], "test": [{"input": [[0, 0, 5, 0, 0, 5, 5, 0, 5, 0, 5, 0, 5, 5, 4, 5, 0, 0, 5], [0, 5, 5, 0, 5, 4, 5, 5, 5, 0, 5, 5, 0, 4, 5, 0, 5, 5, 0], [5, 5, 5, 0, 5, 5, 4, 0, 5, 5, 0, 5, 5, 5, 5, 0, 5, 0, 5], [5, 5, 4, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 5, 0, 0, 0, 5, 5], [5, 4, 5, 5, 5, 5, 0, 5, 0, 0, 5, 5, 0, 5, 5, 0, 5, 0, 0], [5, 5, 0, 5, 0, 0, 0, 5, 5, 0, 5, 4, 5, 0, 0, 5, 0, 5, 5], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 4, 4, 5, 0, 5, 5, 0, 0, 0], [5, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 5, 0, 5, 5, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 5, 0, 5, 0, 5], [0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 5, 5, 0], [0, 0, 0, 0, 5, 5, 0, 5, 0, 5, 0, 5, 0, 4, 0, 0, 0, 5, 0], [5, 5, 4, 5, 5, 5, 5, 5, 0, 0, 5, 0, 4, 5, 4, 0, 5, 0, 5], [5, 5, 5, 4, 0, 0, 0, 5, 5, 5, 0, 5, 5, 4, 0, 5, 5, 5, 5], [0, 0, 4, 5, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 5, 5, 5, 5, 5], [5, 0, 5, 0, 0, 5, 0, 4, 5, 0, 0, 5, 5, 5, 5, 5, 0, 0, 5], [5, 5, 0, 5, 5, 0, 5, 5, 4, 0, 0, 5, 5, 5, 0, 5, 0, 5, 5], [5, 5, 5, 0, 5, 5, 5, 4, 0, 5, 5, 0, 5, 5, 0, 0, 5, 5, 0], [5, 5, 5, 5, 0, 0, 0, 5, 0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 0], [0, 5, 0, 5, 5, 5, 0, 0, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5, 5]], "output": [[0, 0, 5, 0, 0, 5, 2, 0, 5, 0, 5, 0, 2, 2, 4, 5, 0, 0, 5], [0, 5, 5, 0, 5, 4, 2, 2, 5, 0, 5, 5, 0, 4, 5, 0, 5, 5, 0], [5, 2, 5, 0, 5, 5, 4, 0, 5, 5, 0, 5, 5, 5, 5, 0, 5, 0, 5], [2, 2, 4, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 5, 0, 0, 0, 5, 5], [5, 4, 5, 5, 5, 5, 0, 5, 0, 0, 5, 5, 0, 5, 5, 0, 5, 0, 0], [5, 5, 0, 5, 0, 0, 0, 5, 5, 0, 5, 4, 5, 0, 0, 5, 0, 5, 5], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 4, 4, 2, 0, 5, 5, 0, 0, 0], [5, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 2, 0, 5, 5, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 5, 0, 5, 0, 5], [0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 5, 5, 0], [0, 0, 0, 0, 5, 5, 0, 5, 0, 5, 0, 5, 0, 4, 0, 0, 0, 5, 0], [5, 5, 4, 5, 5, 5, 5, 5, 0, 0, 5, 0, 4, 2, 4, 0, 5, 0, 5], [5, 2, 2, 4, 0, 0, 0, 5, 5, 5, 0, 5, 5, 4, 0, 5, 5, 5, 5], [0, 0, 4, 5, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 5, 5, 5, 5, 5], [5, 0, 5, 0, 0, 5, 0, 4, 5, 0, 0, 5, 5, 5, 5, 5, 0, 0, 5], [5, 5, 0, 5, 5, 0, 2, 2, 4, 0, 0, 5, 5, 5, 0, 5, 0, 5, 5], [5, 5, 5, 0, 5, 5, 5, 4, 0, 5, 5, 0, 5, 5, 0, 0, 5, 5, 0], [5, 5, 5, 5, 0, 0, 0, 5, 0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 0], [0, 5, 0, 5, 5, 5, 0, 0, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/15113be4.json b/data/arc-agi/evaluation/15113be4.json
deleted file mode 100644
index 23e51b0..0000000
--- a/data/arc-agi/evaluation/15113be4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 1, 4, 1, 0, 1, 4, 0, 1, 0, 4, 0, 0, 0], [4, 8, 8, 0, 0, 8, 8, 4, 0, 0, 1, 4, 0, 1, 0, 4, 0, 0, 0, 4, 0, 1, 0], [4, 8, 8, 0, 0, 8, 8, 4, 0, 1, 1, 4, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0], [4, 0, 0, 8, 8, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 0, 0, 8, 8, 0, 0, 4, 1, 1, 1, 4, 0, 1, 0, 4, 0, 0, 0, 4, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 4, 0, 1, 1, 4, 0, 1, 0, 4, 0, 1, 0, 4, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 4, 0, 1, 1, 4, 0, 1, 0, 4, 0, 1, 0, 4, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 4, 1, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 0, 1, 0], [0, 1, 1, 4, 0, 0, 0, 4, 1, 0, 0, 4, 0, 0, 0, 4, 0, 1, 1, 4, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 4, 1, 0, 0, 4, 0, 0, 1, 4, 0, 0, 0, 4, 0, 1, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 0, 0, 4, 1, 0, 0, 4, 0, 0, 0, 4, 1, 1, 0, 4, 0, 1, 1, 4, 0, 1, 0], [0, 0, 0, 4, 0, 1, 1, 4, 0, 1, 1, 4, 1, 0, 0, 4, 1, 0, 0, 4, 0, 1, 0], [0, 0, 0, 4, 0, 1, 1, 4, 0, 1, 0, 4, 1, 0, 0, 4, 1, 0, 0, 4, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 0, 0, 4, 1, 1, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 1, 0, 0, 4, 0, 0, 1], [0, 1, 0, 4, 1, 0, 1, 4, 0, 1, 0, 4, 0, 1, 0, 4, 0, 0, 1, 4, 1, 0, 0], [1, 0, 0, 4, 1, 0, 0, 4, 0, 1, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 1, 0, 1], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 0, 0, 4, 1, 1, 0, 4, 1, 0, 0, 4, 1, 0, 0, 4, 0, 0, 1, 4, 1, 1, 0], [1, 1, 0, 4, 1, 0, 1, 4, 0, 0, 1, 4, 0, 1, 0, 4, 1, 1, 0, 4, 1, 0, 1], [1, 0, 0, 4, 1, 1, 1, 4, 0, 1, 0, 4, 0, 1, 1, 4, 1, 1, 1, 4, 0, 0, 0]], "output": [[4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 1, 4, 8, 0, 8, 4, 0, 1, 0, 4, 0, 0, 0], [4, 8, 8, 0, 0, 8, 8, 4, 0, 0, 1, 4, 0, 8, 0, 4, 0, 0, 0, 4, 0, 1, 0], [4, 8, 8, 0, 0, 8, 8, 4, 0, 1, 1, 4, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0], [4, 0, 0, 8, 8, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 0, 0, 8, 8, 0, 0, 4, 8, 1, 8, 4, 0, 1, 0, 4, 0, 0, 0, 4, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 4, 0, 8, 1, 4, 0, 1, 0, 4, 0, 1, 0, 4, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 4, 0, 1, 1, 4, 0, 1, 0, 4, 0, 1, 0, 4, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 4, 1, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 0, 1, 0], [0, 1, 1, 4, 0, 0, 0, 4, 1, 0, 0, 4, 0, 0, 0, 4, 0, 1, 1, 4, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 4, 1, 0, 0, 4, 0, 0, 1, 4, 0, 0, 0, 4, 0, 1, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 0, 0, 4, 1, 0, 0, 4, 0, 0, 0, 4, 1, 1, 0, 4, 0, 1, 1, 4, 0, 1, 0], [0, 0, 0, 4, 0, 1, 1, 4, 0, 1, 1, 4, 1, 0, 0, 4, 1, 0, 0, 4, 0, 1, 0], [0, 0, 0, 4, 0, 1, 1, 4, 0, 1, 0, 4, 1, 0, 0, 4, 1, 0, 0, 4, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 0, 0, 4, 1, 1, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 1, 0, 0, 4, 0, 0, 1], [0, 1, 0, 4, 1, 0, 1, 4, 0, 1, 0, 4, 0, 1, 0, 4, 0, 0, 1, 4, 1, 0, 0], [1, 0, 0, 4, 1, 0, 0, 4, 0, 1, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 1, 0, 1], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 0, 0, 4, 1, 1, 0, 4, 1, 0, 0, 4, 1, 0, 0, 4, 0, 0, 1, 4, 1, 1, 0], [1, 1, 0, 4, 1, 0, 1, 4, 0, 0, 1, 4, 0, 1, 0, 4, 1, 1, 0, 4, 1, 0, 1], [1, 0, 0, 4, 1, 1, 1, 4, 0, 1, 0, 4, 0, 1, 1, 4, 1, 1, 1, 4, 0, 0, 0]]}, {"input": [[0, 0, 1, 4, 1, 0, 0, 4, 0, 0, 0, 4, 0, 0, 1, 4, 0, 0, 1, 4, 0, 1, 0], [1, 1, 0, 4, 0, 1, 0, 4, 1, 0, 1, 4, 1, 1, 1, 4, 1, 1, 0, 4, 0, 0, 1], [1, 1, 1, 4, 0, 0, 1, 4, 1, 0, 1, 4, 0, 0, 1, 4, 0, 0, 1, 4, 1, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 1, 0, 4, 1, 0, 0, 4, 1, 0, 0, 4, 1, 1, 0, 4, 0, 0, 1, 4, 1, 0, 0], [0, 0, 0, 4, 0, 0, 1, 4, 0, 1, 0, 4, 1, 0, 0, 4, 0, 0, 0, 4, 0, 0, 1], [0, 1, 0, 4, 0, 0, 1, 4, 1, 0, 1, 4, 0, 1, 0, 4, 1, 0, 0, 4, 0, 1, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 0, 4, 0, 1, 0, 4, 1, 1, 1, 4, 0, 0, 0, 4, 0, 1, 0, 4, 0, 1, 1], [0, 0, 0, 4, 0, 1, 0, 4, 0, 0, 0, 4, 1, 0, 1, 4, 0, 0, 1, 4, 0, 0, 1], [0, 1, 1, 4, 0, 1, 0, 4, 1, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 1, 4, 1, 1, 0, 4, 1, 0, 0, 4, 0, 0, 1, 4, 0, 0, 1, 4, 0, 0, 1], [1, 1, 1, 4, 1, 0, 1, 4, 0, 0, 1, 4, 0, 0, 0, 4, 1, 1, 0, 4, 1, 0, 0], [1, 1, 0, 4, 1, 1, 0, 4, 1, 1, 0, 4, 0, 0, 1, 4, 0, 1, 1, 4, 1, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 4, 0, 1, 0, 4, 1, 0, 1, 4, 1, 0, 1, 4, 0, 0, 0, 0, 6, 6, 4], [1, 1, 0, 4, 0, 1, 1, 4, 0, 0, 0, 4, 1, 0, 0, 4, 0, 0, 0, 0, 6, 6, 4], [0, 0, 0, 4, 0, 0, 1, 4, 0, 0, 0, 4, 0, 1, 1, 4, 6, 6, 6, 6, 0, 0, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 6, 6, 6, 6, 0, 0, 4], [0, 0, 1, 4, 1, 0, 0, 4, 0, 1, 0, 4, 1, 1, 0, 4, 0, 0, 6, 6, 0, 0, 4], [1, 1, 1, 4, 0, 0, 0, 4, 1, 1, 1, 4, 0, 0, 1, 4, 0, 0, 6, 6, 0, 0, 4], [0, 0, 0, 4, 1, 0, 1, 4, 1, 1, 1, 4, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[0, 0, 6, 4, 1, 0, 0, 4, 0, 0, 0, 4, 0, 0, 1, 4, 0, 0, 1, 4, 0, 1, 0], [6, 6, 0, 4, 0, 1, 0, 4, 1, 0, 1, 4, 1, 1, 1, 4, 1, 1, 0, 4, 0, 0, 1], [1, 6, 1, 4, 0, 0, 1, 4, 1, 0, 1, 4, 0, 0, 1, 4, 0, 0, 1, 4, 1, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 1, 0, 4, 1, 0, 0, 4, 1, 0, 0, 4, 1, 1, 0, 4, 0, 0, 1, 4, 1, 0, 0], [0, 0, 0, 4, 0, 0, 1, 4, 0, 1, 0, 4, 1, 0, 0, 4, 0, 0, 0, 4, 0, 0, 1], [0, 1, 0, 4, 0, 0, 1, 4, 1, 0, 1, 4, 0, 1, 0, 4, 1, 0, 0, 4, 0, 1, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 0, 4, 0, 1, 0, 4, 1, 1, 1, 4, 0, 0, 0, 4, 0, 1, 0, 4, 0, 1, 1], [0, 0, 0, 4, 0, 1, 0, 4, 0, 0, 0, 4, 1, 0, 1, 4, 0, 0, 1, 4, 0, 0, 1], [0, 1, 1, 4, 0, 1, 0, 4, 1, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 6, 4, 1, 1, 0, 4, 1, 0, 0, 4, 0, 0, 1, 4, 0, 0, 6, 4, 0, 0, 1], [6, 6, 1, 4, 1, 0, 1, 4, 0, 0, 1, 4, 0, 0, 0, 4, 6, 6, 0, 4, 1, 0, 0], [1, 6, 0, 4, 1, 1, 0, 4, 1, 1, 0, 4, 0, 0, 1, 4, 0, 6, 1, 4, 1, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 4, 0, 1, 0, 4, 1, 0, 1, 4, 1, 0, 1, 4, 0, 0, 0, 0, 6, 6, 4], [1, 1, 0, 4, 0, 1, 1, 4, 0, 0, 0, 4, 1, 0, 0, 4, 0, 0, 0, 0, 6, 6, 4], [0, 0, 0, 4, 0, 0, 1, 4, 0, 0, 0, 4, 0, 1, 1, 4, 6, 6, 6, 6, 0, 0, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 6, 6, 6, 6, 0, 0, 4], [0, 0, 1, 4, 1, 0, 0, 4, 0, 1, 0, 4, 1, 1, 0, 4, 0, 0, 6, 6, 0, 0, 4], [1, 1, 1, 4, 0, 0, 0, 4, 1, 1, 1, 4, 0, 0, 1, 4, 0, 0, 6, 6, 0, 0, 4], [0, 0, 0, 4, 1, 0, 1, 4, 1, 1, 1, 4, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4]]}, {"input": [[1, 0, 0, 4, 0, 0, 1, 4, 1, 1, 1, 4, 1, 1, 0, 4, 1, 0, 0, 4, 0, 0, 0], [1, 1, 0, 4, 1, 0, 0, 4, 1, 0, 0, 4, 0, 1, 0, 4, 1, 1, 0, 4, 0, 1, 1], [0, 1, 1, 4, 1, 0, 0, 4, 1, 0, 1, 4, 0, 1, 0, 4, 0, 0, 0, 4, 1, 1, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 0, 0, 4, 1, 1, 1, 4, 0, 0, 1, 4, 1, 0, 0, 4, 1, 0, 0, 4, 1, 0, 0], [1, 0, 0, 4, 1, 1, 0, 4, 0, 1, 0, 4, 1, 1, 0, 4, 1, 0, 1, 4, 0, 1, 0], [1, 1, 0, 4, 0, 1, 1, 4, 1, 0, 0, 4, 0, 0, 1, 4, 1, 0, 1, 4, 0, 1, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 1, 1, 4, 1, 1, 0, 4, 1, 1, 0, 4, 0, 1, 0, 4, 1, 1, 0, 4, 0, 1, 0], [1, 1, 0, 4, 0, 0, 1, 4, 0, 0, 1, 4, 1, 0, 1, 4, 0, 1, 1, 4, 0, 1, 0], [0, 1, 1, 4, 1, 1, 0, 4, 0, 1, 0, 4, 0, 1, 0, 4, 0, 0, 0, 4, 0, 1, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 1, 4, 1, 0, 1, 4, 0, 0, 0, 4, 0, 0, 0, 4, 1, 0, 0, 4, 1, 0, 0], [1, 0, 1, 4, 1, 0, 1, 4, 0, 1, 1, 4, 0, 0, 1, 4, 1, 0, 0, 4, 1, 0, 0], [0, 1, 1, 4, 0, 1, 0, 4, 1, 1, 0, 4, 0, 0, 1, 4, 1, 1, 1, 4, 1, 0, 1], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 3, 3, 0, 0, 0, 0, 4, 1, 1, 1, 4, 1, 0, 1, 4, 0, 0, 1, 4, 0, 1, 1], [4, 3, 3, 0, 0, 0, 0, 4, 1, 1, 1, 4, 0, 1, 1, 4, 1, 1, 0, 4, 1, 0, 0], [4, 0, 0, 3, 3, 0, 0, 4, 0, 1, 0, 4, 0, 0, 1, 4, 1, 1, 1, 4, 0, 0, 0], [4, 0, 0, 3, 3, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 0, 0, 0, 0, 3, 3, 4, 0, 1, 1, 4, 0, 0, 0, 4, 0, 1, 0, 4, 0, 1, 0], [4, 0, 0, 0, 0, 3, 3, 4, 1, 0, 1, 4, 0, 0, 0, 4, 1, 0, 1, 4, 1, 1, 1], [4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 0, 4, 1, 0, 0, 4, 0, 1, 0, 4, 1, 1, 0]], "output": [[3, 0, 0, 4, 0, 0, 1, 4, 1, 1, 1, 4, 1, 1, 0, 4, 1, 0, 0, 4, 0, 0, 0], [1, 3, 0, 4, 1, 0, 0, 4, 1, 0, 0, 4, 0, 1, 0, 4, 1, 1, 0, 4, 0, 1, 1], [0, 1, 3, 4, 1, 0, 0, 4, 1, 0, 1, 4, 0, 1, 0, 4, 0, 0, 0, 4, 1, 1, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 0, 0, 4, 3, 1, 1, 4, 0, 0, 1, 4, 3, 0, 0, 4, 1, 0, 0, 4, 1, 0, 0], [1, 0, 0, 4, 1, 3, 0, 4, 0, 1, 0, 4, 1, 3, 0, 4, 1, 0, 1, 4, 0, 1, 0], [1, 1, 0, 4, 0, 1, 3, 4, 1, 0, 0, 4, 0, 0, 3, 4, 1, 0, 1, 4, 0, 1, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 1, 1, 4, 1, 1, 0, 4, 1, 1, 0, 4, 0, 1, 0, 4, 1, 1, 0, 4, 0, 1, 0], [1, 1, 0, 4, 0, 0, 1, 4, 0, 0, 1, 4, 1, 0, 1, 4, 0, 1, 1, 4, 0, 1, 0], [0, 1, 1, 4, 1, 1, 0, 4, 0, 1, 0, 4, 0, 1, 0, 4, 0, 0, 0, 4, 0, 1, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 1, 4, 1, 0, 1, 4, 0, 0, 0, 4, 0, 0, 0, 4, 1, 0, 0, 4, 1, 0, 0], [1, 0, 1, 4, 1, 0, 1, 4, 0, 1, 1, 4, 0, 0, 1, 4, 1, 0, 0, 4, 1, 0, 0], [0, 1, 1, 4, 0, 1, 0, 4, 1, 1, 0, 4, 0, 0, 1, 4, 1, 1, 1, 4, 1, 0, 1], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 3, 3, 0, 0, 0, 0, 4, 1, 1, 1, 4, 3, 0, 1, 4, 0, 0, 1, 4, 0, 1, 1], [4, 3, 3, 0, 0, 0, 0, 4, 1, 1, 1, 4, 0, 3, 1, 4, 1, 1, 0, 4, 1, 0, 0], [4, 0, 0, 3, 3, 0, 0, 4, 0, 1, 0, 4, 0, 0, 3, 4, 1, 1, 1, 4, 0, 0, 0], [4, 0, 0, 3, 3, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 0, 0, 0, 0, 3, 3, 4, 0, 1, 1, 4, 0, 0, 0, 4, 0, 1, 0, 4, 0, 1, 0], [4, 0, 0, 0, 0, 3, 3, 4, 1, 0, 1, 4, 0, 0, 0, 4, 1, 0, 1, 4, 1, 1, 1], [4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 0, 4, 1, 0, 0, 4, 0, 1, 0, 4, 1, 1, 0]]}], "test": [{"input": [[1, 0, 1, 4, 1, 0, 0, 4, 0, 1, 1, 4, 0, 1, 0, 4, 4, 4, 4, 4, 4, 4, 4], [1, 0, 0, 4, 0, 0, 0, 4, 0, 0, 1, 4, 1, 1, 1, 4, 0, 0, 0, 0, 7, 7, 4], [0, 1, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 1, 1, 0, 4, 0, 0, 0, 0, 7, 7, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 7, 7, 7, 7, 7, 7, 4], [0, 0, 0, 4, 0, 0, 0, 4, 1, 1, 1, 4, 0, 0, 0, 4, 7, 7, 7, 7, 7, 7, 4], [0, 1, 0, 4, 1, 0, 0, 4, 0, 1, 1, 4, 0, 1, 1, 4, 7, 7, 0, 0, 0, 0, 4], [1, 0, 0, 4, 1, 0, 1, 4, 1, 0, 0, 4, 0, 1, 0, 4, 7, 7, 0, 0, 0, 0, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 0, 0, 4, 0, 0, 1, 4, 1, 1, 0, 4, 1, 1, 0, 4, 0, 0, 1, 4, 1, 1, 0], [1, 0, 0, 4, 1, 1, 1, 4, 0, 0, 0, 4, 1, 1, 0, 4, 1, 0, 1, 4, 1, 0, 0], [0, 0, 0, 4, 1, 0, 0, 4, 1, 1, 0, 4, 1, 0, 1, 4, 1, 0, 0, 4, 1, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 0, 1, 4, 0, 0, 0, 4, 1, 0, 1, 4, 1, 1, 0, 4, 0, 0, 0, 4, 0, 0, 1], [1, 0, 0, 4, 0, 0, 0, 4, 0, 0, 1, 4, 1, 1, 1, 4, 1, 1, 0, 4, 0, 0, 0], [0, 1, 1, 4, 0, 1, 0, 4, 1, 0, 1, 4, 0, 0, 1, 4, 1, 0, 0, 4, 1, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 4, 1, 1, 0, 4, 1, 0, 0, 4, 0, 0, 0, 4, 1, 0, 0, 4, 0, 1, 0], [0, 0, 1, 4, 0, 1, 0, 4, 1, 0, 0, 4, 1, 0, 0, 4, 1, 1, 0, 4, 1, 0, 0], [1, 1, 0, 4, 0, 0, 0, 4, 1, 0, 0, 4, 1, 0, 1, 4, 0, 0, 0, 4, 0, 1, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 1, 1, 4, 0, 0, 1, 4, 1, 0, 1, 4, 0, 1, 0, 4, 1, 1, 0, 4, 0, 1, 0], [0, 0, 0, 4, 1, 1, 1, 4, 1, 1, 1, 4, 0, 1, 1, 4, 1, 0, 1, 4, 1, 1, 0], [0, 0, 0, 4, 1, 0, 1, 4, 1, 1, 1, 4, 0, 0, 0, 4, 1, 0, 0, 4, 0, 1, 0]], "output": [[1, 0, 1, 4, 1, 0, 0, 4, 0, 1, 1, 4, 0, 1, 0, 4, 4, 4, 4, 4, 4, 4, 4], [1, 0, 0, 4, 0, 0, 0, 4, 0, 0, 1, 4, 1, 1, 1, 4, 0, 0, 0, 0, 7, 7, 4], [0, 1, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 1, 1, 0, 4, 0, 0, 0, 0, 7, 7, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 7, 7, 7, 7, 7, 7, 4], [0, 0, 0, 4, 0, 0, 0, 4, 1, 1, 1, 4, 0, 0, 0, 4, 7, 7, 7, 7, 7, 7, 4], [0, 1, 0, 4, 1, 0, 0, 4, 0, 1, 1, 4, 0, 1, 1, 4, 7, 7, 0, 0, 0, 0, 4], [1, 0, 0, 4, 1, 0, 1, 4, 1, 0, 0, 4, 0, 1, 0, 4, 7, 7, 0, 0, 0, 0, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 0, 0, 4, 0, 0, 7, 4, 1, 1, 0, 4, 1, 1, 0, 4, 0, 0, 1, 4, 1, 1, 0], [1, 0, 0, 4, 7, 7, 7, 4, 0, 0, 0, 4, 1, 1, 0, 4, 1, 0, 1, 4, 1, 0, 0], [0, 0, 0, 4, 7, 0, 0, 4, 1, 1, 0, 4, 1, 0, 1, 4, 1, 0, 0, 4, 1, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 0, 1, 4, 0, 0, 0, 4, 1, 0, 1, 4, 1, 1, 0, 4, 0, 0, 0, 4, 0, 0, 1], [1, 0, 0, 4, 0, 0, 0, 4, 0, 0, 1, 4, 1, 1, 1, 4, 1, 1, 0, 4, 0, 0, 0], [0, 1, 1, 4, 0, 1, 0, 4, 1, 0, 1, 4, 0, 0, 1, 4, 1, 0, 0, 4, 1, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 4, 1, 1, 0, 4, 1, 0, 0, 4, 0, 0, 0, 4, 1, 0, 0, 4, 0, 1, 0], [0, 0, 1, 4, 0, 1, 0, 4, 1, 0, 0, 4, 1, 0, 0, 4, 1, 1, 0, 4, 1, 0, 0], [1, 1, 0, 4, 0, 0, 0, 4, 1, 0, 0, 4, 1, 0, 1, 4, 0, 0, 0, 4, 0, 1, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 1, 1, 4, 0, 0, 7, 4, 1, 0, 7, 4, 0, 1, 0, 4, 1, 1, 0, 4, 0, 1, 0], [0, 0, 0, 4, 7, 7, 7, 4, 7, 7, 7, 4, 0, 1, 1, 4, 1, 0, 1, 4, 1, 1, 0], [0, 0, 0, 4, 7, 0, 1, 4, 7, 1, 1, 4, 0, 0, 0, 4, 1, 0, 0, 4, 0, 1, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/15663ba9.json b/data/arc-agi/evaluation/15663ba9.json
deleted file mode 100644
index be03035..0000000
--- a/data/arc-agi/evaluation/15663ba9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 3, 3, 4, 0, 0, 0, 0, 0], [0, 0, 4, 3, 2, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 2, 3, 4, 0, 0, 0, 0, 0], [0, 0, 4, 3, 3, 4, 0, 0, 0, 4, 3, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 0, 4, 3, 3, 3, 2, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 2, 3, 3, 4, 0], [0, 0, 0, 0, 4, 3, 3, 3, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 8, 8, 8, 8, 8], [0, 0, 8, 0, 8, 8, 8, 8, 0, 0, 8, 0, 0, 0, 8], [0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 8, 8], [0, 0, 8, 8, 8, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 8, 0, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0], [0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 8, 8, 8, 8, 8, 4, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 4, 2, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 4, 8, 8, 8, 4], [0, 0, 8, 0, 2, 8, 8, 4, 0, 0, 8, 0, 0, 0, 8], [0, 0, 4, 8, 4, 0, 0, 0, 0, 0, 4, 2, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 2, 0, 2, 4], [0, 0, 4, 8, 4, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 8, 0, 8, 0, 0, 0, 0, 4, 8, 8, 8, 4, 0], [0, 0, 4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 1, 1, 1, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 2, 1, 4, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 4, 1, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 2, 1, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 1, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 1, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 2, 0, 0, 2, 4, 0], [0, 0, 0, 4, 1, 1, 1, 1, 2, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 1, 0], [0, 0, 0, 4, 1, 1, 1, 1, 1, 1, 4, 0, 4, 1, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 3, 3, 3, 3, 0, 3, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 3, 3, 0], [0, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 3, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 3, 3, 0, 3, 0], [0, 3, 3, 3, 0, 0, 3, 3, 0, 0, 0, 0, 3, 0, 3, 0], [0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 3, 0], [0, 3, 0, 0, 3, 3, 3, 3, 0, 0, 3, 3, 3, 0, 3, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 3, 4, 0, 0, 4, 3, 4, 0, 0, 0, 0, 0, 0], [0, 4, 2, 0, 2, 3, 3, 2, 0, 3, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 4, 3, 3, 4, 0], [0, 4, 3, 2, 0, 0, 2, 3, 3, 4, 0, 3, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 4, 2, 0, 3, 0], [0, 4, 3, 2, 0, 0, 2, 4, 0, 0, 0, 0, 3, 0, 3, 0], [0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 3, 0], [0, 3, 0, 0, 2, 3, 3, 4, 0, 0, 4, 3, 2, 0, 3, 0], [0, 4, 3, 3, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 4, 3, 4, 0, 0, 0, 0, 4, 3, 3, 3, 4, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/15696249.json b/data/arc-agi/evaluation/15696249.json
deleted file mode 100644
index 848b482..0000000
--- a/data/arc-agi/evaluation/15696249.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 4, 6], [3, 3, 3], [6, 6, 4]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 6, 4, 4, 6, 4, 4, 6], [3, 3, 3, 3, 3, 3, 3, 3, 3], [6, 6, 4, 6, 6, 4, 6, 6, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[2, 4, 3], [2, 3, 4], [2, 3, 4]], "output": [[2, 4, 3, 0, 0, 0, 0, 0, 0], [2, 3, 4, 0, 0, 0, 0, 0, 0], [2, 3, 4, 0, 0, 0, 0, 0, 0], [2, 4, 3, 0, 0, 0, 0, 0, 0], [2, 3, 4, 0, 0, 0, 0, 0, 0], [2, 3, 4, 0, 0, 0, 0, 0, 0], [2, 4, 3, 0, 0, 0, 0, 0, 0], [2, 3, 4, 0, 0, 0, 0, 0, 0], [2, 3, 4, 0, 0, 0, 0, 0, 0]]}, {"input": [[1, 1, 1], [6, 2, 2], [2, 2, 6]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1], [6, 2, 2, 6, 2, 2, 6, 2, 2], [2, 2, 6, 2, 2, 6, 2, 2, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[3, 1, 6], [3, 6, 1], [3, 1, 6]], "output": [[3, 1, 6, 0, 0, 0, 0, 0, 0], [3, 6, 1, 0, 0, 0, 0, 0, 0], [3, 1, 6, 0, 0, 0, 0, 0, 0], [3, 1, 6, 0, 0, 0, 0, 0, 0], [3, 6, 1, 0, 0, 0, 0, 0, 0], [3, 1, 6, 0, 0, 0, 0, 0, 0], [3, 1, 6, 0, 0, 0, 0, 0, 0], [3, 6, 1, 0, 0, 0, 0, 0, 0], [3, 1, 6, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[6, 6, 3], [4, 4, 3], [4, 4, 3]], "output": [[0, 0, 0, 0, 0, 0, 6, 6, 3], [0, 0, 0, 0, 0, 0, 4, 4, 3], [0, 0, 0, 0, 0, 0, 4, 4, 3], [0, 0, 0, 0, 0, 0, 6, 6, 3], [0, 0, 0, 0, 0, 0, 4, 4, 3], [0, 0, 0, 0, 0, 0, 4, 4, 3], [0, 0, 0, 0, 0, 0, 6, 6, 3], [0, 0, 0, 0, 0, 0, 4, 4, 3], [0, 0, 0, 0, 0, 0, 4, 4, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/16b78196.json b/data/arc-agi/evaluation/16b78196.json
deleted file mode 100644
index a608912..0000000
--- a/data/arc-agi/evaluation/16b78196.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 8, 8, 8, 8, 8, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 6, 6, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 1, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 8, 8, 8, 8, 8, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 6, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 8, 8, 8, 8, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 8, 8, 8, 8, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 8, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 2, 2, 4, 4, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 4, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 2, 2, 4, 4, 4, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 2, 2, 4, 4, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/17b80ad2.json b/data/arc-agi/evaluation/17b80ad2.json
deleted file mode 100644
index d0a79b8..0000000
--- a/data/arc-agi/evaluation/17b80ad2.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 4, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 7, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [7, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 2, 0, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0]], "output": [[0, 4, 0, 0, 8, 9, 0, 0, 0, 7, 0, 0, 0, 0, 9, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 7, 0, 0, 0, 0, 9, 4, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 9, 0, 0], [0, 0, 3, 0, 0, 2, 0, 0, 0, 4, 4, 0, 0, 0, 9, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 9, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 6, 0, 7], [7, 0, 0, 0, 0, 2, 0, 9, 0, 4, 0, 0, 0, 0, 6, 0, 9], [0, 0, 0, 3, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 6, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 4, 3, 0, 0, 0, 6, 4, 0], [6, 0, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 4, 4, 0, 0, 0, 6, 0, 6], [0, 0, 0, 0, 0, 2, 0, 0, 0, 4, 0, 2, 0, 0, 6, 0, 0], [0, 8, 0, 0, 0, 2, 0, 0, 0, 4, 7, 0, 0, 0, 6, 0, 0], [0, 0, 6, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0]]}, {"input": [[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 6], [0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 2, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 6, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0]], "output": [[8, 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0, 6], [0, 0, 0, 8, 4, 0, 8, 0, 6, 0, 0, 2, 0], [0, 0, 7, 0, 4, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 6, 0, 4, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 6, 1, 0, 0, 0], [0, 0, 0, 0, 8, 0, 3, 0, 6, 0, 0, 0, 0], [0, 3, 0, 0, 8, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 6, 0, 0, 0, 2], [0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0]], "output": [[0, 0, 3, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0]], "output": [[0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 2, 3, 0, 9, 0, 4, 0, 0, 0, 3, 0, 0, 8], [0, 0, 3, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 9, 4, 9, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 1, 0, 1, 0, 6, 0, 0, 0, 7], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 3, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 1, 9, 0, 0, 0, 7, 0, 0, 1, 2, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 6, 0, 0, 4, 9, 0, 3, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 2, 3, 0, 9, 8, 4, 0, 3, 0, 3, 0, 0, 8], [0, 0, 3, 0, 0, 8, 4, 4, 8, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 1, 8, 0, 0, 3, 9, 4, 9, 0, 0], [0, 0, 0, 6, 0, 8, 0, 0, 1, 0, 1, 3, 6, 0, 0, 0, 7], [0, 0, 0, 0, 0, 8, 0, 0, 1, 0, 1, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 5, 3, 0, 1, 3, 0, 7, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 5, 0, 0, 1, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 5, 1, 9, 1, 0, 0, 7, 0, 0, 1, 2, 0], [0, 0, 0, 3, 0, 5, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 5, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 6, 0, 9, 4, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 5, 0, 3, 6, 0, 0, 4, 0, 2, 0, 0, 0], [0, 0, 0, 1, 0, 5, 0, 0, 6, 0, 0, 4, 9, 0, 3, 0, 3], [0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/17cae0c1.json b/data/arc-agi/evaluation/17cae0c1.json
deleted file mode 100644
index af483a3..0000000
--- a/data/arc-agi/evaluation/17cae0c1.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 5, 5, 0, 0, 0, 0, 0, 5], [5, 0, 5, 0, 5, 0, 0, 5, 0], [5, 5, 5, 0, 0, 0, 5, 0, 0]], "output": [[3, 3, 3, 4, 4, 4, 9, 9, 9], [3, 3, 3, 4, 4, 4, 9, 9, 9], [3, 3, 3, 4, 4, 4, 9, 9, 9]]}, {"input": [[0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 5, 0], [5, 0, 0, 5, 5, 5, 0, 0, 0]], "output": [[9, 9, 9, 1, 1, 1, 4, 4, 4], [9, 9, 9, 1, 1, 1, 4, 4, 4], [9, 9, 9, 1, 1, 1, 4, 4, 4]]}, {"input": [[5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 0, 5, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5]], "output": [[6, 6, 6, 3, 3, 3, 1, 1, 1], [6, 6, 6, 3, 3, 3, 1, 1, 1], [6, 6, 6, 3, 3, 3, 1, 1, 1]]}, {"input": [[0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 5, 0, 0, 0, 0, 5, 0, 5], [0, 0, 0, 0, 0, 0, 5, 5, 5]], "output": [[4, 4, 4, 6, 6, 6, 3, 3, 3], [4, 4, 4, 6, 6, 6, 3, 3, 3], [4, 4, 4, 6, 6, 6, 3, 3, 3]]}], "test": [{"input": [[0, 0, 0, 0, 0, 5, 5, 5, 5], [0, 0, 0, 0, 5, 0, 0, 0, 0], [5, 5, 5, 5, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 9, 9, 9, 6, 6, 6], [1, 1, 1, 9, 9, 9, 6, 6, 6], [1, 1, 1, 9, 9, 9, 6, 6, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/18419cfa.json b/data/arc-agi/evaluation/18419cfa.json
deleted file mode 100644
index 0d49aaa..0000000
--- a/data/arc-agi/evaluation/18419cfa.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 2, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 2, 2, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 8, 8, 0, 2, 0, 0, 0, 0, 8, 8, 0, 0, 8, 8, 8, 0, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8, 0, 2, 0, 2, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 2, 2, 2, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 2, 0, 0, 2, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 2, 2, 2, 2, 0, 0, 8, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 8, 8, 0, 2, 0, 0, 2, 0, 8, 8, 0, 0, 8, 8, 8, 0, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8, 0, 2, 0, 2, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 2, 2, 2, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 2, 2, 2, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 2, 0, 2, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 2, 2, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 2, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 2, 2, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 2, 2, 2, 2, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 2, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 2, 2, 2, 2, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 2, 0, 2, 0, 2, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 2, 2, 2, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 2, 0, 2, 0, 2, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 2, 0, 2, 0, 2, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 2, 2, 2, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 2, 0, 2, 0, 2, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 2, 0, 2, 0, 2, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 2, 2, 2, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 2, 0, 2, 0, 2, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 8, 8, 0, 0, 2, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 8, 0, 0, 2, 2, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 8, 8, 0, 0, 2, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, 8], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 2, 2, 2, 0, 0, 8], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 8, 0, 2, 0, 0, 0, 2, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 2, 0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 2, 2, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 2, 0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 2, 0, 0, 0, 2, 0, 8], [0, 0, 8, 8, 0, 0, 2, 0, 2, 0, 0, 8, 8, 0, 0, 0, 0, 8, 0, 0, 2, 2, 2, 0, 0, 8], [0, 0, 8, 0, 0, 2, 2, 0, 2, 2, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, 8], [0, 0, 8, 8, 0, 0, 2, 0, 2, 0, 0, 8, 8, 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, 8], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 2, 2, 2, 0, 0, 8], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 8, 0, 2, 0, 0, 0, 2, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 2, 0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 2, 2, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 2, 0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 2, 0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 2, 2, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 2, 0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/184a9768.json b/data/arc-agi/evaluation/184a9768.json
deleted file mode 100644
index 023a9e8..0000000
--- a/data/arc-agi/evaluation/184a9768.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 5, 0], [5, 0, 0, 2, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 6, 6, 6, 6, 6, 6], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6], [0, 0, 0, 8, 8, 8, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 4, 4, 4, 4, 2, 2, 2, 4, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 8, 8, 8, 8, 8, 8, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 8, 8, 8, 8, 8, 8, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 6, 6, 6, 6, 6, 6, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 6, 6, 6, 6, 6, 6, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 6, 6, 6, 6, 6, 6, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 3, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 4, 4, 4, 0, 5, 0, 0, 3, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 5], [0, 0, 0, 0, 5, 0, 0, 4, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 4, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 4, 4, 4, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 2, 2, 2, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 2, 2, 2, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 8, 8, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 8, 8, 4, 4, 3, 3, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 3, 3, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 3, 3, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 5, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0], [0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 8, 0, 5, 0], [0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 5, 0, 0, 0, 8, 0, 0, 0], [0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 5, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 2, 2, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 2, 2, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 8, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 8, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 4, 4, 4, 4, 8, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 8, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 3, 3, 1, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 3, 3, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 4, 4, 4, 4, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 4, 0, 4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 8, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 8, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 8, 8, 8, 8, 8, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 8, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 8, 8, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 8, 8, 8, 8, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 8, 0, 0, 8, 0], [0, 3, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 8, 8, 0, 0, 8, 0, 0, 8, 0], [0, 3, 0, 0, 0, 0, 0, 1, 1, 0, 0, 5, 0, 1, 0, 0, 0, 8, 8, 0, 0, 8, 8, 8, 8, 0], [0, 3, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 2, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 2, 2, 2, 2, 4, 4, 4, 4, 3, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 2, 2, 2, 2, 4, 1, 4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 3, 8, 8, 8, 8, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 4, 4, 4, 4, 4, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 3, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 3, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 3, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 1, 1, 8, 8, 3, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 1, 1, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 1, 1, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 1, 1, 8, 7, 7, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 1, 1, 8, 7, 7, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 1, 1, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/195ba7dc.json b/data/arc-agi/evaluation/195ba7dc.json
deleted file mode 100644
index 39d980d..0000000
--- a/data/arc-agi/evaluation/195ba7dc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[7, 7, 0, 0, 0, 0, 2, 0, 7, 7, 0, 0, 7], [0, 7, 0, 0, 0, 0, 2, 7, 0, 0, 7, 0, 7], [7, 7, 7, 0, 0, 7, 2, 0, 7, 7, 7, 0, 7], [0, 0, 0, 0, 0, 0, 2, 7, 7, 7, 7, 0, 0], [0, 0, 7, 7, 7, 0, 2, 0, 7, 7, 0, 7, 7]], "output": [[1, 1, 1, 0, 0, 1], [1, 1, 0, 1, 0, 1], [1, 1, 1, 1, 0, 1], [1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1]]}], "train": [{"input": [[0, 7, 7, 0, 7, 7, 2, 7, 0, 0, 0, 0, 7], [7, 0, 0, 0, 0, 7, 2, 7, 0, 0, 7, 7, 0], [7, 0, 7, 7, 0, 7, 2, 7, 0, 0, 7, 0, 0], [0, 7, 0, 0, 0, 0, 2, 7, 0, 7, 0, 7, 0], [7, 7, 0, 7, 7, 0, 2, 0, 7, 0, 0, 7, 0]], "output": [[1, 1, 1, 0, 1, 1], [1, 0, 0, 1, 1, 1], [1, 0, 1, 1, 0, 1], [1, 1, 1, 0, 1, 0], [1, 1, 0, 1, 1, 0]]}, {"input": [[0, 7, 7, 7, 0, 7, 2, 7, 7, 0, 7, 0, 7], [0, 0, 0, 7, 0, 7, 2, 0, 7, 7, 7, 0, 7], [7, 0, 7, 0, 0, 0, 2, 7, 7, 0, 0, 0, 0], [7, 7, 7, 0, 0, 0, 2, 7, 7, 0, 0, 7, 7], [0, 7, 7, 0, 7, 7, 2, 7, 7, 7, 0, 0, 7]], "output": [[1, 1, 1, 1, 0, 1], [0, 1, 1, 1, 0, 1], [1, 1, 1, 0, 0, 0], [1, 1, 1, 0, 1, 1], [1, 1, 1, 0, 1, 1]]}, {"input": [[7, 0, 7, 7, 0, 7, 2, 7, 7, 0, 0, 0, 0], [7, 0, 0, 7, 0, 0, 2, 0, 0, 0, 7, 0, 0], [0, 7, 7, 0, 0, 0, 2, 0, 0, 7, 7, 0, 0], [0, 7, 7, 7, 7, 0, 2, 7, 0, 0, 0, 7, 0], [7, 0, 7, 0, 7, 7, 2, 7, 7, 7, 7, 7, 7]], "output": [[1, 1, 1, 1, 0, 1], [1, 0, 0, 1, 0, 0], [0, 1, 1, 1, 0, 0], [1, 1, 1, 1, 1, 0], [1, 1, 1, 1, 1, 1]]}, {"input": [[7, 7, 0, 0, 7, 0, 2, 0, 7, 7, 7, 7, 7], [7, 0, 0, 0, 7, 7, 2, 7, 0, 0, 7, 7, 7], [0, 7, 0, 0, 7, 0, 2, 0, 0, 0, 0, 0, 0], [7, 7, 0, 7, 7, 7, 2, 7, 0, 7, 0, 0, 0], [7, 7, 0, 7, 7, 0, 2, 7, 7, 7, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 1], [1, 0, 0, 1, 1, 1], [0, 1, 0, 0, 1, 0], [1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/1990f7a8.json b/data/arc-agi/evaluation/1990f7a8.json
deleted file mode 100644
index 53999ad..0000000
--- a/data/arc-agi/evaluation/1990f7a8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 0, 2, 2, 2], [2, 0, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 2, 0, 0], [0, 2, 0, 0, 0, 2, 2], [2, 2, 2, 0, 2, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 2, 0, 2, 2, 0], [0, 2, 2, 0, 2, 0, 2], [0, 0, 2, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 2, 2, 0], [2, 0, 2, 0, 0, 2, 0], [2, 2, 2, 0, 2, 0, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 0, 0, 2, 0, 2], [2, 0, 2, 0, 0, 2, 0], [0, 2, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 0, 2, 0], [2, 2, 0, 0, 2, 2, 2], [0, 0, 2, 0, 0, 2, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 2, 0, 0, 0, 2], [0, 2, 0, 0, 0, 2, 2], [2, 2, 2, 0, 2, 0, 2], [0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 0, 2], [2, 0, 0, 0, 2, 0, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/19bb5feb.json b/data/arc-agi/evaluation/19bb5feb.json
deleted file mode 100644
index 35c468b..0000000
--- a/data/arc-agi/evaluation/19bb5feb.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 2, 2, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 2, 2, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 3, 3, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 3, 3, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0], [0, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 1, 1, 8, 8, 8, 3, 3, 8, 8, 8, 8, 0], [0, 8, 8, 1, 1, 8, 8, 8, 3, 3, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 2, 2, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 2, 2, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 3], [0, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 5, 5, 8, 8, 4, 4, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 5, 5, 8, 8, 4, 4, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 3, 3, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 3, 3, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 4], [3, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 8, 8, 2, 2, 8, 8, 8, 8, 6, 6, 8, 8, 0], [0, 0, 8, 8, 2, 2, 8, 8, 8, 8, 6, 6, 8, 8, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 8, 8, 1, 1, 8, 8, 8, 8, 3, 3, 8, 8, 0], [0, 0, 8, 8, 1, 1, 8, 8, 8, 8, 3, 3, 8, 8, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 6], [1, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/1a2e2828.json b/data/arc-agi/evaluation/1a2e2828.json
deleted file mode 100644
index a54fb22..0000000
--- a/data/arc-agi/evaluation/1a2e2828.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 2, 2, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 8, 0, 0, 0, 0], [3, 2, 2, 3, 3, 3, 3, 8, 3, 3, 3, 3], [3, 2, 2, 3, 3, 3, 3, 8, 3, 3, 3, 3], [0, 2, 2, 0, 0, 0, 0, 8, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 2, 2, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 8, 0, 0, 0, 0]], "output": [[6]]}, {"input": [[0, 0, 0, 4, 4, 0, 0, 0, 8, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 8, 0, 0], [3, 3, 3, 4, 4, 3, 3, 3, 8, 3, 3], [0, 0, 0, 4, 4, 0, 0, 0, 8, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 8, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 8, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 8, 6, 6], [0, 0, 0, 4, 4, 0, 0, 0, 8, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 8, 0, 0]], "output": [[8]]}, {"input": [[0, 2, 2, 0, 6, 0, 0, 8, 8, 0, 0], [1, 2, 2, 1, 6, 1, 1, 8, 8, 1, 1], [1, 2, 2, 1, 6, 1, 1, 8, 8, 1, 1], [1, 2, 2, 1, 6, 1, 1, 8, 8, 1, 1], [0, 2, 2, 0, 6, 0, 0, 8, 8, 0, 0], [0, 2, 2, 0, 6, 0, 0, 8, 8, 0, 0], [4, 4, 4, 4, 6, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 6, 4, 4, 4, 4, 4, 4], [0, 2, 2, 0, 6, 0, 0, 8, 8, 0, 0], [0, 2, 2, 0, 6, 0, 0, 8, 8, 0, 0], [0, 2, 2, 0, 6, 0, 0, 8, 8, 0, 0]], "output": [[6]]}, {"input": [[0, 0, 0, 0, 3, 3, 0, 0, 5, 0, 0, 0], [2, 2, 2, 2, 3, 3, 2, 2, 5, 2, 2, 2], [0, 0, 0, 0, 3, 3, 0, 0, 5, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 3, 3, 0, 0, 5, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4], [0, 0, 0, 0, 3, 3, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 5, 0, 0, 0]], "output": [[1]]}, {"input": [[0, 1, 0], [3, 3, 3], [0, 1, 0]], "output": [[3]]}], "test": [{"input": [[0, 0, 0, 3, 3, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 7, 0, 0, 0], [1, 1, 1, 3, 3, 1, 1, 1, 1, 7, 1, 1, 1], [1, 1, 1, 3, 3, 1, 1, 1, 1, 7, 1, 1, 1], [0, 0, 0, 3, 3, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 7, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 6, 6, 6], [0, 0, 0, 3, 3, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 7, 0, 0, 0]], "output": [[7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/1a6449f1.json b/data/arc-agi/evaluation/1a6449f1.json
deleted file mode 100644
index 94bef7c..0000000
--- a/data/arc-agi/evaluation/1a6449f1.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 3, 0, 8, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 4], [0, 8, 4, 0, 0, 0, 0, 0, 0, 8, 0, 9, 0], [7, 8, 0, 0, 6, 0, 0, 7, 5, 8, 4, 8, 3], [2, 8, 4, 2, 0, 0, 0, 8, 0, 8, 0, 0, 0], [0, 8, 9, 1, 9, 6, 0, 0, 0, 8, 0, 0, 7], [1, 8, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0], [0, 8, 0, 0, 0, 0, 4, 0, 4, 8, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 7, 8, 0, 6, 0, 0, 0, 3], [5, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 4, 0, 0, 6, 0, 7, 7, 7, 7, 7], [0, 0, 2, 2, 4, 0, 0, 0, 7, 0, 0, 0, 7], [8, 8, 0, 3, 0, 0, 0, 1, 7, 0, 8, 4, 7], [7, 0, 0, 0, 0, 5, 0, 5, 7, 0, 6, 8, 7], [0, 0, 7, 0, 0, 6, 0, 0, 7, 7, 7, 7, 7], [3, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 9, 1], [0, 0, 0, 8, 0, 8, 6, 0, 0, 0, 0, 0, 1]], "output": [[4, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 7, 5], [4, 2, 0, 0, 0, 8, 0], [9, 1, 9, 6, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 4, 0, 4]]}, {"input": [[0, 3, 0, 9, 0, 0, 0, 9, 5, 0, 4, 0, 0, 0, 0, 5, 0, 0, 0, 4, 0, 8, 0], [0, 3, 0, 0, 0, 0, 0, 9, 0, 0, 9, 0, 3, 0, 1, 1, 0, 0, 0, 0, 0, 0, 2], [0, 0, 8, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 2, 8, 0, 0, 7, 0, 0, 0, 2, 0, 0, 1, 0, 0, 4, 0, 7, 9, 8], [0, 0, 7, 0, 2, 0, 1, 5, 3, 0, 6, 5, 2, 5, 0, 0, 1, 1, 5, 0, 0, 0, 0], [9, 0, 0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 8, 0, 7], [8, 0, 4, 0, 2, 0, 9, 5, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9], [1, 0, 0, 0, 2, 3, 0, 0, 0, 2, 0, 0, 2, 0, 0, 6, 4, 4, 8, 0, 0, 0, 0], [8, 0, 0, 0, 2, 0, 0, 1, 4, 0, 0, 8, 2, 0, 0, 0, 4, 2, 7, 0, 9, 1, 6], [0, 4, 4, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 2, 0, 8, 0, 3, 0, 6, 0], [0, 7, 0, 0, 0, 8, 0, 3, 7, 0, 9, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 3, 3, 3, 3, 3, 0, 0, 4, 0, 4, 6, 0, 0, 0, 1, 1, 0, 0, 6, 0, 4], [6, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 6, 0, 6, 0, 4, 0, 0, 0, 4], [0, 0, 3, 7, 9, 0, 3, 0, 0, 0, 6, 4, 0, 0, 3, 0, 0, 8, 0, 7, 0, 5, 4], [0, 7, 3, 0, 0, 0, 3, 0, 2, 8, 0, 4, 4, 0, 3, 4, 0, 3, 0, 0, 8, 0, 4], [0, 8, 3, 0, 9, 0, 3, 0, 3, 3, 0, 4, 0, 0, 3, 7, 7, 5, 0, 0, 1, 0, 4], [0, 0, 3, 3, 3, 3, 3, 6, 5, 0, 0, 4, 3, 0, 0, 0, 0, 9, 0, 0, 0, 0, 4], [0, 9, 2, 0, 0, 2, 3, 0, 0, 0, 9, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 4], [0, 5, 8, 0, 0, 0, 1, 0, 6, 0, 9, 4, 3, 0, 0, 0, 0, 0, 0, 9, 0, 0, 4], [9, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[6, 0, 0, 0, 1, 1, 0, 0, 6, 0], [0, 0, 6, 0, 6, 0, 4, 0, 0, 0], [0, 0, 3, 0, 0, 8, 0, 7, 0, 5], [4, 0, 3, 4, 0, 3, 0, 0, 8, 0], [0, 0, 3, 7, 7, 5, 0, 0, 1, 0], [3, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 9, 0, 0]]}, {"input": [[0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 1, 6, 0, 0, 2, 0, 1, 6, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 9, 0, 0, 3, 0, 0, 3, 0, 2, 0, 0, 2], [0, 3, 0, 0, 8, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 2, 0, 0, 0, 7], [5, 0, 7, 0, 0, 6, 1, 1, 0, 0, 0, 0, 0, 1, 0, 6, 0, 0, 0, 2, 0], [0, 0, 4, 0, 5, 0, 0, 1, 0, 6, 0, 4, 0, 1, 0, 3, 0, 0, 0, 5, 0], [0, 9, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5, 6, 1, 0, 0, 0, 0, 4, 0, 0], [0, 0, 5, 0, 6, 7, 0, 1, 0, 9, 0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 8, 0, 5, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 1, 5, 7, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0], [0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 3, 0, 0], [0, 0, 7, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 9, 8, 3, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 9, 1, 0, 0, 0, 7, 7, 0, 0, 7, 0, 7, 0, 0, 0], [0, 0, 6, 0, 7, 0, 7, 7, 7, 7, 7, 7, 9, 3, 6, 2, 0, 0, 5, 0, 3], [0, 5, 0, 0, 0, 2, 7, 0, 2, 8, 0, 7, 0, 5, 8, 0, 0, 0, 3, 0, 6], [0, 0, 0, 6, 0, 6, 7, 4, 0, 0, 8, 7, 5, 5, 0, 6, 0, 0, 7, 0, 0], [0, 8, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 3, 2, 0, 5, 0], [0, 9, 0, 0, 0, 2, 0, 2, 0, 5, 6, 4, 0, 0, 0, 0, 0, 4, 7, 0, 0], [2, 0, 0, 0, 0, 0, 9, 0, 0, 5, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 7], [0, 6, 3, 0, 0, 0, 0, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 9, 7, 0, 0, 0, 2, 3, 8, 5, 0, 0, 0, 0], [9, 6, 0, 2, 0, 4, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 0, 5, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 6, 0, 4, 0], [0, 0, 0, 5, 6], [0, 9, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 2, 4, 0, 0, 0, 9, 0], [0, 0, 3, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 5, 0, 0, 4, 0, 4], [0, 0, 0, 2, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 6, 0], [0, 0, 0, 6, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 5, 4, 0, 0, 3, 0, 0, 0, 0, 7, 0], [0, 0, 0, 0, 8, 0, 0, 3, 0, 9, 0, 0, 0, 0, 0, 0, 6, 7, 3, 0, 3, 0, 0, 9, 0], [6, 3, 0, 0, 0, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 5, 0, 2, 7, 0], [7, 0, 0, 8, 3, 0, 0, 3, 0, 3, 9, 0, 0, 0, 6, 7, 0, 0, 3, 0, 0, 0, 0, 0, 0], [5, 7, 0, 0, 8, 8, 7, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 3, 4, 0, 0, 2, 0, 1], [7, 0, 0, 0, 9, 0, 0, 3, 0, 1, 0, 0, 0, 8, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 3, 0, 2, 3, 0, 3, 3, 0, 0, 2], [0, 0, 7, 0, 0, 0, 7, 3, 0, 0, 0, 0, 0, 5, 0, 0, 1, 0, 3, 0, 0, 7, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 3, 7, 0, 0, 0, 0, 0, 0, 0, 8, 1, 3, 4, 0, 0, 6, 0, 8], [0, 0, 0, 3, 0, 4, 2, 3, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0, 3, 0, 9, 9, 0, 0, 9], [5, 0, 1, 0, 0, 0, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 3, 0, 0, 7, 0, 5, 0, 3, 0, 0, 0, 0], [0, 5, 4, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 2, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 6], [4, 0, 0, 0, 7, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 5, 0, 0, 7, 7, 7, 7, 7, 7], [9, 0, 1, 0, 0, 0, 8, 0, 0, 1, 0, 0, 5, 8, 8, 0, 0, 0, 0, 7, 0, 0, 8, 0, 7], [2, 0, 0, 0, 6, 2, 8, 0, 0, 9, 0, 0, 0, 8, 5, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7], [8, 0, 1, 0, 8, 0, 8, 0, 7, 0, 0, 6, 0, 8, 0, 0, 0, 0, 7, 7, 0, 0, 0, 2, 7], [5, 0, 0, 0, 3, 0, 8, 0, 0, 0, 0, 5, 6, 8, 4, 0, 8, 0, 5, 7, 7, 7, 7, 7, 7], [0, 0, 0, 0, 4, 0, 8, 0, 9, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 2, 8, 0, 0, 2], [8, 0, 0, 0, 0, 0, 8, 0, 0, 2, 0, 2, 0, 8, 0, 6, 0, 0, 0, 3, 0, 3, 0, 8, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 3, 0, 0, 5, 1, 0, 0, 0, 0], [0, 0, 6, 0, 9, 6, 0, 5, 9, 0, 0, 0, 0, 0, 0, 1, 0, 7, 0, 1, 5, 3, 0, 0, 6], [5, 0, 0, 0, 8, 8, 0, 9, 8, 0, 0, 0, 0, 0, 0, 9, 9, 0, 0, 0, 0, 0, 0, 2, 0], [8, 0, 0, 0, 3, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 0, 2, 5, 0, 0]], "output": [[0, 0, 0, 0, 0, 3, 5, 4, 0, 0], [0, 9, 0, 0, 0, 0, 0, 0, 6, 7], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 9, 0, 0, 0, 6, 7, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 1], [0, 1, 0, 0, 0, 8, 0, 0, 4, 0], [0, 0, 0, 6, 0, 0, 0, 3, 0, 2], [0, 0, 0, 0, 0, 5, 0, 0, 1, 0], [7, 0, 0, 0, 0, 0, 0, 0, 8, 1], [0, 0, 0, 0, 0, 4, 0, 2, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/1acc24af.json b/data/arc-agi/evaluation/1acc24af.json
deleted file mode 100644
index c2e8d3d..0000000
--- a/data/arc-agi/evaluation/1acc24af.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 5, 5, 5, 0, 5, 5, 0, 5, 5, 0, 0], [0, 5, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 2, 2, 2, 0, 2, 2, 0, 5, 5, 0, 0], [0, 2, 2, 0, 0, 2, 2, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0], [1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 5, 5, 0, 5, 0], [5, 5, 0, 5, 5, 0, 5, 5, 5, 0, 5, 0], [5, 5, 0, 0, 5, 0, 0, 0, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0], [1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 5, 0, 0, 2, 2, 2, 0, 2, 0], [2, 2, 0, 5, 5, 0, 2, 2, 2, 0, 2, 0], [2, 2, 0, 0, 5, 0, 0, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0], [0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0], [1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5], [0, 5, 0, 0, 5, 5, 5, 0, 5, 0, 0, 5], [5, 5, 5, 0, 0, 5, 0, 0, 5, 0, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0], [0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0], [1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 5, 0, 0, 5], [0, 2, 0, 0, 2, 2, 2, 0, 5, 0, 0, 5], [2, 2, 2, 0, 0, 2, 0, 0, 5, 0, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0], [0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0], [1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 5, 0, 0, 0, 0, 5, 0], [0, 5, 5, 0, 5, 0, 0, 5, 5, 0, 5, 0], [0, 0, 5, 0, 5, 0, 0, 5, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0], [0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0], [1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 2, 2, 0, 0, 0, 0, 2, 0], [0, 2, 2, 0, 2, 0, 0, 5, 5, 0, 2, 0], [0, 0, 2, 0, 2, 0, 0, 5, 5, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/1c02dbbe.json b/data/arc-agi/evaluation/1c02dbbe.json
deleted file mode 100644
index 5c66d50..0000000
--- a/data/arc-agi/evaluation/1c02dbbe.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 5, 5, 5, 5, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 5, 5, 5, 5, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 5, 5, 5, 5, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 5, 5, 5, 5, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 5, 5, 5, 5, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 5, 5, 5, 5, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 5, 5, 5, 5, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 5, 5, 5, 5, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 5, 5, 5, 5, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 5, 5, 5, 5, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 5, 5, 5, 5, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 5, 5, 5, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4], [0, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 5, 5, 5, 4, 4, 4, 4, 0], [0, 0, 1, 1, 1, 1, 1, 5, 5, 5, 4, 4, 4, 4, 0], [0, 0, 1, 1, 1, 1, 1, 5, 5, 5, 4, 4, 4, 4, 0], [0, 0, 1, 1, 1, 1, 1, 5, 5, 5, 4, 4, 4, 4, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 4, 4, 4, 4, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 4, 4, 4, 4, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 4, 4, 4, 4, 0], [0, 0, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 6, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [7, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 7, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 3, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 5, 5, 1, 1, 1, 1, 1, 1, 1, 0], [0, 6, 6, 6, 6, 5, 5, 1, 1, 1, 1, 1, 1, 1, 0], [0, 6, 6, 6, 6, 5, 5, 1, 1, 1, 1, 1, 1, 1, 0], [0, 6, 6, 6, 6, 5, 5, 1, 1, 1, 1, 1, 1, 1, 0], [0, 6, 6, 6, 6, 5, 5, 1, 1, 1, 1, 1, 1, 1, 0], [0, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 3, 3, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 3, 3, 0], [0, 7, 7, 7, 7, 7, 7, 7, 7, 5, 5, 3, 3, 3, 0], [0, 7, 7, 7, 7, 7, 7, 7, 7, 5, 5, 3, 3, 3, 0], [0, 7, 7, 7, 7, 7, 7, 7, 7, 5, 5, 3, 3, 3, 0], [0, 7, 7, 7, 7, 7, 7, 7, 7, 5, 5, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/1c0d0a4b.json b/data/arc-agi/evaluation/1c0d0a4b.json
deleted file mode 100644
index 70ee763..0000000
--- a/data/arc-agi/evaluation/1c0d0a4b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 8, 0, 0, 0, 8, 8, 0, 0], [0, 8, 0, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 2, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0], [0, 0, 8, 0, 0, 8, 8, 8, 0, 8, 8, 0, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 0, 0], [0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 8, 0, 0, 8, 8, 8, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 2, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 2, 2, 2, 0, 2, 2, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0], [0, 0, 8, 0, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 8, 0, 0, 0], [0, 0, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 2, 2, 2, 0, 2, 0, 0, 0], [0, 2, 0, 2, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 2, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 8, 0, 0], [0, 8, 0, 8, 0, 8, 8, 8, 0, 0, 8, 8, 0], [0, 8, 8, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 8, 0, 0, 0, 8, 8, 8, 0], [0, 8, 8, 8, 0, 0, 8, 0, 0, 8, 0, 8, 0], [0, 0, 8, 8, 0, 8, 0, 8, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 0, 8, 0, 0, 0, 8, 0], [0, 8, 8, 0, 0, 8, 8, 0, 0, 8, 8, 8, 0], [0, 0, 8, 0, 0, 0, 8, 8, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 2, 0, 0, 2, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 2, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 2, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/1c56ad9f.json b/data/arc-agi/evaluation/1c56ad9f.json
deleted file mode 100644
index 0d1201d..0000000
--- a/data/arc-agi/evaluation/1c56ad9f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/1d0a4b61.json b/data/arc-agi/evaluation/1d0a4b61.json
deleted file mode 100644
index bd63cbb..0000000
--- a/data/arc-agi/evaluation/1d0a4b61.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 8, 1, 5, 5, 1, 8, 2, 1, 2, 8, 1, 5, 5, 1, 8, 2, 1, 2, 8, 1, 5, 5, 1], [1, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 2, 1, 8, 8, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1], [1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 2, 1, 8, 8, 1], [1, 2, 8, 1, 5, 5, 0, 0, 0, 0, 2, 8, 1, 5, 5, 1, 8, 2, 1, 2, 8, 1, 5, 5, 1], [1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 8, 1, 5, 5, 0, 0, 0, 0, 2, 8, 1, 5, 5, 1, 8, 2, 1, 2, 8, 1, 5, 5, 1], [1, 5, 2, 1, 8, 8, 0, 0, 0, 0, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 2, 1, 8, 8, 1], [1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 8, 5, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 0, 0, 1], [1, 8, 5, 1, 2, 0, 0, 0, 0, 0, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 0, 0, 1], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1], [1, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 0, 0, 0, 0, 1, 2, 5, 1, 5, 2, 1, 0, 0, 1], [1, 2, 8, 1, 5, 5, 1, 8, 2, 1, 2, 0, 0, 0, 0, 1, 8, 2, 1, 2, 8, 1, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1], [1, 2, 8, 1, 5, 5, 1, 8, 2, 1, 2, 0, 0, 0, 0, 1, 8, 2, 1, 2, 8, 1, 5, 5, 1], [1, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 0, 0, 0, 0, 1, 2, 5, 1, 5, 2, 1, 8, 8, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1], [1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 8, 1, 5, 5, 1, 8, 2, 1, 2, 8, 1, 5, 5, 1, 8, 2, 1, 2, 8, 1, 5, 5, 1], [1, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 2, 1, 8, 8, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1], [1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 2, 1, 8, 8, 1], [1, 2, 8, 1, 5, 5, 1, 8, 2, 1, 2, 8, 1, 5, 5, 1, 8, 2, 1, 2, 8, 1, 5, 5, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 8, 1, 5, 5, 1, 8, 2, 1, 2, 8, 1, 5, 5, 1, 8, 2, 1, 2, 8, 1, 5, 5, 1], [1, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 2, 1, 8, 8, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1], [1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 2, 1, 8, 8, 1], [1, 2, 8, 1, 5, 5, 1, 8, 2, 1, 2, 8, 1, 5, 5, 1, 8, 2, 1, 2, 8, 1, 5, 5, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 8, 1, 5, 5, 1, 8, 2, 1, 2, 8, 1, 5, 5, 1, 8, 2, 1, 2, 8, 1, 5, 5, 1], [1, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 2, 1, 8, 8, 1, 2, 5, 1, 5, 2, 1, 8, 8, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1], [1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1, 5, 8, 1, 8, 5, 1, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}], "train": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1], [1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1], [1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1], [1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1], [1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 0, 0, 2, 5, 4, 5, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1], [1, 2, 5, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 5, 4, 5, 0, 0, 2, 5, 4, 5, 2, 1], [1, 5, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 5, 1, 5, 0, 0, 5, 5, 1, 5, 5, 1], [1, 4, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1], [1, 5, 5, 1, 5, 5, 1, 5, 0, 0, 0, 0, 0, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1], [1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 0, 0, 0, 0, 0, 2, 1, 2, 5, 4, 5, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 0, 0, 0, 0, 0, 2, 1, 2, 5, 4, 5, 2, 1], [1, 5, 5, 0, 0, 0, 1, 5, 5, 1, 5, 5, 0, 0, 0, 0, 0, 5, 1, 5, 5, 1, 5, 5, 1], [1, 4, 1, 0, 0, 0, 1, 4, 1, 4, 1, 4, 0, 0, 0, 0, 0, 4, 1, 4, 1, 4, 1, 4, 1], [1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 0, 0, 0, 0, 0, 5, 1, 5, 5, 1, 5, 5, 1], [1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1], [1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1], [1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1], [1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1], [1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1], [1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1], [1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1], [1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1, 5, 5, 1], [1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 0, 0, 0, 0, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5], [1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 0, 0, 0, 0, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3], [1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 0, 0, 0, 0, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2], [1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 0, 0, 0, 0, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2], [1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 0, 0, 0, 0, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3], [1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 0, 0, 0, 0, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5], [1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3], [1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2], [1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2], [1, 5, 2, 3, 0, 0, 0, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3], [1, 2, 3, 5, 0, 0, 0, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5], [1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 5, 0, 0, 0, 1, 2, 3, 5, 5, 3, 2, 0, 0, 3, 5, 5, 3, 2, 1, 2, 3, 5], [1, 5, 2, 0, 0, 0, 0, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3], [1, 3, 5, 0, 0, 0, 0, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2], [1, 3, 5, 0, 0, 0, 0, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2], [1, 5, 2, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3], [1, 2, 3, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5], [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 5, 5, 3, 2, 1, 2, 0, 0, 0, 0, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5], [1, 5, 2, 3, 3, 2, 5, 1, 5, 0, 0, 0, 0, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3], [1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5], [1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3], [1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2], [1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2], [1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3], [1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5], [1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3], [1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2], [1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2], [1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3], [1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5], [1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3], [1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2], [1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2], [1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3], [1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5, 5, 3, 2, 1, 2, 3, 5], [1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3, 3, 2, 5, 1, 5, 2, 3], [1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2, 2, 5, 3, 1, 3, 5, 2]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 0, 0, 0, 0, 2, 1], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 0, 0, 0, 0, 5, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 0, 0, 0, 0, 0, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 2, 1], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 0, 0, 0, 0, 0, 0, 1, 5, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 0, 0, 0, 2, 1, 2, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 5, 1, 5, 0, 0, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1], [1, 2, 1, 2, 0, 0, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 0, 0, 0, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/1d398264.json b/data/arc-agi/evaluation/1d398264.json
deleted file mode 100644
index 09a8ffc..0000000
--- a/data/arc-agi/evaluation/1d398264.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 5, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 8, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 0, 5, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 5, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 1, 2, 0, 0, 0, 0], [0, 0, 0, 2, 6, 2, 0, 0, 0, 0], [0, 0, 0, 2, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 3, 0, 0, 1, 0, 0, 2, 0, 0], [0, 0, 3, 0, 1, 0, 2, 0, 0, 0], [0, 0, 0, 3, 1, 2, 0, 0, 0, 0], [2, 2, 2, 2, 6, 2, 2, 2, 2, 2], [0, 0, 0, 2, 7, 7, 0, 0, 0, 0], [0, 0, 2, 0, 7, 0, 7, 0, 0, 0], [0, 2, 0, 0, 7, 0, 0, 7, 0, 0], [2, 0, 0, 0, 7, 0, 0, 0, 7, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 7], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 2, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2, 2, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 8, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 7, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 6, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 0, 6, 0, 1, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 6, 1, 1, 0, 0, 0, 0, 0, 0], [6, 6, 6, 6, 7, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 3, 3, 1, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 1, 0, 0, 0, 0, 0], [0, 3, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0], [3, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 9, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 4, 0, 0, 2, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 2, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 9, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/1da012fc.json b/data/arc-agi/evaluation/1da012fc.json
deleted file mode 100644
index db8b951..0000000
--- a/data/arc-agi/evaluation/1da012fc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 5, 5, 5, 5], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 8, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 3, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 5, 4, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 5, 5, 5, 5], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 3, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 5, 4, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 5, 2, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 4, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 5, 6, 5, 5, 3, 5, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0], [0, 5, 2, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 4, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 5, 6, 5, 5, 3, 5, 0, 6, 6, 6, 6, 0, 0, 0, 0, 3, 3, 3, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 5, 5, 5, 4, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 5, 5, 5, 8, 5, 5, 5, 5, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 5, 5, 5, 6, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 4, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 5, 5, 5, 4, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 6, 0, 0, 6, 0, 0, 5, 5, 5, 8, 5, 5, 5, 5, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 5, 5, 5, 6, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/1e81d6f9.json b/data/arc-agi/evaluation/1e81d6f9.json
deleted file mode 100644
index 0025d9f..0000000
--- a/data/arc-agi/evaluation/1e81d6f9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 8, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [9, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 6, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [9, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 9, 2, 4, 0, 0, 0, 0], [5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0], [0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0], [0, 0, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 3, 0, 7, 8, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 9, 2, 0, 0, 0, 0, 0], [5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0], [0, 0, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 3, 0, 7, 8, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 5, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 5, 0, 6, 0, 0, 0, 0, 9, 0, 0, 0, 9], [5, 5, 5, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 9, 0, 1], [4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 9, 0, 0, 0, 0, 5, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 3, 0, 0, 0, 0, 9], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 6, 0, 0, 1, 0, 0, 8]], "output": [[0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 6, 0, 0, 0, 0, 9, 0, 0, 0, 9], [5, 5, 5, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 9, 0, 1], [4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 9, 0, 0, 0, 0, 5, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 9], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 1, 0, 0, 8]]}], "test": [{"input": [[0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 3, 0, 0, 0, 0, 8, 0, 0, 0, 7], [5, 5, 5, 5, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 6, 2, 0], [0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 1, 0, 8, 7, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 7, 0, 0, 7, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0]], "output": [[0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 3, 0, 0, 0, 0, 8, 0, 0, 0, 7], [5, 5, 5, 5, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 6, 2, 0], [0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 7, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 7, 0, 0, 7, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/1e97544e.json b/data/arc-agi/evaluation/1e97544e.json
deleted file mode 100644
index b355dbe..0000000
--- a/data/arc-agi/evaluation/1e97544e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 0, 0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 0, 0, 0, 0, 0, 0, 0, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 0, 0, 0, 0, 0, 0, 0, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 0, 0, 0, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 0, 0, 0, 4, 5, 6, 7, 8, 9, 1, 0, 0, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 4, 5, 6, 7, 8, 9, 1, 0, 0, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 5, 6, 7, 8, 9, 1, 0, 0, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 0, 0, 0, 0, 0, 7, 8, 9, 1, 0, 0, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 0, 0, 0, 0, 0, 7, 8, 9, 1, 0, 0, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 0, 0, 0, 0, 0, 8, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 0, 0, 0, 0, 0, 8, 9, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 6]], "output": [[2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 7, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 8, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 1, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 2, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 3, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 4, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 5, 6], [3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 6]]}], "train": [{"input": [[5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 0, 0, 0, 4, 5, 6, 1, 2, 3], [6, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 0, 0, 0, 4, 5, 6, 1, 2, 3], [6, 1, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 0, 0, 0, 4, 5, 6, 1, 2, 3], [6, 1, 2, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 0, 0, 0, 0, 6, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 0, 0, 0, 0, 6, 1, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 0, 0, 0, 0, 6, 1, 2, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 0, 0, 0, 0, 6, 1, 2, 3, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 0, 0, 0, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 0, 0, 0, 4, 5, 6, 1, 2, 0, 0, 0, 0, 0, 2, 2, 3, 4, 5, 6, 1, 2, 3], [6, 0, 0, 0, 4, 5, 6, 1, 2, 0, 0, 0, 0, 0, 2, 3, 3, 4, 5, 6, 1, 2, 3], [6, 0, 0, 0, 4, 5, 6, 1, 2, 0, 0, 0, 0, 0, 2, 3, 4, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 0, 0, 0, 0, 0, 2, 3, 4, 5, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 0, 0, 0, 2, 3, 4, 5, 6, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 0, 0, 0, 2, 3, 4, 5, 6, 1, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 0, 0, 0, 2, 3, 4, 5, 6, 1, 2, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 3]], "output": [[5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 1, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 2, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 3, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 4, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 5, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 6, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 1, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 2, 3], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 3]]}, {"input": [[3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 0, 0, 0, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 0, 0, 0, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 0, 0, 0, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 2, 3, 4, 5, 6, 7, 1, 2, 0, 0, 0, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 0, 0, 0, 0, 0, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 0, 0, 0, 0, 0, 7, 1, 2, 0, 0, 0, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 6, 7, 1, 2, 0, 0, 0, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 7, 1, 2, 0, 0, 0, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 0, 0, 0, 0, 0, 6, 7, 1, 1, 2, 0, 0, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 0, 0, 0, 0, 0, 6, 7, 1, 2, 2, 0, 0, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 0, 0, 0, 0, 0, 6, 7, 1, 2, 3, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 4]], "output": [[3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 4]]}, {"input": [[5, 6, 7, 8, 0, 0, 0, 0, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 6, 7, 8, 0, 0, 0, 0, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 7, 8, 0, 0, 0, 0, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 8, 0, 0, 0, 0, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 0, 0, 0, 0, 4, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 0, 0, 0, 0, 4, 5, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 0, 0, 0, 0, 4, 5, 6, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 0, 0, 0, 0, 4, 5, 6, 7, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 8, 1, 2, 3, 0, 0, 0, 0, 8, 1, 2, 3], [6, 7, 8, 1, 0, 0, 4, 5, 6, 7, 8, 1, 1, 2, 3, 0, 0, 0, 0, 8, 1, 2, 3], [6, 7, 8, 1, 0, 0, 4, 5, 6, 7, 8, 1, 2, 2, 3, 0, 0, 0, 0, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 3, 0, 0, 0, 0, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 6, 7, 0, 0, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 7, 0, 0, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 0, 0, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 0, 0, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 0, 0, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 3]], "output": [[5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 3, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 4, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 5, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 6, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 7, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 8, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 1, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 2, 3], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/2037f2c7.json b/data/arc-agi/evaluation/2037f2c7.json
deleted file mode 100644
index 09b9cec..0000000
--- a/data/arc-agi/evaluation/2037f2c7.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 6, 4, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 6, 4, 3, 3, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 3, 3, 4, 6, 4, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 4, 6, 4, 2, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 4, 6, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 4, 6, 4, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 6, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 0, 0, 0, 0, 0, 8], [8, 8, 0, 0, 0, 8, 8], [8, 0, 0, 0, 0, 0, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 4, 6, 6, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 3, 4, 6, 6, 4, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 4, 6, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 3, 0, 6, 6, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 4, 6, 6, 4, 1, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 2, 4, 4, 7, 7, 4, 4, 2, 0, 0, 0, 0, 1, 1, 4, 6, 6, 4, 1, 1, 0, 0], [0, 0, 0, 2, 4, 4, 7, 7, 4, 4, 2, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 2, 0, 0, 7, 7, 0, 0, 2, 0, 0, 0, 0, 1, 3, 4, 6, 6, 4, 3, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 4, 6, 6, 4, 3, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 4, 6, 6, 4, 3, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 4, 6, 6, 4, 3, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 6, 6, 4, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 7, 7, 4, 4, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 7, 7, 4, 4, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 7, 7, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 0, 0, 0, 8, 8], [8, 8, 8, 8, 0, 8, 8, 8], [0, 0, 8, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 3, 7, 7, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 3, 7, 7, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 3, 7, 7, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 7, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 7, 7, 3, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 7, 7, 3, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 7, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 0, 8, 8], [0, 0, 8, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 6, 6, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 4, 2, 6, 6, 2, 4, 1, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 6, 6, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 2, 6, 6, 2, 1, 0, 0, 0], [0, 0, 0, 4, 4, 6, 6, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0], [0, 3, 1, 4, 2, 6, 6, 2, 4, 1, 3, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 3, 1, 4, 2, 6, 6, 2, 4, 1, 3, 0, 0, 0, 0, 1, 3, 3, 3, 3, 3, 3, 1, 0, 0], [0, 3, 1, 1, 2, 6, 6, 2, 1, 1, 3, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 3, 3, 3, 3, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 0, 0, 0, 0, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/2072aba6.json b/data/arc-agi/evaluation/2072aba6.json
deleted file mode 100644
index d111d30..0000000
--- a/data/arc-agi/evaluation/2072aba6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 5, 0], [5, 5, 5], [0, 5, 0]], "output": [[0, 0, 1, 2, 0, 0], [0, 0, 2, 1, 0, 0], [1, 2, 1, 2, 1, 2], [2, 1, 2, 1, 2, 1], [0, 0, 1, 2, 0, 0], [0, 0, 2, 1, 0, 0]]}, {"input": [[5, 0, 0], [0, 5, 0], [0, 0, 5]], "output": [[1, 2, 0, 0, 0, 0], [2, 1, 0, 0, 0, 0], [0, 0, 1, 2, 0, 0], [0, 0, 2, 1, 0, 0], [0, 0, 0, 0, 1, 2], [0, 0, 0, 0, 2, 1]]}, {"input": [[0, 5, 0], [0, 5, 5], [5, 5, 0]], "output": [[0, 0, 1, 2, 0, 0], [0, 0, 2, 1, 0, 0], [0, 0, 1, 2, 1, 2], [0, 0, 2, 1, 2, 1], [1, 2, 1, 2, 0, 0], [2, 1, 2, 1, 0, 0]]}], "test": [{"input": [[0, 0, 0], [0, 5, 0], [5, 5, 5]], "output": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 1, 2, 0, 0], [0, 0, 2, 1, 0, 0], [1, 2, 1, 2, 1, 2], [2, 1, 2, 1, 2, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/20818e16.json b/data/arc-agi/evaluation/20818e16.json
deleted file mode 100644
index 4c0371b..0000000
--- a/data/arc-agi/evaluation/20818e16.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train":[{"input":[[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,2,2,2,2,2,2,2,2,4,4,4,4,4],[4,4,2,2,2,2,2,2,2,2,4,4,4,4,4],[4,4,2,2,2,2,2,2,2,2,4,4,4,4,4],[4,4,2,2,2,2,1,1,1,1,1,4,4,4,4],[4,4,2,2,2,2,1,1,1,1,1,4,4,4,4],[4,4,2,2,2,2,1,1,1,1,1,4,4,4,4],[4,4,4,4,4,4,1,1,1,1,1,4,4,4,4],[4,4,4,4,4,4,1,1,1,1,1,4,4,4,4],[4,3,3,3,3,4,4,4,4,4,4,4,4,4,4],[4,3,3,3,3,4,4,4,4,4,4,4,4,4,4],[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]],"output":[[3,3,3,3,1,2,2,2],[3,3,3,3,1,2,2,2],[1,1,1,1,1,2,2,2],[1,1,1,1,1,2,2,2],[1,1,1,1,1,2,2,2],[2,2,2,2,2,2,2,2]]},{"input":[[8,8,8,8,8,2,2,2,2,2,2,2,2,2,8],[8,8,8,8,8,2,2,2,2,2,2,2,2,2,8],[8,8,8,8,8,2,2,2,2,2,2,2,2,2,8],[8,8,8,8,8,2,2,2,2,2,2,2,2,2,8],[8,8,8,8,8,2,2,2,2,2,2,2,2,2,8],[8,8,3,3,3,2,2,2,2,2,2,2,2,2,8],[8,8,3,3,3,3,3,3,8,8,8,8,8,8,8],[8,8,3,3,3,3,3,3,8,8,8,8,8,8,8],[8,8,3,3,3,3,3,3,8,8,8,8,8,8,8],[8,8,3,3,3,3,3,3,8,8,8,8,8,8,8],[8,8,3,3,3,3,3,3,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,5,5,8,8,8],[8,8,8,8,8,8,8,8,8,8,5,5,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8]],"output":[[5,5,3,3,3,3,2,2,2],[5,5,3,3,3,3,2,2,2],[3,3,3,3,3,3,2,2,2],[3,3,3,3,3,3,2,2,2],[3,3,3,3,3,3,2,2,2],[3,3,3,3,3,3,2,2,2]]},{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,4,4,4,4,4,0,0,0,0,0,8,8,0,0],[0,4,4,4,4,4,0,0,0,0,0,0,0,0,0],[0,4,4,4,6,6,6,6,6,6,6,6,0,0,0],[0,4,4,4,6,6,6,6,6,6,6,6,0,0,0],[0,4,4,4,6,6,6,6,6,6,6,6,0,0,0],[0,0,0,0,6,6,6,6,6,6,6,6,0,0,0],[0,0,0,0,6,6,6,6,6,6,6,6,0,0,0],[0,0,0,0,6,6,6,6,6,6,6,6,0,0,0],[0,0,3,3,3,3,6,6,6,6,6,6,0,0,0],[0,0,3,3,3,3,6,6,6,6,6,6,0,0,0],[0,0,3,3,3,3,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],"output":[[8,8,3,3,4,6,6,6],[3,3,3,3,4,6,6,6],[3,3,3,3,4,6,6,6],[4,4,4,4,4,6,6,6],[4,4,4,4,4,6,6,6],[6,6,6,6,6,6,6,6],[6,6,6,6,6,6,6,6],[6,6,6,6,6,6,6,6]]}],"test":[{"input":[[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1],[1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1],[1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1],[1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1],[1,1,2,2,2,2,3,3,3,3,2,2,1,1,1,1],[1,1,2,2,2,2,3,3,3,3,2,2,1,1,1,1],[1,1,1,1,1,1,3,3,3,3,1,1,1,1,1,1],[1,1,1,1,1,1,3,3,3,3,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,8,8,8,1,1,1,1,1],[1,1,1,1,1,1,1,1,8,8,8,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,6,6,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],"output":[[6,6,8,3,2,2,2,2,2,2],[8,8,8,3,2,2,2,2,2,2],[3,3,3,3,2,2,2,2,2,2],[3,3,3,3,2,2,2,2,2,2],[2,2,2,2,2,2,2,2,2,2],[2,2,2,2,2,2,2,2,2,2]]}],"name":"20818e16"}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/20981f0e.json b/data/arc-agi/evaluation/20981f0e.json
deleted file mode 100644
index 8ae84ef..0000000
--- a/data/arc-agi/evaluation/20981f0e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 1, 1, 0, 0, 0, 0, 1, 1, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 1, 1, 0, 0, 0, 0, 1, 1, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 2, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 1, 0, 0], [0, 0, 1, 1, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 1, 0], [0, 0, 1, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 2, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/212895b5.json b/data/arc-agi/evaluation/212895b5.json
deleted file mode 100644
index 6fd04a7..0000000
--- a/data/arc-agi/evaluation/212895b5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 5], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 4, 4, 5, 2, 0, 0, 0, 0, 0, 5], [0, 0, 0, 5, 2, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 4, 0, 2, 0, 0, 4, 4, 4, 2, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 2, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 8, 8, 8, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 8, 8, 8, 4, 4, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 4, 0, 2, 5, 0, 5, 0, 0, 0, 0, 0, 5], [5, 0, 0, 0, 0, 2, 4, 4, 4, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 4, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 4, 4, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0], [0, 2, 0, 5, 4, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 2, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 8, 8, 8, 0, 5, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 5, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 2], [0, 0, 0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 4, 4, 4, 2, 0], [0, 0, 0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 4, 4, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 4, 8, 8, 8, 4, 5, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 4, 0, 2, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 5, 4, 5, 0, 2, 5, 0, 0], [0, 0, 0, 5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 5, 0, 0, 2, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 5, 2, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 8, 8, 8, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 4, 4, 4, 0, 0, 5, 0], [0, 0, 0, 5, 4, 4, 0, 0, 0, 0, 0, 0, 4, 0, 5, 0, 0, 0, 0], [0, 5, 0, 5, 0, 4, 0, 5, 0, 0, 4, 4, 4, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 2, 0, 4, 0, 2, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 4, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 4, 4, 8, 8, 8, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 4, 0, 5, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 5, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 5, 5], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 5, 0], [0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 5, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [5, 0, 0, 0, 5, 0, 5, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 5, 0, 0, 0, 0, 5], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 5, 0], [5, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 2, 0, 0, 5, 0, 0, 4, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 5], [0, 0, 4, 5, 2, 0, 0, 4, 4, 4, 5, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 2, 0, 4, 0, 2, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 5, 5], [0, 0, 0, 0, 4, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], [0, 0, 0, 0, 4, 4, 8, 8, 8, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 4, 0, 2, 4, 4, 4, 0, 5, 0, 0, 0, 5, 0, 0, 5, 0], [0, 0, 5, 0, 5, 4, 4, 4, 0, 0, 2, 0, 4, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 5, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 5, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [5, 0, 0, 0, 5, 0, 5, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 5, 0, 0, 0, 0, 5], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 5, 0], [5, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/21f83797.json b/data/arc-agi/evaluation/21f83797.json
deleted file mode 100644
index 44cfdb4..0000000
--- a/data/arc-agi/evaluation/21f83797.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 1, 1, 1, 1, 2, 0, 0, 0, 0], [0, 0, 0, 2, 1, 1, 1, 1, 2, 0, 0, 0, 0], [0, 0, 0, 2, 1, 1, 1, 1, 2, 0, 0, 0, 0], [0, 0, 0, 2, 1, 1, 1, 1, 2, 0, 0, 0, 0], [0, 0, 0, 2, 1, 1, 1, 1, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 1, 1, 1, 1, 2, 0, 0, 0], [0, 0, 0, 0, 2, 1, 1, 1, 1, 2, 0, 0, 0], [0, 0, 0, 0, 2, 1, 1, 1, 1, 2, 0, 0, 0], [0, 0, 0, 0, 2, 1, 1, 1, 1, 2, 0, 0, 0], [0, 0, 0, 0, 2, 1, 1, 1, 1, 2, 0, 0, 0], [0, 0, 0, 0, 2, 1, 1, 1, 1, 2, 0, 0, 0], [0, 0, 0, 0, 2, 1, 1, 1, 1, 2, 0, 0, 0], [0, 0, 0, 0, 2, 1, 1, 1, 1, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/22a4bbc2.json b/data/arc-agi/evaluation/22a4bbc2.json
deleted file mode 100644
index cb5a27b..0000000
--- a/data/arc-agi/evaluation/22a4bbc2.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 0], [1, 1, 0], [8, 8, 8], [8, 8, 8], [0, 1, 1], [0, 1, 1], [8, 8, 0], [1, 1, 1], [8, 8, 0], [8, 8, 0], [1, 1, 1], [1, 1, 1], [1, 1, 1], [8, 8, 8], [8, 8, 8]], "output": [[2, 2, 0], [2, 2, 0], [8, 8, 8], [8, 8, 8], [0, 1, 1], [0, 1, 1], [2, 2, 0], [1, 1, 1], [8, 8, 0], [8, 8, 0], [2, 2, 2], [2, 2, 2], [2, 2, 2], [8, 8, 8], [8, 8, 8]]}, {"input": [[0, 8, 8, 8, 0], [0, 8, 8, 8, 0], [1, 1, 1, 0, 0], [0, 8, 8, 8, 0], [0, 8, 8, 8, 0], [1, 1, 1, 1, 1], [0, 8, 8, 8, 8], [0, 8, 8, 8, 8], [1, 1, 1, 1, 0], [1, 1, 1, 1, 0], [0, 8, 8, 8, 0], [0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [8, 8, 8, 0, 0], [0, 0, 0, 1, 1], [8, 8, 8, 0, 0], [8, 8, 8, 0, 0], [0, 0, 1, 1, 0], [0, 0, 1, 1, 0]], "output": [[0, 2, 2, 2, 0], [0, 2, 2, 2, 0], [1, 1, 1, 0, 0], [0, 8, 8, 8, 0], [0, 8, 8, 8, 0], [2, 2, 2, 2, 2], [0, 8, 8, 8, 8], [0, 8, 8, 8, 8], [1, 1, 1, 1, 0], [1, 1, 1, 1, 0], [0, 2, 2, 2, 0], [0, 1, 1, 1, 1], [0, 1, 1, 1, 1], [8, 8, 8, 0, 0], [0, 0, 0, 2, 2], [8, 8, 8, 0, 0], [8, 8, 8, 0, 0], [0, 0, 1, 1, 0], [0, 0, 1, 1, 0]]}, {"input": [[1, 1, 1, 0], [1, 1, 1, 0], [8, 8, 8, 8], [0, 0, 1, 1], [0, 0, 1, 1], [8, 8, 8, 8], [8, 8, 8, 8], [0, 1, 1, 0], [8, 8, 0, 0], [1, 1, 1, 1], [0, 8, 8, 0], [0, 8, 8, 0], [1, 1, 1, 1], [8, 8, 8, 0], [8, 8, 8, 0], [0, 1, 1, 1], [0, 1, 1, 1], [8, 8, 8, 0], [0, 1, 1, 0], [8, 8, 8, 8]], "output": [[2, 2, 2, 0], [2, 2, 2, 0], [8, 8, 8, 8], [0, 0, 1, 1], [0, 0, 1, 1], [2, 2, 2, 2], [2, 2, 2, 2], [0, 1, 1, 0], [8, 8, 0, 0], [2, 2, 2, 2], [0, 8, 8, 0], [0, 8, 8, 0], [1, 1, 1, 1], [2, 2, 2, 0], [2, 2, 2, 0], [0, 1, 1, 1], [0, 1, 1, 1], [8, 8, 8, 0], [0, 2, 2, 0], [8, 8, 8, 8]]}, {"input": [[1, 1, 1, 0, 0], [0, 8, 8, 8, 8], [1, 1, 1, 1, 0], [0, 8, 8, 0, 0], [0, 0, 1, 1, 1], [0, 0, 1, 1, 1], [8, 8, 8, 8, 0], [0, 1, 1, 0, 0], [0, 1, 1, 0, 0], [8, 8, 8, 8, 8], [8, 8, 8, 8, 8], [1, 1, 1, 0, 0], [0, 8, 8, 8, 0], [0, 0, 0, 1, 1]], "output": [[2, 2, 2, 0, 0], [0, 8, 8, 8, 8], [1, 1, 1, 1, 0], [0, 2, 2, 0, 0], [0, 0, 1, 1, 1], [0, 0, 1, 1, 1], [8, 8, 8, 8, 0], [0, 2, 2, 0, 0], [0, 2, 2, 0, 0], [8, 8, 8, 8, 8], [8, 8, 8, 8, 8], [1, 1, 1, 0, 0], [0, 2, 2, 2, 0], [0, 0, 0, 1, 1]]}], "test": [{"input": [[8, 8, 8, 0], [0, 1, 1, 1], [0, 8, 8, 0], [1, 1, 1, 1], [8, 8, 8, 0], [8, 8, 8, 0], [0, 1, 1, 1], [0, 8, 8, 0], [0, 8, 8, 0], [1, 1, 1, 1], [1, 1, 1, 1], [8, 8, 8, 8], [1, 1, 0, 0], [0, 8, 8, 8], [1, 1, 1, 0], [8, 8, 8, 8], [0, 1, 1, 0], [0, 1, 1, 0], [8, 8, 8, 8], [8, 8, 8, 8], [0, 1, 1, 1], [0, 1, 1, 1]], "output": [[2, 2, 2, 0], [0, 1, 1, 1], [0, 8, 8, 0], [2, 2, 2, 2], [8, 8, 8, 0], [8, 8, 8, 0], [0, 1, 1, 1], [0, 2, 2, 0], [0, 2, 2, 0], [1, 1, 1, 1], [1, 1, 1, 1], [8, 8, 8, 8], [2, 2, 0, 0], [0, 8, 8, 8], [1, 1, 1, 0], [2, 2, 2, 2], [0, 1, 1, 0], [0, 1, 1, 0], [8, 8, 8, 8], [8, 8, 8, 8], [0, 2, 2, 2], [0, 2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/25094a63.json b/data/arc-agi/evaluation/25094a63.json
deleted file mode 100644
index 494acc3..0000000
--- a/data/arc-agi/evaluation/25094a63.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 3, 2, 6, 3, 6, 8, 8, 8, 2, 3, 3, 3, 3, 3, 6, 3, 3, 8, 8, 1, 2, 2, 6, 3, 3, 2, 8, 1, 1], [8, 2, 1, 6, 3, 1, 8, 3, 1, 8, 3, 8, 8, 1, 3, 2, 8, 3, 8, 8, 3, 1, 3, 1, 8, 3, 2, 6, 2, 6], [1, 8, 3, 1, 8, 8, 8, 8, 8, 8, 1, 3, 2, 3, 3, 6, 6, 2, 3, 6, 2, 2, 2, 2, 2, 2, 2, 3, 2, 3], [1, 2, 8, 1, 8, 8, 8, 8, 8, 8, 3, 8, 1, 2, 1, 1, 2, 3, 8, 3, 2, 2, 2, 2, 2, 2, 2, 2, 1, 3], [1, 3, 8, 1, 8, 8, 8, 8, 8, 8, 3, 2, 3, 3, 8, 3, 1, 1, 3, 3, 2, 2, 2, 2, 2, 2, 2, 6, 8, 3], [3, 3, 8, 2, 8, 8, 8, 8, 8, 8, 3, 3, 1, 3, 2, 3, 6, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 6, 2], [8, 2, 1, 1, 8, 8, 8, 8, 8, 8, 3, 3, 6, 1, 3, 1, 8, 1, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 8], [1, 3, 3, 6, 8, 8, 8, 8, 8, 8, 8, 1, 2, 8, 2, 8, 2, 1, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 8, 6], [3, 1, 3, 8, 3, 2, 3, 8, 1, 3, 1, 8, 1, 3, 1, 2, 3, 1, 8, 6, 2, 1, 3, 1, 1, 8, 3, 1, 6, 3], [2, 8, 6, 3, 1, 3, 8, 2, 1, 3, 2, 3, 3, 3, 3, 1, 8, 3, 3, 6, 2, 8, 2, 2, 6, 2, 1, 6, 2, 3], [8, 8, 2, 2, 3, 1, 1, 3, 2, 3, 3, 8, 2, 3, 3, 8, 8, 6, 6, 2, 1, 2, 6, 2, 3, 3, 3, 2, 6, 3], [6, 3, 2, 2, 8, 3, 2, 3, 3, 1, 3, 2, 2, 3, 2, 6, 3, 2, 2, 1, 1, 2, 1, 8, 6, 3, 2, 1, 8, 2], [8, 6, 2, 8, 2, 2, 2, 3, 3, 8, 1, 1, 3, 1, 6, 1, 3, 2, 8, 3, 8, 3, 3, 3, 3, 3, 3, 1, 8, 1], [8, 8, 2, 8, 8, 6, 8, 6, 3, 8, 6, 1, 3, 2, 8, 3, 6, 6, 2, 6, 3, 8, 3, 3, 3, 3, 3, 3, 8, 1], [1, 8, 2, 6, 2, 8, 1, 3, 6, 3, 8, 2, 2, 3, 6, 1, 6, 2, 8, 3, 8, 3, 3, 3, 3, 3, 3, 2, 2, 3], [3, 2, 8, 1, 1, 3, 2, 2, 2, 6, 8, 3, 8, 8, 1, 2, 8, 6, 1, 3, 1, 2, 3, 3, 3, 3, 3, 2, 2, 2], [8, 3, 8, 1, 2, 3, 8, 6, 3, 3, 3, 1, 6, 3, 1, 2, 1, 3, 2, 3, 2, 8, 3, 3, 3, 3, 3, 8, 3, 3], [6, 2, 3, 8, 6, 2, 2, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 6, 6, 2, 1, 6, 3, 1, 6, 8, 3, 1, 2, 3], [2, 1, 2, 1, 8, 2, 3, 2, 6, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 6, 2, 1, 2, 2, 2, 3, 3, 1], [1, 8, 8, 2, 8, 2, 2, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 8, 2, 3, 2, 3, 6, 6, 2, 3, 3, 3, 6, 3], [2, 6, 8, 3, 6, 1, 3, 8, 3, 6, 1, 1, 1, 1, 1, 1, 1, 2, 3, 3, 3, 1, 6, 3, 3, 6, 1, 3, 2, 2], [6, 8, 6, 2, 3, 2, 6, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 8, 1, 6, 3, 3, 3, 8, 1, 8, 2, 3], [6, 3, 1, 3, 6, 6, 1, 6, 3, 8, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 6, 3, 3, 8, 1, 8, 3, 8, 2, 1], [3, 2, 2, 3, 1, 1, 2, 3, 8, 6, 1, 3, 3, 1, 8, 3, 1, 8, 8, 3, 8, 3, 1, 8, 8, 1, 1, 2, 1, 8], [3, 2, 3, 6, 1, 8, 3, 6, 3, 3, 2, 2, 1, 3, 6, 3, 2, 3, 8, 3, 8, 3, 2, 2, 2, 2, 3, 3, 1, 6], [2, 8, 6, 2, 2, 1, 8, 3, 1, 6, 8, 2, 3, 2, 3, 2, 3, 3, 3, 3, 2, 2, 2, 8, 6, 8, 3, 6, 1, 3], [6, 2, 3, 2, 3, 3, 8, 3, 3, 6, 2, 2, 3, 3, 8, 8, 1, 3, 1, 2, 8, 3, 8, 3, 3, 3, 6, 1, 2, 2], [2, 3, 2, 1, 2, 6, 3, 1, 8, 3, 1, 6, 2, 3, 8, 2, 6, 1, 1, 1, 3, 6, 8, 1, 2, 8, 6, 2, 3, 2], [2, 1, 8, 2, 6, 3, 8, 2, 3, 6, 8, 8, 2, 8, 8, 3, 2, 3, 1, 6, 8, 2, 6, 3, 2, 3, 2, 1, 8, 3], [1, 6, 3, 1, 6, 6, 3, 1, 2, 8, 8, 1, 8, 1, 3, 3, 1, 2, 6, 8, 3, 1, 6, 8, 3, 8, 3, 1, 1, 8]], "output": [[3, 3, 2, 6, 3, 6, 8, 8, 8, 2, 3, 3, 3, 3, 3, 6, 3, 3, 8, 8, 1, 2, 2, 6, 3, 3, 2, 8, 1, 1], [8, 2, 1, 6, 3, 1, 8, 3, 1, 8, 3, 8, 8, 1, 3, 2, 8, 3, 8, 8, 3, 1, 3, 1, 8, 3, 2, 6, 2, 6], [1, 8, 3, 1, 4, 4, 4, 4, 4, 4, 1, 3, 2, 3, 3, 6, 6, 2, 3, 6, 4, 4, 4, 4, 4, 4, 4, 3, 2, 3], [1, 2, 8, 1, 4, 4, 4, 4, 4, 4, 3, 8, 1, 2, 1, 1, 2, 3, 8, 3, 4, 4, 4, 4, 4, 4, 4, 2, 1, 3], [1, 3, 8, 1, 4, 4, 4, 4, 4, 4, 3, 2, 3, 3, 8, 3, 1, 1, 3, 3, 4, 4, 4, 4, 4, 4, 4, 6, 8, 3], [3, 3, 8, 2, 4, 4, 4, 4, 4, 4, 3, 3, 1, 3, 2, 3, 6, 1, 1, 2, 4, 4, 4, 4, 4, 4, 4, 3, 6, 2], [8, 2, 1, 1, 4, 4, 4, 4, 4, 4, 3, 3, 6, 1, 3, 1, 8, 1, 2, 1, 4, 4, 4, 4, 4, 4, 4, 2, 3, 8], [1, 3, 3, 6, 4, 4, 4, 4, 4, 4, 8, 1, 2, 8, 2, 8, 2, 1, 3, 3, 4, 4, 4, 4, 4, 4, 4, 2, 8, 6], [3, 1, 3, 8, 3, 2, 3, 8, 1, 3, 1, 8, 1, 3, 1, 2, 3, 1, 8, 6, 2, 1, 3, 1, 1, 8, 3, 1, 6, 3], [2, 8, 6, 3, 1, 3, 8, 2, 1, 3, 2, 3, 3, 3, 3, 1, 8, 3, 3, 6, 2, 8, 2, 2, 6, 2, 1, 6, 2, 3], [8, 8, 2, 2, 3, 1, 1, 3, 2, 3, 3, 8, 2, 3, 3, 8, 8, 6, 6, 2, 1, 2, 6, 2, 3, 3, 3, 2, 6, 3], [6, 3, 2, 2, 8, 3, 2, 3, 3, 1, 3, 2, 2, 3, 2, 6, 3, 2, 2, 1, 1, 2, 1, 8, 6, 3, 2, 1, 8, 2], [8, 6, 2, 8, 2, 2, 2, 3, 3, 8, 1, 1, 3, 1, 6, 1, 3, 2, 8, 3, 8, 3, 4, 4, 4, 4, 4, 1, 8, 1], [8, 8, 2, 8, 8, 6, 8, 6, 3, 8, 6, 1, 3, 2, 8, 3, 6, 6, 2, 6, 3, 8, 4, 4, 4, 4, 4, 3, 8, 1], [1, 8, 2, 6, 2, 8, 1, 3, 6, 3, 8, 2, 2, 3, 6, 1, 6, 2, 8, 3, 8, 3, 4, 4, 4, 4, 4, 2, 2, 3], [3, 2, 8, 1, 1, 3, 2, 2, 2, 6, 8, 3, 8, 8, 1, 2, 8, 6, 1, 3, 1, 2, 4, 4, 4, 4, 4, 2, 2, 2], [8, 3, 8, 1, 2, 3, 8, 6, 3, 3, 3, 1, 6, 3, 1, 2, 1, 3, 2, 3, 2, 8, 4, 4, 4, 4, 4, 8, 3, 3], [6, 2, 3, 8, 6, 2, 2, 1, 8, 8, 4, 4, 4, 4, 4, 4, 4, 6, 6, 2, 1, 6, 3, 1, 6, 8, 3, 1, 2, 3], [2, 1, 2, 1, 8, 2, 3, 2, 6, 8, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 3, 6, 2, 1, 2, 2, 2, 3, 3, 1], [1, 8, 8, 2, 8, 2, 2, 2, 3, 1, 4, 4, 4, 4, 4, 4, 4, 8, 2, 3, 2, 3, 6, 6, 2, 3, 3, 3, 6, 3], [2, 6, 8, 3, 6, 1, 3, 8, 3, 6, 4, 4, 4, 4, 4, 4, 4, 2, 3, 3, 3, 1, 6, 3, 3, 6, 1, 3, 2, 2], [6, 8, 6, 2, 3, 2, 6, 3, 3, 1, 4, 4, 4, 4, 4, 4, 4, 3, 3, 8, 1, 6, 3, 3, 3, 8, 1, 8, 2, 3], [6, 3, 1, 3, 6, 6, 1, 6, 3, 8, 4, 4, 4, 4, 4, 4, 4, 1, 2, 1, 6, 3, 3, 8, 1, 8, 3, 8, 2, 1], [3, 2, 2, 3, 1, 1, 2, 3, 8, 6, 1, 3, 3, 1, 8, 3, 1, 8, 8, 3, 8, 3, 1, 8, 8, 1, 1, 2, 1, 8], [3, 2, 3, 6, 1, 8, 3, 6, 3, 3, 2, 2, 1, 3, 6, 3, 2, 3, 8, 3, 8, 3, 2, 2, 2, 2, 3, 3, 1, 6], [2, 8, 6, 2, 2, 1, 8, 3, 1, 6, 8, 2, 3, 2, 3, 2, 3, 3, 3, 3, 2, 2, 2, 8, 6, 8, 3, 6, 1, 3], [6, 2, 3, 2, 3, 3, 8, 3, 3, 6, 2, 2, 3, 3, 8, 8, 1, 3, 1, 2, 8, 3, 8, 3, 3, 3, 6, 1, 2, 2], [2, 3, 2, 1, 2, 6, 3, 1, 8, 3, 1, 6, 2, 3, 8, 2, 6, 1, 1, 1, 3, 6, 8, 1, 2, 8, 6, 2, 3, 2], [2, 1, 8, 2, 6, 3, 8, 2, 3, 6, 8, 8, 2, 8, 8, 3, 2, 3, 1, 6, 8, 2, 6, 3, 2, 3, 2, 1, 8, 3], [1, 6, 3, 1, 6, 6, 3, 1, 2, 8, 8, 1, 8, 1, 3, 3, 1, 2, 6, 8, 3, 1, 6, 8, 3, 8, 3, 1, 1, 8]]}, {"input": [[6, 8, 6, 8, 8, 8, 8, 6, 6, 3, 8, 6, 2, 3, 8, 1, 2, 8, 1, 3, 8, 3, 3, 6, 6, 1, 2, 6, 2, 2], [2, 3, 3, 2, 2, 3, 6, 2, 6, 2, 8, 1, 3, 8, 1, 8, 1, 8, 8, 8, 8, 2, 2, 3, 2, 1, 2, 8, 6, 3], [2, 3, 8, 2, 3, 6, 6, 6, 6, 6, 6, 6, 6, 6, 3, 8, 2, 6, 6, 2, 8, 3, 8, 8, 3, 2, 3, 3, 3, 2], [8, 6, 8, 2, 3, 6, 6, 6, 6, 6, 6, 6, 6, 6, 3, 1, 1, 2, 1, 2, 6, 8, 2, 6, 2, 1, 8, 3, 3, 8], [6, 8, 6, 2, 3, 6, 6, 6, 6, 6, 6, 6, 6, 6, 3, 3, 3, 8, 1, 1, 2, 1, 8, 3, 8, 2, 3, 6, 8, 2], [3, 8, 3, 3, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 2, 8, 6, 3, 2, 6, 1, 6, 6, 2, 8, 8, 3, 2, 6, 6], [2, 6, 3, 2, 8, 6, 6, 6, 6, 6, 6, 6, 6, 6, 8, 3, 8, 3, 3, 6, 3, 1, 8, 8, 1, 2, 3, 1, 8, 8], [3, 8, 1, 6, 1, 8, 1, 3, 8, 3, 2, 3, 2, 8, 1, 3, 1, 2, 2, 8, 1, 6, 3, 3, 3, 6, 2, 2, 8, 6], [8, 3, 3, 8, 3, 8, 2, 2, 8, 8, 8, 8, 8, 1, 1, 6, 3, 3, 6, 2, 2, 6, 1, 3, 3, 6, 3, 1, 3, 3], [2, 3, 3, 2, 3, 2, 6, 2, 3, 6, 8, 3, 3, 8, 3, 6, 1, 3, 3, 8, 8, 1, 6, 6, 8, 8, 1, 6, 2, 6], [3, 6, 3, 3, 3, 2, 3, 6, 1, 6, 3, 8, 2, 8, 2, 3, 2, 6, 3, 6, 6, 8, 3, 6, 6, 1, 6, 8, 8, 6], [8, 3, 3, 1, 2, 2, 6, 8, 2, 3, 6, 8, 3, 2, 2, 6, 3, 2, 1, 2, 6, 3, 6, 8, 8, 8, 1, 8, 1, 6], [1, 8, 8, 1, 6, 6, 8, 2, 8, 2, 1, 2, 8, 8, 1, 8, 2, 8, 3, 8, 3, 3, 8, 8, 2, 3, 3, 3, 3, 3], [8, 8, 3, 8, 3, 2, 8, 6, 3, 3, 1, 3, 2, 1, 6, 6, 8, 3, 6, 6, 3, 6, 3, 1, 8, 1, 2, 6, 3, 8], [8, 6, 6, 3, 2, 6, 6, 8, 6, 1, 3, 2, 8, 3, 1, 2, 8, 3, 6, 2, 8, 8, 3, 2, 2, 6, 1, 8, 6, 3], [1, 8, 1, 6, 2, 3, 2, 2, 1, 8, 2, 2, 8, 3, 6, 8, 8, 8, 2, 8, 8, 3, 3, 1, 3, 2, 2, 1, 3, 2], [8, 1, 3, 6, 8, 8, 6, 6, 3, 3, 2, 2, 3, 8, 8, 8, 8, 8, 8, 8, 1, 3, 3, 8, 2, 3, 6, 2, 8, 2], [3, 3, 3, 6, 3, 2, 2, 2, 6, 3, 2, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 2, 3, 2, 2, 2, 2, 3], [3, 2, 1, 2, 2, 8, 6, 3, 8, 8, 8, 3, 1, 8, 8, 8, 8, 8, 8, 8, 6, 1, 8, 3, 8, 3, 6, 8, 1, 8], [3, 6, 1, 3, 2, 3, 6, 6, 6, 3, 2, 1, 3, 8, 8, 8, 8, 8, 8, 8, 3, 3, 2, 1, 8, 3, 6, 3, 2, 3], [8, 1, 3, 8, 6, 2, 3, 3, 3, 3, 2, 8, 6, 8, 8, 8, 8, 8, 8, 8, 2, 8, 8, 3, 8, 2, 3, 1, 3, 2], [3, 6, 3, 2, 8, 6, 6, 3, 8, 3, 1, 2, 3, 8, 8, 8, 8, 8, 8, 8, 3, 6, 8, 6, 1, 2, 1, 3, 3, 6], [3, 8, 8, 2, 3, 8, 3, 6, 8, 8, 3, 1, 3, 3, 8, 8, 2, 2, 2, 2, 3, 8, 1, 1, 3, 3, 2, 3, 1, 3], [3, 3, 6, 8, 1, 6, 6, 2, 8, 6, 6, 1, 8, 1, 2, 2, 1, 6, 8, 3, 2, 6, 8, 6, 8, 8, 6, 2, 8, 3], [8, 3, 3, 1, 8, 3, 2, 3, 3, 3, 8, 3, 3, 3, 3, 2, 3, 8, 3, 1, 3, 6, 6, 6, 6, 6, 3, 6, 2, 3], [3, 6, 8, 3, 2, 1, 8, 6, 6, 8, 6, 6, 1, 6, 6, 1, 3, 3, 6, 2, 6, 1, 3, 3, 8, 1, 2, 2, 3, 3], [1, 8, 3, 6, 3, 2, 6, 8, 8, 1, 6, 6, 8, 6, 6, 6, 2, 6, 8, 3, 8, 1, 3, 8, 2, 6, 3, 2, 6, 6], [8, 8, 6, 8, 1, 1, 8, 2, 2, 3, 6, 2, 8, 3, 8, 2, 1, 1, 8, 6, 8, 6, 8, 6, 3, 3, 3, 3, 2, 3], [1, 3, 8, 1, 3, 1, 6, 3, 6, 8, 2, 3, 3, 8, 2, 2, 2, 1, 3, 2, 8, 8, 3, 8, 6, 6, 3, 8, 3, 8], [6, 2, 6, 2, 8, 2, 3, 3, 3, 3, 1, 3, 3, 3, 2, 6, 3, 8, 2, 3, 6, 3, 3, 2, 2, 3, 8, 8, 1, 3]], "output": [[6, 8, 6, 8, 8, 8, 8, 6, 6, 3, 8, 6, 2, 3, 8, 1, 2, 8, 1, 3, 8, 3, 3, 6, 6, 1, 2, 6, 2, 2], [2, 3, 3, 2, 2, 3, 6, 2, 6, 2, 8, 1, 3, 8, 1, 8, 1, 8, 8, 8, 8, 2, 2, 3, 2, 1, 2, 8, 6, 3], [2, 3, 8, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 8, 2, 6, 6, 2, 8, 3, 8, 8, 3, 2, 3, 3, 3, 2], [8, 6, 8, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 1, 1, 2, 1, 2, 6, 8, 2, 6, 2, 1, 8, 3, 3, 8], [6, 8, 6, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 8, 1, 1, 2, 1, 8, 3, 8, 2, 3, 6, 8, 2], [3, 8, 3, 3, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 8, 6, 3, 2, 6, 1, 6, 6, 2, 8, 8, 3, 2, 6, 6], [2, 6, 3, 2, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 3, 8, 3, 3, 6, 3, 1, 8, 8, 1, 2, 3, 1, 8, 8], [3, 8, 1, 6, 1, 8, 1, 3, 8, 3, 2, 3, 2, 8, 1, 3, 1, 2, 2, 8, 1, 6, 3, 3, 3, 6, 2, 2, 8, 6], [8, 3, 3, 8, 3, 8, 2, 2, 8, 8, 8, 8, 8, 1, 1, 6, 3, 3, 6, 2, 2, 6, 1, 3, 3, 6, 3, 1, 3, 3], [2, 3, 3, 2, 3, 2, 6, 2, 3, 6, 8, 3, 3, 8, 3, 6, 1, 3, 3, 8, 8, 1, 6, 6, 8, 8, 1, 6, 2, 6], [3, 6, 3, 3, 3, 2, 3, 6, 1, 6, 3, 8, 2, 8, 2, 3, 2, 6, 3, 6, 6, 8, 3, 6, 6, 1, 6, 8, 8, 6], [8, 3, 3, 1, 2, 2, 6, 8, 2, 3, 6, 8, 3, 2, 2, 6, 3, 2, 1, 2, 6, 3, 6, 8, 8, 8, 1, 8, 1, 6], [1, 8, 8, 1, 6, 6, 8, 2, 8, 2, 1, 2, 8, 8, 1, 8, 2, 8, 3, 8, 3, 3, 8, 8, 2, 3, 3, 3, 3, 3], [8, 8, 3, 8, 3, 2, 8, 6, 3, 3, 1, 3, 2, 1, 6, 6, 8, 3, 6, 6, 3, 6, 3, 1, 8, 1, 2, 6, 3, 8], [8, 6, 6, 3, 2, 6, 6, 8, 6, 1, 3, 2, 8, 3, 1, 2, 8, 3, 6, 2, 8, 8, 3, 2, 2, 6, 1, 8, 6, 3], [1, 8, 1, 6, 2, 3, 2, 2, 1, 8, 2, 2, 8, 3, 6, 8, 8, 8, 2, 8, 8, 3, 3, 1, 3, 2, 2, 1, 3, 2], [8, 1, 3, 6, 8, 8, 6, 6, 3, 3, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4, 1, 3, 3, 8, 2, 3, 6, 2, 8, 2], [3, 3, 3, 6, 3, 2, 2, 2, 6, 3, 2, 3, 3, 4, 4, 4, 4, 4, 4, 4, 8, 3, 3, 2, 3, 2, 2, 2, 2, 3], [3, 2, 1, 2, 2, 8, 6, 3, 8, 8, 8, 3, 1, 4, 4, 4, 4, 4, 4, 4, 6, 1, 8, 3, 8, 3, 6, 8, 1, 8], [3, 6, 1, 3, 2, 3, 6, 6, 6, 3, 2, 1, 3, 4, 4, 4, 4, 4, 4, 4, 3, 3, 2, 1, 8, 3, 6, 3, 2, 3], [8, 1, 3, 8, 6, 2, 3, 3, 3, 3, 2, 8, 6, 4, 4, 4, 4, 4, 4, 4, 2, 8, 8, 3, 8, 2, 3, 1, 3, 2], [3, 6, 3, 2, 8, 6, 6, 3, 8, 3, 1, 2, 3, 4, 4, 4, 4, 4, 4, 4, 3, 6, 8, 6, 1, 2, 1, 3, 3, 6], [3, 8, 8, 2, 3, 8, 3, 6, 8, 8, 3, 1, 3, 3, 8, 8, 2, 2, 2, 2, 3, 8, 1, 1, 3, 3, 2, 3, 1, 3], [3, 3, 6, 8, 1, 6, 6, 2, 8, 6, 6, 1, 8, 1, 2, 2, 1, 6, 8, 3, 2, 6, 8, 6, 8, 8, 6, 2, 8, 3], [8, 3, 3, 1, 8, 3, 2, 3, 3, 3, 8, 3, 3, 3, 3, 2, 3, 8, 3, 1, 3, 6, 6, 6, 6, 6, 3, 6, 2, 3], [3, 6, 8, 3, 2, 1, 8, 6, 6, 8, 6, 6, 1, 6, 6, 1, 3, 3, 6, 2, 6, 1, 3, 3, 8, 1, 2, 2, 3, 3], [1, 8, 3, 6, 3, 2, 6, 8, 8, 1, 6, 6, 8, 6, 6, 6, 2, 6, 8, 3, 8, 1, 3, 8, 2, 6, 3, 2, 6, 6], [8, 8, 6, 8, 1, 1, 8, 2, 2, 3, 6, 2, 8, 3, 8, 2, 1, 1, 8, 6, 8, 6, 8, 6, 3, 3, 3, 3, 2, 3], [1, 3, 8, 1, 3, 1, 6, 3, 6, 8, 2, 3, 3, 8, 2, 2, 2, 1, 3, 2, 8, 8, 3, 8, 6, 6, 3, 8, 3, 8], [6, 2, 6, 2, 8, 2, 3, 3, 3, 3, 1, 3, 3, 3, 2, 6, 3, 8, 2, 3, 6, 3, 3, 2, 2, 3, 8, 8, 1, 3]]}], "test": [{"input": [[6, 8, 3, 3, 3, 8, 1, 8, 3, 8, 8, 1, 6, 3, 1, 2, 3, 1, 1, 1, 3, 1, 2, 2, 6, 8, 2, 3, 8, 6], [1, 6, 6, 8, 8, 1, 3, 3, 6, 3, 8, 8, 2, 1, 1, 3, 6, 8, 8, 3, 1, 2, 1, 8, 2, 3, 8, 8, 8, 2], [8, 8, 3, 6, 3, 1, 6, 8, 3, 8, 6, 3, 1, 2, 8, 1, 8, 2, 1, 3, 2, 1, 1, 1, 1, 1, 1, 8, 3, 6], [1, 3, 1, 2, 8, 1, 8, 2, 2, 2, 1, 3, 1, 8, 3, 6, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 2, 6, 3], [8, 1, 2, 3, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 3, 8, 1, 1, 1, 1, 1, 1, 1, 8, 3, 6, 8], [6, 1, 3, 1, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 3, 1, 6, 1, 1, 1, 1, 1, 6, 2, 8, 3], [3, 3, 3, 3, 8, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 3, 1, 1, 6, 2, 8, 8, 8, 8, 8, 8, 1, 3], [3, 3, 1, 3, 2, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 3, 2, 6, 3, 2, 1, 8, 8, 8, 2, 8], [1, 8, 3, 2, 8, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8, 8, 2, 8, 3, 1, 3, 3, 6, 1, 3, 1], [8, 1, 2, 3, 1, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 8, 6, 6, 1, 3, 8, 3, 3, 2, 8, 8, 8, 1], [3, 3, 1, 1, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 8, 1, 8, 1, 8, 6, 2, 8, 1, 1, 1, 6, 3], [6, 1, 1, 2, 1, 6, 8, 3, 2, 2, 8, 1, 6, 3, 8, 2, 6, 3, 2, 1, 3, 3, 6, 1, 2, 8, 6, 2, 2, 2], [1, 3, 2, 8, 1, 2, 8, 8, 1, 3, 2, 2, 2, 2, 3, 3, 3, 8, 3, 2, 1, 1, 6, 6, 3, 8, 3, 3, 1, 6], [8, 1, 2, 6, 3, 1, 3, 2, 8, 1, 3, 3, 8, 1, 8, 3, 6, 6, 8, 3, 1, 8, 1, 3, 3, 2, 3, 3, 6, 3], [8, 8, 1, 3, 2, 8, 1, 1, 2, 1, 2, 1, 8, 1, 1, 3, 3, 3, 8, 8, 8, 3, 3, 3, 1, 8, 6, 1, 1, 3], [6, 8, 3, 2, 8, 1, 3, 1, 1, 3, 1, 1, 8, 3, 8, 8, 3, 3, 3, 6, 3, 3, 3, 1, 3, 6, 3, 2, 8, 6], [3, 8, 1, 1, 8, 2, 3, 3, 2, 8, 1, 6, 1, 6, 6, 8, 6, 3, 1, 8, 3, 8, 8, 8, 1, 1, 6, 3, 3, 1], [8, 8, 1, 2, 3, 6, 3, 3, 1, 8, 8, 3, 3, 6, 8, 1, 8, 1, 2, 2, 3, 8, 3, 8, 8, 2, 6, 8, 6, 1], [3, 1, 8, 2, 3, 3, 6, 3, 3, 6, 3, 1, 1, 3, 1, 1, 8, 1, 3, 1, 8, 2, 8, 1, 1, 2, 1, 3, 3, 8], [8, 8, 8, 1, 2, 8, 8, 3, 1, 1, 3, 3, 3, 3, 6, 3, 3, 3, 3, 3, 3, 1, 3, 8, 2, 8, 8, 1, 2, 8], [6, 8, 3, 8, 1, 2, 8, 3, 8, 3, 1, 8, 3, 3, 1, 3, 3, 3, 3, 3, 3, 8, 2, 8, 8, 8, 3, 3, 1, 1], [8, 1, 6, 3, 1, 2, 8, 8, 1, 1, 3, 8, 2, 3, 8, 3, 3, 3, 3, 3, 3, 3, 8, 3, 8, 3, 3, 1, 3, 1], [2, 1, 2, 2, 1, 8, 6, 3, 1, 3, 8, 8, 8, 2, 2, 3, 3, 3, 3, 3, 3, 8, 8, 1, 3, 1, 1, 3, 2, 6], [1, 1, 3, 6, 6, 3, 2, 2, 8, 2, 6, 3, 8, 6, 2, 3, 3, 3, 3, 3, 3, 3, 1, 1, 3, 3, 8, 3, 3, 3], [1, 3, 6, 1, 8, 3, 2, 1, 3, 3, 1, 3, 8, 3, 8, 3, 3, 3, 3, 3, 3, 3, 8, 3, 8, 3, 3, 8, 1, 2], [8, 8, 3, 8, 8, 2, 2, 2, 2, 8, 8, 6, 8, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 1, 6, 1, 8, 6, 8, 6], [3, 3, 1, 1, 1, 8, 8, 3, 3, 3, 2, 8, 2, 3, 3, 3, 3, 3, 6, 8, 8, 2, 2, 8, 1, 1, 2, 1, 8, 8], [6, 6, 3, 3, 3, 6, 3, 3, 8, 8, 8, 8, 1, 3, 6, 8, 3, 3, 8, 1, 1, 1, 6, 1, 2, 6, 2, 6, 3, 8], [1, 2, 8, 3, 2, 1, 3, 3, 3, 3, 1, 3, 8, 6, 6, 1, 8, 1, 6, 2, 1, 6, 3, 3, 3, 8, 3, 8, 1, 8], [8, 6, 2, 6, 3, 8, 2, 8, 8, 3, 1, 1, 6, 1, 1, 2, 1, 8, 1, 2, 1, 3, 1, 8, 3, 6, 3, 3, 3, 8]], "output": [[6, 8, 3, 3, 3, 8, 1, 8, 3, 8, 8, 1, 6, 3, 1, 2, 3, 1, 1, 1, 3, 1, 2, 2, 6, 8, 2, 3, 8, 6], [1, 6, 6, 8, 8, 1, 3, 3, 6, 3, 8, 8, 2, 1, 1, 3, 6, 8, 8, 3, 1, 2, 1, 8, 2, 3, 8, 8, 8, 2], [8, 8, 3, 6, 3, 1, 6, 8, 3, 8, 6, 3, 1, 2, 8, 1, 8, 2, 1, 3, 2, 4, 4, 4, 4, 4, 1, 8, 3, 6], [1, 3, 1, 2, 8, 1, 8, 2, 2, 2, 1, 3, 1, 8, 3, 6, 3, 1, 1, 3, 1, 4, 4, 4, 4, 4, 1, 2, 6, 3], [8, 1, 2, 3, 8, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 3, 8, 1, 1, 4, 4, 4, 4, 4, 8, 3, 6, 8], [6, 1, 3, 1, 8, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 3, 1, 6, 4, 4, 4, 4, 4, 6, 2, 8, 3], [3, 3, 3, 3, 8, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 3, 1, 1, 6, 2, 8, 8, 8, 8, 8, 8, 1, 3], [3, 3, 1, 3, 2, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 1, 1, 3, 2, 6, 3, 2, 1, 8, 8, 8, 2, 8], [1, 8, 3, 2, 8, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 6, 8, 8, 8, 2, 8, 3, 1, 3, 3, 6, 1, 3, 1], [8, 1, 2, 3, 1, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 8, 6, 6, 1, 3, 8, 3, 3, 2, 8, 8, 8, 1], [3, 3, 1, 1, 2, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 8, 1, 8, 1, 8, 6, 2, 8, 1, 1, 1, 6, 3], [6, 1, 1, 2, 1, 6, 8, 3, 2, 2, 8, 1, 6, 3, 8, 2, 6, 3, 2, 1, 3, 3, 6, 1, 2, 8, 6, 2, 2, 2], [1, 3, 2, 8, 1, 2, 8, 8, 1, 3, 2, 2, 2, 2, 3, 3, 3, 8, 3, 2, 1, 1, 6, 6, 3, 8, 3, 3, 1, 6], [8, 1, 2, 6, 3, 1, 3, 2, 8, 1, 3, 3, 8, 1, 8, 3, 6, 6, 8, 3, 1, 8, 1, 3, 3, 2, 3, 3, 6, 3], [8, 8, 1, 3, 2, 8, 1, 1, 2, 1, 2, 1, 8, 1, 1, 3, 3, 3, 8, 8, 8, 3, 3, 3, 1, 8, 6, 1, 1, 3], [6, 8, 3, 2, 8, 1, 3, 1, 1, 3, 1, 1, 8, 3, 8, 8, 3, 3, 3, 6, 3, 3, 3, 1, 3, 6, 3, 2, 8, 6], [3, 8, 1, 1, 8, 2, 3, 3, 2, 8, 1, 6, 1, 6, 6, 8, 6, 3, 1, 8, 3, 8, 8, 8, 1, 1, 6, 3, 3, 1], [8, 8, 1, 2, 3, 6, 3, 3, 1, 8, 8, 3, 3, 6, 8, 1, 8, 1, 2, 2, 3, 8, 3, 8, 8, 2, 6, 8, 6, 1], [3, 1, 8, 2, 3, 3, 6, 3, 3, 6, 3, 1, 1, 3, 1, 1, 8, 1, 3, 1, 8, 2, 8, 1, 1, 2, 1, 3, 3, 8], [8, 8, 8, 1, 2, 8, 8, 3, 1, 1, 3, 3, 3, 3, 6, 4, 4, 4, 4, 4, 4, 1, 3, 8, 2, 8, 8, 1, 2, 8], [6, 8, 3, 8, 1, 2, 8, 3, 8, 3, 1, 8, 3, 3, 1, 4, 4, 4, 4, 4, 4, 8, 2, 8, 8, 8, 3, 3, 1, 1], [8, 1, 6, 3, 1, 2, 8, 8, 1, 1, 3, 8, 2, 3, 8, 4, 4, 4, 4, 4, 4, 3, 8, 3, 8, 3, 3, 1, 3, 1], [2, 1, 2, 2, 1, 8, 6, 3, 1, 3, 8, 8, 8, 2, 2, 4, 4, 4, 4, 4, 4, 8, 8, 1, 3, 1, 1, 3, 2, 6], [1, 1, 3, 6, 6, 3, 2, 2, 8, 2, 6, 3, 8, 6, 2, 4, 4, 4, 4, 4, 4, 3, 1, 1, 3, 3, 8, 3, 3, 3], [1, 3, 6, 1, 8, 3, 2, 1, 3, 3, 1, 3, 8, 3, 8, 4, 4, 4, 4, 4, 4, 3, 8, 3, 8, 3, 3, 8, 1, 2], [8, 8, 3, 8, 8, 2, 2, 2, 2, 8, 8, 6, 8, 3, 3, 4, 4, 4, 4, 4, 4, 2, 2, 1, 6, 1, 8, 6, 8, 6], [3, 3, 1, 1, 1, 8, 8, 3, 3, 3, 2, 8, 2, 3, 3, 3, 3, 3, 6, 8, 8, 2, 2, 8, 1, 1, 2, 1, 8, 8], [6, 6, 3, 3, 3, 6, 3, 3, 8, 8, 8, 8, 1, 3, 6, 8, 3, 3, 8, 1, 1, 1, 6, 1, 2, 6, 2, 6, 3, 8], [1, 2, 8, 3, 2, 1, 3, 3, 3, 3, 1, 3, 8, 6, 6, 1, 8, 1, 6, 2, 1, 6, 3, 3, 3, 8, 3, 8, 1, 8], [8, 6, 2, 6, 3, 8, 2, 8, 8, 3, 1, 1, 6, 1, 1, 2, 1, 8, 1, 2, 1, 3, 1, 8, 3, 6, 3, 3, 3, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/2546ccf6.json b/data/arc-agi/evaluation/2546ccf6.json
deleted file mode 100644
index 258447a..0000000
--- a/data/arc-agi/evaluation/2546ccf6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 6, 0, 0, 0, 4, 6, 4, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 4, 0, 6, 0, 4, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 4, 4, 0, 6, 0, 4, 4, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 4, 0, 6, 0, 4, 0, 0, 6, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 6, 0, 0, 4, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 4, 4, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 4, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 4, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 6, 0, 0, 0, 4, 6, 4, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 4, 0, 6, 0, 4, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 4, 4, 0, 6, 0, 4, 4, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 4, 0, 6, 0, 4, 0, 0, 6, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 6, 0, 0, 4, 0, 6, 0, 4, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 4, 4, 0, 6, 0, 4, 4, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 4, 0, 6, 0, 4, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 4, 6, 4, 0, 0, 0, 6, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [3, 0, 3, 3, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 3, 3, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 3, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 3, 0, 2, 0, 3, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 3, 3, 0, 2, 0, 3, 3, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [3, 0, 3, 3, 2, 3, 3, 0, 3, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 1, 0, 0, 2, 0, 0, 1, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 1, 1, 2, 1, 1, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 1, 0, 2, 0, 1, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 1, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 1, 1, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 1, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0]], "output": [[0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [3, 0, 3, 3, 2, 3, 3, 0, 3, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 3, 3, 0, 2, 0, 3, 3, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 3, 0, 2, 0, 3, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 3, 0, 2, 0, 3, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 3, 3, 0, 2, 0, 3, 3, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [3, 0, 3, 3, 2, 3, 3, 0, 3, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 1, 0, 0, 2, 0, 0, 1, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 1, 1, 2, 1, 1, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 1, 0, 2, 0, 1, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 1, 0, 2, 0, 1, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 1, 1, 2, 1, 1, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 1, 0, 0, 2, 0, 0, 1, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 8, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 8, 2, 2, 2, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 8, 0, 2, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 2, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 1, 1, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 1, 0, 1, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 1, 0, 8, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 1, 0, 8, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 1, 0, 1, 8, 1, 0, 1, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 1, 1, 0, 8, 0, 1, 1, 0, 0], [0, 0, 4, 4, 4, 8, 4, 4, 4, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 8, 0, 4, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 4, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 4, 4, 4, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 8, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 8, 2, 2, 2, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 8, 0, 2, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 2, 0, 8, 0, 2, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 8, 2, 2, 2, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 8, 0, 0, 2, 0, 0, 8, 0, 0, 1, 1, 0, 8, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 1, 0, 1, 8, 1, 0, 1, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 1, 0, 8, 0, 1, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 1, 0, 8, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 1, 0, 1, 8, 1, 0, 1, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 1, 1, 0, 8, 0, 1, 1, 0, 0], [0, 0, 4, 4, 4, 8, 4, 4, 4, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 8, 0, 4, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 4, 0, 8, 0, 4, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 8, 4, 4, 4, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/256b0a75.json b/data/arc-agi/evaluation/256b0a75.json
deleted file mode 100644
index f3eef73..0000000
--- a/data/arc-agi/evaluation/256b0a75.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 8, 0, 0, 0, 9, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6, 7, 7, 4, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6, 7, 7, 4, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 7, 6, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [2, 2, 2, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 7, 7, 7, 7, 8, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 7, 7, 7, 7, 8, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 7, 7, 7, 7, 8, 7, 7, 7, 7, 7, 7], [4, 4, 4, 4, 4, 7, 7, 7, 7, 8, 7, 7, 7, 7, 8, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 7, 7, 7, 7, 8, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 7, 7, 7, 7, 8, 7, 7, 7, 9, 9, 9], [7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 1, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 1, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 1, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 7, 7, 7, 7, 1, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 1, 7, 0, 0, 0, 9, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 1, 7, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4]], "output": [[0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 4, 1, 6, 1, 1, 1, 1, 0, 0, 1, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 9, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 8, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 7, 7, 7, 7], [0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 7, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 3, 1, 1, 1, 1, 1, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 1, 1, 1, 7, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 1, 1, 1, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 3, 1, 1, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 3, 1, 1, 7, 0, 0, 0, 0, 0, 0, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 1, 3, 3, 7, 9, 5, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 3, 3, 3, 9, 6, 3, 3, 0, 9, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 3, 3, 3, 9, 6, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 3, 3, 3, 9, 6, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 6, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 6, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 6, 6, 6, 6], [3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3], [5, 5, 5, 5, 3, 3, 8, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3], [6, 6, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3], [1, 1, 1, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3], [6, 6, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 2, 0, 0, 0, 3, 3, 3, 3, 3, 3, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 9, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 9, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 1, 3, 3, 9, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[7, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[7, 0, 0, 0, 0, 0, 2, 6, 9, 6, 7, 6, 4, 6, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 6, 6, 6, 7, 6, 4, 6, 6, 0, 2, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 2, 6, 6, 6, 7, 6, 4, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 2, 6, 6, 6, 7, 6, 4, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 6, 6, 6, 7, 6, 4, 6, 6, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 6, 6, 6, 7, 6, 4, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 6, 6, 6, 7, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 6, 6, 6, 7, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 7, 6, 6, 6, 6, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 8, 6, 6, 6, 6, 6, 6, 6, 8, 6, 6, 6, 9, 9, 9, 9, 9, 9, 9, 9], [3, 3, 3, 3, 6, 6, 8, 6, 6, 6, 6, 6, 6, 6, 8, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7], [6, 6, 6, 6, 6, 6, 8, 6, 6, 6, 6, 6, 6, 6, 8, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 8, 6, 6, 6, 6, 6, 6, 6, 8, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 8, 6, 6, 6, 6, 6, 6, 6, 8, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 6, 6, 6, 4, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6, 4, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6, 4, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6, 4, 6, 6, 6, 6, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 6, 5, 6, 4, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 5, 6, 4, 6, 6, 6, 6, 6, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 5, 6, 4, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 5, 6, 4, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 5, 6, 4, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/2685904e.json b/data/arc-agi/evaluation/2685904e.json
deleted file mode 100644
index 9b5f3ca..0000000
--- a/data/arc-agi/evaluation/2685904e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 6, 4, 3, 4, 7, 3, 8, 3, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 3, 0], [0, 0, 0, 3, 0, 0, 3, 0, 3, 0], [0, 0, 0, 3, 0, 0, 3, 0, 3, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 6, 4, 3, 4, 7, 3, 8, 3, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 4, 6, 2, 1, 9, 2, 9, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 4, 6, 2, 1, 9, 2, 9, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 1, 4, 4, 6, 3, 1, 6, 3, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 4, 4, 6, 0, 0, 6, 0, 6], [4, 0, 4, 4, 6, 0, 0, 6, 0, 6], [4, 0, 4, 4, 6, 0, 0, 6, 0, 6], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 1, 4, 4, 6, 3, 1, 6, 3, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 3, 2, 3, 1, 1, 3, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 2, 0, 0, 0, 0, 0, 0], [2, 0, 0, 2, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 3, 2, 3, 1, 1, 3, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 1, 2, 1, 2, 1, 1, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 1, 1, 0, 0, 0], [0, 1, 0, 1, 0, 1, 1, 0, 0, 0], [0, 1, 0, 1, 0, 1, 1, 0, 0, 0], [0, 1, 0, 1, 0, 1, 1, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 1, 2, 1, 2, 1, 1, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 3, 1, 1, 1, 1, 4, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 4, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 3, 1, 1, 1, 1, 4, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 6, 4, 6, 2, 4, 4, 3, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 6, 0, 6, 2, 0, 0, 3, 0], [2, 3, 6, 0, 6, 2, 0, 0, 3, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 6, 4, 6, 2, 4, 4, 3, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/2697da3f.json b/data/arc-agi/evaluation/2697da3f.json
deleted file mode 100644
index 2839264..0000000
--- a/data/arc-agi/evaluation/2697da3f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 4, 0], [0, 0, 0, 4, 4, 4, 0], [0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 4, 4, 4, 0], [0, 4, 4, 4, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0], [4, 4, 4, 0, 4, 0, 0, 0, 0, 0, 4, 0, 4, 4, 4], [0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0], [4, 4, 4, 0, 4, 0, 0, 0, 0, 0, 4, 0, 4, 4, 4], [0, 0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 0], [0, 4, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 0, 4, 4, 0], [4, 0, 4, 4, 0, 0, 0, 4, 4, 0, 4], [0, 4, 4, 0, 0, 0, 0, 0, 4, 4, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 0, 0], [0, 0, 4, 4, 4, 4, 0, 0], [0, 0, 0, 4, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 4, 0, 4, 0], [4, 4, 4, 4, 0, 0, 0, 4, 4, 4, 4], [0, 4, 0, 4, 0, 0, 0, 4, 0, 4, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 4, 0, 0, 0], [4, 0, 4, 4, 4, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 0], [4, 0, 4, 4, 4, 0, 0, 0], [4, 0, 0, 0, 4, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0], [4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4], [4, 0, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 0, 4], [0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0], [4, 0, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 0, 4], [4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4], [0, 0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 4, 4, 4, 0, 0, 0], [0, 0, 4, 4, 0, 0, 4, 0, 0, 0], [0, 4, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 4, 0, 0, 0], [0, 0, 4, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 0, 4, 0], [0, 4, 4, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 4, 4, 0], [4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4], [0, 4, 4, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 4, 4, 0], [0, 4, 0, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 0, 4, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/2753e76c.json b/data/arc-agi/evaluation/2753e76c.json
deleted file mode 100644
index bd4a6e9..0000000
--- a/data/arc-agi/evaluation/2753e76c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8], [0, 2, 2], [0, 0, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 2, 2, 0], [0, 0, 0, 2, 2, 2, 0, 0, 4, 4, 0, 0, 0, 2, 2, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 2, 2, 2, 0, 0, 0], [8, 8, 8, 8, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [8, 8, 8, 8, 0, 0, 0, 3, 3, 3, 0, 0, 2, 2, 2, 2], [8, 8, 8, 8, 0, 0, 0, 3, 3, 3, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 2, 2, 2, 2], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2], [0, 3, 3, 3], [0, 0, 8, 8], [0, 0, 0, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 8, 8, 8, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 8, 8, 0, 8, 8, 8, 0, 0], [0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 3, 3, 3, 0, 1, 1, 1, 1, 1], [2, 2, 2, 0, 0, 0, 0, 3, 3, 3, 0, 1, 1, 1, 1, 1], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1], [1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 1, 1, 1, 1, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1], [0, 0, 8, 8, 8], [0, 0, 0, 2, 2], [0, 0, 0, 0, 3]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 8, 8], [0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 4, 4, 0, 0, 0, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3], [0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 4, 4, 4, 0, 3, 3, 3, 3, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3], [0, 4, 4, 4, 4], [0, 0, 0, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/27a77e38.json b/data/arc-agi/evaluation/27a77e38.json
deleted file mode 100644
index d1043e0..0000000
--- a/data/arc-agi/evaluation/27a77e38.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 3], [5, 5, 5], [0, 0, 0]], "output": [[2, 2, 3], [5, 5, 5], [0, 2, 0]]}, {"input": [[3, 6, 4, 2, 4], [8, 4, 3, 3, 4], [5, 5, 5, 5, 5], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[3, 6, 4, 2, 4], [8, 4, 3, 3, 4], [5, 5, 5, 5, 5], [0, 0, 0, 0, 0], [0, 0, 4, 0, 0]]}, {"input": [[1, 9, 9, 6, 1, 8, 4], [4, 6, 7, 8, 9, 7, 1], [9, 3, 1, 4, 1, 3, 6], [5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[1, 9, 9, 6, 1, 8, 4], [4, 6, 7, 8, 9, 7, 1], [9, 3, 1, 4, 1, 3, 6], [5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0]]}], "test": [{"input": [[9, 1, 2, 8, 4, 9, 8, 2, 1], [4, 4, 3, 1, 2, 7, 6, 7, 9], [2, 1, 6, 9, 7, 8, 4, 3, 6], [9, 8, 6, 3, 4, 2, 9, 1, 7], [5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[9, 1, 2, 8, 4, 9, 8, 2, 1], [4, 4, 3, 1, 2, 7, 6, 7, 9], [2, 1, 6, 9, 7, 8, 4, 3, 6], [9, 8, 6, 3, 4, 2, 9, 1, 7], [5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/27f8ce4f.json b/data/arc-agi/evaluation/27f8ce4f.json
deleted file mode 100644
index 2702f6f..0000000
--- a/data/arc-agi/evaluation/27f8ce4f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 1], [8, 6, 1], [4, 9, 6]], "output": [[8, 8, 1, 8, 8, 1, 0, 0, 0], [8, 6, 1, 8, 6, 1, 0, 0, 0], [4, 9, 6, 4, 9, 6, 0, 0, 0], [8, 8, 1, 0, 0, 0, 0, 0, 0], [8, 6, 1, 0, 0, 0, 0, 0, 0], [4, 9, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[7, 7, 1], [4, 7, 1], [3, 3, 7]], "output": [[7, 7, 1, 7, 7, 1, 0, 0, 0], [4, 7, 1, 4, 7, 1, 0, 0, 0], [3, 3, 7, 3, 3, 7, 0, 0, 0], [0, 0, 0, 7, 7, 1, 0, 0, 0], [0, 0, 0, 4, 7, 1, 0, 0, 0], [0, 0, 0, 3, 3, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 1], [0, 0, 0, 0, 0, 0, 4, 7, 1], [0, 0, 0, 0, 0, 0, 3, 3, 7]]}, {"input": [[4, 5, 4], [2, 2, 5], [5, 5, 4]], "output": [[0, 0, 0, 4, 5, 4, 0, 0, 0], [0, 0, 0, 2, 2, 5, 0, 0, 0], [0, 0, 0, 5, 5, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 5, 4], [0, 0, 0, 0, 0, 0, 2, 2, 5], [0, 0, 0, 0, 0, 0, 5, 5, 4], [4, 5, 4, 4, 5, 4, 0, 0, 0], [2, 2, 5, 2, 2, 5, 0, 0, 0], [5, 5, 4, 5, 5, 4, 0, 0, 0]]}, {"input": [[1, 2, 3], [9, 9, 1], [2, 9, 4]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 3, 1, 2, 3, 0, 0, 0], [9, 9, 1, 9, 9, 1, 0, 0, 0], [2, 9, 4, 2, 9, 4, 0, 0, 0], [0, 0, 0, 1, 2, 3, 0, 0, 0], [0, 0, 0, 9, 9, 1, 0, 0, 0], [0, 0, 0, 2, 9, 4, 0, 0, 0]]}], "test": [{"input": [[9, 6, 7], [8, 7, 7], [2, 8, 7]], "output": [[0, 0, 0, 0, 0, 0, 9, 6, 7], [0, 0, 0, 0, 0, 0, 8, 7, 7], [0, 0, 0, 0, 0, 0, 2, 8, 7], [0, 0, 0, 9, 6, 7, 9, 6, 7], [0, 0, 0, 8, 7, 7, 8, 7, 7], [0, 0, 0, 2, 8, 7, 2, 8, 7], [0, 0, 0, 0, 0, 0, 9, 6, 7], [0, 0, 0, 0, 0, 0, 8, 7, 7], [0, 0, 0, 0, 0, 0, 2, 8, 7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/281123b4.json b/data/arc-agi/evaluation/281123b4.json
deleted file mode 100644
index 1c7940f..0000000
--- a/data/arc-agi/evaluation/281123b4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[8, 8, 8, 0, 3, 5, 0, 5, 5, 3, 9, 0, 0, 0, 3, 0, 0, 0, 0], [8, 0, 8, 8, 3, 5, 5, 5, 5, 3, 0, 0, 9, 9, 3, 4, 4, 0, 4], [8, 0, 0, 8, 3, 5, 0, 5, 5, 3, 0, 0, 0, 9, 3, 0, 4, 0, 4], [0, 0, 8, 8, 3, 0, 0, 5, 5, 3, 9, 9, 9, 0, 3, 0, 4, 4, 0]], "output": [[9, 8, 8, 5], [4, 4, 9, 9], [8, 4, 5, 9], [9, 9, 9, 8]]}], "train": [{"input": [[8, 8, 8, 0, 3, 5, 5, 5, 0, 3, 9, 9, 9, 0, 3, 4, 4, 4, 4], [8, 0, 8, 0, 3, 5, 5, 5, 5, 3, 9, 9, 0, 9, 3, 0, 0, 0, 0], [0, 0, 0, 8, 3, 5, 5, 0, 0, 3, 0, 0, 0, 0, 3, 0, 4, 4, 0], [0, 8, 0, 0, 3, 0, 5, 5, 5, 3, 9, 0, 0, 0, 3, 4, 4, 4, 4]], "output": [[9, 9, 9, 4], [9, 9, 8, 9], [5, 4, 4, 8], [9, 4, 4, 4]]}, {"input": [[0, 0, 8, 8, 3, 5, 5, 0, 0, 3, 0, 9, 9, 9, 3, 4, 0, 4, 0], [8, 8, 8, 8, 3, 0, 5, 0, 5, 3, 0, 9, 0, 9, 3, 4, 0, 4, 0], [8, 8, 0, 8, 3, 5, 0, 5, 5, 3, 0, 0, 0, 9, 3, 0, 4, 0, 4], [0, 8, 8, 0, 3, 0, 0, 0, 5, 3, 9, 0, 0, 9, 3, 0, 0, 0, 0]], "output": [[4, 9, 9, 9], [4, 9, 4, 9], [8, 4, 5, 9], [9, 8, 8, 9]]}, {"input": [[8, 8, 0, 0, 3, 5, 5, 5, 0, 3, 9, 0, 9, 9, 3, 4, 4, 0, 4], [8, 8, 0, 8, 3, 5, 5, 5, 5, 3, 0, 9, 0, 0, 3, 0, 0, 4, 4], [8, 0, 0, 0, 3, 0, 5, 0, 5, 3, 9, 0, 0, 9, 3, 4, 0, 0, 4], [8, 0, 8, 8, 3, 5, 0, 5, 0, 3, 0, 0, 0, 0, 3, 0, 0, 4, 0]], "output": [[9, 4, 9, 9], [8, 9, 4, 4], [9, 5, 0, 9], [8, 0, 4, 8]]}, {"input": [[0, 0, 8, 8, 3, 5, 0, 0, 5, 3, 9, 0, 0, 9, 3, 4, 0, 0, 4], [0, 8, 8, 0, 3, 5, 5, 0, 5, 3, 9, 9, 0, 9, 3, 0, 0, 4, 4], [8, 8, 8, 0, 3, 0, 5, 5, 0, 3, 9, 9, 0, 0, 3, 4, 0, 0, 0], [8, 8, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 4, 4, 4, 0]], "output": [[9, 0, 8, 9], [9, 9, 4, 9], [9, 9, 8, 0], [4, 4, 4, 0]]}, {"input": [[0, 8, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 9, 3, 4, 0, 4, 0], [0, 8, 0, 0, 3, 5, 5, 0, 0, 3, 0, 9, 9, 0, 3, 4, 0, 0, 4], [8, 8, 8, 0, 3, 5, 0, 0, 5, 3, 9, 9, 9, 0, 3, 4, 0, 4, 0], [0, 0, 0, 0, 3, 5, 5, 5, 5, 3, 0, 0, 9, 0, 3, 0, 0, 0, 0]], "output": [[4, 8, 4, 9], [4, 9, 9, 4], [9, 9, 9, 5], [5, 5, 9, 5]]}, {"input": [[0, 8, 8, 0, 3, 5, 5, 5, 5, 3, 9, 9, 0, 9, 3, 4, 0, 0, 4], [8, 0, 8, 0, 3, 0, 5, 0, 5, 3, 0, 0, 0, 9, 3, 4, 0, 4, 4], [8, 8, 0, 8, 3, 0, 0, 0, 0, 3, 9, 9, 0, 9, 3, 0, 4, 0, 4], [8, 8, 0, 8, 3, 5, 5, 0, 0, 3, 9, 9, 0, 0, 3, 0, 0, 0, 0]], "output": [[9, 9, 8, 9], [4, 5, 4, 9], [9, 9, 0, 9], [9, 9, 0, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/292dd178.json b/data/arc-agi/evaluation/292dd178.json
deleted file mode 100644
index 7cd6e51..0000000
--- a/data/arc-agi/evaluation/292dd178.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 1, 1, 8, 1, 8, 8, 8, 8, 8], [8, 1, 8, 8, 1, 8, 8, 8, 8, 8], [8, 1, 8, 8, 1, 8, 8, 8, 8, 8], [8, 1, 1, 1, 1, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 1, 8, 8, 1], [8, 8, 8, 8, 8, 8, 1, 8, 8, 1], [8, 8, 8, 8, 8, 8, 1, 1, 8, 1], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 2, 8, 8, 8, 8, 8, 8], [8, 8, 8, 2, 8, 8, 8, 8, 8, 8], [8, 1, 1, 2, 1, 8, 8, 8, 8, 8], [8, 1, 2, 2, 1, 8, 8, 8, 8, 8], [8, 1, 2, 2, 1, 8, 8, 8, 8, 8], [8, 1, 1, 1, 1, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 1, 2, 2, 1], [8, 8, 8, 8, 8, 8, 1, 2, 2, 1], [8, 8, 8, 8, 8, 8, 1, 1, 2, 1], [8, 8, 8, 8, 8, 8, 8, 8, 2, 8]]}, {"input": [[5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 1, 1, 1, 1, 5, 5, 5], [5, 5, 1, 5, 5, 1, 5, 5, 5], [5, 5, 5, 5, 5, 1, 5, 5, 5], [5, 5, 1, 1, 1, 1, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5]], "output": [[5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 1, 1, 1, 1, 5, 5, 5], [5, 5, 1, 2, 2, 1, 5, 5, 5], [2, 2, 2, 2, 2, 1, 5, 5, 5], [5, 5, 1, 1, 1, 1, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5]]}, {"input": [[9, 1, 9, 1, 1, 9, 9, 9, 9], [9, 1, 9, 9, 1, 9, 9, 9, 9], [9, 1, 9, 9, 1, 9, 9, 9, 9], [9, 1, 1, 1, 1, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 1, 1, 1, 1, 9, 9, 9], [9, 9, 1, 9, 9, 1, 9, 9, 9], [9, 9, 1, 9, 9, 9, 9, 9, 9], [9, 9, 1, 1, 1, 1, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9]], "output": [[9, 1, 2, 1, 1, 9, 9, 9, 9], [9, 1, 2, 2, 1, 9, 9, 9, 9], [9, 1, 2, 2, 1, 9, 9, 9, 9], [9, 1, 1, 1, 1, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 1, 1, 1, 1, 9, 9, 9], [9, 9, 1, 2, 2, 1, 9, 9, 9], [9, 9, 1, 2, 2, 2, 2, 2, 2], [9, 9, 1, 1, 1, 1, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9]]}], "test": [{"input": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4], [4, 1, 4, 1, 1, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4], [4, 1, 4, 4, 1, 4, 4, 4, 1, 4, 4, 1, 4, 4, 4], [4, 1, 4, 4, 1, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4], [4, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 1, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 1, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 1, 4, 1, 1, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[4, 4, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 2, 4, 4, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4], [4, 1, 2, 1, 1, 4, 4, 4, 1, 2, 2, 2, 2, 2, 2], [4, 1, 2, 2, 1, 4, 4, 4, 1, 2, 2, 1, 4, 4, 4], [4, 1, 2, 2, 1, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4], [4, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 1, 2, 2, 1, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 1, 2, 2, 1, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 1, 2, 1, 1, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 2, 4, 4, 4, 4, 4, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/29700607.json b/data/arc-agi/evaluation/29700607.json
deleted file mode 100644
index 9219999..0000000
--- a/data/arc-agi/evaluation/29700607.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 6, 5, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 6, 5, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 5, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 5, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 6, 5, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 5, 3, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 5, 3, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 3, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 3, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 3, 8, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 3, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 4, 6, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 4, 6, 2, 0, 0, 0, 0, 0], [0, 0, 0, 4, 6, 2, 0, 0, 0, 0, 0], [0, 0, 0, 4, 6, 2, 0, 0, 0, 0, 0], [0, 0, 0, 4, 6, 2, 0, 0, 0, 0, 0], [4, 4, 4, 4, 6, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 4, 8, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 4, 8, 5, 0, 0, 0, 0, 0], [0, 0, 0, 4, 8, 5, 0, 0, 0, 0, 0], [0, 0, 0, 4, 8, 5, 0, 0, 0, 0, 0], [0, 0, 0, 4, 8, 5, 0, 0, 0, 0, 0], [0, 0, 0, 4, 8, 5, 0, 0, 0, 0, 0], [0, 0, 0, 4, 8, 5, 0, 0, 0, 0, 0], [0, 0, 0, 4, 8, 5, 0, 0, 0, 0, 0], [4, 4, 4, 4, 8, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/2a5f8217.json b/data/arc-agi/evaluation/2a5f8217.json
deleted file mode 100644
index 1f7452d..0000000
--- a/data/arc-agi/evaluation/2a5f8217.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 1, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0], [0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 8, 0]], "output": [[0, 8, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0], [0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0], [0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 8, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 1, 0, 0], [0, 1, 0, 1, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 9, 9], [0, 0, 1, 1, 0, 0, 0, 0, 9], [0, 0, 0, 1, 0, 7, 0, 0, 0], [6, 6, 6, 0, 0, 7, 7, 0, 0], [6, 0, 6, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 0, 0, 7, 0, 0], [0, 6, 0, 6, 0, 0, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 9, 9], [0, 0, 9, 9, 0, 0, 0, 0, 9], [0, 0, 0, 9, 0, 7, 0, 0, 0], [6, 6, 6, 0, 0, 7, 7, 0, 0], [6, 0, 6, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 9], [1, 1, 1, 0, 0, 1, 0, 0, 0, 9, 9], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 3, 0, 0, 0, 6, 0, 1, 1, 0, 0], [3, 3, 3, 0, 0, 6, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 1, 0, 0, 0, 7, 7, 7, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 7, 0, 0, 0, 6, 0, 0, 0, 0, 9], [7, 7, 7, 0, 0, 6, 0, 0, 0, 9, 9], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0], [0, 3, 0, 0, 0, 6, 0, 9, 9, 0, 0], [3, 3, 3, 0, 0, 6, 0, 0, 9, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 3, 0, 0, 0, 7, 7, 7, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 8, 8, 8, 0, 1, 1, 0, 0], [0, 1, 1, 1, 0, 0, 8, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 6, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 6, 6, 6], [8, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 8, 8, 8, 0, 8, 8, 0, 0], [0, 2, 2, 2, 0, 0, 8, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 6, 0, 0, 0, 0, 2, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 6, 0], [0, 0, 8, 0, 0, 0, 4, 0, 0, 0, 6, 6, 6], [8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/2b01abd0.json b/data/arc-agi/evaluation/2b01abd0.json
deleted file mode 100644
index 7a8a5f4..0000000
--- a/data/arc-agi/evaluation/2b01abd0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 2, 3, 2, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 3, 0, 3, 0, 0, 0], [0, 0, 3, 2, 3, 3, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 3, 2, 2, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 8, 4, 0], [0, 0, 0, 0, 0, 0, 1, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 8, 0, 8, 0, 1, 0, 4, 0, 4, 0], [0, 0, 4, 8, 0, 0, 1, 0, 0, 4, 8, 0], [0, 0, 8, 8, 8, 0, 1, 0, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 6, 6, 5, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0], [0, 0, 5, 6, 6, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 5, 5, 6, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 8, 0, 1, 0, 2, 0, 0, 2, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 1, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 8, 0, 0, 8, 0, 1, 0, 2, 0, 0, 2, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 1, 0, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/2c0b0aff.json b/data/arc-agi/evaluation/2c0b0aff.json
deleted file mode 100644
index 9f6b886..0000000
--- a/data/arc-agi/evaluation/2c0b0aff.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 3, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 8, 8, 8, 3, 8, 0, 0, 0, 8, 8, 3, 3, 8, 8, 8, 0, 0, 0], [0, 0, 8, 3, 3, 3, 8, 3, 3, 3, 0, 0, 0, 3, 8, 8, 8, 8, 8, 3, 0, 0, 0], [0, 0, 8, 8, 3, 8, 8, 8, 3, 8, 0, 0, 0, 8, 8, 8, 3, 8, 8, 8, 0, 0, 0], [0, 0, 8, 8, 8, 8, 3, 8, 8, 8, 0, 0, 0, 8, 8, 3, 3, 3, 8, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 3, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 8, 8, 8, 8, 8, 0, 0, 0], [0, 8, 3, 8, 8, 8, 8, 8, 3, 8, 0, 0, 0, 8, 8, 8, 8, 3, 8, 8, 0, 0, 0], [0, 8, 8, 3, 8, 8, 8, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 3, 3, 3, 8, 3, 8, 3, 8, 0, 8, 3, 8, 8, 8, 8, 8, 3, 0, 0, 0, 0], [0, 8, 8, 3, 8, 8, 8, 8, 8, 8, 0, 3, 3, 3, 8, 8, 3, 8, 8, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 3, 8, 8, 3, 3, 3, 8, 0, 0, 0, 0], [0, 8, 3, 8, 8, 8, 3, 8, 8, 8, 0, 8, 8, 8, 8, 8, 3, 8, 8, 0, 0, 0, 0], [0, 8, 8, 8, 8, 3, 3, 3, 8, 8, 0, 8, 3, 8, 8, 8, 8, 3, 8, 0, 0, 0, 0], [0, 8, 3, 8, 8, 8, 3, 8, 3, 8, 0, 3, 3, 3, 8, 8, 3, 3, 3, 0, 0, 0, 0], [0, 3, 8, 8, 8, 8, 8, 8, 8, 3, 0, 8, 3, 8, 8, 8, 8, 3, 8, 0, 0, 0, 0], [0, 8, 8, 3, 8, 8, 8, 3, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 3, 8, 8, 8, 8, 8, 3], [3, 3, 3, 8, 8, 3, 8, 8], [8, 3, 8, 8, 3, 3, 3, 8], [8, 8, 8, 8, 8, 3, 8, 8], [8, 3, 8, 8, 8, 8, 3, 8], [3, 3, 3, 8, 8, 3, 3, 3], [8, 3, 8, 8, 8, 8, 3, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 8, 8, 3, 8, 8, 8, 3, 8, 0, 0, 3, 8, 8, 8, 3, 8, 8, 8, 3, 8, 0, 0], [0, 8, 8, 3, 3, 3, 8, 8, 8, 3, 0, 0, 8, 8, 3, 8, 8, 8, 8, 3, 3, 3, 0, 0], [0, 8, 8, 8, 3, 8, 8, 8, 8, 8, 0, 0, 8, 3, 3, 3, 8, 8, 8, 8, 3, 8, 0, 0], [0, 8, 3, 8, 8, 8, 8, 3, 8, 8, 0, 0, 8, 8, 3, 8, 3, 8, 3, 8, 8, 8, 0, 0], [0, 8, 8, 8, 3, 8, 3, 3, 3, 8, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 0, 0], [0, 3, 8, 8, 8, 8, 8, 3, 8, 8, 0, 0, 8, 3, 8, 3, 8, 8, 3, 8, 8, 8, 0, 0], [0, 8, 8, 3, 8, 8, 8, 8, 3, 8, 0, 0, 8, 8, 8, 8, 8, 3, 3, 3, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 3, 8, 8, 8, 3, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 3, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 3, 8, 8, 8, 8, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 3, 3, 3, 8, 8, 3, 3, 3, 0, 8, 8, 3, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0], [0, 8, 8, 3, 8, 8, 8, 8, 3, 8, 0, 8, 8, 8, 3, 8, 8, 8, 8, 3, 3, 8, 0, 0], [0, 3, 8, 8, 8, 3, 8, 8, 8, 8, 0, 8, 8, 3, 3, 3, 8, 8, 8, 8, 8, 8, 0, 0], [0, 8, 3, 8, 8, 8, 8, 3, 8, 3, 0, 8, 8, 8, 3, 8, 8, 8, 3, 8, 8, 3, 0, 0], [0, 3, 3, 3, 8, 8, 3, 3, 3, 8, 0, 3, 8, 8, 8, 8, 8, 3, 3, 3, 8, 8, 0, 0], [0, 8, 3, 8, 8, 8, 8, 3, 8, 8, 0, 8, 8, 3, 8, 3, 8, 8, 3, 8, 8, 8, 0, 0], [0, 8, 8, 8, 8, 3, 8, 8, 8, 8, 0, 8, 3, 3, 3, 8, 8, 8, 8, 8, 3, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 3, 8, 8, 8, 3, 3, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 3, 8, 8, 8, 8, 3, 8], [8, 3, 3, 3, 8, 8, 3, 3, 3], [8, 8, 3, 8, 8, 8, 8, 3, 8], [3, 8, 8, 8, 3, 8, 8, 8, 8], [8, 3, 8, 8, 8, 8, 3, 8, 3], [3, 3, 3, 8, 8, 3, 3, 3, 8], [8, 3, 8, 8, 8, 8, 3, 8, 8], [8, 8, 8, 8, 3, 8, 8, 8, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 3, 8, 8, 0, 0, 8, 8, 3, 8, 8, 3, 8, 8, 0, 0, 0, 0], [0, 0, 8, 3, 8, 8, 8, 8, 8, 8, 0, 0, 8, 3, 3, 3, 8, 8, 3, 8, 0, 0, 0, 0], [0, 0, 8, 8, 8, 3, 8, 8, 8, 3, 0, 0, 8, 8, 3, 8, 8, 3, 3, 3, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 3, 8, 8, 3, 0, 0, 8, 8, 8, 8, 8, 8, 3, 8, 0, 0, 0, 0], [0, 0, 8, 8, 8, 3, 8, 8, 8, 8, 0, 0, 3, 8, 8, 8, 3, 8, 8, 3, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 8, 8, 8, 3, 3, 3, 8, 8, 0, 0, 0, 0], [0, 0, 8, 3, 8, 8, 8, 8, 8, 8, 0, 0, 8, 3, 8, 8, 3, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 3, 8, 8, 0, 0, 8, 8, 8, 8, 8, 8, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 3, 8, 8, 8, 3, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 3, 3, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 3, 8, 8, 8, 8, 8, 3, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 3, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 3, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 3, 8, 8, 3, 8, 8], [8, 3, 3, 3, 8, 8, 3, 8], [8, 8, 3, 8, 8, 3, 3, 3], [8, 8, 8, 8, 8, 8, 3, 8], [3, 8, 8, 8, 3, 8, 8, 3], [8, 8, 8, 3, 3, 3, 8, 8], [8, 3, 8, 8, 3, 8, 8, 8], [8, 8, 8, 8, 8, 8, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 3, 8, 8, 8, 3, 8, 0, 0, 0, 3, 8, 8, 3, 8, 8, 3, 8], [0, 0, 3, 3, 3, 8, 3, 3, 3, 0, 0, 0, 8, 8, 3, 8, 8, 3, 3, 3], [0, 0, 8, 3, 8, 8, 8, 3, 8, 0, 0, 0, 8, 3, 3, 3, 8, 8, 3, 8], [0, 0, 8, 8, 8, 3, 8, 8, 8, 0, 0, 0, 8, 8, 3, 8, 8, 8, 8, 8], [0, 0, 8, 3, 8, 8, 8, 8, 8, 0, 0, 0, 3, 8, 8, 8, 8, 3, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 3, 3, 3, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 3, 8, 8, 3, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 8, 8, 8, 8, 8, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 3, 8, 8, 3, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 3, 3, 8, 8, 8, 3, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 3, 8, 8, 8, 3, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 3, 8, 8, 8, 8, 8, 8, 3, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 8, 8, 3, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 3, 8, 8, 3, 3, 3, 8, 8, 3, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 3, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 8, 8, 3, 8, 8, 8, 8], [8, 8, 3, 3, 3, 8, 8, 8, 3, 8, 8], [8, 8, 8, 3, 8, 8, 8, 3, 3, 3, 8], [8, 3, 8, 8, 8, 8, 8, 8, 3, 8, 8], [3, 3, 3, 8, 8, 3, 8, 8, 8, 8, 8], [8, 3, 8, 8, 3, 3, 3, 8, 8, 3, 8], [8, 8, 8, 8, 8, 3, 8, 8, 8, 8, 8]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 3, 8, 8, 8, 3, 8, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 3, 3, 3, 8, 8, 8, 3, 3, 3, 0, 0, 8, 8, 8, 8, 8, 8, 3, 3, 8, 8], [0, 8, 8, 3, 8, 8, 8, 8, 8, 3, 8, 0, 0, 3, 8, 8, 3, 8, 8, 8, 8, 8, 8], [0, 8, 3, 8, 8, 8, 3, 8, 3, 8, 8, 0, 0, 8, 8, 3, 3, 3, 8, 8, 8, 3, 8], [0, 8, 8, 8, 8, 3, 3, 3, 8, 8, 3, 0, 0, 8, 8, 8, 3, 8, 8, 8, 8, 8, 8], [0, 3, 3, 8, 8, 8, 3, 8, 8, 8, 8, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 8, 8, 8, 8, 8, 8, 8, 8, 3, 8, 0, 0, 8, 8, 8, 3, 8, 8, 3, 8, 8, 8], [0, 3, 8, 8, 3, 8, 8, 8, 3, 8, 8, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 8, 8, 8, 8, 8, 8, 3, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 8, 8, 8, 8, 8, 3, 8, 8, 8, 0, 0, 3, 3, 8, 8, 3, 8, 8, 8, 3, 8, 0], [8, 8, 3, 8, 8, 3, 3, 3, 8, 8, 0, 0, 8, 8, 8, 3, 3, 3, 8, 8, 8, 3, 0], [8, 3, 3, 3, 8, 8, 3, 8, 3, 8, 0, 0, 3, 8, 8, 8, 3, 8, 8, 8, 8, 8, 0], [8, 8, 3, 8, 8, 8, 8, 3, 3, 3, 0, 0, 8, 3, 8, 8, 8, 8, 8, 3, 8, 8, 0], [8, 8, 8, 8, 3, 8, 8, 8, 3, 8, 0, 0, 3, 3, 3, 8, 8, 8, 3, 3, 3, 8, 0], [8, 3, 8, 3, 3, 3, 8, 8, 8, 8, 0, 0, 8, 3, 8, 3, 8, 8, 8, 3, 8, 8, 0], [3, 3, 3, 8, 3, 8, 8, 8, 8, 3, 0, 0, 8, 8, 3, 3, 3, 8, 8, 8, 8, 8, 0], [8, 3, 8, 8, 8, 8, 8, 3, 8, 8, 0, 0, 8, 8, 8, 3, 8, 8, 8, 3, 8, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 8, 8, 8, 8, 8, 3, 8, 8, 8], [8, 8, 3, 8, 8, 3, 3, 3, 8, 8], [8, 3, 3, 3, 8, 8, 3, 8, 3, 8], [8, 8, 3, 8, 8, 8, 8, 3, 3, 3], [8, 8, 8, 8, 3, 8, 8, 8, 3, 8], [8, 3, 8, 3, 3, 3, 8, 8, 8, 8], [3, 3, 3, 8, 3, 8, 8, 8, 8, 3], [8, 3, 8, 8, 8, 8, 8, 3, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/2c737e39.json b/data/arc-agi/evaluation/2c737e39.json
deleted file mode 100644
index 018787d..0000000
--- a/data/arc-agi/evaluation/2c737e39.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 1, 3, 1, 0, 0, 0, 0, 0], [0, 4, 4, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 1, 3, 1, 0, 0, 0, 0, 0], [0, 4, 4, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 1, 3, 1, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 5, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 5, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 3, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 2, 2, 3, 3, 0, 0, 0, 0, 0], [0, 1, 0, 3, 3, 8, 8, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 3, 3, 0, 0], [0, 0, 0, 0, 1, 0, 3, 3, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 2, 2, 3, 3, 0, 0, 0, 0, 0], [0, 1, 0, 3, 3, 8, 8, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/2f0c5170.json b/data/arc-agi/evaluation/2f0c5170.json
deleted file mode 100644
index 972a10d..0000000
--- a/data/arc-agi/evaluation/2f0c5170.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 3, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 4, 0, 0, 0, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 4, 4, 4, 0, 0, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 3, 4, 0, 0, 0, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 4, 4, 4, 0, 0, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 3, 4, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 2, 0, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 4, 4, 2, 4, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[0, 0, 4, 4, 0], [0, 4, 4, 2, 4], [0, 0, 4, 4, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 4, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 4, 4, 1, 4, 4, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 4, 4, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 1, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 4, 4, 4, 0], [0, 0, 4, 4, 1, 4, 4], [0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 4, 4, 0, 4, 4, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 4, 2, 4, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 4, 4, 4, 4, 4, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 4, 4, 0, 0, 0], [0, 0, 4, 2, 4, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/310f3251.json b/data/arc-agi/evaluation/310f3251.json
deleted file mode 100644
index 9dc25ad..0000000
--- a/data/arc-agi/evaluation/310f3251.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train":[{"input":[[0,0],[0,7]],"output":[[2,0,2,0,2,0],[0,7,0,7,0,7],[2,0,2,0,2,0],[0,7,0,7,0,7],[2,0,2,0,2,0],[0,7,0,7,0,7]]},{"input":[[0,0,0],[0,0,6],[6,0,0]],"output":[[0,2,0,0,2,0,0,2,0],[0,0,6,0,0,6,0,0,6],[6,0,0,6,0,0,6,0,0],[0,2,0,0,2,0,0,2,0],[0,0,6,0,0,6,0,0,6],[6,0,0,6,0,0,6,0,0],[0,2,0,0,2,0,0,2,0],[0,0,6,0,0,6,0,0,6],[6,0,0,6,0,0,6,0,0]]},{"input":[[0,0,0,0,0],[0,8,0,0,0],[0,8,0,0,0],[0,0,0,0,0],[0,0,0,0,0]],"output":[[2,0,0,0,0,2,0,0,0,0,2,0,0,0,0],[2,8,0,0,0,2,8,0,0,0,2,8,0,0,0],[0,8,0,0,0,0,8,0,0,0,0,8,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[2,0,0,0,0,2,0,0,0,0,2,0,0,0,0],[2,8,0,0,0,2,8,0,0,0,2,8,0,0,0],[0,8,0,0,0,0,8,0,0,0,0,8,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[2,0,0,0,0,2,0,0,0,0,2,0,0,0,0],[2,8,0,0,0,2,8,0,0,0,2,8,0,0,0],[0,8,0,0,0,0,8,0,0,0,0,8,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"input":[[0,0,0,0],[0,0,5,0],[0,0,0,0],[0,5,0,0]],"output":[[0,2,0,0,0,2,0,0,0,2,0,0],[0,0,5,0,0,0,5,0,0,0,5,0],[2,0,0,0,2,0,0,0,2,0,0,0],[0,5,0,0,0,5,0,0,0,5,0,0],[0,2,0,0,0,2,0,0,0,2,0,0],[0,0,5,0,0,0,5,0,0,0,5,0],[2,0,0,0,2,0,0,0,2,0,0,0],[0,5,0,0,0,5,0,0,0,5,0,0],[0,2,0,0,0,2,0,0,0,2,0,0],[0,0,5,0,0,0,5,0,0,0,5,0],[2,0,0,0,2,0,0,0,2,0,0,0],[0,5,0,0,0,5,0,0,0,5,0,0]]},{"input":[[0,0,0,0],[0,0,0,0],[0,0,0,0],[1,0,0,0]],"output":[[0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,2,0,0,0,2,0,0,0,2],[1,0,0,0,1,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,2,0,0,0,2,0,0,0,2],[1,0,0,0,1,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,2,0,0,0,2,0,0,0,2],[1,0,0,0,1,0,0,0,1,0,0,0]]}],"test":[{"input":[[0,0,0,0],[0,0,4,0],[0,0,0,0],[4,0,0,0]],"output":[[0,2,0,0,0,2,0,0,0,2,0,0],[0,0,4,0,0,0,4,0,0,0,4,0],[0,0,0,2,0,0,0,2,0,0,0,2],[4,0,0,0,4,0,0,0,4,0,0,0],[0,2,0,0,0,2,0,0,0,2,0,0],[0,0,4,0,0,0,4,0,0,0,4,0],[0,0,0,2,0,0,0,2,0,0,0,2],[4,0,0,0,4,0,0,0,4,0,0,0],[0,2,0,0,0,2,0,0,0,2,0,0],[0,0,4,0,0,0,4,0,0,0,4,0],[0,0,0,2,0,0,0,2,0,0,0,2],[4,0,0,0,4,0,0,0,4,0,0,0]]}],"name":"310f3251"}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/3194b014.json b/data/arc-agi/evaluation/3194b014.json
deleted file mode 100644
index e56c91a..0000000
--- a/data/arc-agi/evaluation/3194b014.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[6, 6, 6, 7, 7, 7, 0, 0, 6, 0, 0, 6, 0, 0, 6, 6, 0, 0, 6, 6], [0, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 7, 0, 0, 6, 7, 6, 0, 7, 0], [6, 0, 0, 7, 6, 0, 0, 0, 0, 7, 0, 0, 6, 6, 0, 0, 0, 6, 7, 6], [7, 0, 7, 2, 2, 2, 2, 0, 7, 0, 7, 7, 0, 7, 0, 0, 6, 7, 0, 6], [0, 7, 0, 2, 2, 2, 2, 7, 6, 7, 0, 0, 6, 7, 6, 0, 7, 0, 6, 0], [7, 0, 0, 2, 2, 2, 2, 7, 0, 0, 0, 0, 6, 7, 0, 0, 0, 0, 0, 0], [6, 6, 6, 2, 2, 2, 2, 0, 7, 0, 0, 9, 9, 9, 7, 7, 0, 7, 7, 0], [7, 0, 0, 0, 7, 0, 0, 7, 6, 0, 6, 9, 9, 9, 7, 0, 6, 0, 0, 0], [7, 6, 0, 6, 6, 7, 0, 6, 0, 6, 7, 9, 9, 9, 6, 0, 0, 0, 0, 0], [0, 0, 7, 7, 6, 0, 7, 6, 6, 7, 6, 9, 9, 9, 0, 0, 0, 0, 0, 0], [0, 7, 7, 6, 0, 0, 0, 0, 7, 0, 6, 0, 6, 0, 0, 7, 0, 7, 0, 0], [0, 6, 7, 7, 0, 7, 7, 7, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 6, 6], [6, 7, 7, 0, 7, 6, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 7], [7, 6, 6, 0, 6, 7, 0, 6, 0, 6, 7, 6, 0, 0, 6, 7, 0, 0, 7, 6], [6, 0, 0, 6, 0, 7, 4, 4, 4, 4, 4, 0, 0, 7, 6, 0, 6, 0, 0, 0], [7, 0, 7, 0, 0, 0, 4, 4, 4, 4, 4, 7, 0, 7, 6, 0, 0, 0, 0, 7], [6, 6, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 6, 0, 0], [6, 7, 6, 6, 6, 0, 4, 4, 4, 4, 4, 6, 7, 7, 6, 7, 0, 0, 0, 6], [7, 0, 0, 0, 6, 6, 4, 4, 4, 4, 4, 6, 0, 6, 0, 0, 0, 0, 6, 7], [0, 0, 7, 7, 6, 0, 0, 6, 7, 6, 6, 0, 6, 0, 6, 0, 7, 7, 0, 0]], "output": [[4, 4, 4], [4, 4, 4], [4, 4, 4]]}, {"input": [[8, 8, 8, 8, 8, 0, 1, 0, 1, 1, 8, 1, 1, 1, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 8, 1, 1, 0, 0, 0, 8, 0, 5, 5, 5, 5, 5, 8, 1], [0, 0, 0, 0, 0, 8, 1, 0, 0, 8, 1, 1, 1, 5, 5, 5, 5, 5, 8, 0], [1, 8, 0, 1, 8, 0, 0, 8, 8, 8, 8, 1, 8, 5, 5, 5, 5, 5, 1, 0], [0, 8, 0, 9, 9, 9, 9, 8, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 8, 0], [8, 1, 8, 9, 9, 9, 9, 8, 1, 1, 0, 1, 1, 0, 8, 0, 8, 8, 0, 8], [0, 0, 0, 9, 9, 9, 9, 0, 1, 1, 8, 8, 3, 3, 8, 1, 1, 0, 0, 1], [8, 1, 1, 8, 1, 8, 0, 1, 0, 0, 0, 3, 3, 3, 1, 0, 8, 1, 8, 8], [0, 1, 8, 8, 1, 1, 0, 8, 8, 3, 3, 3, 3, 3, 8, 0, 0, 8, 1, 0], [0, 1, 1, 0, 1, 0, 0, 0, 8, 3, 3, 3, 3, 3, 1, 1, 8, 8, 1, 0], [8, 0, 8, 0, 8, 0, 0, 0, 0, 3, 3, 3, 3, 3, 1, 1, 1, 0, 8, 8], [0, 0, 0, 0, 8, 1, 1, 1, 1, 3, 3, 3, 3, 3, 1, 1, 0, 1, 8, 1], [0, 8, 8, 0, 8, 8, 1, 8, 0, 3, 3, 3, 8, 1, 1, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 8, 0, 1, 0, 0, 1, 0, 0, 0, 8, 1, 1, 1, 0], [0, 0, 1, 0, 1, 0, 1, 8, 8, 1, 0, 0, 8, 0, 1, 0, 1, 1, 0, 0], [0, 4, 4, 4, 4, 4, 8, 4, 0, 0, 0, 1, 0, 8, 0, 8, 0, 1, 8, 0], [1, 4, 4, 4, 4, 4, 4, 4, 0, 1, 1, 0, 8, 0, 0, 0, 0, 8, 1, 8], [1, 4, 4, 4, 4, 4, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 8], [0, 1, 0, 0, 0, 1, 8, 1, 0, 8, 0, 1, 0, 0, 8, 0, 0, 8, 1, 0], [8, 0, 1, 0, 0, 1, 0, 8, 0, 1, 1, 0, 1, 8, 0, 8, 0, 0, 1, 0]], "output": [[3, 3, 3], [3, 3, 3], [3, 3, 3]]}, {"input": [[0, 3, 2, 0, 0, 0, 0, 0, 2, 0, 3, 2, 2, 3, 3, 2, 0, 0, 0, 0], [2, 2, 0, 0, 2, 0, 0, 0, 3, 3, 2, 2, 0, 3, 0, 0, 3, 2, 2, 3], [0, 2, 8, 8, 8, 8, 8, 8, 0, 0, 0, 2, 3, 3, 0, 2, 6, 6, 0, 2], [3, 8, 8, 8, 8, 8, 8, 8, 3, 0, 0, 3, 2, 3, 6, 6, 6, 6, 6, 2], [0, 8, 8, 8, 8, 8, 8, 8, 3, 2, 0, 2, 3, 9, 6, 6, 6, 6, 6, 3], [2, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 2, 0, 0, 6, 6, 6, 6, 6, 0], [0, 2, 0, 8, 8, 8, 8, 8, 8, 2, 2, 0, 6, 6, 6, 6, 6, 6, 6, 2], [0, 0, 2, 3, 8, 8, 8, 8, 8, 8, 0, 3, 0, 6, 6, 6, 6, 6, 6, 3], [0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 3, 3, 6, 6, 6, 0, 0, 0, 0], [0, 0, 2, 2, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 2, 3, 2, 2, 3, 3, 2, 2, 0, 2, 2, 0, 2, 0, 0, 2, 0, 2, 2], [3, 0, 0, 3, 2, 0, 3, 0, 0, 2, 4, 4, 4, 0, 0, 0, 2, 0, 2, 3], [0, 0, 0, 0, 2, 0, 2, 0, 0, 4, 4, 4, 4, 0, 0, 3, 0, 2, 0, 2], [3, 2, 0, 0, 0, 3, 0, 0, 4, 4, 4, 4, 4, 3, 2, 3, 2, 0, 2, 0], [3, 2, 2, 0, 2, 0, 0, 0, 4, 4, 4, 4, 4, 3, 2, 0, 3, 0, 2, 2], [2, 3, 0, 0, 2, 2, 0, 3, 0, 4, 4, 4, 4, 3, 2, 0, 0, 0, 3, 2], [2, 2, 0, 3, 0, 2, 0, 3, 0, 2, 3, 2, 2, 2, 0, 2, 2, 3, 0, 3], [2, 2, 0, 0, 0, 0, 0, 3, 2, 3, 0, 2, 0, 0, 0, 2, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 3, 3, 2, 3, 3, 3, 2, 0, 0, 3, 0, 2, 3, 3], [0, 0, 3, 2, 0, 0, 2, 2, 2, 0, 3, 0, 0, 2, 0, 3, 0, 3, 0, 0]], "output": [[8, 8, 8], [8, 8, 8], [8, 8, 8]]}], "test": [{"input": [[0, 9, 9, 7, 0, 0, 9, 7, 7, 7, 0, 7, 0, 0, 7, 0, 9, 0, 0, 0], [0, 0, 7, 3, 3, 3, 3, 0, 7, 7, 0, 0, 0, 0, 6, 6, 6, 6, 0, 9], [0, 7, 9, 3, 3, 3, 3, 3, 3, 0, 9, 9, 7, 0, 6, 6, 6, 6, 0, 7], [0, 9, 0, 3, 3, 3, 3, 3, 3, 3, 7, 0, 7, 6, 6, 6, 6, 6, 0, 0], [9, 0, 0, 7, 0, 9, 7, 7, 0, 7, 7, 0, 0, 0, 9, 6, 6, 6, 7, 7], [0, 0, 9, 7, 0, 9, 9, 0, 0, 7, 0, 0, 9, 0, 0, 6, 6, 6, 0, 7], [0, 9, 0, 9, 0, 0, 7, 0, 0, 9, 0, 0, 0, 0, 0, 9, 9, 0, 0, 0], [0, 9, 0, 0, 9, 7, 0, 0, 0, 9, 7, 0, 9, 9, 0, 7, 0, 0, 0, 0], [0, 7, 8, 8, 8, 8, 9, 9, 0, 7, 0, 0, 9, 7, 7, 0, 0, 9, 7, 7], [9, 0, 9, 8, 8, 8, 7, 7, 0, 7, 0, 0, 9, 0, 0, 9, 0, 7, 0, 0], [0, 0, 9, 8, 8, 8, 0, 9, 0, 9, 0, 0, 7, 5, 5, 0, 0, 9, 0, 9], [0, 0, 9, 8, 8, 8, 9, 0, 0, 0, 0, 9, 5, 5, 5, 7, 0, 0, 0, 9], [9, 0, 0, 8, 8, 8, 0, 7, 9, 9, 7, 0, 5, 5, 5, 5, 0, 0, 0, 7], [9, 9, 9, 7, 9, 8, 8, 0, 9, 7, 0, 5, 5, 5, 5, 5, 9, 0, 7, 0], [0, 0, 7, 7, 0, 7, 8, 0, 0, 0, 7, 5, 5, 5, 5, 5, 5, 9, 0, 9], [9, 7, 7, 0, 9, 0, 7, 9, 7, 0, 9, 5, 5, 5, 5, 5, 5, 0, 0, 9], [0, 7, 7, 0, 0, 7, 9, 0, 7, 0, 9, 7, 5, 5, 5, 5, 5, 9, 7, 9], [0, 0, 7, 7, 7, 0, 0, 9, 0, 9, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 7, 9, 0, 0, 0, 9, 9, 5, 5, 5, 0, 9, 0, 9, 0], [0, 0, 9, 0, 7, 0, 0, 9, 7, 0, 0, 7, 0, 0, 7, 9, 0, 0, 0, 0]], "output": [[5, 5, 5], [5, 5, 5], [5, 5, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/319f2597.json b/data/arc-agi/evaluation/319f2597.json
deleted file mode 100644
index fac4893..0000000
--- a/data/arc-agi/evaluation/319f2597.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[7, 8, 4, 8, 8, 3, 5, 6, 2, 3, 7, 5, 6, 9, 7, 7, 9, 6, 3, 1], [5, 5, 8, 4, 5, 8, 3, 1, 7, 9, 2, 2, 9, 5, 9, 3, 9, 6, 4, 9], [1, 6, 6, 6, 5, 7, 2, 4, 4, 5, 1, 1, 5, 3, 5, 5, 9, 7, 6, 6], [6, 3, 8, 6, 5, 8, 4, 4, 5, 4, 3, 5, 8, 2, 1, 5, 6, 2, 1, 7], [3, 5, 4, 1, 5, 9, 3, 4, 6, 5, 5, 2, 4, 8, 2, 3, 9, 7, 1, 3], [2, 8, 9, 4, 7, 9, 8, 8, 1, 8, 1, 3, 7, 4, 7, 1, 2, 6, 5, 6], [3, 3, 6, 5, 2, 7, 4, 8, 0, 0, 2, 6, 5, 4, 5, 1, 8, 7, 9, 8], [2, 6, 3, 3, 5, 5, 7, 8, 0, 0, 5, 9, 9, 5, 4, 9, 9, 4, 6, 1], [2, 3, 4, 5, 9, 1, 1, 7, 3, 8, 7, 3, 3, 9, 6, 8, 7, 4, 3, 3], [9, 4, 2, 7, 2, 9, 5, 7, 8, 8, 3, 1, 2, 4, 8, 6, 8, 3, 9, 6], [1, 1, 9, 7, 3, 6, 4, 3, 3, 2, 5, 3, 9, 5, 1, 1, 9, 7, 5, 3], [7, 8, 8, 3, 6, 9, 7, 6, 9, 9, 3, 4, 1, 7, 6, 3, 6, 2, 1, 4], [3, 5, 7, 4, 3, 3, 4, 5, 7, 2, 9, 2, 5, 3, 4, 5, 6, 9, 9, 6], [4, 2, 5, 5, 7, 1, 4, 7, 9, 9, 9, 5, 2, 3, 2, 8, 5, 9, 7, 7], [8, 5, 7, 5, 8, 1, 2, 4, 4, 3, 1, 9, 9, 9, 9, 8, 1, 5, 1, 7], [5, 4, 5, 1, 8, 2, 6, 4, 4, 5, 2, 5, 8, 8, 8, 2, 4, 6, 5, 7], [4, 5, 7, 7, 9, 5, 5, 7, 2, 2, 2, 4, 3, 4, 7, 3, 8, 2, 8, 1], [9, 5, 9, 6, 8, 1, 6, 2, 1, 9, 4, 8, 8, 7, 5, 1, 3, 1, 6, 4], [7, 7, 1, 6, 6, 7, 3, 4, 7, 5, 8, 4, 8, 4, 4, 3, 5, 6, 4, 2], [4, 3, 7, 8, 3, 4, 5, 5, 8, 4, 7, 9, 4, 9, 4, 9, 3, 9, 8, 7]], "output": [[7, 8, 4, 8, 8, 3, 5, 6, 2, 0, 7, 5, 6, 9, 7, 7, 9, 6, 3, 1], [5, 5, 8, 4, 5, 8, 3, 1, 0, 0, 2, 2, 9, 5, 9, 3, 9, 6, 4, 9], [1, 6, 6, 6, 5, 7, 2, 4, 0, 0, 1, 1, 5, 3, 5, 5, 9, 7, 6, 6], [6, 3, 8, 6, 5, 8, 4, 4, 0, 0, 3, 5, 8, 2, 1, 5, 6, 2, 1, 7], [3, 5, 4, 1, 5, 9, 3, 4, 0, 0, 5, 2, 4, 8, 2, 3, 9, 7, 1, 3], [2, 8, 9, 4, 7, 9, 8, 8, 0, 0, 1, 3, 7, 4, 7, 1, 2, 6, 5, 6], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 4, 5, 9, 1, 1, 7, 0, 0, 7, 3, 3, 9, 6, 8, 7, 4, 3, 3], [9, 4, 2, 7, 2, 9, 5, 7, 0, 0, 3, 1, 2, 4, 8, 6, 8, 3, 9, 6], [1, 1, 9, 7, 3, 6, 4, 3, 0, 2, 5, 3, 9, 5, 1, 1, 9, 7, 5, 3], [7, 8, 8, 3, 6, 9, 7, 6, 0, 0, 3, 4, 1, 7, 6, 3, 6, 2, 1, 4], [3, 5, 7, 4, 3, 3, 4, 5, 0, 2, 9, 2, 5, 3, 4, 5, 6, 9, 9, 6], [4, 2, 5, 5, 7, 1, 4, 7, 0, 0, 9, 5, 2, 3, 2, 8, 5, 9, 7, 7], [8, 5, 7, 5, 8, 1, 2, 4, 0, 0, 1, 9, 9, 9, 9, 8, 1, 5, 1, 7], [5, 4, 5, 1, 8, 2, 6, 4, 0, 0, 2, 5, 8, 8, 8, 2, 4, 6, 5, 7], [4, 5, 7, 7, 9, 5, 5, 7, 2, 2, 2, 4, 3, 4, 7, 3, 8, 2, 8, 1], [9, 5, 9, 6, 8, 1, 6, 2, 0, 0, 4, 8, 8, 7, 5, 1, 3, 1, 6, 4], [7, 7, 1, 6, 6, 7, 3, 4, 0, 0, 8, 4, 8, 4, 4, 3, 5, 6, 4, 2], [4, 3, 7, 8, 3, 4, 5, 5, 0, 0, 7, 9, 4, 9, 4, 9, 3, 9, 8, 7]]}, {"input": [[5, 2, 5, 2, 5, 4, 3, 8, 2, 7, 3, 7, 5, 6, 2, 1, 9, 3, 2, 1], [1, 2, 3, 6, 5, 2, 2, 5, 8, 9, 8, 5, 8, 7, 9, 2, 6, 5, 5, 5], [3, 1, 9, 7, 9, 8, 8, 7, 1, 9, 7, 3, 9, 7, 5, 9, 8, 4, 9, 8], [5, 7, 7, 8, 3, 4, 4, 4, 4, 6, 2, 9, 4, 3, 6, 8, 4, 6, 7, 1], [6, 3, 8, 3, 5, 9, 7, 5, 4, 6, 1, 9, 3, 9, 7, 7, 6, 7, 8, 1], [6, 2, 4, 9, 8, 3, 9, 1, 4, 8, 9, 9, 6, 5, 9, 1, 9, 7, 5, 7], [6, 2, 8, 3, 4, 6, 4, 8, 9, 3, 9, 3, 6, 9, 2, 2, 9, 1, 9, 3], [2, 4, 7, 7, 8, 1, 4, 7, 6, 2, 8, 9, 8, 8, 7, 4, 8, 4, 9, 1], [2, 1, 5, 9, 2, 6, 8, 3, 6, 4, 5, 8, 6, 3, 1, 4, 5, 1, 5, 1], [9, 4, 9, 5, 1, 2, 8, 2, 1, 4, 2, 9, 9, 6, 1, 9, 9, 7, 2, 1], [6, 6, 2, 3, 7, 3, 7, 5, 4, 3, 2, 4, 4, 7, 7, 7, 6, 7, 6, 7], [2, 4, 3, 1, 4, 8, 0, 0, 9, 6, 3, 2, 4, 4, 8, 7, 2, 9, 4, 2], [3, 5, 7, 8, 2, 4, 0, 0, 1, 6, 4, 7, 4, 7, 2, 3, 9, 4, 5, 2], [8, 1, 4, 3, 9, 6, 9, 9, 8, 5, 4, 3, 5, 2, 6, 8, 9, 9, 4, 8], [1, 2, 6, 9, 8, 9, 1, 4, 3, 3, 6, 2, 3, 7, 3, 1, 8, 1, 4, 5], [3, 8, 4, 4, 4, 9, 6, 1, 6, 7, 9, 4, 2, 6, 2, 9, 3, 1, 5, 1], [2, 7, 5, 8, 8, 8, 6, 3, 4, 6, 3, 7, 9, 2, 1, 1, 7, 2, 5, 9], [2, 1, 7, 2, 1, 3, 5, 5, 3, 6, 2, 8, 3, 6, 9, 5, 5, 9, 8, 4], [3, 3, 3, 6, 6, 3, 6, 5, 9, 4, 7, 2, 4, 4, 7, 7, 6, 1, 2, 9], [2, 5, 8, 9, 7, 9, 7, 2, 3, 2, 2, 6, 6, 7, 9, 8, 9, 1, 1, 6]], "output": [[5, 2, 5, 2, 5, 4, 0, 0, 2, 7, 3, 7, 5, 6, 2, 1, 9, 3, 2, 1], [1, 2, 3, 6, 5, 2, 2, 0, 8, 9, 8, 5, 8, 7, 9, 2, 6, 5, 5, 5], [3, 1, 9, 7, 9, 8, 0, 0, 1, 9, 7, 3, 9, 7, 5, 9, 8, 4, 9, 8], [5, 7, 7, 8, 3, 4, 0, 0, 4, 6, 2, 9, 4, 3, 6, 8, 4, 6, 7, 1], [6, 3, 8, 3, 5, 9, 0, 0, 4, 6, 1, 9, 3, 9, 7, 7, 6, 7, 8, 1], [6, 2, 4, 9, 8, 3, 0, 0, 4, 8, 9, 9, 6, 5, 9, 1, 9, 7, 5, 7], [6, 2, 8, 3, 4, 6, 0, 0, 9, 3, 9, 3, 6, 9, 2, 2, 9, 1, 9, 3], [2, 4, 7, 7, 8, 1, 0, 0, 6, 2, 8, 9, 8, 8, 7, 4, 8, 4, 9, 1], [2, 1, 5, 9, 2, 6, 0, 0, 6, 4, 5, 8, 6, 3, 1, 4, 5, 1, 5, 1], [9, 4, 9, 5, 1, 2, 0, 2, 1, 4, 2, 9, 9, 6, 1, 9, 9, 7, 2, 1], [6, 6, 2, 3, 7, 3, 0, 0, 4, 3, 2, 4, 4, 7, 7, 7, 6, 7, 6, 7], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [8, 1, 4, 3, 9, 6, 0, 0, 8, 5, 4, 3, 5, 2, 6, 8, 9, 9, 4, 8], [1, 2, 6, 9, 8, 9, 0, 0, 3, 3, 6, 2, 3, 7, 3, 1, 8, 1, 4, 5], [3, 8, 4, 4, 4, 9, 0, 0, 6, 7, 9, 4, 2, 6, 2, 9, 3, 1, 5, 1], [2, 7, 5, 8, 8, 8, 0, 0, 4, 6, 3, 7, 9, 2, 1, 1, 7, 2, 5, 9], [2, 1, 7, 2, 1, 3, 0, 0, 3, 6, 2, 8, 3, 6, 9, 5, 5, 9, 8, 4], [3, 3, 3, 6, 6, 3, 0, 0, 9, 4, 7, 2, 4, 4, 7, 7, 6, 1, 2, 9], [2, 5, 8, 9, 7, 9, 0, 2, 3, 2, 2, 6, 6, 7, 9, 8, 9, 1, 1, 6]]}, {"input": [[3, 5, 9, 3, 6, 9, 3, 3, 7, 3, 7, 9, 6, 5, 3, 1, 6, 5, 1, 6], [1, 9, 9, 3, 1, 2, 9, 4, 4, 7, 9, 9, 7, 3, 2, 7, 5, 1, 4, 6], [9, 3, 7, 2, 4, 4, 8, 3, 3, 6, 3, 7, 7, 5, 4, 5, 4, 4, 5, 1], [8, 2, 1, 1, 1, 4, 3, 2, 2, 9, 7, 2, 2, 1, 2, 6, 4, 8, 7, 6], [3, 1, 3, 1, 7, 6, 4, 7, 5, 1, 8, 2, 6, 2, 0, 0, 5, 2, 5, 5], [7, 8, 7, 3, 4, 2, 5, 6, 2, 2, 3, 1, 5, 6, 0, 0, 5, 3, 8, 6], [7, 1, 4, 8, 2, 3, 3, 6, 6, 3, 7, 7, 9, 3, 5, 7, 6, 4, 3, 8], [6, 3, 3, 7, 4, 8, 2, 8, 7, 6, 4, 1, 8, 5, 4, 3, 4, 5, 4, 1], [8, 1, 2, 6, 9, 5, 9, 4, 6, 8, 2, 6, 8, 9, 1, 3, 8, 4, 7, 4], [6, 7, 7, 2, 9, 8, 7, 5, 6, 3, 7, 7, 3, 7, 9, 1, 5, 1, 2, 2], [1, 2, 2, 5, 8, 8, 4, 2, 3, 5, 2, 2, 6, 7, 2, 6, 3, 6, 3, 9], [3, 6, 9, 1, 8, 4, 6, 5, 7, 9, 2, 9, 7, 4, 4, 2, 9, 4, 4, 6], [2, 6, 5, 2, 6, 6, 8, 7, 6, 6, 1, 5, 2, 9, 1, 3, 3, 4, 9, 7], [2, 9, 8, 1, 7, 3, 2, 9, 6, 6, 9, 7, 7, 2, 2, 6, 7, 5, 9, 5], [4, 4, 1, 5, 2, 7, 6, 3, 5, 7, 2, 1, 6, 1, 5, 8, 8, 8, 8, 7], [7, 5, 2, 3, 8, 6, 9, 2, 3, 9, 9, 5, 6, 6, 7, 8, 9, 5, 8, 4], [6, 7, 1, 9, 2, 1, 2, 1, 6, 4, 5, 8, 1, 1, 1, 6, 7, 9, 8, 8], [7, 6, 5, 8, 3, 5, 9, 6, 4, 9, 6, 8, 7, 9, 1, 7, 9, 9, 1, 2], [1, 4, 8, 4, 2, 2, 6, 3, 5, 6, 6, 7, 5, 8, 7, 3, 6, 1, 7, 7], [5, 3, 3, 4, 8, 9, 8, 9, 5, 3, 2, 2, 5, 8, 1, 8, 4, 6, 7, 3]], "output": [[3, 5, 9, 3, 6, 9, 3, 3, 7, 3, 7, 9, 6, 5, 0, 0, 6, 5, 1, 6], [1, 9, 9, 3, 1, 2, 9, 4, 4, 7, 9, 9, 7, 3, 2, 0, 5, 1, 4, 6], [9, 3, 7, 2, 4, 4, 8, 3, 3, 6, 3, 7, 7, 5, 0, 0, 4, 4, 5, 1], [8, 2, 1, 1, 1, 4, 3, 2, 2, 9, 7, 2, 2, 1, 2, 0, 4, 8, 7, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 1, 4, 8, 2, 3, 3, 6, 6, 3, 7, 7, 9, 3, 0, 0, 6, 4, 3, 8], [6, 3, 3, 7, 4, 8, 2, 8, 7, 6, 4, 1, 8, 5, 0, 0, 4, 5, 4, 1], [8, 1, 2, 6, 9, 5, 9, 4, 6, 8, 2, 6, 8, 9, 0, 0, 8, 4, 7, 4], [6, 7, 7, 2, 9, 8, 7, 5, 6, 3, 7, 7, 3, 7, 0, 0, 5, 1, 2, 2], [1, 2, 2, 5, 8, 8, 4, 2, 3, 5, 2, 2, 6, 7, 2, 0, 3, 6, 3, 9], [3, 6, 9, 1, 8, 4, 6, 5, 7, 9, 2, 9, 7, 4, 0, 2, 9, 4, 4, 6], [2, 6, 5, 2, 6, 6, 8, 7, 6, 6, 1, 5, 2, 9, 0, 0, 3, 4, 9, 7], [2, 9, 8, 1, 7, 3, 2, 9, 6, 6, 9, 7, 7, 2, 2, 0, 7, 5, 9, 5], [4, 4, 1, 5, 2, 7, 6, 3, 5, 7, 2, 1, 6, 1, 0, 0, 8, 8, 8, 7], [7, 5, 2, 3, 8, 6, 9, 2, 3, 9, 9, 5, 6, 6, 0, 0, 9, 5, 8, 4], [6, 7, 1, 9, 2, 1, 2, 1, 6, 4, 5, 8, 1, 1, 0, 0, 7, 9, 8, 8], [7, 6, 5, 8, 3, 5, 9, 6, 4, 9, 6, 8, 7, 9, 0, 0, 9, 9, 1, 2], [1, 4, 8, 4, 2, 2, 6, 3, 5, 6, 6, 7, 5, 8, 0, 0, 6, 1, 7, 7], [5, 3, 3, 4, 8, 9, 8, 9, 5, 3, 2, 2, 5, 8, 0, 0, 4, 6, 7, 3]]}], "test": [{"input": [[4, 5, 7, 5, 9, 2, 3, 1, 7, 8, 6, 9, 4, 2, 4, 2, 5, 1, 2, 7], [9, 1, 7, 5, 5, 1, 2, 7, 1, 9, 1, 7, 4, 8, 4, 7, 2, 9, 5, 8], [9, 1, 8, 6, 9, 4, 7, 6, 9, 5, 5, 5, 8, 1, 4, 8, 4, 7, 8, 5], [4, 2, 9, 5, 5, 2, 8, 2, 7, 7, 9, 6, 1, 4, 9, 8, 3, 3, 9, 2], [1, 9, 2, 3, 8, 4, 3, 1, 1, 3, 4, 6, 3, 5, 1, 1, 2, 6, 4, 6], [1, 4, 3, 5, 6, 1, 1, 1, 1, 6, 7, 3, 9, 5, 8, 3, 5, 6, 2, 9], [7, 7, 1, 9, 2, 4, 6, 9, 1, 5, 5, 8, 5, 2, 2, 2, 4, 2, 1, 2], [2, 9, 6, 1, 2, 9, 4, 8, 2, 7, 8, 2, 5, 7, 3, 2, 2, 4, 7, 7], [4, 2, 6, 6, 8, 9, 2, 1, 3, 2, 4, 5, 8, 3, 7, 4, 8, 5, 2, 1], [3, 2, 4, 8, 9, 8, 9, 5, 2, 1, 6, 8, 1, 2, 5, 7, 9, 1, 8, 5], [1, 3, 7, 2, 7, 3, 5, 2, 3, 9, 3, 2, 7, 2, 1, 7, 9, 8, 5, 7], [1, 6, 4, 6, 6, 5, 5, 9, 2, 3, 2, 4, 6, 7, 3, 9, 9, 9, 6, 6], [8, 6, 5, 2, 2, 3, 2, 1, 4, 9, 6, 9, 4, 9, 7, 7, 1, 5, 9, 3], [3, 7, 7, 5, 9, 8, 7, 4, 2, 2, 9, 5, 0, 0, 8, 6, 7, 6, 6, 7], [6, 9, 5, 6, 3, 7, 5, 7, 9, 8, 9, 5, 0, 0, 4, 2, 3, 3, 2, 6], [2, 8, 5, 3, 5, 6, 7, 1, 4, 7, 4, 4, 9, 5, 1, 3, 4, 4, 4, 7], [7, 8, 4, 7, 9, 5, 7, 8, 7, 4, 6, 8, 5, 3, 3, 1, 4, 1, 9, 7], [4, 5, 9, 9, 4, 5, 5, 7, 9, 8, 5, 8, 8, 6, 2, 8, 3, 7, 2, 4], [1, 6, 1, 4, 3, 6, 5, 4, 1, 7, 4, 7, 8, 6, 5, 9, 5, 4, 9, 9], [2, 9, 2, 6, 7, 8, 9, 9, 6, 4, 5, 8, 7, 5, 4, 3, 6, 3, 9, 5]], "output": [[4, 5, 7, 5, 9, 2, 3, 1, 7, 8, 6, 9, 0, 2, 4, 2, 5, 1, 2, 7], [9, 1, 7, 5, 5, 1, 2, 7, 1, 9, 1, 7, 0, 0, 4, 7, 2, 9, 5, 8], [9, 1, 8, 6, 9, 4, 7, 6, 9, 5, 5, 5, 0, 0, 4, 8, 4, 7, 8, 5], [4, 2, 9, 5, 5, 2, 8, 2, 7, 7, 9, 6, 0, 0, 9, 8, 3, 3, 9, 2], [1, 9, 2, 3, 8, 4, 3, 1, 1, 3, 4, 6, 0, 0, 1, 1, 2, 6, 4, 6], [1, 4, 3, 5, 6, 1, 1, 1, 1, 6, 7, 3, 0, 0, 8, 3, 5, 6, 2, 9], [7, 7, 1, 9, 2, 4, 6, 9, 1, 5, 5, 8, 0, 2, 2, 2, 4, 2, 1, 2], [2, 9, 6, 1, 2, 9, 4, 8, 2, 7, 8, 2, 0, 0, 3, 2, 2, 4, 7, 7], [4, 2, 6, 6, 8, 9, 2, 1, 3, 2, 4, 5, 0, 0, 7, 4, 8, 5, 2, 1], [3, 2, 4, 8, 9, 8, 9, 5, 2, 1, 6, 8, 0, 2, 5, 7, 9, 1, 8, 5], [1, 3, 7, 2, 7, 3, 5, 2, 3, 9, 3, 2, 0, 2, 1, 7, 9, 8, 5, 7], [1, 6, 4, 6, 6, 5, 5, 9, 2, 3, 2, 4, 0, 0, 3, 9, 9, 9, 6, 6], [8, 6, 5, 2, 2, 3, 2, 1, 4, 9, 6, 9, 0, 0, 7, 7, 1, 5, 9, 3], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0], [2, 8, 5, 3, 5, 6, 7, 1, 4, 7, 4, 4, 0, 0, 1, 3, 4, 4, 4, 7], [7, 8, 4, 7, 9, 5, 7, 8, 7, 4, 6, 8, 0, 0, 3, 1, 4, 1, 9, 7], [4, 5, 9, 9, 4, 5, 5, 7, 9, 8, 5, 8, 0, 0, 2, 8, 3, 7, 2, 4], [1, 6, 1, 4, 3, 6, 5, 4, 1, 7, 4, 7, 0, 0, 5, 9, 5, 4, 9, 9], [2, 9, 2, 6, 7, 8, 9, 9, 6, 4, 5, 8, 0, 0, 4, 3, 6, 3, 9, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/31adaf00.json b/data/arc-agi/evaluation/31adaf00.json
deleted file mode 100644
index 30f5009..0000000
--- a/data/arc-agi/evaluation/31adaf00.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 5, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 5, 5], [5, 5, 0, 5, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 5, 5, 5, 5, 0, 5], [0, 5, 0, 5, 0, 5, 5, 0, 5, 0], [5, 0, 0, 0, 0, 5, 0, 0, 5, 5], [5, 5, 5, 0, 5, 0, 0, 0, 0, 5], [0, 5, 0, 0, 0, 0, 5, 5, 5, 0], [5, 0, 0, 0, 0, 5, 0, 0, 5, 5], [5, 0, 0, 0, 0, 0, 5, 5, 0, 0]], "output": [[5, 5, 0, 0, 1, 1, 1, 5, 0, 0], [0, 0, 5, 5, 1, 1, 1, 0, 5, 5], [5, 5, 0, 5, 1, 1, 1, 0, 5, 0], [0, 0, 0, 0, 5, 5, 5, 5, 0, 5], [0, 5, 0, 5, 0, 5, 5, 0, 5, 0], [5, 0, 0, 0, 0, 5, 1, 1, 5, 5], [5, 5, 5, 0, 5, 0, 1, 1, 0, 5], [0, 5, 1, 1, 1, 0, 5, 5, 5, 0], [5, 0, 1, 1, 1, 5, 0, 0, 5, 5], [5, 0, 1, 1, 1, 0, 5, 5, 0, 0]]}, {"input": [[0, 5, 0, 0, 5, 0, 0, 0, 0, 0], [5, 5, 0, 0, 0, 5, 5, 0, 5, 0], [0, 0, 0, 5, 5, 0, 0, 5, 5, 5], [0, 0, 5, 0, 5, 5, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 5, 0], [5, 0, 5, 0, 0, 5, 5, 5, 0, 5], [0, 0, 0, 5, 0, 5, 5, 0, 5, 0], [0, 0, 5, 0, 5, 5, 5, 0, 0, 0], [5, 0, 5, 5, 0, 5, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0]], "output": [[0, 5, 1, 1, 5, 0, 0, 0, 0, 0], [5, 5, 1, 1, 0, 5, 5, 0, 5, 0], [1, 1, 0, 5, 5, 0, 0, 5, 5, 5], [1, 1, 5, 0, 5, 5, 1, 1, 5, 0], [0, 5, 0, 1, 1, 0, 1, 1, 5, 0], [5, 0, 5, 1, 1, 5, 5, 5, 0, 5], [1, 1, 0, 5, 0, 5, 5, 0, 5, 0], [1, 1, 5, 0, 5, 5, 5, 0, 0, 0], [5, 0, 5, 5, 0, 5, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0]]}, {"input": [[0, 0, 5, 0, 0, 0, 0, 5, 0, 5], [0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 5, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 5, 5, 5, 0, 5], [5, 0, 0, 5, 0, 5, 0, 0, 0, 0], [5, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 5, 0]], "output": [[0, 0, 5, 1, 1, 0, 0, 5, 0, 5], [0, 5, 0, 1, 1, 5, 1, 1, 1, 5], [1, 1, 5, 0, 5, 0, 1, 1, 1, 0], [1, 1, 0, 0, 5, 0, 1, 1, 1, 0], [0, 5, 5, 0, 0, 5, 5, 5, 0, 5], [5, 0, 0, 5, 0, 5, 0, 0, 1, 1], [5, 5, 5, 5, 0, 5, 5, 5, 1, 1], [1, 1, 1, 5, 0, 0, 0, 0, 5, 0], [1, 1, 1, 0, 5, 5, 5, 5, 5, 5], [1, 1, 1, 0, 0, 5, 0, 0, 5, 0]]}], "test": [{"input": [[5, 0, 0, 0, 5, 0, 5, 0, 5, 0], [5, 0, 0, 5, 0, 5, 5, 0, 0, 0], [5, 5, 0, 5, 5, 0, 0, 5, 5, 0], [5, 0, 0, 0, 0, 0, 0, 5, 0, 0], [5, 0, 0, 0, 5, 5, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 5, 5, 0, 0], [0, 0, 5, 5, 0, 0, 5, 5, 0, 0], [5, 0, 5, 0, 5, 0, 5, 0, 0, 5], [0, 5, 5, 0, 5, 0, 0, 5, 5, 5], [0, 0, 0, 5, 5, 5, 0, 0, 0, 0]], "output": [[5, 1, 1, 0, 5, 0, 5, 0, 5, 0], [5, 1, 1, 5, 0, 5, 5, 0, 0, 0], [5, 5, 0, 5, 5, 1, 1, 5, 5, 0], [5, 1, 1, 1, 0, 1, 1, 5, 0, 0], [5, 1, 1, 1, 5, 5, 0, 0, 0, 5], [0, 1, 1, 1, 1, 1, 5, 5, 1, 1], [0, 0, 5, 5, 1, 1, 5, 5, 1, 1], [5, 0, 5, 0, 5, 0, 5, 0, 0, 5], [0, 5, 5, 0, 5, 0, 0, 5, 5, 5], [0, 0, 0, 5, 5, 5, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/31d5ba1a.json b/data/arc-agi/evaluation/31d5ba1a.json
deleted file mode 100644
index 122767b..0000000
--- a/data/arc-agi/evaluation/31d5ba1a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[9, 9, 0, 9, 0], [0, 0, 9, 0, 9], [0, 0, 0, 9, 9], [4, 4, 4, 0, 4], [4, 0, 4, 4, 4], [4, 4, 0, 0, 0]], "output": [[0, 0, 6, 6, 6], [6, 0, 0, 6, 0], [6, 6, 0, 6, 6]]}, {"input": [[0, 0, 9, 0, 9], [0, 9, 0, 0, 0], [9, 0, 9, 0, 0], [4, 0, 4, 4, 4], [0, 4, 4, 0, 4], [4, 0, 0, 0, 0]], "output": [[6, 0, 0, 6, 0], [0, 0, 6, 0, 6], [0, 0, 6, 0, 0]]}], "train": [{"input": [[9, 9, 0, 9, 0], [9, 0, 0, 9, 0], [0, 9, 9, 9, 9], [4, 0, 0, 4, 0], [4, 4, 0, 4, 4], [4, 4, 4, 0, 4]], "output": [[0, 6, 0, 0, 0], [0, 6, 0, 0, 6], [6, 0, 0, 6, 0]]}, {"input": [[9, 0, 0, 9, 9], [0, 0, 0, 0, 0], [0, 0, 9, 0, 9], [0, 0, 4, 4, 0], [4, 4, 4, 0, 0], [4, 0, 4, 0, 4]], "output": [[6, 0, 6, 0, 6], [6, 6, 6, 0, 0], [6, 0, 0, 0, 0]]}, {"input": [[0, 9, 0, 0, 0], [0, 9, 9, 0, 9], [9, 0, 0, 0, 9], [4, 4, 0, 4, 0], [0, 4, 4, 4, 0], [4, 4, 0, 0, 0]], "output": [[6, 0, 0, 6, 0], [0, 0, 0, 6, 6], [0, 6, 0, 0, 6]]}, {"input": [[0, 0, 9, 9, 0], [9, 9, 0, 9, 9], [0, 9, 0, 0, 0], [4, 4, 0, 0, 0], [4, 0, 4, 4, 4], [0, 4, 0, 0, 4]], "output": [[6, 6, 6, 6, 0], [0, 6, 6, 0, 0], [0, 0, 0, 0, 6]]}, {"input": [[0, 9, 9, 0, 0], [9, 0, 0, 0, 9], [9, 0, 0, 0, 0], [0, 0, 4, 0, 4], [4, 4, 0, 4, 0], [4, 0, 4, 4, 0]], "output": [[0, 6, 0, 0, 6], [0, 6, 0, 6, 6], [0, 0, 6, 6, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/32e9702f.json b/data/arc-agi/evaluation/32e9702f.json
deleted file mode 100644
index 943fb51..0000000
--- a/data/arc-agi/evaluation/32e9702f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 4, 4], [0, 0, 0], [0, 0, 0]], "output": [[4, 4, 5], [5, 5, 5], [5, 5, 5]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 5, 5, 5, 5, 5, 5, 5], [5, 3, 3, 3, 3, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5], [3, 3, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5]]}, {"input": [[7, 7, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[7, 7, 7, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5], [5, 7, 7, 7, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5], [7, 7, 7, 7, 7, 5, 5], [5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5]]}], "test": [{"input": [[0, 0, 6, 6, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 6, 6, 6, 6, 6, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 6, 6, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [6, 6, 6, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 6, 6, 6, 6, 6, 6, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/332efdb3.json b/data/arc-agi/evaluation/332efdb3.json
deleted file mode 100644
index 132fb8c..0000000
--- a/data/arc-agi/evaluation/332efdb3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1]]}, {"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1], [1, 0, 1, 0, 1], [1, 1, 1, 1, 1], [1, 0, 1, 0, 1], [1, 1, 1, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/3391f8c0.json b/data/arc-agi/evaluation/3391f8c0.json
deleted file mode 100644
index 522266b..0000000
--- a/data/arc-agi/evaluation/3391f8c0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 8, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 8, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 1, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 2, 2, 0, 2, 2, 0, 0, 0], [0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 3, 0, 0, 3, 0, 0, 0], [0, 3, 3, 0, 3, 3, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 0], [0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 7, 0], [0, 0, 1, 0, 0, 1, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 7, 0, 1, 0, 0], [0, 7, 0, 0, 7, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 5, 0, 0, 5, 0, 5, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 0, 0, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 0, 0, 5, 0, 5, 0, 0, 0, 0], [0, 0, 6, 0, 6, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 6, 0, 6, 0, 0, 6, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 5, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0], [0, 0, 5, 5, 5, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/33b52de3.json b/data/arc-agi/evaluation/33b52de3.json
deleted file mode 100644
index 375a46c..0000000
--- a/data/arc-agi/evaluation/33b52de3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 0], [0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 0], [0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 0], [0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 1, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 1, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 1, 1, 1, 0, 1, 1, 1, 0, 3, 3, 3, 0, 1, 1, 1, 0, 0], [0, 0, 2, 0, 2, 0, 1, 0, 1, 0, 1, 0, 1, 0, 3, 0, 3, 0, 1, 0, 1, 0, 0], [0, 0, 2, 2, 2, 0, 1, 1, 1, 0, 1, 1, 1, 0, 3, 3, 3, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 2, 2, 2, 0, 2, 2, 2, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0], [0, 0, 1, 0, 1, 0, 2, 0, 2, 0, 2, 0, 2, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0], [0, 0, 1, 1, 1, 0, 2, 2, 2, 0, 2, 2, 2, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 1, 1, 1, 0, 2, 2, 2, 0, 3, 3, 3, 0, 2, 2, 2, 0, 0], [0, 0, 2, 0, 2, 0, 1, 0, 1, 0, 2, 0, 2, 0, 3, 0, 3, 0, 2, 0, 2, 0, 0], [0, 0, 2, 2, 2, 0, 1, 1, 1, 0, 2, 2, 2, 0, 3, 3, 3, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 1, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 1, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 1, 8, 1, 8, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 8, 8, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 4, 1, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 1, 1, 4, 4, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 8, 8, 8, 0, 1, 1, 1, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 8, 0, 0, 0, 1, 0, 0, 0, 8, 0, 0, 0], [0, 1, 8, 1, 8, 0, 1, 1, 1, 0, 8, 8, 8, 0, 1, 1, 1, 0, 8, 8, 8, 0, 0], [0, 8, 8, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 4, 1, 0, 8, 8, 8, 0, 8, 8, 8, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0], [0, 1, 1, 4, 4, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 4, 4, 4, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 4, 4, 4, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 4, 4, 4, 0, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 4, 4, 4, 0, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0], [0, 2, 1, 2, 2, 0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0], [0, 8, 1, 4, 4, 0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0], [0, 3, 1, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 1, 3, 1, 0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0], [0, 8, 1, 1, 1, 0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 1, 1, 1, 0, 2, 2, 2, 0, 2, 2, 2, 0], [0, 2, 1, 2, 2, 0, 0, 2, 0, 2, 0, 1, 0, 1, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 8, 1, 4, 4, 0, 0, 2, 0, 2, 0, 1, 0, 1, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 3, 1, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 1, 3, 1, 0, 0, 8, 8, 8, 0, 1, 1, 1, 0, 4, 4, 4, 0, 4, 4, 4, 0], [0, 8, 1, 1, 1, 0, 0, 8, 0, 8, 0, 1, 0, 1, 0, 4, 0, 4, 0, 4, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 1, 0, 1, 0, 4, 0, 4, 0, 4, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 1, 1, 1, 0, 4, 4, 4, 0, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 1, 0, 1, 0, 4, 0, 4, 0, 4, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 1, 0, 1, 0, 4, 0, 4, 0, 4, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 1, 1, 1, 0, 3, 3, 3, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 1, 0, 1, 0, 3, 0, 3, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 1, 0, 1, 0, 3, 0, 3, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/3490cc26.json b/data/arc-agi/evaluation/3490cc26.json
deleted file mode 100644
index 9b3ee61..0000000
--- a/data/arc-agi/evaluation/3490cc26.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 7, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 7, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 7, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 7, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 7, 7, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 7, 7, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0, 8, 8, 7, 7, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0], [0, 0, 2, 2, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0, 8, 8, 7, 7, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 8, 8, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 2, 2, 7, 7, 7, 8, 8, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 2, 2, 7, 7, 7, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 7, 7, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 7, 7, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 8, 8, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 8, 8, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 7, 7, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 2, 2, 7, 7, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 7, 7, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 7, 7, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 7, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 7, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 7, 7, 7, 7, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 7, 7, 7, 7, 7, 7, 7, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/34b99a2b.json b/data/arc-agi/evaluation/34b99a2b.json
deleted file mode 100644
index dfe081a..0000000
--- a/data/arc-agi/evaluation/34b99a2b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[0, 8, 0, 0, 4, 5, 0, 0, 0], [0, 8, 0, 8, 4, 5, 5, 0, 5], [8, 8, 0, 8, 4, 0, 0, 5, 5], [8, 8, 8, 8, 4, 5, 0, 5, 5], [0, 0, 8, 8, 4, 5, 0, 5, 0]], "output": [[2, 2, 0, 0], [2, 0, 0, 0], [2, 2, 2, 0], [0, 2, 0, 0], [2, 0, 0, 2]]}], "train": [{"input": [[8, 8, 0, 0, 4, 0, 5, 5, 0], [8, 8, 0, 8, 4, 0, 0, 5, 5], [0, 0, 0, 0, 4, 0, 0, 5, 0], [8, 8, 0, 0, 4, 0, 5, 5, 5], [8, 0, 0, 8, 4, 0, 0, 0, 5]], "output": [[2, 0, 2, 0], [2, 2, 2, 0], [0, 0, 2, 0], [2, 0, 2, 2], [2, 0, 0, 0]]}, {"input": [[0, 8, 0, 0, 4, 5, 0, 5, 0], [0, 8, 0, 8, 4, 5, 0, 5, 5], [0, 8, 0, 8, 4, 0, 0, 0, 5], [0, 8, 0, 8, 4, 0, 5, 0, 5], [0, 0, 0, 8, 4, 0, 0, 5, 0]], "output": [[2, 2, 2, 0], [2, 2, 2, 0], [0, 2, 0, 0], [0, 0, 0, 0], [0, 0, 2, 2]]}, {"input": [[0, 8, 0, 0, 4, 0, 5, 5, 0], [8, 8, 0, 8, 4, 5, 0, 0, 5], [8, 8, 0, 0, 4, 5, 0, 0, 5], [0, 8, 0, 8, 4, 0, 0, 5, 0], [0, 0, 8, 0, 4, 0, 5, 0, 5]], "output": [[0, 0, 2, 0], [0, 2, 0, 0], [0, 2, 0, 2], [0, 2, 2, 2], [0, 2, 2, 2]]}, {"input": [[0, 0, 0, 8, 4, 0, 5, 5, 5], [0, 8, 8, 8, 4, 0, 5, 0, 0], [8, 0, 0, 0, 4, 0, 5, 0, 5], [8, 0, 8, 8, 4, 5, 5, 5, 0], [0, 8, 8, 0, 4, 5, 0, 0, 5]], "output": [[0, 2, 2, 0], [0, 0, 2, 2], [2, 2, 0, 2], [0, 2, 0, 2], [2, 2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/351d6448.json b/data/arc-agi/evaluation/351d6448.json
deleted file mode 100644
index 9712bdc..0000000
--- a/data/arc-agi/evaluation/351d6448.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 3, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0], [3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 3, 3, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0], [3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 3, 3, 3, 0, 2, 2, 2, 0, 2, 2, 2, 0], [3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 3, 3, 3, 0, 2, 2, 2, 0, 2, 2, 2, 0], [3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2]], "output": [[0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 3, 3, 3, 0, 3, 2, 2, 0, 2, 2, 2, 0], [3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/358ba94e.json b/data/arc-agi/evaluation/358ba94e.json
deleted file mode 100644
index bf5e784..0000000
--- a/data/arc-agi/evaluation/358ba94e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 0, 7, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 7, 0, 7, 7, 7, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 7, 7, 7, 7, 7, 0, 0, 7, 0, 7, 7, 7, 0, 0, 0, 0], [0, 0, 7, 7, 7, 7, 7, 0, 0, 7, 7, 7, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0], [0, 0, 0, 7, 7, 7, 0, 7, 0, 0, 0, 0, 7, 0, 7, 7, 7, 0], [0, 0, 0, 7, 0, 7, 7, 7, 0, 0, 0, 0, 7, 7, 7, 0, 7, 0], [0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 7, 0, 7, 7, 7, 0], [0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[7, 7, 7, 7, 7], [7, 0, 7, 7, 7], [7, 7, 7, 0, 7], [7, 0, 7, 7, 7], [7, 7, 7, 7, 7]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 8, 8], [0, 8, 0, 8, 0, 8, 0, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 0, 8], [0, 8, 8, 8, 8, 8, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 8, 8], [0, 8, 0, 8, 8, 8, 0, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8], [0, 8, 8, 8, 8, 8, 0, 0, 8, 8, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 0, 8, 0, 0], [0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 8, 0, 8, 8, 8, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 0, 8, 0, 0], [0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8], [8, 0, 8, 0, 8], [8, 8, 8, 8, 8], [8, 0, 8, 0, 8], [8, 8, 8, 8, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0], [0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 6, 0, 0], [0, 6, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0], [0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 6, 0, 6, 6, 6, 0, 0], [0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 0, 6, 6, 0, 6, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 0, 6, 6, 6, 6, 6, 0, 0, 6, 6, 6, 6, 6], [0, 6, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6], [0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6]], "output": [[6, 6, 6, 6, 6], [6, 0, 6, 0, 6], [6, 6, 6, 6, 6], [6, 0, 6, 6, 6], [6, 6, 6, 6, 6]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 2, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 2, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 2], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 2], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2], [0, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 2, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 2, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2], [2, 2, 2, 2, 2], [2, 0, 2, 2, 2], [2, 2, 2, 2, 2], [2, 2, 2, 2, 2]]}], "test": [{"input": [[0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0], [0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1], [1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1], [1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1], [1, 0, 1, 0, 1], [1, 1, 1, 1, 1], [1, 0, 1, 0, 1], [1, 1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/37d3e8b2.json b/data/arc-agi/evaluation/37d3e8b2.json
deleted file mode 100644
index ea96617..0000000
--- a/data/arc-agi/evaluation/37d3e8b2.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 8, 8, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 8, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 3, 3, 3, 3, 3, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 3, 3, 3, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8, 0], [0, 0, 8, 0, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 8, 8, 0], [0, 0, 8, 0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 8, 0], [0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 8, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 0, 8, 0, 0, 0, 8, 0, 8, 8, 8, 0, 8, 0], [0, 8, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 8, 8, 0, 0, 0, 8, 0, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 3, 3, 3, 3, 3, 0], [0, 0, 2, 0, 0, 2, 0, 2, 0, 0, 0, 3, 0, 3, 3, 3, 0], [0, 0, 2, 0, 0, 2, 2, 2, 0, 0, 0, 3, 3, 3, 0, 3, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 3, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 2, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 0], [0, 2, 2, 2, 0, 2, 0, 0, 0, 7, 0, 7, 7, 7, 0, 7, 0], [0, 2, 0, 2, 2, 2, 0, 0, 0, 7, 7, 7, 0, 7, 0, 7, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 7, 0, 7, 7, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 0, 0], [0, 8, 8, 8, 8, 0, 8, 0, 8, 0, 0, 8, 0, 8, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 8, 8, 0, 0], [0, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 0, 0], [0, 0, 8, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 8, 0, 8, 0, 8, 8], [0, 0, 8, 8, 0, 0, 8, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 8, 0, 8, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 3, 3, 3, 3, 0, 3, 0, 3, 0, 0, 3, 0, 3, 0, 0], [0, 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 3, 3, 0, 0], [0, 0, 7, 7, 7, 7, 7, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 7, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 7, 7, 7, 0, 0, 0, 7, 7, 7, 7, 7, 7], [0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 7, 0, 7, 0, 7, 7], [0, 0, 7, 7, 0, 0, 7, 0, 0, 0, 7, 7, 7, 7, 7, 7], [0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 7, 0, 7, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7]]}], "test": [{"input": [[0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 8, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 8, 0, 8, 8, 8, 0, 8, 0, 8, 8, 0, 0, 8, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 8, 0, 8, 8, 8, 8, 8, 0], [0, 8, 0, 0, 8, 8, 8, 8, 0, 0, 8, 0, 8, 8, 8, 8, 8, 0], [0, 8, 0, 0, 8, 8, 8, 8, 0, 0, 8, 8, 8, 0, 0, 8, 8, 0], [0, 8, 8, 8, 8, 0, 8, 8, 0, 0, 8, 8, 8, 0, 0, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 2, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 2, 0, 2, 2, 2, 0, 3, 0, 3, 3, 0, 0, 3, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 3, 3, 3, 3, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 7, 0, 0, 7, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 0, 0, 7, 0], [0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 7, 0, 7, 7, 7, 7, 7, 0], [0, 2, 0, 0, 2, 2, 2, 2, 0, 0, 7, 0, 7, 7, 7, 7, 7, 0], [0, 2, 0, 0, 2, 2, 2, 2, 0, 0, 7, 7, 7, 0, 0, 7, 7, 0], [0, 2, 2, 2, 2, 0, 2, 2, 0, 0, 7, 7, 7, 0, 0, 7, 7, 0], [0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 7, 7, 7, 7, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/3979b1a8.json b/data/arc-agi/evaluation/3979b1a8.json
deleted file mode 100644
index 853e8d0..0000000
--- a/data/arc-agi/evaluation/3979b1a8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[9, 8, 8, 8, 9], [8, 8, 2, 8, 8], [8, 2, 2, 2, 8], [8, 8, 2, 8, 8], [9, 8, 8, 8, 9]], "output": [[9, 8, 8, 8, 9, 9, 2, 8, 9, 2], [8, 8, 2, 8, 8, 9, 2, 8, 9, 2], [8, 2, 2, 2, 8, 9, 2, 8, 9, 2], [8, 8, 2, 8, 8, 9, 2, 8, 9, 2], [9, 8, 8, 8, 9, 9, 2, 8, 9, 2], [9, 9, 9, 9, 9, 2, 2, 8, 9, 2], [2, 2, 2, 2, 2, 2, 8, 8, 9, 2], [8, 8, 8, 8, 8, 8, 8, 9, 9, 2], [9, 9, 9, 9, 9, 9, 9, 9, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 8]]}, {"input": [[2, 3, 3, 3, 2], [3, 3, 5, 3, 3], [3, 5, 5, 5, 3], [3, 3, 5, 3, 3], [2, 3, 3, 3, 2]], "output": [[2, 3, 3, 3, 2, 2, 5, 3, 2, 5], [3, 3, 5, 3, 3, 2, 5, 3, 2, 5], [3, 5, 5, 5, 3, 2, 5, 3, 2, 5], [3, 3, 5, 3, 3, 2, 5, 3, 2, 5], [2, 3, 3, 3, 2, 2, 5, 3, 2, 5], [2, 2, 2, 2, 2, 5, 5, 3, 2, 5], [5, 5, 5, 5, 5, 5, 3, 3, 2, 5], [3, 3, 3, 3, 3, 3, 3, 2, 2, 5], [2, 2, 2, 2, 2, 2, 2, 2, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 3]]}], "test": [{"input": [[5, 1, 1, 1, 5], [1, 1, 9, 1, 1], [1, 9, 9, 9, 1], [1, 1, 9, 1, 1], [5, 1, 1, 1, 5]], "output": [[5, 1, 1, 1, 5, 5, 9, 1, 5, 9], [1, 1, 9, 1, 1, 5, 9, 1, 5, 9], [1, 9, 9, 9, 1, 5, 9, 1, 5, 9], [1, 1, 9, 1, 1, 5, 9, 1, 5, 9], [5, 1, 1, 1, 5, 5, 9, 1, 5, 9], [5, 5, 5, 5, 5, 9, 9, 1, 5, 9], [9, 9, 9, 9, 9, 9, 1, 1, 5, 9], [1, 1, 1, 1, 1, 1, 1, 5, 5, 9], [5, 5, 5, 5, 5, 5, 5, 5, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/3a301edc.json b/data/arc-agi/evaluation/3a301edc.json
deleted file mode 100644
index e689b07..0000000
--- a/data/arc-agi/evaluation/3a301edc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 5, 5, 5, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 5, 5, 5, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 5, 5, 5, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 5, 5, 5, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 4, 4, 4, 4, 4, 4, 4, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 4, 4, 4, 4, 4, 4, 4, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 4, 4, 5, 5, 5, 4, 4, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 4, 4, 5, 5, 5, 4, 4, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 4, 4, 5, 5, 5, 4, 4, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 4, 4, 5, 5, 5, 4, 4, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 4, 4, 4, 4, 4, 4, 4, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 4, 4, 4, 4, 4, 4, 4, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 1, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 1, 3, 3, 3, 3, 3, 1, 0, 0, 0, 0, 0], [0, 0, 1, 3, 3, 3, 3, 3, 1, 0, 0, 0, 0, 0], [0, 0, 1, 3, 3, 1, 3, 3, 1, 0, 0, 0, 0, 0], [0, 0, 1, 3, 3, 3, 3, 3, 1, 0, 0, 0, 0, 0], [0, 0, 1, 3, 3, 3, 3, 3, 1, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 4, 4, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 4, 4, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 6, 6, 6, 6, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 6, 4, 4, 6, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 6, 4, 4, 6, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 6, 6, 6, 6, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 2, 2, 2, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 2, 2, 2, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 2, 2, 2, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 5, 5, 5, 5, 5, 5, 5, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 5, 5, 5, 5, 5, 5, 5, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 5, 5, 2, 2, 2, 5, 5, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 5, 5, 2, 2, 2, 5, 5, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 5, 5, 2, 2, 2, 5, 5, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 5, 5, 5, 5, 5, 5, 5, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 5, 5, 5, 5, 5, 5, 5, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 2, 1, 1, 1, 2, 0, 0, 0, 0], [0, 0, 2, 1, 2, 1, 2, 0, 0, 0, 0], [0, 0, 2, 1, 1, 1, 2, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 8, 8, 8, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 8, 8, 8, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 8, 8, 8, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 8, 8, 8, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 3, 8, 8, 8, 8, 3, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 3, 8, 8, 8, 8, 3, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 3, 8, 8, 8, 8, 3, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 3, 8, 8, 8, 8, 3, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/3b4c2228.json b/data/arc-agi/evaluation/3b4c2228.json
deleted file mode 100644
index 0c61e47..0000000
--- a/data/arc-agi/evaluation/3b4c2228.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 0, 3, 0, 0, 3], [2, 2, 0, 2, 2, 0, 0], [0, 0, 0, 2, 2, 0, 0], [2, 3, 3, 0, 0, 2, 2], [0, 3, 3, 0, 0, 2, 2], [0, 0, 0, 0, 3, 3, 0], [3, 0, 2, 0, 3, 3, 0]], "output": [[1, 0, 0], [0, 1, 0], [0, 0, 0]]}, {"input": [[0, 3, 3, 0, 0], [0, 3, 3, 0, 0], [0, 0, 0, 0, 0], [2, 2, 0, 0, 2], [2, 2, 0, 0, 0], [0, 0, 0, 2, 2], [0, 0, 0, 2, 2]], "output": [[1, 0, 0], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 0, 3, 3, 0, 0, 0], [2, 0, 3, 3, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0], [3, 3, 0, 0, 2, 2, 0], [3, 3, 0, 0, 2, 2, 0], [0, 0, 3, 3, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0]], "output": [[1, 0, 0], [0, 1, 0], [0, 0, 1]]}, {"input": [[0, 3, 3, 0, 0, 0, 3], [0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0], [3, 0, 0, 0, 3, 3, 0], [0, 0, 3, 0, 3, 3, 0]], "output": [[1, 0, 0], [0, 1, 0], [0, 0, 0]]}, {"input": [[0, 0, 0, 2, 2], [3, 3, 0, 2, 2], [3, 3, 0, 0, 0], [0, 0, 2, 2, 0], [3, 0, 2, 2, 0]], "output": [[1, 0, 0], [0, 0, 0], [0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0], [0, 3, 3, 0, 0], [0, 3, 3, 0, 0], [2, 0, 0, 0, 0], [0, 0, 0, 0, 3], [3, 3, 0, 0, 0], [3, 3, 0, 2, 2], [0, 0, 0, 2, 2]], "output": [[1, 0, 0], [0, 1, 0], [0, 0, 0]]}, {"input": [[0, 3, 3, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 3, 2, 0], [2, 0, 0, 0, 0, 0, 0, 3], [0, 0, 2, 2, 0, 0, 0, 0], [3, 0, 2, 2, 0, 3, 3, 0], [0, 0, 0, 0, 0, 3, 3, 0], [0, 3, 3, 0, 0, 0, 0, 0], [0, 3, 3, 0, 2, 0, 3, 0]], "output": [[1, 0, 0], [0, 1, 0], [0, 0, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/3d31c5b3.json b/data/arc-agi/evaluation/3d31c5b3.json
deleted file mode 100644
index 0a98694..0000000
--- a/data/arc-agi/evaluation/3d31c5b3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[5, 0, 5, 0, 0, 5], [0, 5, 0, 0, 0, 5], [5, 5, 5, 0, 0, 0], [0, 0, 0, 4, 0, 4], [0, 0, 0, 0, 0, 0], [4, 0, 0, 4, 0, 0], [2, 0, 2, 0, 2, 2], [2, 2, 0, 2, 2, 2], [2, 2, 2, 2, 2, 2], [0, 0, 8, 8, 0, 0], [0, 8, 0, 0, 8, 8], [0, 0, 0, 8, 0, 0]], "output": [[5, 0, 5, 4, 2, 5], [2, 5, 0, 2, 8, 5], [5, 5, 5, 4, 2, 2]]}], "train": [{"input": [[0, 5, 5, 5, 5, 0], [5, 5, 0, 5, 5, 5], [5, 5, 0, 5, 0, 0], [0, 0, 4, 0, 0, 0], [4, 0, 4, 4, 4, 0], [4, 0, 0, 0, 0, 0], [2, 0, 2, 2, 0, 2], [2, 0, 0, 0, 0, 2], [0, 0, 0, 2, 0, 0], [0, 8, 0, 8, 0, 0], [0, 8, 0, 0, 0, 0], [0, 8, 0, 8, 0, 0]], "output": [[2, 5, 5, 5, 5, 2], [5, 5, 4, 5, 5, 5], [5, 5, 0, 5, 0, 0]]}, {"input": [[5, 5, 0, 5, 5, 5], [0, 5, 0, 5, 0, 5], [0, 0, 0, 5, 5, 0], [0, 4, 4, 0, 4, 0], [0, 0, 0, 0, 0, 4], [0, 4, 0, 4, 0, 4], [2, 2, 2, 0, 0, 0], [0, 2, 2, 0, 2, 0], [2, 2, 2, 0, 2, 0], [8, 0, 8, 8, 8, 8], [0, 0, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0]], "output": [[5, 5, 4, 5, 5, 5], [0, 5, 8, 5, 8, 5], [2, 4, 2, 5, 5, 4]]}, {"input": [[5, 0, 5, 0, 0, 0], [0, 0, 5, 0, 0, 5], [5, 0, 5, 0, 5, 0], [0, 0, 0, 4, 0, 4], [0, 0, 0, 4, 0, 0], [4, 0, 0, 4, 0, 4], [0, 0, 2, 0, 0, 2], [2, 2, 0, 2, 2, 0], [2, 2, 0, 0, 0, 2], [8, 8, 0, 8, 8, 8], [8, 8, 8, 8, 8, 0], [8, 8, 0, 0, 0, 0]], "output": [[5, 8, 5, 4, 8, 4], [8, 8, 5, 4, 8, 5], [5, 8, 5, 4, 5, 4]]}, {"input": [[5, 5, 5, 5, 0, 0], [0, 5, 5, 0, 5, 5], [0, 5, 5, 5, 5, 5], [4, 4, 4, 0, 4, 4], [0, 0, 0, 4, 4, 0], [4, 4, 4, 0, 4, 0], [2, 0, 2, 2, 0, 0], [2, 2, 0, 2, 0, 0], [2, 2, 2, 0, 2, 0], [0, 0, 8, 0, 8, 8], [8, 8, 8, 0, 0, 0], [0, 8, 0, 0, 8, 0]], "output": [[5, 5, 5, 5, 4, 4], [8, 5, 5, 4, 5, 5], [4, 5, 5, 5, 5, 5]]}, {"input": [[5, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 5], [0, 0, 5, 5, 5, 0], [4, 4, 0, 4, 4, 4], [0, 0, 0, 4, 4, 0], [4, 0, 4, 4, 0, 0], [2, 0, 2, 2, 0, 2], [2, 2, 0, 2, 2, 0], [0, 0, 0, 0, 0, 2], [8, 8, 8, 8, 0, 8], [0, 0, 0, 8, 8, 0], [0, 0, 0, 8, 8, 8]], "output": [[5, 4, 8, 4, 4, 4], [2, 5, 0, 4, 4, 5], [4, 0, 5, 5, 5, 8]]}, {"input": [[0, 5, 0, 5, 5, 0], [0, 5, 0, 5, 5, 5], [5, 5, 0, 5, 5, 5], [4, 0, 0, 0, 4, 4], [0, 0, 0, 4, 4, 0], [4, 0, 4, 0, 0, 4], [0, 2, 2, 2, 2, 0], [2, 2, 2, 0, 2, 0], [0, 2, 0, 2, 0, 0], [8, 0, 0, 8, 0, 8], [8, 0, 0, 0, 8, 0], [8, 0, 0, 8, 0, 0]], "output": [[4, 5, 2, 5, 5, 4], [8, 5, 2, 5, 5, 5], [5, 5, 4, 5, 5, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/3ed85e70.json b/data/arc-agi/evaluation/3ed85e70.json
deleted file mode 100644
index c263f18..0000000
--- a/data/arc-agi/evaluation/3ed85e70.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 1, 8, 8, 1, 3, 3, 3, 3, 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 1, 8, 8, 1, 3, 3, 3, 3, 3, 2, 4, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 1, 8, 8, 1, 3, 3, 3, 3, 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 1, 8, 8, 1, 3, 3, 3, 3, 3, 2, 4, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 8, 8, 1, 0, 0, 0, 0, 0, 0, 2, 4, 2, 0, 0, 0, 0, 0], [0, 0, 1, 8, 8, 1, 0, 0, 0, 0, 0, 0, 1, 8, 8, 1, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 1, 8, 8, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 1, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 0, 1, 8, 8, 1, 0, 0, 0, 0, 2, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 1, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 4, 2, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0]]}, {"input": [[3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [3, 2, 2, 2, 3, 3, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [3, 2, 1, 2, 3, 3, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [3, 2, 2, 2, 3, 3, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 4, 4, 4, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [8, 4, 4, 4, 8, 3, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [8, 4, 4, 4, 8, 3, 0, 0, 8, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [8, 8, 8, 8, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [3, 1, 1, 1, 3, 3, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 1, 2, 1, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [3, 1, 1, 1, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 2, 2, 2, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 2, 2, 2, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [3, 2, 2, 2, 3, 3, 0, 0, 0, 0, 0, 8, 4, 4, 4, 8, 0, 0, 0, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0], [3, 2, 1, 2, 3, 3, 0, 0, 0, 0, 0, 8, 4, 4, 4, 8, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 1, 1, 1, 0], [3, 2, 2, 2, 3, 3, 0, 0, 0, 0, 0, 8, 4, 4, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 4, 4, 4, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0], [8, 4, 4, 4, 8, 3, 0, 0, 8, 8, 0, 0, 1, 1, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 1, 2, 1, 0, 0], [8, 4, 4, 4, 8, 3, 0, 0, 8, 8, 0, 0, 1, 2, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0], [8, 8, 8, 8, 8, 3, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 4, 4, 8, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 8, 4, 4, 4, 8, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 8, 4, 4, 4, 8, 0, 0, 0, 0, 0, 0, 0], [3, 1, 1, 1, 3, 3, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 1, 1, 1, 0, 0, 0, 0], [3, 1, 2, 1, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0], [3, 1, 1, 1, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 2, 2, 2, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 1, 2, 0, 0, 1, 1, 1, 0, 3, 3, 3, 0, 0, 0, 2, 1, 2, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 1, 1, 2, 3, 3, 3, 3, 3, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 1, 2, 1, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 3, 3, 3, 3, 3, 6, 8, 8, 6, 3, 3, 3, 3, 3, 3], [3, 3, 2, 1, 1, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 3, 3, 3, 3, 3, 6, 8, 8, 6, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 1, 1, 2, 3, 3, 3, 3, 3, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 1, 2, 1, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 3, 3, 3, 3, 3, 6, 8, 8, 6, 3, 3, 3, 3, 3, 3], [3, 3, 2, 1, 1, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 3, 3, 3, 3, 3, 6, 8, 8, 6, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 6, 8, 8, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 8, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 8, 2, 2, 3, 3, 3, 3, 3, 3, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 2, 2, 8, 3, 3, 3, 3, 3, 1, 6, 1, 3, 3, 3, 3, 3, 3, 3, 1, 4, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 8, 8, 3, 3, 3, 3, 3, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 4, 1, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2, 2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 8, 2, 2, 3, 3, 3, 3, 3, 3, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 2, 2, 8, 3, 3, 3, 3, 3, 1, 6, 1, 3, 3, 3, 3, 3, 3, 3, 1, 4, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 8, 8, 3, 3, 3, 3, 3, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 4, 1, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/3ee1011a.json b/data/arc-agi/evaluation/3ee1011a.json
deleted file mode 100644
index ef68882..0000000
--- a/data/arc-agi/evaluation/3ee1011a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2], [2, 3, 3, 3, 2], [2, 3, 8, 3, 2], [2, 3, 3, 3, 2], [2, 2, 2, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 1], [1, 3, 3, 3, 3, 1], [1, 3, 6, 6, 3, 1], [1, 3, 6, 6, 3, 1], [1, 3, 3, 3, 3, 1], [1, 1, 1, 1, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8, 8, 8, 8], [8, 3, 3, 3, 3, 3, 3, 8], [8, 3, 4, 4, 4, 4, 3, 8], [8, 3, 4, 7, 7, 4, 3, 8], [8, 3, 4, 7, 7, 4, 3, 8], [8, 3, 4, 4, 4, 4, 3, 8], [8, 3, 3, 3, 3, 3, 3, 8], [8, 8, 8, 8, 8, 8, 8, 8]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8, 8, 8], [8, 6, 6, 6, 6, 6, 8], [8, 6, 7, 7, 7, 6, 8], [8, 6, 7, 3, 7, 6, 8], [8, 6, 7, 7, 7, 6, 8], [8, 6, 6, 6, 6, 6, 8], [8, 8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/3f23242b.json b/data/arc-agi/evaluation/3f23242b.json
deleted file mode 100644
index 17a372f..0000000
--- a/data/arc-agi/evaluation/3f23242b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 2, 0, 5, 0, 2, 0, 0, 0], [0, 0, 2, 0, 3, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [2, 2, 8, 8, 8, 8, 8, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/40f6cd08.json b/data/arc-agi/evaluation/40f6cd08.json
deleted file mode 100644
index d7ce707..0000000
--- a/data/arc-agi/evaluation/40f6cd08.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 1, 1, 8, 8, 8, 8, 1, 1, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 1, 1, 8, 8, 8, 8, 1, 1, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 1, 1, 8, 8, 8, 8, 1, 1, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 1, 1, 8, 8, 8, 8, 1, 1, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 1, 1, 8, 8, 8, 8, 1, 1, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 1, 1, 8, 8, 8, 8, 1, 1, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 1, 1, 8, 8, 8, 8, 1, 1, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 1, 1, 8, 8, 8, 8, 1, 1, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 1, 1, 8, 8, 8, 8, 1, 1, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 1, 1, 8, 8, 8, 8, 1, 1, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 4, 1, 1, 1, 1, 1, 1, 1, 4, 4, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 4, 1, 1, 1, 1, 1, 1, 1, 4, 4, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 4, 1, 1, 8, 8, 8, 1, 1, 4, 4, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 4, 1, 1, 8, 8, 8, 1, 1, 4, 4, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 4, 1, 1, 8, 8, 8, 1, 1, 4, 4, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 6, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 6, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 6, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 6, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 6, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 4, 4, 4, 4, 4, 4, 4, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 4, 2, 2, 2, 2, 2, 4, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 4, 2, 2, 2, 2, 2, 4, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 4, 2, 2, 2, 2, 2, 4, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 4, 4, 4, 4, 4, 4, 4, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 4, 4, 4, 4, 4, 4, 4, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 4, 2, 2, 2, 2, 2, 4, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 4, 2, 2, 2, 2, 2, 4, 8, 8, 0, 0, 0, 0, 8, 8, 4, 4, 4, 4, 4, 4, 8, 8, 0], [0, 0, 0, 0, 8, 8, 4, 2, 2, 2, 2, 2, 4, 8, 8, 0, 0, 0, 0, 8, 8, 4, 2, 2, 2, 2, 4, 8, 8, 0], [0, 0, 0, 0, 8, 8, 4, 4, 4, 4, 4, 4, 4, 8, 8, 0, 0, 0, 0, 8, 8, 4, 4, 4, 4, 4, 4, 8, 8, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 1, 1, 2, 2, 8, 4, 8, 2, 2, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 1, 1, 2, 2, 8, 4, 8, 2, 2, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 1, 1, 2, 2, 8, 4, 8, 2, 2, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 1, 1, 2, 2, 8, 4, 8, 2, 2, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 1, 1, 2, 2, 8, 4, 8, 2, 2, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 1, 1, 2, 2, 8, 4, 8, 2, 2, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 1, 1, 2, 2, 8, 4, 8, 2, 2, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 1, 1, 2, 2, 8, 4, 8, 2, 2, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 8, 4, 8, 2, 2, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 8, 4, 8, 2, 2, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 8, 4, 8, 2, 2, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 1, 1, 2, 2, 8, 4, 8, 2, 2, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 1, 1, 2, 2, 8, 4, 8, 2, 2, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 1, 1, 2, 2, 8, 4, 8, 2, 2, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 1, 1, 2, 2, 8, 4, 8, 2, 2, 1, 1, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 2, 2, 8, 4, 4, 4, 4, 8, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/414297c0.json b/data/arc-agi/evaluation/414297c0.json
deleted file mode 100644
index 726840a..0000000
--- a/data/arc-agi/evaluation/414297c0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 7, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 2, 4, 2, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 2, 8, 2, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 8, 1, 1, 1, 1, 7, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 2, 3, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1], [1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1], [1, 1, 1, 2, 4, 2, 1, 1, 1, 1, 1], [1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 2, 2, 1, 1, 1, 2, 1, 1, 1], [1, 2, 8, 2, 1, 1, 2, 7, 2, 1, 1], [1, 2, 1, 2, 1, 1, 1, 2, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 1, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 4, 2, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 4, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8, 8], [8, 2, 8, 8, 8, 8], [2, 1, 2, 8, 8, 8], [2, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8], [8, 8, 2, 8, 2, 8], [8, 8, 8, 4, 2, 8], [8, 8, 2, 2, 2, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 3, 3, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 1, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 8, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 2, 2, 2, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 2, 2, 2, 3, 3, 3, 3], [3, 2, 1, 2, 3, 3, 3, 3, 2, 2, 3, 3], [3, 3, 2, 3, 3, 3, 3, 3, 2, 8, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 7, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 2, 2, 0, 0, 0], [0, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 7, 4, 4, 0, 0, 0, 0, 8, 2, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 2, 2, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 6, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 2, 1, 2, 4, 4, 4, 4, 4, 4, 2, 7, 2, 4], [4, 4, 4, 2, 4, 4, 4, 4, 4, 4, 4, 2, 2, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 2, 6, 4, 4, 4, 4, 4], [4, 2, 2, 4, 4, 4, 4, 4, 4, 4, 2, 4, 2, 2, 4], [2, 3, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 2], [2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/423a55dc.json b/data/arc-agi/evaluation/423a55dc.json
deleted file mode 100644
index 3501d01..0000000
--- a/data/arc-agi/evaluation/423a55dc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 7, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/42918530.json b/data/arc-agi/evaluation/42918530.json
deleted file mode 100644
index 4e84e1a..0000000
--- a/data/arc-agi/evaluation/42918530.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 8, 8, 8, 8, 8, 0, 4, 4, 4, 4, 4, 0], [0, 3, 0, 0, 0, 3, 0, 8, 0, 0, 0, 8, 0, 4, 0, 4, 0, 4, 0], [0, 3, 0, 0, 0, 3, 0, 8, 0, 0, 0, 8, 0, 4, 4, 4, 4, 4, 0], [0, 3, 0, 0, 0, 3, 0, 8, 0, 0, 0, 8, 0, 4, 0, 4, 0, 4, 0], [0, 3, 3, 3, 3, 3, 0, 8, 8, 8, 8, 8, 0, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 2, 2, 2, 2, 2, 0, 7, 7, 7, 7, 7, 0], [0, 4, 0, 0, 0, 4, 0, 2, 0, 0, 0, 2, 0, 7, 0, 0, 0, 7, 0], [0, 4, 0, 0, 0, 4, 0, 2, 0, 0, 0, 2, 0, 7, 0, 0, 0, 7, 0], [0, 4, 0, 0, 0, 4, 0, 2, 0, 0, 0, 2, 0, 7, 0, 0, 0, 7, 0], [0, 4, 4, 4, 4, 4, 0, 2, 2, 2, 2, 2, 0, 7, 7, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 8, 8, 8, 8, 8, 0, 4, 4, 4, 4, 4, 0], [0, 3, 0, 0, 0, 3, 0, 8, 0, 0, 0, 8, 0, 4, 0, 4, 0, 4, 0], [0, 3, 0, 0, 0, 3, 0, 8, 0, 0, 0, 8, 0, 4, 4, 4, 4, 4, 0], [0, 3, 0, 0, 0, 3, 0, 8, 0, 0, 0, 8, 0, 4, 0, 4, 0, 4, 0], [0, 3, 3, 3, 3, 3, 0, 8, 8, 8, 8, 8, 0, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 2, 2, 2, 2, 2, 0, 7, 7, 7, 7, 7, 0], [0, 4, 0, 4, 0, 4, 0, 2, 0, 0, 0, 2, 0, 7, 0, 0, 0, 7, 0], [0, 4, 4, 4, 4, 4, 0, 2, 0, 0, 0, 2, 0, 7, 0, 0, 0, 7, 0], [0, 4, 0, 4, 0, 4, 0, 2, 0, 0, 0, 2, 0, 7, 0, 0, 0, 7, 0], [0, 4, 4, 4, 4, 4, 0, 2, 2, 2, 2, 2, 0, 7, 7, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 4, 4, 4, 4, 4, 0, 8, 8, 8, 8, 8, 0], [0, 2, 0, 2, 0, 2, 0, 4, 0, 0, 0, 4, 0, 8, 0, 0, 0, 8, 0], [0, 2, 2, 2, 0, 2, 0, 4, 0, 0, 0, 4, 0, 8, 0, 8, 0, 8, 0], [0, 2, 0, 0, 0, 2, 0, 4, 0, 0, 0, 4, 0, 8, 0, 0, 0, 8, 0], [0, 2, 2, 2, 2, 2, 0, 4, 4, 4, 4, 4, 0, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 3, 3, 3, 3, 3, 0, 1, 1, 1, 1, 1, 0], [0, 8, 0, 0, 0, 8, 0, 3, 0, 0, 0, 3, 0, 1, 0, 0, 0, 1, 0], [0, 8, 0, 0, 0, 8, 0, 3, 0, 3, 3, 3, 0, 1, 0, 0, 0, 1, 0], [0, 8, 0, 0, 0, 8, 0, 3, 0, 3, 0, 3, 0, 1, 0, 0, 0, 1, 0], [0, 8, 8, 8, 8, 8, 0, 3, 3, 3, 3, 3, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 1, 1, 1, 1, 1, 0, 2, 2, 2, 2, 2, 0], [0, 2, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 2, 0], [0, 2, 2, 2, 2, 2, 0, 1, 1, 1, 1, 1, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 4, 4, 4, 4, 4, 0, 8, 8, 8, 8, 8, 0], [0, 2, 0, 2, 0, 2, 0, 4, 0, 0, 0, 4, 0, 8, 0, 0, 0, 8, 0], [0, 2, 2, 2, 0, 2, 0, 4, 0, 0, 0, 4, 0, 8, 0, 8, 0, 8, 0], [0, 2, 0, 0, 0, 2, 0, 4, 0, 0, 0, 4, 0, 8, 0, 0, 0, 8, 0], [0, 2, 2, 2, 2, 2, 0, 4, 4, 4, 4, 4, 0, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 3, 3, 3, 3, 3, 0, 1, 1, 1, 1, 1, 0], [0, 8, 0, 0, 0, 8, 0, 3, 0, 0, 0, 3, 0, 1, 0, 0, 0, 1, 0], [0, 8, 0, 8, 0, 8, 0, 3, 0, 3, 3, 3, 0, 1, 0, 0, 0, 1, 0], [0, 8, 0, 0, 0, 8, 0, 3, 0, 3, 0, 3, 0, 1, 0, 0, 0, 1, 0], [0, 8, 8, 8, 8, 8, 0, 3, 3, 3, 3, 3, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 1, 1, 1, 1, 1, 0, 2, 2, 2, 2, 2, 0], [0, 2, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 0, 2, 0, 2, 0, 2, 0], [0, 2, 2, 2, 0, 2, 0, 1, 0, 0, 0, 1, 0, 2, 2, 2, 0, 2, 0], [0, 2, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 2, 0], [0, 2, 2, 2, 2, 2, 0, 1, 1, 1, 1, 1, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 6, 6, 6, 6, 6, 0, 2, 2, 2, 2, 2, 0], [0, 2, 0, 2, 0, 2, 0, 6, 0, 0, 0, 6, 0, 2, 0, 0, 0, 2, 0], [0, 2, 2, 2, 2, 2, 0, 6, 0, 0, 0, 6, 0, 2, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 2, 0, 6, 0, 0, 0, 6, 0, 2, 0, 0, 0, 2, 0], [0, 2, 2, 2, 2, 2, 0, 6, 6, 6, 6, 6, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 3, 3, 3, 3, 3, 0, 8, 8, 8, 8, 8, 0], [0, 8, 0, 0, 0, 8, 0, 3, 0, 0, 0, 3, 0, 8, 0, 0, 0, 8, 0], [0, 8, 0, 8, 8, 8, 0, 3, 3, 3, 3, 3, 0, 8, 0, 0, 0, 8, 0], [0, 8, 0, 8, 0, 8, 0, 3, 0, 0, 0, 3, 0, 8, 0, 0, 0, 8, 0], [0, 8, 8, 8, 8, 8, 0, 3, 3, 3, 3, 3, 0, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 0, 2, 2, 2, 2, 2, 0, 4, 4, 4, 4, 4, 0], [0, 6, 0, 6, 0, 6, 0, 2, 0, 0, 0, 2, 0, 4, 0, 0, 0, 4, 0], [0, 6, 0, 6, 0, 6, 0, 2, 0, 0, 0, 2, 0, 4, 0, 4, 0, 4, 0], [0, 6, 0, 0, 0, 6, 0, 2, 0, 0, 0, 2, 0, 4, 0, 0, 0, 4, 0], [0, 6, 6, 6, 6, 6, 0, 2, 2, 2, 2, 2, 0, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 5, 5, 5, 5, 5, 0, 2, 2, 2, 2, 2, 0], [0, 1, 0, 1, 0, 1, 0, 5, 0, 0, 0, 5, 0, 2, 0, 0, 0, 2, 0], [0, 1, 0, 1, 0, 1, 0, 5, 0, 0, 0, 5, 0, 2, 0, 0, 0, 2, 0], [0, 1, 1, 0, 1, 1, 0, 5, 0, 0, 0, 5, 0, 2, 0, 0, 0, 2, 0], [0, 1, 1, 1, 1, 1, 0, 5, 5, 5, 5, 5, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 6, 6, 6, 6, 6, 0, 2, 2, 2, 2, 2, 0], [0, 2, 0, 2, 0, 2, 0, 6, 0, 6, 0, 6, 0, 2, 0, 2, 0, 2, 0], [0, 2, 2, 2, 2, 2, 0, 6, 0, 6, 0, 6, 0, 2, 2, 2, 2, 2, 0], [0, 2, 0, 0, 0, 2, 0, 6, 0, 0, 0, 6, 0, 2, 0, 0, 0, 2, 0], [0, 2, 2, 2, 2, 2, 0, 6, 6, 6, 6, 6, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 3, 3, 3, 3, 3, 0, 8, 8, 8, 8, 8, 0], [0, 8, 0, 0, 0, 8, 0, 3, 0, 0, 0, 3, 0, 8, 0, 0, 0, 8, 0], [0, 8, 0, 8, 8, 8, 0, 3, 3, 3, 3, 3, 0, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 3, 0, 0, 0, 3, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 8, 8, 0, 3, 3, 3, 3, 3, 0, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 0, 2, 2, 2, 2, 2, 0, 4, 4, 4, 4, 4, 0], [0, 6, 0, 6, 0, 6, 0, 2, 0, 2, 0, 2, 0, 4, 0, 0, 0, 4, 0], [0, 6, 0, 6, 0, 6, 0, 2, 2, 2, 2, 2, 0, 4, 0, 4, 0, 4, 0], [0, 6, 0, 0, 0, 6, 0, 2, 0, 0, 0, 2, 0, 4, 0, 0, 0, 4, 0], [0, 6, 6, 6, 6, 6, 0, 2, 2, 2, 2, 2, 0, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 5, 5, 5, 5, 5, 0, 2, 2, 2, 2, 2, 0], [0, 1, 0, 1, 0, 1, 0, 5, 0, 0, 0, 5, 0, 2, 0, 2, 0, 2, 0], [0, 1, 0, 1, 0, 1, 0, 5, 0, 0, 0, 5, 0, 2, 2, 2, 2, 2, 0], [0, 1, 1, 0, 1, 1, 0, 5, 0, 0, 0, 5, 0, 2, 0, 0, 0, 2, 0], [0, 1, 1, 1, 1, 1, 0, 5, 5, 5, 5, 5, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 2, 2, 2, 2, 2, 0], [0, 3, 0, 0, 0, 3, 0, 3, 0, 0, 0, 3, 0, 2, 0, 0, 0, 2, 0], [0, 3, 0, 0, 0, 3, 0, 3, 0, 3, 0, 3, 0, 2, 0, 0, 0, 2, 0], [0, 3, 0, 0, 0, 3, 0, 3, 0, 0, 0, 3, 0, 2, 0, 0, 0, 2, 0], [0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 8, 0, 1, 1, 1, 1, 1, 0], [0, 2, 0, 0, 0, 2, 0, 8, 0, 0, 0, 8, 0, 1, 0, 1, 0, 1, 0], [0, 2, 0, 0, 0, 2, 0, 8, 8, 8, 8, 8, 0, 1, 1, 1, 0, 1, 0], [0, 2, 0, 0, 0, 2, 0, 8, 0, 0, 0, 8, 0, 1, 0, 0, 0, 1, 0], [0, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 8, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 2, 2, 2, 2, 2, 0, 1, 1, 1, 1, 1, 0], [0, 8, 0, 0, 0, 8, 0, 2, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 0], [0, 8, 0, 0, 0, 8, 0, 2, 2, 2, 2, 2, 0, 1, 0, 0, 0, 1, 0], [0, 8, 0, 0, 0, 8, 0, 2, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 0], [0, 8, 8, 8, 8, 8, 0, 2, 2, 2, 2, 2, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 2, 2, 2, 2, 2, 0], [0, 3, 0, 0, 0, 3, 0, 3, 0, 0, 0, 3, 0, 2, 0, 2, 0, 2, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 2, 2, 2, 2, 2, 0], [0, 3, 0, 0, 0, 3, 0, 3, 0, 0, 0, 3, 0, 2, 0, 2, 0, 2, 0], [0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 8, 0, 1, 1, 1, 1, 1, 0], [0, 2, 0, 2, 0, 2, 0, 8, 0, 0, 0, 8, 0, 1, 0, 1, 0, 1, 0], [0, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 8, 0, 1, 1, 1, 0, 1, 0], [0, 2, 0, 2, 0, 2, 0, 8, 0, 0, 0, 8, 0, 1, 0, 0, 0, 1, 0], [0, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 8, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 2, 2, 2, 2, 2, 0, 1, 1, 1, 1, 1, 0], [0, 8, 0, 0, 0, 8, 0, 2, 0, 2, 0, 2, 0, 1, 0, 1, 0, 1, 0], [0, 8, 8, 8, 8, 8, 0, 2, 2, 2, 2, 2, 0, 1, 1, 1, 0, 1, 0], [0, 8, 0, 0, 0, 8, 0, 2, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 0], [0, 8, 8, 8, 8, 8, 0, 2, 2, 2, 2, 2, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 8, 8, 8, 8, 8, 0, 3, 3, 3, 3, 3, 0, 7, 7, 7, 7, 7, 0], [0, 1, 0, 0, 0, 1, 0, 8, 0, 0, 0, 8, 0, 3, 0, 0, 3, 3, 0, 7, 0, 7, 0, 7, 0], [0, 1, 0, 0, 0, 1, 0, 8, 8, 8, 0, 8, 0, 3, 0, 3, 0, 3, 0, 7, 0, 7, 0, 7, 0], [0, 1, 0, 0, 0, 1, 0, 8, 0, 8, 0, 8, 0, 3, 3, 0, 0, 3, 0, 7, 0, 7, 0, 7, 0], [0, 1, 1, 1, 1, 1, 0, 8, 8, 8, 8, 8, 0, 3, 3, 3, 3, 3, 0, 7, 7, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 0, 2, 2, 2, 2, 2, 0, 1, 1, 1, 1, 1, 0, 2, 2, 2, 2, 2, 0], [0, 6, 0, 6, 0, 6, 0, 2, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 2, 0], [0, 6, 0, 6, 6, 6, 0, 2, 2, 2, 0, 2, 0, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 2, 0], [0, 6, 0, 0, 0, 6, 0, 2, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 2, 0], [0, 6, 6, 6, 6, 6, 0, 2, 2, 2, 2, 2, 0, 1, 1, 1, 1, 1, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 4, 4, 4, 4, 4, 0, 3, 3, 3, 3, 3, 0, 2, 2, 2, 2, 2, 0], [0, 8, 0, 0, 0, 8, 0, 4, 0, 0, 0, 4, 0, 3, 0, 0, 0, 3, 0, 2, 0, 0, 0, 2, 0], [0, 8, 0, 0, 0, 8, 0, 4, 0, 0, 0, 4, 0, 3, 0, 0, 0, 3, 0, 2, 0, 0, 0, 2, 0], [0, 8, 0, 0, 0, 8, 0, 4, 0, 0, 0, 4, 0, 3, 0, 0, 0, 3, 0, 2, 0, 0, 0, 2, 0], [0, 8, 8, 8, 8, 8, 0, 4, 4, 4, 4, 4, 0, 3, 3, 3, 3, 3, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 8, 0, 2, 2, 2, 2, 2, 0, 6, 6, 6, 6, 6, 0], [0, 2, 0, 0, 0, 2, 0, 8, 0, 0, 0, 8, 0, 2, 0, 0, 0, 2, 0, 6, 0, 0, 0, 6, 0], [0, 2, 0, 0, 0, 2, 0, 8, 0, 0, 0, 8, 0, 2, 0, 0, 0, 2, 0, 6, 0, 0, 0, 6, 0], [0, 2, 0, 0, 0, 2, 0, 8, 0, 0, 0, 8, 0, 2, 0, 0, 0, 2, 0, 6, 0, 0, 0, 6, 0], [0, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 8, 0, 2, 2, 2, 2, 2, 0, 6, 6, 6, 6, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 8, 8, 8, 8, 8, 0, 3, 3, 3, 3, 3, 0, 7, 7, 7, 7, 7, 0], [0, 1, 0, 0, 0, 1, 0, 8, 0, 0, 0, 8, 0, 3, 0, 0, 3, 3, 0, 7, 0, 7, 0, 7, 0], [0, 1, 0, 0, 0, 1, 0, 8, 8, 8, 0, 8, 0, 3, 0, 3, 0, 3, 0, 7, 0, 7, 0, 7, 0], [0, 1, 0, 0, 0, 1, 0, 8, 0, 8, 0, 8, 0, 3, 3, 0, 0, 3, 0, 7, 0, 7, 0, 7, 0], [0, 1, 1, 1, 1, 1, 0, 8, 8, 8, 8, 8, 0, 3, 3, 3, 3, 3, 0, 7, 7, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 0, 2, 2, 2, 2, 2, 0, 1, 1, 1, 1, 1, 0, 2, 2, 2, 2, 2, 0], [0, 6, 0, 6, 0, 6, 0, 2, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 0, 2, 0, 2, 0, 2, 0], [0, 6, 0, 6, 6, 6, 0, 2, 2, 2, 0, 2, 0, 1, 0, 0, 0, 1, 0, 2, 2, 2, 0, 2, 0], [0, 6, 0, 0, 0, 6, 0, 2, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 0, 2, 0, 2, 0, 2, 0], [0, 6, 6, 6, 6, 6, 0, 2, 2, 2, 2, 2, 0, 1, 1, 1, 1, 1, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 4, 4, 4, 4, 4, 0, 3, 3, 3, 3, 3, 0, 2, 2, 2, 2, 2, 0], [0, 8, 0, 0, 0, 8, 0, 4, 0, 0, 0, 4, 0, 3, 0, 0, 3, 3, 0, 2, 0, 2, 0, 2, 0], [0, 8, 8, 8, 0, 8, 0, 4, 0, 0, 0, 4, 0, 3, 0, 3, 0, 3, 0, 2, 2, 2, 0, 2, 0], [0, 8, 0, 8, 0, 8, 0, 4, 0, 0, 0, 4, 0, 3, 3, 0, 0, 3, 0, 2, 0, 2, 0, 2, 0], [0, 8, 8, 8, 8, 8, 0, 4, 4, 4, 4, 4, 0, 3, 3, 3, 3, 3, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 8, 0, 2, 2, 2, 2, 2, 0, 6, 6, 6, 6, 6, 0], [0, 2, 0, 2, 0, 2, 0, 8, 0, 0, 0, 8, 0, 2, 0, 2, 0, 2, 0, 6, 0, 6, 0, 6, 0], [0, 2, 2, 2, 0, 2, 0, 8, 8, 8, 0, 8, 0, 2, 2, 2, 0, 2, 0, 6, 0, 6, 6, 6, 0], [0, 2, 0, 2, 0, 2, 0, 8, 0, 8, 0, 8, 0, 2, 0, 2, 0, 2, 0, 6, 0, 0, 0, 6, 0], [0, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 8, 0, 2, 2, 2, 2, 2, 0, 6, 6, 6, 6, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/42a15761.json b/data/arc-agi/evaluation/42a15761.json
deleted file mode 100644
index 57dfc59..0000000
--- a/data/arc-agi/evaluation/42a15761.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2]], "output": [[2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2]]}, {"input": [[2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2]], "output": [[2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2]]}, {"input": [[2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2]], "output": [[2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 0, 2, 0, 2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2]]}], "test": [{"input": [[2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 0, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2]], "output": [[2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/4364c1c4.json b/data/arc-agi/evaluation/4364c1c4.json
deleted file mode 100644
index 4bd4e3c..0000000
--- a/data/arc-agi/evaluation/4364c1c4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8], [8, 8, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8], [8, 8, 6, 6, 6, 6, 6, 6, 6, 8, 8, 8], [8, 8, 6, 6, 6, 6, 6, 6, 6, 8, 8, 8], [8, 8, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8], [8, 8, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8], [8, 8, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8], [8, 8, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8], [8, 8, 3, 3, 3, 8, 8, 3, 3, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 8], [8, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 8], [8, 6, 6, 6, 6, 6, 6, 6, 8, 8, 8, 8], [8, 6, 6, 6, 6, 6, 6, 6, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 8, 8], [8, 8, 8, 3, 3, 3, 8, 8, 3, 3, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 4, 1, 1, 1, 4, 4, 4, 1, 1, 1], [1, 1, 4, 1, 1, 1, 4, 4, 4, 1, 1, 1], [1, 1, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1], [1, 1, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1], [1, 1, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1], [1, 1, 2, 2, 2, 2, 1, 1, 2, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 1, 1, 4, 4, 4, 1, 1, 1, 1], [1, 4, 1, 1, 1, 4, 4, 4, 1, 1, 1, 1], [1, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1], [1, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1], [1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 1, 1], [1, 1, 1, 2, 2, 2, 2, 1, 1, 2, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 7, 7, 7, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3], [3, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3], [3, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3], [3, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3, 3, 3], [3, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3, 3, 3]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 2, 2, 2, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 7, 7, 7, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3], [8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3], [8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3, 3], [3, 3, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3, 3]]}], "test": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 2, 2, 2, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 2, 2, 2, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 4, 4, 4, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 4, 8, 4, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 1, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8], [8, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8], [8, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 2, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 2, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 4, 8, 4, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/456873bc.json b/data/arc-agi/evaluation/456873bc.json
deleted file mode 100644
index 59e3fcb..0000000
--- a/data/arc-agi/evaluation/456873bc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 8, 2, 2, 0, 0, 2, 8, 2, 0, 0, 2, 2, 8], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [8, 2, 2, 0, 0, 2, 8, 2, 0, 0, 2, 2, 8, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 2, 0, 0, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[2, 2, 0, 0, 2, 2, 0, 0, 3, 3, 3], [2, 0, 2, 0, 2, 0, 2, 0, 3, 3, 3], [0, 2, 0, 0, 0, 2, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [2, 2, 0, 0, 0, 0, 0, 0, 3, 3, 3], [2, 0, 2, 0, 0, 0, 0, 0, 3, 3, 3], [0, 2, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 0, 0, 2, 2, 0, 0, 3, 3, 3], [0, 0, 0, 0, 2, 0, 2, 0, 3, 3, 3], [0, 0, 0, 0, 0, 2, 0, 0, 3, 3, 3]], "output": [[8, 2, 0, 0, 2, 8, 0, 0, 0, 0, 0], [2, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0], [8, 0, 2, 0, 0, 0, 0, 0, 2, 0, 8], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0]]}, {"input": [[2, 0, 2, 0, 0, 0, 0, 0, 3, 3, 3], [0, 2, 0, 0, 0, 0, 0, 0, 3, 3, 3], [2, 2, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 0, 0, 2, 0, 2, 0, 3, 3, 3], [0, 0, 0, 0, 0, 2, 0, 0, 3, 3, 3], [0, 0, 0, 0, 2, 2, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [2, 0, 2, 0, 2, 0, 2, 0, 3, 3, 3], [0, 2, 0, 0, 0, 2, 0, 0, 3, 3, 3], [2, 2, 0, 0, 2, 2, 0, 0, 3, 3, 3]], "output": [[8, 0, 2, 0, 0, 0, 0, 0, 2, 0, 8], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0], [8, 2, 0, 0, 2, 8, 0, 0, 0, 0, 0]]}], "test": [{"input": [[2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2], [2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2], [2, 0, 2, 2, 0, 2, 0, 2, 2, 0, 2, 0, 2, 2, 0, 2, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2], [2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 0, 2, 2, 0, 2, 0, 2, 2]], "output": [[8, 2, 2, 2, 0, 2, 8, 2, 2, 0, 2, 2, 8, 2, 0, 2, 2, 2, 8], [2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2], [2, 0, 2, 2, 0, 2, 0, 2, 2, 0, 2, 0, 2, 2, 0, 2, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [8, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 8], [2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2], [8, 0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 0, 8, 2, 0, 2, 0, 2, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/45737921.json b/data/arc-agi/evaluation/45737921.json
deleted file mode 100644
index 6e97424..0000000
--- a/data/arc-agi/evaluation/45737921.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 4, 0, 0, 0, 0, 0, 0], [0, 4, 8, 4, 0, 0, 0, 0, 0, 0], [0, 8, 8, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 2, 2, 0], [0, 0, 0, 0, 0, 0, 3, 3, 2, 0], [0, 0, 0, 0, 0, 0, 3, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 6, 3, 0, 0, 0, 0, 0], [0, 0, 3, 6, 3, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 8, 0, 0, 0, 0, 0, 0], [0, 8, 4, 8, 0, 0, 0, 0, 0, 0], [0, 4, 4, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 3, 3, 0], [0, 0, 0, 0, 0, 0, 2, 2, 3, 0], [0, 0, 0, 0, 0, 0, 2, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 3, 6, 0, 0, 0, 0, 0], [0, 0, 6, 3, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 5, 8, 5, 0, 0, 0], [0, 5, 8, 5, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 8, 5, 8, 0, 0, 0], [0, 8, 5, 8, 0, 0, 0], [0, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 1, 8, 0, 0, 0, 3, 2, 3, 0, 0], [0, 8, 8, 8, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 3, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 6, 6, 0, 0, 4, 4, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 8, 1, 0, 0, 0, 2, 3, 2, 0, 0], [0, 1, 1, 1, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 2, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 1, 1, 0, 0, 5, 5, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 2, 2, 0, 0, 0, 0, 0], [0, 3, 3, 2, 0, 0, 0, 0, 0], [0, 3, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 1, 6, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 3, 3, 0, 0, 0, 0, 0], [0, 2, 2, 3, 0, 0, 0, 0, 0], [0, 2, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 6, 6, 6, 0], [0, 0, 0, 0, 0, 6, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/45bbe264.json b/data/arc-agi/evaluation/45bbe264.json
deleted file mode 100644
index abff01c..0000000
--- a/data/arc-agi/evaluation/45bbe264.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [5, 5, 5, 5, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 4, 4, 4, 4], [0, 0, 0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 5, 0, 0, 0, 0, 7, 0, 0, 0, 3, 0], [0, 0, 5, 0, 0, 0, 0, 7, 0, 0, 0, 3, 0], [3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3], [0, 0, 5, 0, 0, 0, 0, 7, 0, 0, 0, 3, 0], [5, 5, 5, 5, 5, 5, 5, 2, 5, 5, 5, 2, 5], [0, 0, 5, 0, 0, 0, 0, 7, 0, 0, 0, 3, 0], [0, 0, 5, 0, 0, 0, 0, 7, 0, 0, 0, 3, 0], [0, 0, 5, 0, 0, 0, 0, 7, 0, 0, 0, 3, 0], [0, 0, 5, 0, 0, 0, 0, 7, 0, 0, 0, 3, 0], [0, 0, 5, 0, 0, 0, 0, 7, 0, 0, 0, 3, 0], [0, 0, 5, 0, 0, 0, 0, 7, 0, 0, 0, 3, 0], [7, 7, 2, 7, 7, 7, 7, 7, 7, 7, 7, 2, 7], [0, 0, 5, 0, 0, 0, 0, 7, 0, 0, 0, 3, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 2, 8, 8, 8, 2, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0], [4, 4, 4, 2, 4, 4, 2, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0], [1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1], [0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/477d2879.json b/data/arc-agi/evaluation/477d2879.json
deleted file mode 100644
index 082ab48..0000000
--- a/data/arc-agi/evaluation/477d2879.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 8, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0], [0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0], [0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, 3], [3, 3, 3, 3, 2, 8, 8, 2, 3, 3, 3, 3, 3], [3, 3, 2, 2, 2, 8, 8, 2, 2, 3, 3, 3, 3], [3, 3, 2, 8, 8, 8, 8, 8, 2, 3, 3, 3, 3], [3, 3, 2, 8, 2, 2, 2, 8, 2, 3, 3, 3, 3], [3, 3, 2, 8, 2, 3, 2, 8, 2, 3, 3, 3, 3], [3, 3, 2, 8, 2, 3, 2, 8, 2, 2, 3, 3, 3], [3, 2, 2, 8, 2, 3, 2, 8, 8, 2, 3, 3, 3], [3, 2, 8, 8, 2, 3, 2, 8, 2, 2, 3, 3, 3], [3, 2, 2, 2, 2, 3, 2, 2, 2, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 3, 1, 1, 0, 0, 1, 8, 1, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0], [1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0], [0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0], [0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 6, 1, 1, 0], [0, 7, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0], [0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 3, 4, 4, 4, 4, 4, 4, 4], [2, 2, 2, 3, 3, 3, 4, 4, 8, 8, 8, 4, 4], [2, 2, 2, 3, 4, 4, 4, 4, 8, 6, 8, 4, 4], [3, 3, 3, 3, 4, 4, 4, 4, 8, 6, 8, 8, 4], [7, 7, 3, 4, 4, 4, 4, 4, 8, 6, 6, 8, 4], [7, 7, 3, 4, 4, 4, 4, 8, 8, 6, 8, 8, 4], [7, 7, 3, 3, 3, 3, 4, 8, 6, 6, 8, 4, 4], [7, 7, 7, 7, 7, 3, 4, 8, 6, 6, 8, 8, 4], [7, 7, 7, 3, 3, 3, 4, 8, 6, 6, 6, 8, 4], [7, 7, 7, 3, 4, 4, 4, 8, 6, 6, 8, 8, 4], [7, 7, 3, 3, 4, 4, 4, 8, 8, 8, 8, 4, 4], [7, 7, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [7, 7, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]]}, {"input": [[0, 0, 9, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0], [0, 1, 6, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0], [0, 8, 0, 0, 0, 3, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 8, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0], [1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 0], [0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]], "output": [[9, 9, 9, 9, 6, 8, 8, 8, 8, 8, 8, 8, 8], [6, 6, 9, 9, 6, 8, 8, 3, 3, 3, 3, 3, 8], [8, 6, 6, 6, 6, 8, 8, 3, 8, 8, 8, 3, 8], [8, 8, 8, 8, 8, 8, 8, 3, 8, 8, 3, 3, 8], [8, 8, 8, 8, 8, 3, 3, 3, 8, 8, 3, 8, 8], [8, 8, 8, 8, 8, 3, 8, 8, 8, 8, 3, 3, 8], [8, 8, 8, 8, 8, 3, 8, 8, 8, 8, 8, 3, 8], [8, 8, 8, 8, 8, 3, 3, 8, 8, 8, 8, 3, 8], [2, 2, 2, 8, 8, 8, 3, 8, 3, 3, 3, 3, 8], [7, 7, 2, 8, 8, 8, 3, 3, 3, 8, 8, 8, 8], [7, 7, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8], [7, 7, 7, 7, 2, 2, 8, 8, 8, 8, 8, 8, 8], [7, 7, 7, 7, 7, 2, 8, 8, 8, 8, 8, 8, 8]]}], "test": [{"input": [[0, 5, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0], [1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0], [0, 0, 7, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 8, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]], "output": [[5, 5, 5, 3, 7, 7, 7, 7, 7, 7, 7, 7, 7], [5, 5, 5, 3, 7, 7, 6, 6, 6, 6, 6, 7, 7], [5, 5, 3, 3, 7, 7, 6, 8, 8, 8, 6, 7, 7], [3, 3, 3, 7, 7, 7, 6, 6, 8, 8, 6, 6, 7], [7, 7, 7, 7, 7, 7, 7, 6, 8, 8, 8, 6, 7], [7, 7, 7, 7, 7, 7, 7, 6, 8, 8, 8, 6, 7], [7, 7, 7, 7, 7, 7, 7, 6, 8, 8, 8, 6, 7], [7, 7, 7, 7, 7, 6, 6, 6, 8, 8, 8, 6, 7], [7, 7, 7, 7, 7, 6, 8, 8, 8, 8, 8, 6, 7], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7], [4, 4, 4, 4, 4, 4, 4, 4, 6, 7, 7, 7, 7], [4, 4, 4, 4, 4, 4, 4, 6, 6, 7, 7, 7, 7], [4, 4, 4, 4, 4, 4, 4, 6, 7, 7, 7, 7, 7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/47996f11.json b/data/arc-agi/evaluation/47996f11.json
deleted file mode 100644
index d4d225b..0000000
--- a/data/arc-agi/evaluation/47996f11.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[5, 4, 4, 8, 1, 1, 5, 5, 8, 6, 6, 6, 6, 6, 6, 6, 6, 8, 3, 8, 3, 1, 5, 8, 5, 5, 1, 1, 8, 4], [4, 8, 8, 8, 1, 1, 5, 8, 5, 6, 6, 6, 6, 6, 6, 6, 6, 8, 8, 3, 7, 3, 1, 5, 8, 5, 1, 1, 8, 8], [4, 8, 5, 2, 5, 5, 2, 2, 1, 6, 6, 6, 6, 6, 6, 6, 6, 3, 8, 8, 1, 2, 3, 1, 2, 2, 5, 5, 2, 5], [8, 8, 2, 5, 5, 8, 2, 3, 3, 6, 6, 6, 6, 6, 6, 6, 6, 8, 2, 8, 8, 1, 7, 3, 3, 2, 8, 5, 5, 2], [1, 1, 5, 5, 1, 2, 4, 3, 8, 6, 6, 6, 6, 6, 6, 6, 6, 9, 2, 7, 8, 8, 3, 8, 3, 4, 2, 1, 5, 5], [1, 1, 5, 8, 2, 2, 3, 4, 3, 6, 6, 6, 6, 6, 6, 6, 6, 5, 7, 2, 2, 8, 8, 3, 4, 3, 2, 2, 8, 5], [5, 5, 2, 2, 4, 3, 7, 7, 8, 8, 3, 8, 9, 5, 4, 3, 3, 4, 5, 9, 8, 3, 8, 8, 7, 7, 3, 4, 2, 2], [5, 8, 2, 3, 3, 4, 7, 7, 8, 2, 8, 8, 5, 9, 3, 3, 3, 3, 9, 5, 8, 8, 2, 6, 6, 6, 6, 6, 3, 2], [8, 5, 1, 3, 8, 3, 8, 8, 2, 1, 5, 7, 4, 5, 2, 2, 2, 2, 5, 4, 7, 5, 1, 6, 6, 6, 6, 6, 3, 1], [5, 1, 3, 7, 3, 8, 8, 2, 1, 5, 7, 1, 5, 5, 2, 9, 9, 2, 5, 5, 1, 7, 5, 6, 6, 6, 6, 6, 7, 3], [1, 3, 2, 1, 8, 8, 3, 8, 5, 7, 9, 9, 2, 2, 5, 5, 5, 5, 2, 2, 9, 9, 7, 6, 6, 6, 6, 6, 1, 2], [3, 7, 1, 8, 8, 2, 8, 8, 7, 1, 9, 4, 2, 9, 5, 5, 5, 5, 9, 2, 4, 9, 1, 6, 6, 6, 6, 6, 8, 1], [8, 3, 8, 8, 7, 2, 9, 5, 4, 5, 2, 2, 4, 3, 5, 7, 7, 5, 3, 4, 2, 2, 5, 6, 6, 6, 6, 6, 8, 8], [3, 8, 8, 2, 2, 7, 5, 9, 5, 5, 2, 9, 3, 1, 7, 3, 3, 7, 1, 3, 9, 2, 5, 6, 6, 6, 6, 6, 2, 8], [8, 8, 3, 8, 9, 5, 4, 3, 2, 2, 5, 5, 5, 7, 1, 7, 7, 1, 7, 5, 5, 5, 2, 6, 6, 6, 6, 9, 8, 3], [8, 2, 8, 8, 5, 6, 6, 6, 6, 6, 6, 6, 7, 3, 7, 1, 1, 7, 3, 7, 5, 5, 9, 6, 6, 6, 6, 5, 8, 8], [8, 2, 8, 8, 5, 6, 6, 6, 6, 6, 6, 6, 7, 3, 7, 1, 1, 7, 3, 7, 5, 5, 9, 6, 6, 6, 6, 5, 8, 8], [8, 8, 3, 8, 9, 6, 6, 6, 6, 6, 6, 6, 5, 7, 1, 7, 7, 1, 7, 5, 5, 5, 2, 6, 6, 6, 6, 9, 8, 3], [3, 8, 8, 2, 2, 6, 6, 6, 6, 6, 6, 6, 3, 1, 7, 3, 3, 7, 1, 3, 9, 2, 5, 5, 9, 5, 7, 2, 2, 8], [8, 3, 8, 8, 7, 6, 6, 6, 6, 6, 6, 6, 4, 3, 5, 7, 7, 5, 3, 6, 6, 6, 6, 4, 5, 9, 2, 7, 8, 8], [3, 7, 1, 8, 8, 2, 8, 8, 7, 1, 9, 4, 2, 9, 5, 5, 5, 5, 9, 6, 6, 6, 6, 7, 8, 8, 2, 8, 8, 1], [1, 3, 2, 1, 8, 8, 3, 8, 5, 7, 9, 9, 2, 2, 5, 5, 5, 5, 2, 2, 9, 9, 7, 5, 8, 3, 8, 8, 1, 2], [5, 1, 3, 7, 3, 8, 8, 2, 1, 5, 7, 1, 5, 5, 2, 9, 9, 2, 5, 5, 1, 7, 5, 1, 2, 8, 8, 3, 7, 3], [8, 5, 1, 3, 8, 3, 8, 8, 2, 1, 5, 7, 4, 5, 2, 2, 2, 2, 5, 4, 7, 5, 1, 2, 8, 8, 3, 8, 3, 1], [5, 8, 2, 3, 3, 4, 7, 7, 8, 2, 8, 8, 5, 9, 3, 3, 3, 3, 9, 5, 8, 8, 2, 8, 7, 7, 4, 3, 3, 2], [5, 5, 2, 2, 4, 3, 7, 7, 8, 8, 3, 8, 9, 5, 4, 3, 3, 4, 5, 9, 8, 3, 8, 8, 7, 7, 3, 4, 2, 2], [1, 1, 5, 8, 2, 2, 3, 4, 3, 8, 8, 2, 2, 7, 5, 9, 9, 5, 7, 2, 2, 8, 8, 3, 4, 3, 2, 2, 8, 5], [1, 1, 5, 5, 1, 2, 4, 3, 8, 3, 8, 8, 7, 2, 9, 5, 5, 9, 2, 7, 8, 8, 3, 8, 3, 4, 2, 1, 5, 5], [8, 8, 2, 5, 5, 8, 2, 3, 3, 7, 1, 8, 8, 2, 8, 8, 8, 8, 2, 8, 8, 1, 7, 3, 3, 2, 8, 5, 5, 2], [4, 8, 5, 2, 5, 5, 2, 2, 1, 3, 2, 1, 8, 8, 3, 8, 8, 3, 8, 8, 1, 2, 3, 1, 2, 2, 5, 5, 2, 5]], "output": [[5, 4, 4, 8, 1, 1, 5, 5, 8, 5, 1, 3, 8, 3, 8, 8, 8, 8, 3, 8, 3, 1, 5, 8, 5, 5, 1, 1, 8, 4], [4, 8, 8, 8, 1, 1, 5, 8, 5, 1, 3, 7, 3, 8, 8, 2, 2, 8, 8, 3, 7, 3, 1, 5, 8, 5, 1, 1, 8, 8], [4, 8, 5, 2, 5, 5, 2, 2, 1, 3, 2, 1, 8, 8, 3, 8, 8, 3, 8, 8, 1, 2, 3, 1, 2, 2, 5, 5, 2, 5], [8, 8, 2, 5, 5, 8, 2, 3, 3, 7, 1, 8, 8, 2, 8, 8, 8, 8, 2, 8, 8, 1, 7, 3, 3, 2, 8, 5, 5, 2], [1, 1, 5, 5, 1, 2, 4, 3, 8, 3, 8, 8, 7, 2, 9, 5, 5, 9, 2, 7, 8, 8, 3, 8, 3, 4, 2, 1, 5, 5], [1, 1, 5, 8, 2, 2, 3, 4, 3, 8, 8, 2, 2, 7, 5, 9, 9, 5, 7, 2, 2, 8, 8, 3, 4, 3, 2, 2, 8, 5], [5, 5, 2, 2, 4, 3, 7, 7, 8, 8, 3, 8, 9, 5, 4, 3, 3, 4, 5, 9, 8, 3, 8, 8, 7, 7, 3, 4, 2, 2], [5, 8, 2, 3, 3, 4, 7, 7, 8, 2, 8, 8, 5, 9, 3, 3, 3, 3, 9, 5, 8, 8, 2, 8, 7, 7, 4, 3, 3, 2], [8, 5, 1, 3, 8, 3, 8, 8, 2, 1, 5, 7, 4, 5, 2, 2, 2, 2, 5, 4, 7, 5, 1, 2, 8, 8, 3, 8, 3, 1], [5, 1, 3, 7, 3, 8, 8, 2, 1, 5, 7, 1, 5, 5, 2, 9, 9, 2, 5, 5, 1, 7, 5, 1, 2, 8, 8, 3, 7, 3], [1, 3, 2, 1, 8, 8, 3, 8, 5, 7, 9, 9, 2, 2, 5, 5, 5, 5, 2, 2, 9, 9, 7, 5, 8, 3, 8, 8, 1, 2], [3, 7, 1, 8, 8, 2, 8, 8, 7, 1, 9, 4, 2, 9, 5, 5, 5, 5, 9, 2, 4, 9, 1, 7, 8, 8, 2, 8, 8, 1], [8, 3, 8, 8, 7, 2, 9, 5, 4, 5, 2, 2, 4, 3, 5, 7, 7, 5, 3, 4, 2, 2, 5, 4, 5, 9, 2, 7, 8, 8], [3, 8, 8, 2, 2, 7, 5, 9, 5, 5, 2, 9, 3, 1, 7, 3, 3, 7, 1, 3, 9, 2, 5, 5, 9, 5, 7, 2, 2, 8], [8, 8, 3, 8, 9, 5, 4, 3, 2, 2, 5, 5, 5, 7, 1, 7, 7, 1, 7, 5, 5, 5, 2, 2, 3, 4, 5, 9, 8, 3], [8, 2, 8, 8, 5, 9, 3, 3, 2, 9, 5, 5, 7, 3, 7, 1, 1, 7, 3, 7, 5, 5, 9, 2, 3, 3, 9, 5, 8, 8], [8, 2, 8, 8, 5, 9, 3, 3, 2, 9, 5, 5, 7, 3, 7, 1, 1, 7, 3, 7, 5, 5, 9, 2, 3, 3, 9, 5, 8, 8], [8, 8, 3, 8, 9, 5, 4, 3, 2, 2, 5, 5, 5, 7, 1, 7, 7, 1, 7, 5, 5, 5, 2, 2, 3, 4, 5, 9, 8, 3], [3, 8, 8, 2, 2, 7, 5, 9, 5, 5, 2, 9, 3, 1, 7, 3, 3, 7, 1, 3, 9, 2, 5, 5, 9, 5, 7, 2, 2, 8], [8, 3, 8, 8, 7, 2, 9, 5, 4, 5, 2, 2, 4, 3, 5, 7, 7, 5, 3, 4, 2, 2, 5, 4, 5, 9, 2, 7, 8, 8], [3, 7, 1, 8, 8, 2, 8, 8, 7, 1, 9, 4, 2, 9, 5, 5, 5, 5, 9, 2, 4, 9, 1, 7, 8, 8, 2, 8, 8, 1], [1, 3, 2, 1, 8, 8, 3, 8, 5, 7, 9, 9, 2, 2, 5, 5, 5, 5, 2, 2, 9, 9, 7, 5, 8, 3, 8, 8, 1, 2], [5, 1, 3, 7, 3, 8, 8, 2, 1, 5, 7, 1, 5, 5, 2, 9, 9, 2, 5, 5, 1, 7, 5, 1, 2, 8, 8, 3, 7, 3], [8, 5, 1, 3, 8, 3, 8, 8, 2, 1, 5, 7, 4, 5, 2, 2, 2, 2, 5, 4, 7, 5, 1, 2, 8, 8, 3, 8, 3, 1], [5, 8, 2, 3, 3, 4, 7, 7, 8, 2, 8, 8, 5, 9, 3, 3, 3, 3, 9, 5, 8, 8, 2, 8, 7, 7, 4, 3, 3, 2], [5, 5, 2, 2, 4, 3, 7, 7, 8, 8, 3, 8, 9, 5, 4, 3, 3, 4, 5, 9, 8, 3, 8, 8, 7, 7, 3, 4, 2, 2], [1, 1, 5, 8, 2, 2, 3, 4, 3, 8, 8, 2, 2, 7, 5, 9, 9, 5, 7, 2, 2, 8, 8, 3, 4, 3, 2, 2, 8, 5], [1, 1, 5, 5, 1, 2, 4, 3, 8, 3, 8, 8, 7, 2, 9, 5, 5, 9, 2, 7, 8, 8, 3, 8, 3, 4, 2, 1, 5, 5], [8, 8, 2, 5, 5, 8, 2, 3, 3, 7, 1, 8, 8, 2, 8, 8, 8, 8, 2, 8, 8, 1, 7, 3, 3, 2, 8, 5, 5, 2], [4, 8, 5, 2, 5, 5, 2, 2, 1, 3, 2, 1, 8, 8, 3, 8, 8, 3, 8, 8, 1, 2, 3, 1, 2, 2, 5, 5, 2, 5]]}], "train": [{"input": [[8, 9, 5, 5, 9, 4, 8, 8, 4, 5, 7, 7, 3, 6, 6, 6, 7, 7, 1, 3, 7, 7, 5, 4, 8, 8, 4, 9, 5, 5], [9, 8, 5, 8, 4, 9, 8, 8, 5, 4, 7, 7, 1, 6, 6, 6, 9, 7, 7, 1, 7, 7, 4, 5, 8, 8, 9, 4, 8, 5], [5, 5, 2, 2, 8, 8, 1, 7, 7, 7, 7, 7, 7, 6, 6, 6, 9, 9, 7, 7, 7, 7, 7, 7, 7, 1, 8, 8, 2, 2], [5, 8, 2, 9, 8, 8, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 7, 7, 7, 7, 7, 7, 7, 8, 8, 9, 2], [9, 4, 8, 8, 8, 2, 4, 4, 3, 1, 7, 7, 9, 3, 2, 5, 5, 2, 3, 9, 7, 7, 1, 3, 4, 4, 2, 8, 8, 8], [4, 9, 8, 8, 2, 8, 4, 1, 1, 7, 7, 9, 3, 8, 5, 2, 2, 5, 8, 3, 9, 7, 7, 1, 1, 4, 8, 2, 8, 8], [8, 8, 1, 7, 4, 4, 8, 7, 7, 7, 9, 9, 2, 5, 5, 4, 4, 5, 5, 2, 9, 9, 7, 7, 7, 8, 4, 4, 7, 1], [8, 8, 7, 7, 4, 1, 7, 8, 7, 9, 9, 9, 5, 2, 4, 5, 5, 4, 2, 5, 9, 9, 9, 7, 8, 7, 1, 4, 7, 7], [4, 5, 7, 7, 3, 1, 7, 7, 7, 7, 4, 4, 9, 1, 2, 2, 2, 2, 1, 9, 4, 4, 7, 7, 7, 7, 1, 3, 7, 7], [5, 4, 7, 7, 1, 7, 7, 9, 7, 7, 4, 9, 1, 7, 2, 2, 2, 2, 7, 1, 9, 4, 7, 7, 9, 7, 7, 1, 7, 7], [7, 7, 7, 7, 7, 7, 9, 9, 4, 4, 4, 5, 2, 2, 8, 3, 3, 8, 2, 2, 5, 4, 4, 4, 9, 9, 7, 7, 7, 7], [7, 7, 7, 7, 7, 9, 9, 9, 4, 9, 5, 5, 2, 2, 3, 8, 8, 3, 2, 2, 5, 5, 9, 4, 9, 9, 9, 7, 7, 7], [3, 1, 7, 7, 9, 3, 2, 5, 9, 1, 2, 2, 5, 5, 1, 1, 1, 1, 5, 5, 2, 2, 1, 9, 5, 2, 3, 9, 7, 7], [1, 7, 7, 9, 3, 8, 5, 2, 1, 7, 2, 2, 5, 2, 1, 7, 7, 1, 2, 5, 2, 2, 7, 1, 2, 5, 8, 3, 6, 6], [7, 7, 9, 9, 2, 5, 5, 4, 2, 2, 8, 3, 1, 1, 8, 2, 2, 8, 1, 1, 3, 8, 2, 2, 4, 5, 5, 2, 6, 6], [7, 9, 9, 9, 5, 2, 4, 5, 2, 2, 3, 8, 1, 7, 2, 3, 3, 2, 7, 1, 8, 3, 2, 2, 5, 4, 2, 5, 6, 6], [7, 9, 9, 9, 5, 2, 4, 5, 2, 2, 3, 8, 1, 7, 2, 3, 3, 2, 7, 1, 8, 3, 2, 2, 5, 4, 2, 5, 6, 6], [7, 7, 9, 9, 2, 5, 5, 4, 2, 2, 8, 3, 1, 1, 8, 2, 2, 8, 1, 1, 3, 8, 2, 2, 4, 5, 5, 2, 6, 6], [1, 7, 7, 9, 3, 8, 5, 2, 1, 7, 2, 2, 5, 2, 1, 7, 7, 1, 2, 5, 2, 2, 7, 1, 2, 5, 8, 3, 6, 6], [3, 1, 7, 7, 9, 3, 2, 5, 9, 1, 2, 2, 5, 5, 1, 1, 1, 1, 5, 5, 2, 2, 1, 9, 5, 2, 3, 9, 7, 7], [7, 7, 7, 7, 7, 9, 9, 9, 4, 9, 5, 5, 2, 2, 3, 8, 8, 3, 2, 2, 5, 5, 9, 4, 9, 9, 9, 7, 7, 6], [7, 7, 7, 7, 7, 7, 9, 9, 4, 4, 4, 5, 2, 2, 8, 3, 3, 8, 2, 2, 5, 4, 4, 4, 9, 9, 7, 7, 7, 6], [5, 4, 7, 7, 1, 7, 7, 9, 7, 7, 4, 9, 1, 7, 2, 2, 2, 2, 7, 1, 9, 4, 7, 7, 9, 7, 7, 1, 7, 6], [4, 5, 7, 7, 3, 1, 7, 7, 7, 7, 4, 4, 9, 1, 2, 2, 2, 2, 1, 9, 4, 4, 7, 7, 7, 7, 1, 3, 7, 6], [8, 8, 7, 7, 4, 1, 7, 8, 7, 9, 9, 9, 5, 2, 4, 5, 5, 4, 2, 5, 9, 9, 9, 6, 6, 7, 1, 4, 7, 6], [8, 8, 1, 7, 4, 4, 8, 7, 7, 7, 9, 9, 2, 5, 5, 4, 4, 5, 5, 2, 9, 9, 7, 6, 6, 8, 4, 4, 7, 6], [4, 9, 8, 8, 2, 8, 4, 1, 1, 7, 7, 9, 3, 8, 5, 2, 2, 5, 8, 3, 9, 7, 7, 6, 6, 4, 8, 2, 8, 8], [9, 4, 8, 8, 8, 2, 4, 4, 3, 1, 7, 7, 9, 3, 2, 5, 5, 2, 3, 9, 7, 7, 1, 6, 6, 4, 2, 8, 8, 8], [5, 8, 2, 9, 8, 8, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 7, 7, 7, 7, 6, 6, 7, 8, 8, 9, 2], [5, 5, 2, 2, 8, 8, 1, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 9, 7, 7, 7, 7, 7, 6, 6, 1, 8, 8, 2, 2]], "output": [[8, 9, 5, 5, 9, 4, 8, 8, 4, 5, 7, 7, 3, 1, 7, 7, 7, 7, 1, 3, 7, 7, 5, 4, 8, 8, 4, 9, 5, 5], [9, 8, 5, 8, 4, 9, 8, 8, 5, 4, 7, 7, 1, 7, 7, 9, 9, 7, 7, 1, 7, 7, 4, 5, 8, 8, 9, 4, 8, 5], [5, 5, 2, 2, 8, 8, 1, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 9, 7, 7, 7, 7, 7, 7, 7, 1, 8, 8, 2, 2], [5, 8, 2, 9, 8, 8, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 7, 7, 7, 7, 7, 7, 7, 8, 8, 9, 2], [9, 4, 8, 8, 8, 2, 4, 4, 3, 1, 7, 7, 9, 3, 2, 5, 5, 2, 3, 9, 7, 7, 1, 3, 4, 4, 2, 8, 8, 8], [4, 9, 8, 8, 2, 8, 4, 1, 1, 7, 7, 9, 3, 8, 5, 2, 2, 5, 8, 3, 9, 7, 7, 1, 1, 4, 8, 2, 8, 8], [8, 8, 1, 7, 4, 4, 8, 7, 7, 7, 9, 9, 2, 5, 5, 4, 4, 5, 5, 2, 9, 9, 7, 7, 7, 8, 4, 4, 7, 1], [8, 8, 7, 7, 4, 1, 7, 8, 7, 9, 9, 9, 5, 2, 4, 5, 5, 4, 2, 5, 9, 9, 9, 7, 8, 7, 1, 4, 7, 7], [4, 5, 7, 7, 3, 1, 7, 7, 7, 7, 4, 4, 9, 1, 2, 2, 2, 2, 1, 9, 4, 4, 7, 7, 7, 7, 1, 3, 7, 7], [5, 4, 7, 7, 1, 7, 7, 9, 7, 7, 4, 9, 1, 7, 2, 2, 2, 2, 7, 1, 9, 4, 7, 7, 9, 7, 7, 1, 7, 7], [7, 7, 7, 7, 7, 7, 9, 9, 4, 4, 4, 5, 2, 2, 8, 3, 3, 8, 2, 2, 5, 4, 4, 4, 9, 9, 7, 7, 7, 7], [7, 7, 7, 7, 7, 9, 9, 9, 4, 9, 5, 5, 2, 2, 3, 8, 8, 3, 2, 2, 5, 5, 9, 4, 9, 9, 9, 7, 7, 7], [3, 1, 7, 7, 9, 3, 2, 5, 9, 1, 2, 2, 5, 5, 1, 1, 1, 1, 5, 5, 2, 2, 1, 9, 5, 2, 3, 9, 7, 7], [1, 7, 7, 9, 3, 8, 5, 2, 1, 7, 2, 2, 5, 2, 1, 7, 7, 1, 2, 5, 2, 2, 7, 1, 2, 5, 8, 3, 9, 7], [7, 7, 9, 9, 2, 5, 5, 4, 2, 2, 8, 3, 1, 1, 8, 2, 2, 8, 1, 1, 3, 8, 2, 2, 4, 5, 5, 2, 9, 9], [7, 9, 9, 9, 5, 2, 4, 5, 2, 2, 3, 8, 1, 7, 2, 3, 3, 2, 7, 1, 8, 3, 2, 2, 5, 4, 2, 5, 9, 9], [7, 9, 9, 9, 5, 2, 4, 5, 2, 2, 3, 8, 1, 7, 2, 3, 3, 2, 7, 1, 8, 3, 2, 2, 5, 4, 2, 5, 9, 9], [7, 7, 9, 9, 2, 5, 5, 4, 2, 2, 8, 3, 1, 1, 8, 2, 2, 8, 1, 1, 3, 8, 2, 2, 4, 5, 5, 2, 9, 9], [1, 7, 7, 9, 3, 8, 5, 2, 1, 7, 2, 2, 5, 2, 1, 7, 7, 1, 2, 5, 2, 2, 7, 1, 2, 5, 8, 3, 9, 7], [3, 1, 7, 7, 9, 3, 2, 5, 9, 1, 2, 2, 5, 5, 1, 1, 1, 1, 5, 5, 2, 2, 1, 9, 5, 2, 3, 9, 7, 7], [7, 7, 7, 7, 7, 9, 9, 9, 4, 9, 5, 5, 2, 2, 3, 8, 8, 3, 2, 2, 5, 5, 9, 4, 9, 9, 9, 7, 7, 7], [7, 7, 7, 7, 7, 7, 9, 9, 4, 4, 4, 5, 2, 2, 8, 3, 3, 8, 2, 2, 5, 4, 4, 4, 9, 9, 7, 7, 7, 7], [5, 4, 7, 7, 1, 7, 7, 9, 7, 7, 4, 9, 1, 7, 2, 2, 2, 2, 7, 1, 9, 4, 7, 7, 9, 7, 7, 1, 7, 7], [4, 5, 7, 7, 3, 1, 7, 7, 7, 7, 4, 4, 9, 1, 2, 2, 2, 2, 1, 9, 4, 4, 7, 7, 7, 7, 1, 3, 7, 7], [8, 8, 7, 7, 4, 1, 7, 8, 7, 9, 9, 9, 5, 2, 4, 5, 5, 4, 2, 5, 9, 9, 9, 7, 8, 7, 1, 4, 7, 7], [8, 8, 1, 7, 4, 4, 8, 7, 7, 7, 9, 9, 2, 5, 5, 4, 4, 5, 5, 2, 9, 9, 7, 7, 7, 8, 4, 4, 7, 1], [4, 9, 8, 8, 2, 8, 4, 1, 1, 7, 7, 9, 3, 8, 5, 2, 2, 5, 8, 3, 9, 7, 7, 1, 1, 4, 8, 2, 8, 8], [9, 4, 8, 8, 8, 2, 4, 4, 3, 1, 7, 7, 9, 3, 2, 5, 5, 2, 3, 9, 7, 7, 1, 3, 4, 4, 2, 8, 8, 8], [5, 8, 2, 9, 8, 8, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 7, 7, 7, 7, 7, 7, 7, 8, 8, 9, 2], [5, 5, 2, 2, 8, 8, 1, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 9, 7, 7, 7, 7, 7, 7, 7, 1, 8, 8, 2, 2]]}, {"input": [[9, 3, 7, 7, 3, 3, 9, 4, 3, 3, 5, 5, 7, 1, 2, 3, 3, 2, 1, 7, 5, 6, 6, 6, 6, 6, 6, 3, 7, 7], [3, 9, 7, 9, 3, 9, 4, 9, 3, 3, 5, 5, 1, 1, 3, 3, 3, 3, 1, 1, 5, 6, 6, 6, 6, 6, 6, 3, 9, 7], [7, 7, 5, 3, 9, 4, 8, 5, 5, 5, 3, 3, 2, 3, 1, 1, 1, 1, 3, 2, 3, 3, 5, 5, 5, 8, 4, 9, 3, 5], [7, 9, 3, 3, 4, 9, 5, 8, 5, 5, 3, 3, 3, 3, 1, 7, 7, 1, 3, 3, 3, 3, 5, 5, 8, 5, 9, 4, 3, 3], [3, 3, 9, 4, 3, 5, 7, 2, 7, 1, 2, 3, 7, 6, 6, 6, 4, 7, 3, 7, 3, 2, 1, 7, 2, 7, 5, 3, 4, 9], [3, 9, 4, 9, 5, 5, 2, 1, 1, 1, 3, 3, 3, 6, 6, 6, 7, 4, 7, 3, 3, 3, 1, 1, 1, 2, 5, 5, 9, 4], [9, 4, 8, 5, 7, 2, 4, 4, 2, 3, 1, 1, 7, 6, 6, 6, 9, 5, 4, 7, 1, 1, 3, 2, 4, 4, 2, 7, 5, 8], [4, 9, 5, 8, 2, 1, 4, 2, 3, 3, 1, 7, 4, 6, 6, 6, 1, 9, 7, 4, 7, 1, 3, 3, 2, 4, 1, 2, 8, 5], [3, 3, 5, 5, 7, 1, 2, 3, 3, 3, 1, 4, 8, 5, 8, 3, 3, 8, 5, 8, 4, 1, 3, 3, 3, 2, 1, 7, 5, 5], [3, 3, 5, 5, 1, 1, 3, 3, 3, 3, 4, 1, 5, 8, 3, 2, 2, 3, 8, 5, 1, 4, 3, 3, 3, 3, 1, 1, 5, 5], [5, 5, 3, 3, 2, 3, 1, 1, 1, 4, 9, 7, 8, 3, 7, 7, 7, 7, 3, 8, 7, 9, 4, 1, 1, 1, 3, 2, 3, 3], [5, 5, 3, 3, 3, 3, 1, 7, 4, 1, 7, 9, 3, 2, 7, 5, 5, 7, 2, 3, 9, 7, 1, 4, 7, 1, 3, 3, 3, 3], [7, 1, 2, 3, 7, 3, 7, 4, 8, 5, 8, 3, 8, 1, 4, 8, 8, 4, 1, 8, 3, 8, 5, 8, 4, 7, 3, 7, 3, 2], [1, 1, 3, 3, 3, 7, 4, 7, 5, 8, 3, 2, 1, 1, 8, 4, 4, 8, 1, 6, 6, 6, 6, 6, 6, 4, 7, 3, 3, 3], [2, 3, 1, 1, 7, 4, 5, 9, 8, 3, 7, 7, 4, 8, 7, 7, 7, 7, 8, 6, 6, 6, 6, 6, 6, 5, 4, 7, 1, 1], [3, 3, 1, 7, 4, 7, 9, 1, 3, 2, 7, 5, 8, 4, 7, 1, 1, 7, 4, 8, 5, 7, 2, 3, 1, 9, 7, 4, 7, 1], [3, 3, 1, 7, 4, 7, 9, 1, 3, 2, 7, 5, 8, 4, 7, 1, 1, 7, 4, 8, 5, 7, 2, 3, 1, 9, 7, 4, 7, 1], [2, 3, 1, 1, 7, 4, 5, 9, 8, 3, 7, 7, 4, 8, 7, 7, 7, 7, 8, 4, 7, 7, 3, 8, 9, 5, 4, 7, 1, 1], [1, 1, 3, 3, 3, 7, 4, 7, 5, 8, 3, 2, 1, 1, 8, 4, 4, 8, 1, 1, 2, 3, 8, 5, 7, 4, 7, 3, 3, 3], [7, 1, 2, 3, 7, 3, 7, 4, 8, 5, 8, 3, 8, 1, 4, 8, 8, 4, 1, 8, 3, 8, 5, 8, 4, 7, 3, 7, 3, 2], [5, 5, 3, 3, 3, 3, 1, 7, 4, 1, 7, 9, 3, 2, 7, 5, 5, 7, 2, 3, 9, 7, 1, 4, 7, 1, 3, 3, 3, 3], [5, 5, 3, 3, 2, 3, 1, 1, 1, 4, 9, 7, 8, 3, 7, 7, 7, 7, 3, 8, 7, 9, 4, 1, 1, 1, 3, 2, 3, 3], [3, 3, 5, 5, 1, 1, 3, 3, 3, 3, 4, 1, 5, 8, 3, 2, 2, 3, 8, 5, 1, 4, 3, 3, 3, 3, 1, 1, 5, 5], [3, 3, 5, 5, 7, 1, 2, 3, 3, 3, 1, 4, 8, 5, 8, 3, 3, 8, 5, 8, 4, 1, 3, 3, 3, 2, 1, 7, 5, 5], [4, 9, 5, 8, 2, 1, 4, 2, 3, 3, 1, 7, 4, 7, 9, 1, 1, 9, 7, 4, 7, 1, 3, 3, 2, 4, 1, 2, 8, 5], [9, 4, 8, 5, 7, 2, 4, 4, 2, 3, 1, 1, 7, 4, 5, 9, 9, 5, 4, 7, 1, 1, 3, 2, 4, 4, 2, 7, 5, 8], [3, 9, 4, 9, 5, 5, 2, 1, 1, 1, 3, 3, 3, 7, 4, 7, 7, 4, 7, 3, 3, 3, 1, 1, 1, 2, 5, 5, 9, 4], [3, 3, 9, 4, 3, 6, 6, 6, 7, 1, 2, 3, 7, 3, 7, 4, 4, 7, 3, 7, 3, 2, 1, 7, 2, 7, 5, 3, 4, 9], [7, 9, 3, 3, 4, 6, 6, 6, 5, 5, 3, 3, 3, 3, 1, 7, 7, 1, 3, 3, 3, 3, 5, 5, 8, 5, 9, 4, 3, 3], [7, 7, 5, 3, 9, 6, 6, 6, 5, 5, 3, 3, 2, 3, 1, 1, 1, 1, 3, 2, 3, 3, 5, 5, 5, 8, 4, 9, 3, 5]], "output": [[9, 3, 7, 7, 3, 3, 9, 4, 3, 3, 5, 5, 7, 1, 2, 3, 3, 2, 1, 7, 5, 5, 3, 3, 4, 9, 3, 3, 7, 7], [3, 9, 7, 9, 3, 9, 4, 9, 3, 3, 5, 5, 1, 1, 3, 3, 3, 3, 1, 1, 5, 5, 3, 3, 9, 4, 9, 3, 9, 7], [7, 7, 5, 3, 9, 4, 8, 5, 5, 5, 3, 3, 2, 3, 1, 1, 1, 1, 3, 2, 3, 3, 5, 5, 5, 8, 4, 9, 3, 5], [7, 9, 3, 3, 4, 9, 5, 8, 5, 5, 3, 3, 3, 3, 1, 7, 7, 1, 3, 3, 3, 3, 5, 5, 8, 5, 9, 4, 3, 3], [3, 3, 9, 4, 3, 5, 7, 2, 7, 1, 2, 3, 7, 3, 7, 4, 4, 7, 3, 7, 3, 2, 1, 7, 2, 7, 5, 3, 4, 9], [3, 9, 4, 9, 5, 5, 2, 1, 1, 1, 3, 3, 3, 7, 4, 7, 7, 4, 7, 3, 3, 3, 1, 1, 1, 2, 5, 5, 9, 4], [9, 4, 8, 5, 7, 2, 4, 4, 2, 3, 1, 1, 7, 4, 5, 9, 9, 5, 4, 7, 1, 1, 3, 2, 4, 4, 2, 7, 5, 8], [4, 9, 5, 8, 2, 1, 4, 2, 3, 3, 1, 7, 4, 7, 9, 1, 1, 9, 7, 4, 7, 1, 3, 3, 2, 4, 1, 2, 8, 5], [3, 3, 5, 5, 7, 1, 2, 3, 3, 3, 1, 4, 8, 5, 8, 3, 3, 8, 5, 8, 4, 1, 3, 3, 3, 2, 1, 7, 5, 5], [3, 3, 5, 5, 1, 1, 3, 3, 3, 3, 4, 1, 5, 8, 3, 2, 2, 3, 8, 5, 1, 4, 3, 3, 3, 3, 1, 1, 5, 5], [5, 5, 3, 3, 2, 3, 1, 1, 1, 4, 9, 7, 8, 3, 7, 7, 7, 7, 3, 8, 7, 9, 4, 1, 1, 1, 3, 2, 3, 3], [5, 5, 3, 3, 3, 3, 1, 7, 4, 1, 7, 9, 3, 2, 7, 5, 5, 7, 2, 3, 9, 7, 1, 4, 7, 1, 3, 3, 3, 3], [7, 1, 2, 3, 7, 3, 7, 4, 8, 5, 8, 3, 8, 1, 4, 8, 8, 4, 1, 8, 3, 8, 5, 8, 4, 7, 3, 7, 3, 2], [1, 1, 3, 3, 3, 7, 4, 7, 5, 8, 3, 2, 1, 1, 8, 4, 4, 8, 1, 1, 2, 3, 8, 5, 7, 4, 7, 3, 3, 3], [2, 3, 1, 1, 7, 4, 5, 9, 8, 3, 7, 7, 4, 8, 7, 7, 7, 7, 8, 4, 7, 7, 3, 8, 9, 5, 4, 7, 1, 1], [3, 3, 1, 7, 4, 7, 9, 1, 3, 2, 7, 5, 8, 4, 7, 1, 1, 7, 4, 8, 5, 7, 2, 3, 1, 9, 7, 4, 7, 1], [3, 3, 1, 7, 4, 7, 9, 1, 3, 2, 7, 5, 8, 4, 7, 1, 1, 7, 4, 8, 5, 7, 2, 3, 1, 9, 7, 4, 7, 1], [2, 3, 1, 1, 7, 4, 5, 9, 8, 3, 7, 7, 4, 8, 7, 7, 7, 7, 8, 4, 7, 7, 3, 8, 9, 5, 4, 7, 1, 1], [1, 1, 3, 3, 3, 7, 4, 7, 5, 8, 3, 2, 1, 1, 8, 4, 4, 8, 1, 1, 2, 3, 8, 5, 7, 4, 7, 3, 3, 3], [7, 1, 2, 3, 7, 3, 7, 4, 8, 5, 8, 3, 8, 1, 4, 8, 8, 4, 1, 8, 3, 8, 5, 8, 4, 7, 3, 7, 3, 2], [5, 5, 3, 3, 3, 3, 1, 7, 4, 1, 7, 9, 3, 2, 7, 5, 5, 7, 2, 3, 9, 7, 1, 4, 7, 1, 3, 3, 3, 3], [5, 5, 3, 3, 2, 3, 1, 1, 1, 4, 9, 7, 8, 3, 7, 7, 7, 7, 3, 8, 7, 9, 4, 1, 1, 1, 3, 2, 3, 3], [3, 3, 5, 5, 1, 1, 3, 3, 3, 3, 4, 1, 5, 8, 3, 2, 2, 3, 8, 5, 1, 4, 3, 3, 3, 3, 1, 1, 5, 5], [3, 3, 5, 5, 7, 1, 2, 3, 3, 3, 1, 4, 8, 5, 8, 3, 3, 8, 5, 8, 4, 1, 3, 3, 3, 2, 1, 7, 5, 5], [4, 9, 5, 8, 2, 1, 4, 2, 3, 3, 1, 7, 4, 7, 9, 1, 1, 9, 7, 4, 7, 1, 3, 3, 2, 4, 1, 2, 8, 5], [9, 4, 8, 5, 7, 2, 4, 4, 2, 3, 1, 1, 7, 4, 5, 9, 9, 5, 4, 7, 1, 1, 3, 2, 4, 4, 2, 7, 5, 8], [3, 9, 4, 9, 5, 5, 2, 1, 1, 1, 3, 3, 3, 7, 4, 7, 7, 4, 7, 3, 3, 3, 1, 1, 1, 2, 5, 5, 9, 4], [3, 3, 9, 4, 3, 5, 7, 2, 7, 1, 2, 3, 7, 3, 7, 4, 4, 7, 3, 7, 3, 2, 1, 7, 2, 7, 5, 3, 4, 9], [7, 9, 3, 3, 4, 9, 5, 8, 5, 5, 3, 3, 3, 3, 1, 7, 7, 1, 3, 3, 3, 3, 5, 5, 8, 5, 9, 4, 3, 3], [7, 7, 5, 3, 9, 4, 8, 5, 5, 5, 3, 3, 2, 3, 1, 1, 1, 1, 3, 2, 3, 3, 5, 5, 5, 8, 4, 9, 3, 5]]}, {"input": [[8, 8, 8, 2, 4, 2, 9, 9, 3, 2, 8, 8, 5, 5, 3, 3, 3, 3, 5, 5, 8, 8, 2, 3, 9, 9, 2, 4, 2, 8], [8, 9, 2, 8, 2, 2, 9, 5, 2, 3, 8, 8, 5, 7, 3, 9, 9, 3, 7, 5, 8, 8, 3, 2, 5, 9, 2, 2, 8, 2], [8, 2, 4, 9, 9, 9, 5, 1, 8, 8, 3, 3, 3, 3, 9, 4, 4, 9, 3, 3, 3, 3, 8, 8, 1, 5, 9, 9, 9, 4], [2, 8, 9, 8, 9, 5, 1, 8, 8, 8, 3, 9, 3, 9, 4, 8, 8, 4, 9, 3, 9, 3, 8, 8, 8, 1, 5, 9, 8, 9], [4, 2, 9, 9, 1, 9, 8, 1, 5, 5, 3, 3, 8, 5, 5, 5, 5, 5, 5, 8, 3, 3, 5, 5, 1, 8, 9, 1, 9, 9], [2, 2, 9, 5, 9, 5, 1, 8, 5, 7, 3, 9, 5, 5, 5, 5, 5, 5, 5, 5, 9, 3, 7, 5, 8, 1, 5, 9, 5, 9], [9, 9, 5, 1, 8, 1, 5, 5, 3, 3, 9, 4, 5, 5, 2, 5, 5, 2, 5, 5, 4, 9, 3, 3, 5, 5, 1, 8, 1, 5], [9, 5, 1, 8, 1, 8, 5, 7, 3, 9, 4, 8, 5, 5, 5, 7, 7, 5, 5, 5, 8, 4, 9, 3, 7, 5, 8, 1, 8, 1], [3, 2, 8, 8, 5, 5, 6, 6, 7, 2, 5, 2, 2, 4, 2, 7, 7, 2, 4, 2, 2, 5, 2, 7, 3, 3, 5, 5, 8, 8], [2, 3, 8, 8, 5, 7, 6, 6, 2, 7, 2, 2, 4, 9, 7, 2, 2, 7, 9, 4, 2, 2, 7, 2, 9, 3, 7, 5, 8, 8], [8, 8, 3, 3, 3, 3, 6, 6, 5, 2, 5, 4, 2, 7, 8, 7, 7, 8, 7, 2, 4, 5, 2, 5, 4, 9, 3, 3, 3, 3], [8, 8, 3, 9, 3, 9, 6, 6, 2, 2, 4, 5, 7, 2, 7, 5, 5, 7, 2, 7, 5, 4, 2, 2, 8, 4, 9, 3, 9, 3], [5, 5, 3, 3, 8, 5, 5, 5, 6, 6, 6, 6, 6, 9, 3, 3, 3, 3, 9, 9, 7, 2, 4, 2, 5, 5, 5, 8, 3, 3], [5, 7, 3, 9, 5, 5, 5, 5, 6, 6, 6, 6, 6, 7, 3, 7, 7, 3, 7, 9, 2, 7, 9, 4, 5, 5, 5, 5, 9, 3], [3, 3, 9, 4, 5, 5, 2, 5, 6, 6, 6, 6, 6, 3, 8, 8, 8, 8, 3, 3, 7, 8, 7, 2, 5, 2, 5, 5, 4, 9], [3, 9, 4, 8, 5, 5, 5, 7, 6, 6, 6, 6, 6, 6, 6, 8, 8, 8, 7, 3, 5, 7, 2, 7, 7, 5, 5, 5, 8, 4], [3, 9, 4, 8, 5, 5, 5, 7, 6, 6, 6, 6, 6, 6, 6, 8, 8, 8, 7, 3, 5, 7, 2, 7, 7, 5, 5, 5, 8, 4], [3, 3, 9, 4, 5, 5, 2, 5, 6, 6, 6, 6, 6, 6, 6, 8, 8, 8, 3, 3, 7, 8, 7, 2, 5, 2, 5, 5, 4, 9], [5, 7, 3, 9, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 7, 7, 3, 7, 9, 2, 7, 9, 4, 5, 5, 5, 5, 9, 3], [5, 5, 3, 3, 8, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 3, 3, 3, 9, 9, 7, 2, 4, 2, 5, 5, 5, 8, 3, 3], [8, 8, 3, 9, 3, 9, 4, 8, 2, 6, 6, 6, 6, 6, 6, 5, 5, 7, 2, 7, 5, 4, 2, 2, 8, 4, 9, 3, 9, 3], [8, 8, 3, 3, 3, 3, 9, 4, 5, 6, 6, 6, 6, 6, 6, 7, 7, 8, 7, 2, 4, 5, 2, 5, 4, 9, 3, 3, 3, 3], [2, 3, 8, 8, 5, 7, 3, 9, 6, 6, 6, 6, 6, 9, 7, 2, 2, 7, 9, 4, 2, 2, 7, 2, 9, 3, 7, 5, 8, 8], [3, 2, 8, 8, 5, 5, 3, 3, 6, 6, 6, 6, 6, 4, 2, 7, 7, 2, 4, 2, 2, 5, 2, 7, 3, 3, 5, 5, 8, 8], [9, 5, 1, 8, 1, 8, 5, 7, 6, 6, 6, 6, 6, 5, 5, 7, 7, 5, 5, 5, 8, 4, 9, 3, 7, 5, 8, 1, 8, 1], [9, 9, 5, 1, 8, 1, 5, 5, 6, 6, 6, 6, 6, 5, 2, 5, 5, 2, 5, 5, 4, 9, 3, 3, 5, 5, 1, 8, 1, 5], [2, 2, 9, 5, 9, 5, 1, 8, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 9, 3, 7, 5, 8, 1, 5, 9, 5, 9], [4, 2, 9, 9, 1, 9, 8, 1, 5, 5, 3, 3, 8, 5, 5, 5, 5, 5, 5, 8, 3, 3, 5, 5, 1, 8, 9, 1, 9, 9], [2, 8, 9, 8, 9, 5, 1, 8, 8, 8, 3, 9, 3, 9, 4, 8, 8, 4, 9, 3, 9, 3, 8, 8, 8, 1, 5, 9, 8, 9], [8, 2, 4, 9, 9, 9, 5, 1, 8, 8, 3, 3, 3, 3, 9, 4, 4, 9, 3, 3, 3, 3, 8, 8, 1, 5, 9, 9, 9, 4]], "output": [[8, 8, 8, 2, 4, 2, 9, 9, 3, 2, 8, 8, 5, 5, 3, 3, 3, 3, 5, 5, 8, 8, 2, 3, 9, 9, 2, 4, 2, 8], [8, 9, 2, 8, 2, 2, 9, 5, 2, 3, 8, 8, 5, 7, 3, 9, 9, 3, 7, 5, 8, 8, 3, 2, 5, 9, 2, 2, 8, 2], [8, 2, 4, 9, 9, 9, 5, 1, 8, 8, 3, 3, 3, 3, 9, 4, 4, 9, 3, 3, 3, 3, 8, 8, 1, 5, 9, 9, 9, 4], [2, 8, 9, 8, 9, 5, 1, 8, 8, 8, 3, 9, 3, 9, 4, 8, 8, 4, 9, 3, 9, 3, 8, 8, 8, 1, 5, 9, 8, 9], [4, 2, 9, 9, 1, 9, 8, 1, 5, 5, 3, 3, 8, 5, 5, 5, 5, 5, 5, 8, 3, 3, 5, 5, 1, 8, 9, 1, 9, 9], [2, 2, 9, 5, 9, 5, 1, 8, 5, 7, 3, 9, 5, 5, 5, 5, 5, 5, 5, 5, 9, 3, 7, 5, 8, 1, 5, 9, 5, 9], [9, 9, 5, 1, 8, 1, 5, 5, 3, 3, 9, 4, 5, 5, 2, 5, 5, 2, 5, 5, 4, 9, 3, 3, 5, 5, 1, 8, 1, 5], [9, 5, 1, 8, 1, 8, 5, 7, 3, 9, 4, 8, 5, 5, 5, 7, 7, 5, 5, 5, 8, 4, 9, 3, 7, 5, 8, 1, 8, 1], [3, 2, 8, 8, 5, 5, 3, 3, 7, 2, 5, 2, 2, 4, 2, 7, 7, 2, 4, 2, 2, 5, 2, 7, 3, 3, 5, 5, 8, 8], [2, 3, 8, 8, 5, 7, 3, 9, 2, 7, 2, 2, 4, 9, 7, 2, 2, 7, 9, 4, 2, 2, 7, 2, 9, 3, 7, 5, 8, 8], [8, 8, 3, 3, 3, 3, 9, 4, 5, 2, 5, 4, 2, 7, 8, 7, 7, 8, 7, 2, 4, 5, 2, 5, 4, 9, 3, 3, 3, 3], [8, 8, 3, 9, 3, 9, 4, 8, 2, 2, 4, 5, 7, 2, 7, 5, 5, 7, 2, 7, 5, 4, 2, 2, 8, 4, 9, 3, 9, 3], [5, 5, 3, 3, 8, 5, 5, 5, 2, 4, 2, 7, 9, 9, 3, 3, 3, 3, 9, 9, 7, 2, 4, 2, 5, 5, 5, 8, 3, 3], [5, 7, 3, 9, 5, 5, 5, 5, 4, 9, 7, 2, 9, 7, 3, 7, 7, 3, 7, 9, 2, 7, 9, 4, 5, 5, 5, 5, 9, 3], [3, 3, 9, 4, 5, 5, 2, 5, 2, 7, 8, 7, 3, 3, 8, 8, 8, 8, 3, 3, 7, 8, 7, 2, 5, 2, 5, 5, 4, 9], [3, 9, 4, 8, 5, 5, 5, 7, 7, 2, 7, 5, 3, 7, 8, 8, 8, 8, 7, 3, 5, 7, 2, 7, 7, 5, 5, 5, 8, 4], [3, 9, 4, 8, 5, 5, 5, 7, 7, 2, 7, 5, 3, 7, 8, 8, 8, 8, 7, 3, 5, 7, 2, 7, 7, 5, 5, 5, 8, 4], [3, 3, 9, 4, 5, 5, 2, 5, 2, 7, 8, 7, 3, 3, 8, 8, 8, 8, 3, 3, 7, 8, 7, 2, 5, 2, 5, 5, 4, 9], [5, 7, 3, 9, 5, 5, 5, 5, 4, 9, 7, 2, 9, 7, 3, 7, 7, 3, 7, 9, 2, 7, 9, 4, 5, 5, 5, 5, 9, 3], [5, 5, 3, 3, 8, 5, 5, 5, 2, 4, 2, 7, 9, 9, 3, 3, 3, 3, 9, 9, 7, 2, 4, 2, 5, 5, 5, 8, 3, 3], [8, 8, 3, 9, 3, 9, 4, 8, 2, 2, 4, 5, 7, 2, 7, 5, 5, 7, 2, 7, 5, 4, 2, 2, 8, 4, 9, 3, 9, 3], [8, 8, 3, 3, 3, 3, 9, 4, 5, 2, 5, 4, 2, 7, 8, 7, 7, 8, 7, 2, 4, 5, 2, 5, 4, 9, 3, 3, 3, 3], [2, 3, 8, 8, 5, 7, 3, 9, 2, 7, 2, 2, 4, 9, 7, 2, 2, 7, 9, 4, 2, 2, 7, 2, 9, 3, 7, 5, 8, 8], [3, 2, 8, 8, 5, 5, 3, 3, 7, 2, 5, 2, 2, 4, 2, 7, 7, 2, 4, 2, 2, 5, 2, 7, 3, 3, 5, 5, 8, 8], [9, 5, 1, 8, 1, 8, 5, 7, 3, 9, 4, 8, 5, 5, 5, 7, 7, 5, 5, 5, 8, 4, 9, 3, 7, 5, 8, 1, 8, 1], [9, 9, 5, 1, 8, 1, 5, 5, 3, 3, 9, 4, 5, 5, 2, 5, 5, 2, 5, 5, 4, 9, 3, 3, 5, 5, 1, 8, 1, 5], [2, 2, 9, 5, 9, 5, 1, 8, 5, 7, 3, 9, 5, 5, 5, 5, 5, 5, 5, 5, 9, 3, 7, 5, 8, 1, 5, 9, 5, 9], [4, 2, 9, 9, 1, 9, 8, 1, 5, 5, 3, 3, 8, 5, 5, 5, 5, 5, 5, 8, 3, 3, 5, 5, 1, 8, 9, 1, 9, 9], [2, 8, 9, 8, 9, 5, 1, 8, 8, 8, 3, 9, 3, 9, 4, 8, 8, 4, 9, 3, 9, 3, 8, 8, 8, 1, 5, 9, 8, 9], [8, 2, 4, 9, 9, 9, 5, 1, 8, 8, 3, 3, 3, 3, 9, 4, 4, 9, 3, 3, 3, 3, 8, 8, 1, 5, 9, 9, 9, 4]]}, {"input": [[2, 9, 2, 8, 9, 2, 5, 5, 7, 7, 3, 9, 8, 8, 4, 4, 4, 4, 8, 6, 6, 6, 6, 6, 6, 6, 2, 9, 8, 2], [9, 4, 8, 8, 2, 1, 5, 5, 7, 1, 9, 1, 8, 4, 4, 4, 4, 4, 4, 6, 6, 6, 6, 6, 6, 6, 1, 2, 8, 8], [2, 8, 4, 2, 5, 5, 9, 8, 3, 9, 9, 4, 4, 4, 3, 1, 1, 3, 4, 6, 6, 6, 6, 6, 6, 6, 5, 5, 2, 4], [8, 8, 2, 1, 5, 5, 8, 9, 9, 1, 4, 4, 4, 4, 1, 1, 1, 1, 4, 6, 6, 6, 6, 6, 6, 6, 5, 5, 1, 2], [9, 2, 5, 5, 8, 9, 8, 3, 8, 8, 4, 4, 7, 1, 1, 8, 8, 1, 1, 7, 4, 4, 8, 8, 3, 8, 9, 8, 5, 5], [2, 1, 5, 5, 9, 2, 3, 8, 8, 4, 4, 4, 1, 3, 8, 5, 5, 8, 3, 1, 4, 4, 4, 8, 8, 3, 2, 9, 5, 5], [5, 5, 9, 8, 8, 3, 5, 8, 4, 4, 3, 1, 1, 8, 3, 3, 3, 3, 8, 1, 1, 3, 4, 4, 8, 5, 3, 8, 8, 9], [5, 5, 8, 6, 6, 6, 6, 6, 4, 4, 1, 1, 8, 5, 3, 3, 3, 3, 5, 8, 1, 1, 4, 4, 7, 8, 8, 3, 9, 8], [7, 7, 3, 6, 6, 6, 6, 6, 2, 2, 8, 9, 8, 8, 7, 7, 7, 7, 8, 8, 9, 8, 2, 2, 4, 4, 8, 8, 9, 3], [7, 1, 9, 1, 8, 4, 4, 4, 2, 9, 9, 5, 8, 8, 7, 7, 7, 7, 8, 8, 5, 9, 9, 2, 4, 4, 4, 8, 1, 9], [3, 9, 9, 4, 4, 4, 3, 1, 8, 9, 4, 4, 7, 7, 2, 2, 2, 2, 7, 7, 4, 4, 9, 8, 1, 3, 4, 4, 4, 9], [9, 1, 4, 4, 4, 4, 1, 1, 9, 5, 4, 3, 7, 7, 2, 2, 2, 2, 7, 7, 3, 4, 5, 9, 1, 1, 4, 4, 4, 4], [8, 8, 4, 4, 7, 1, 1, 8, 8, 8, 7, 7, 1, 8, 1, 3, 3, 1, 8, 1, 7, 7, 8, 8, 8, 1, 1, 7, 4, 4], [6, 6, 6, 6, 6, 6, 6, 5, 8, 8, 7, 7, 8, 8, 3, 3, 3, 3, 8, 8, 7, 7, 8, 8, 5, 8, 3, 1, 4, 4], [6, 6, 6, 6, 6, 6, 6, 3, 7, 7, 2, 2, 1, 3, 5, 3, 3, 5, 3, 1, 2, 2, 7, 7, 3, 3, 8, 1, 1, 3], [6, 6, 6, 6, 6, 6, 6, 3, 7, 7, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 7, 7, 3, 3, 5, 8, 1, 1], [6, 6, 6, 6, 6, 6, 6, 3, 7, 7, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 7, 7, 3, 3, 5, 8, 1, 1], [6, 6, 6, 6, 6, 6, 6, 3, 7, 7, 2, 2, 1, 3, 5, 3, 3, 5, 3, 1, 2, 2, 7, 7, 3, 3, 8, 1, 1, 3], [6, 6, 6, 6, 6, 6, 6, 5, 8, 8, 7, 7, 8, 8, 3, 3, 3, 3, 8, 8, 7, 7, 8, 8, 5, 8, 3, 1, 4, 4], [8, 8, 4, 4, 7, 1, 1, 8, 8, 8, 7, 7, 1, 8, 1, 3, 3, 1, 8, 1, 7, 7, 8, 8, 8, 1, 1, 7, 4, 4], [9, 1, 4, 4, 6, 6, 6, 6, 6, 5, 4, 3, 7, 7, 2, 2, 2, 2, 7, 7, 3, 4, 5, 9, 1, 1, 4, 4, 4, 4], [3, 9, 9, 4, 6, 6, 6, 6, 6, 9, 4, 4, 7, 7, 2, 2, 2, 2, 7, 7, 4, 4, 9, 8, 1, 3, 4, 4, 4, 9], [7, 1, 9, 1, 6, 6, 6, 6, 6, 9, 9, 5, 8, 8, 7, 7, 7, 7, 8, 8, 5, 9, 9, 2, 4, 4, 4, 8, 1, 9], [7, 7, 3, 9, 6, 6, 6, 6, 6, 2, 8, 9, 8, 8, 7, 7, 7, 7, 8, 8, 9, 8, 2, 2, 4, 4, 8, 8, 9, 3], [5, 5, 8, 9, 6, 6, 6, 6, 6, 4, 1, 1, 8, 5, 3, 3, 3, 3, 5, 8, 1, 1, 4, 4, 7, 8, 8, 3, 9, 8], [5, 5, 9, 8, 6, 6, 6, 6, 6, 4, 3, 1, 1, 8, 3, 3, 3, 3, 8, 1, 1, 3, 4, 4, 8, 5, 3, 8, 8, 9], [2, 1, 5, 5, 6, 6, 6, 6, 6, 4, 4, 4, 1, 3, 8, 5, 5, 8, 3, 1, 4, 4, 4, 8, 8, 3, 2, 9, 5, 5], [9, 2, 5, 5, 8, 9, 8, 3, 8, 8, 4, 4, 7, 1, 1, 8, 8, 1, 1, 7, 4, 4, 8, 8, 3, 8, 9, 8, 5, 5], [8, 8, 2, 1, 5, 5, 8, 9, 9, 1, 4, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4, 4, 1, 9, 9, 8, 5, 5, 1, 2], [2, 8, 4, 2, 5, 5, 9, 8, 3, 9, 9, 4, 4, 4, 3, 1, 1, 3, 4, 4, 4, 9, 9, 3, 8, 9, 5, 5, 2, 4]], "output": [[2, 9, 2, 8, 9, 2, 5, 5, 7, 7, 3, 9, 8, 8, 4, 4, 4, 4, 8, 8, 9, 3, 7, 7, 5, 5, 2, 9, 8, 2], [9, 4, 8, 8, 2, 1, 5, 5, 7, 1, 9, 1, 8, 4, 4, 4, 4, 4, 4, 8, 1, 9, 1, 7, 5, 5, 1, 2, 8, 8], [2, 8, 4, 2, 5, 5, 9, 8, 3, 9, 9, 4, 4, 4, 3, 1, 1, 3, 4, 4, 4, 9, 9, 3, 8, 9, 5, 5, 2, 4], [8, 8, 2, 1, 5, 5, 8, 9, 9, 1, 4, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4, 4, 1, 9, 9, 8, 5, 5, 1, 2], [9, 2, 5, 5, 8, 9, 8, 3, 8, 8, 4, 4, 7, 1, 1, 8, 8, 1, 1, 7, 4, 4, 8, 8, 3, 8, 9, 8, 5, 5], [2, 1, 5, 5, 9, 2, 3, 8, 8, 4, 4, 4, 1, 3, 8, 5, 5, 8, 3, 1, 4, 4, 4, 8, 8, 3, 2, 9, 5, 5], [5, 5, 9, 8, 8, 3, 5, 8, 4, 4, 3, 1, 1, 8, 3, 3, 3, 3, 8, 1, 1, 3, 4, 4, 8, 5, 3, 8, 8, 9], [5, 5, 8, 9, 3, 8, 8, 7, 4, 4, 1, 1, 8, 5, 3, 3, 3, 3, 5, 8, 1, 1, 4, 4, 7, 8, 8, 3, 9, 8], [7, 7, 3, 9, 8, 8, 4, 4, 2, 2, 8, 9, 8, 8, 7, 7, 7, 7, 8, 8, 9, 8, 2, 2, 4, 4, 8, 8, 9, 3], [7, 1, 9, 1, 8, 4, 4, 4, 2, 9, 9, 5, 8, 8, 7, 7, 7, 7, 8, 8, 5, 9, 9, 2, 4, 4, 4, 8, 1, 9], [3, 9, 9, 4, 4, 4, 3, 1, 8, 9, 4, 4, 7, 7, 2, 2, 2, 2, 7, 7, 4, 4, 9, 8, 1, 3, 4, 4, 4, 9], [9, 1, 4, 4, 4, 4, 1, 1, 9, 5, 4, 3, 7, 7, 2, 2, 2, 2, 7, 7, 3, 4, 5, 9, 1, 1, 4, 4, 4, 4], [8, 8, 4, 4, 7, 1, 1, 8, 8, 8, 7, 7, 1, 8, 1, 3, 3, 1, 8, 1, 7, 7, 8, 8, 8, 1, 1, 7, 4, 4], [8, 4, 4, 4, 1, 3, 8, 5, 8, 8, 7, 7, 8, 8, 3, 3, 3, 3, 8, 8, 7, 7, 8, 8, 5, 8, 3, 1, 4, 4], [4, 4, 3, 1, 1, 8, 3, 3, 7, 7, 2, 2, 1, 3, 5, 3, 3, 5, 3, 1, 2, 2, 7, 7, 3, 3, 8, 1, 1, 3], [4, 4, 1, 1, 8, 5, 3, 3, 7, 7, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 7, 7, 3, 3, 5, 8, 1, 1], [4, 4, 1, 1, 8, 5, 3, 3, 7, 7, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 7, 7, 3, 3, 5, 8, 1, 1], [4, 4, 3, 1, 1, 8, 3, 3, 7, 7, 2, 2, 1, 3, 5, 3, 3, 5, 3, 1, 2, 2, 7, 7, 3, 3, 8, 1, 1, 3], [8, 4, 4, 4, 1, 3, 8, 5, 8, 8, 7, 7, 8, 8, 3, 3, 3, 3, 8, 8, 7, 7, 8, 8, 5, 8, 3, 1, 4, 4], [8, 8, 4, 4, 7, 1, 1, 8, 8, 8, 7, 7, 1, 8, 1, 3, 3, 1, 8, 1, 7, 7, 8, 8, 8, 1, 1, 7, 4, 4], [9, 1, 4, 4, 4, 4, 1, 1, 9, 5, 4, 3, 7, 7, 2, 2, 2, 2, 7, 7, 3, 4, 5, 9, 1, 1, 4, 4, 4, 4], [3, 9, 9, 4, 4, 4, 3, 1, 8, 9, 4, 4, 7, 7, 2, 2, 2, 2, 7, 7, 4, 4, 9, 8, 1, 3, 4, 4, 4, 9], [7, 1, 9, 1, 8, 4, 4, 4, 2, 9, 9, 5, 8, 8, 7, 7, 7, 7, 8, 8, 5, 9, 9, 2, 4, 4, 4, 8, 1, 9], [7, 7, 3, 9, 8, 8, 4, 4, 2, 2, 8, 9, 8, 8, 7, 7, 7, 7, 8, 8, 9, 8, 2, 2, 4, 4, 8, 8, 9, 3], [5, 5, 8, 9, 3, 8, 8, 7, 4, 4, 1, 1, 8, 5, 3, 3, 3, 3, 5, 8, 1, 1, 4, 4, 7, 8, 8, 3, 9, 8], [5, 5, 9, 8, 8, 3, 5, 8, 4, 4, 3, 1, 1, 8, 3, 3, 3, 3, 8, 1, 1, 3, 4, 4, 8, 5, 3, 8, 8, 9], [2, 1, 5, 5, 9, 2, 3, 8, 8, 4, 4, 4, 1, 3, 8, 5, 5, 8, 3, 1, 4, 4, 4, 8, 8, 3, 2, 9, 5, 5], [9, 2, 5, 5, 8, 9, 8, 3, 8, 8, 4, 4, 7, 1, 1, 8, 8, 1, 1, 7, 4, 4, 8, 8, 3, 8, 9, 8, 5, 5], [8, 8, 2, 1, 5, 5, 8, 9, 9, 1, 4, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4, 4, 1, 9, 9, 8, 5, 5, 1, 2], [2, 8, 4, 2, 5, 5, 9, 8, 3, 9, 9, 4, 4, 4, 3, 1, 1, 3, 4, 4, 4, 9, 9, 3, 8, 9, 5, 5, 2, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/48131b3c.json b/data/arc-agi/evaluation/48131b3c.json
deleted file mode 100644
index b1d0c48..0000000
--- a/data/arc-agi/evaluation/48131b3c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 8, 0], [8, 0, 8], [0, 0, 0]], "output": [[8, 0, 8, 8, 0, 8], [0, 8, 0, 0, 8, 0], [8, 8, 8, 8, 8, 8], [8, 0, 8, 8, 0, 8], [0, 8, 0, 0, 8, 0], [8, 8, 8, 8, 8, 8]]}, {"input": [[7, 0], [0, 7]], "output": [[0, 7, 0, 7], [7, 0, 7, 0], [0, 7, 0, 7], [7, 0, 7, 0]]}, {"input": [[4, 0, 0, 0], [0, 4, 4, 4], [0, 0, 4, 0], [0, 4, 0, 0]], "output": [[0, 4, 4, 4, 0, 4, 4, 4], [4, 0, 0, 0, 4, 0, 0, 0], [4, 4, 0, 4, 4, 4, 0, 4], [4, 0, 4, 4, 4, 0, 4, 4], [0, 4, 4, 4, 0, 4, 4, 4], [4, 0, 0, 0, 4, 0, 0, 0], [4, 4, 0, 4, 4, 4, 0, 4], [4, 0, 4, 4, 4, 0, 4, 4]]}], "test": [{"input": [[0, 1, 0, 1], [1, 0, 0, 1], [0, 0, 1, 0], [1, 0, 0, 0]], "output": [[1, 0, 1, 0, 1, 0, 1, 0], [0, 1, 1, 0, 0, 1, 1, 0], [1, 1, 0, 1, 1, 1, 0, 1], [0, 1, 1, 1, 0, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0], [0, 1, 1, 0, 0, 1, 1, 0], [1, 1, 0, 1, 1, 1, 0, 1], [0, 1, 1, 1, 0, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/4852f2fa.json b/data/arc-agi/evaluation/4852f2fa.json
deleted file mode 100644
index 03e2f8f..0000000
--- a/data/arc-agi/evaluation/4852f2fa.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train":[{"input":[[0,0,0,0,0,0,0,0,0],[0,0,8,8,0,0,0,0,0],[0,8,8,8,0,0,4,0,0],[0,0,8,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,4,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0]],"output":[[0,8,8,0,8,8],[8,8,8,8,8,8],[0,8,0,0,8,0]]},{"input":[[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,4,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,8,0,0,0,0,0,0],[0,8,8,0,0,0,0,0,0],[0,0,8,8,0,0,0,0,0],[0,0,0,0,0,0,0,0,0]],"output":[[0,8,0],[8,8,0],[0,8,8]]},{"input":[[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,4,0,0,0],[0,0,0,0,0,0,0,0,0],[0,8,8,8,0,0,0,0,0],[0,0,8,0,0,0,0,0,0],[0,0,0,0,0,0,4,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,4,0,0,0,0,0],[0,0,0,0,0,0,0,0,0]],"output":[[0,0,0,0,0,0,0,0,0],[8,8,8,8,8,8,8,8,8],[0,8,0,0,8,0,0,8,0]]},{"input":[[0,0,0,0,0,4,0,0,0],[0,0,8,0,0,0,0,0,0],[8,8,0,0,0,0,0,0,0],[8,8,0,0,0,0,0,0,0],[0,0,0,0,0,4,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,4,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0]],"output":[[0,0,8,0,0,8,0,0,8],[8,8,0,8,8,0,8,8,0],[8,8,0,8,8,0,8,8,0]]},{"input":[[0,8,8,0,0,0,0,0,0],[8,8,0,0,4,0,0,0,0],[0,8,0,0,0,0,0,0,0],[0,0,0,0,0,0,4,0,0],[0,0,0,0,0,0,0,0,0],[0,4,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,4,0,0,0]],"output":[[0,8,8,0,8,8,0,8,8,0,8,8],[8,8,0,8,8,0,8,8,0,8,8,0],[0,8,0,0,8,0,0,8,0,0,8,0]]}],"test":[{"input":[[0,0,0,0,0,8,8,0,0],[0,0,0,0,0,8,0,8,0],[0,0,0,0,0,8,8,0,0],[0,0,0,0,0,0,0,0,0],[4,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,4,0,0,0,0,0],[0,0,0,0,0,0,0,0,0]],"output":[[8,8,0,8,8,0],[8,0,8,8,0,8],[8,8,0,8,8,0]]},{"input":[[0,0,0,4,0,0,0,0,0],[4,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,8,0,0,0],[0,4,0,0,8,8,8,0,0],[0,0,0,0,0,8,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,4,0,0,0,0]],"output":[[0,8,0,0,8,0,0,8,0,0,8,0],[8,8,8,8,8,8,8,8,8,8,8,8],[0,8,0,0,8,0,0,8,0,0,8,0]]}],"name":"4852f2fa"}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/48f8583b.json b/data/arc-agi/evaluation/48f8583b.json
deleted file mode 100644
index e3b2258..0000000
--- a/data/arc-agi/evaluation/48f8583b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[9, 9, 6], [3, 8, 8], [8, 3, 3]], "output": [[0, 0, 0, 0, 0, 0, 9, 9, 6], [0, 0, 0, 0, 0, 0, 3, 8, 8], [0, 0, 0, 0, 0, 0, 8, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[8, 5, 5], [8, 8, 8], [5, 9, 9]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 5, 5, 8, 5, 5], [0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 5, 9, 9, 5, 9, 9]]}, {"input": [[7, 1, 7], [1, 7, 7], [7, 1, 7]], "output": [[0, 0, 0, 7, 1, 7, 0, 0, 0], [0, 0, 0, 1, 7, 7, 0, 0, 0], [0, 0, 0, 7, 1, 7, 0, 0, 0], [7, 1, 7, 0, 0, 0, 0, 0, 0], [1, 7, 7, 0, 0, 0, 0, 0, 0], [7, 1, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 1, 7, 0, 0, 0], [0, 0, 0, 1, 7, 7, 0, 0, 0], [0, 0, 0, 7, 1, 7, 0, 0, 0]]}, {"input": [[3, 2, 7], [2, 2, 7], [5, 5, 7]], "output": [[3, 2, 7, 0, 0, 0, 0, 0, 0], [2, 2, 7, 0, 0, 0, 0, 0, 0], [5, 5, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[1, 6, 6], [5, 1, 6], [5, 5, 5]], "output": [[1, 6, 6, 0, 0, 0, 0, 0, 0], [5, 1, 6, 0, 0, 0, 0, 0, 0], [5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 6, 6, 0, 0, 0], [0, 0, 0, 5, 1, 6, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[4, 4, 2], [2, 2, 2], [2, 4, 2]], "output": [[4, 4, 2, 4, 4, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 0, 0, 0], [2, 4, 2, 2, 4, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 2, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 2, 4, 2, 0, 0, 0]]}], "test": [{"input": [[9, 7, 9], [9, 9, 7], [7, 9, 7]], "output": [[0, 0, 0, 9, 7, 9, 0, 0, 0], [0, 0, 0, 9, 9, 7, 0, 0, 0], [0, 0, 0, 7, 9, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 9, 7, 9], [0, 0, 0, 0, 0, 0, 9, 9, 7], [0, 0, 0, 0, 0, 0, 7, 9, 7], [9, 7, 9, 0, 0, 0, 9, 7, 9], [9, 9, 7, 0, 0, 0, 9, 9, 7], [7, 9, 7, 0, 0, 0, 7, 9, 7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/4aab4007.json b/data/arc-agi/evaluation/4aab4007.json
deleted file mode 100644
index d2d8722..0000000
--- a/data/arc-agi/evaluation/4aab4007.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 4, 3, 2, 1, 9, 1, 3, 5, 7, 0, 0, 0, 0, 0, 0, 0, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1], [1, 1, 4, 2, 7, 9, 1, 3, 5, 7, 9, 0, 0, 0, 0, 0, 0, 0, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3], [1, 1, 4, 1, 9, 1, 3, 5, 7, 9, 1, 0, 0, 0, 0, 0, 0, 0, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5], [1, 1, 4, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 0, 0, 0, 0, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 0, 0, 0, 0, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9], [1, 1, 4, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1], [1, 0, 0, 0, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3], [1, 0, 0, 0, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5], [0, 0, 0, 0, 0, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7], [0, 0, 0, 0, 0, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9], [0, 0, 0, 0, 0, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1], [0, 0, 0, 0, 0, 9, 1, 3, 5, 0, 0, 0, 0, 0, 0, 0, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3], [0, 0, 0, 0, 0, 1, 3, 5, 7, 0, 0, 0, 0, 0, 0, 0, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5], [0, 0, 0, 0, 0, 3, 5, 7, 9, 0, 0, 0, 0, 0, 0, 0, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7], [0, 0, 0, 0, 0, 5, 7, 9, 1, 0, 0, 0, 0, 0, 0, 0, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9], [1, 1, 4, 3, 5, 7, 9, 1, 3, 0, 0, 0, 0, 0, 0, 0, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1], [1, 1, 4, 5, 7, 9, 1, 3, 5, 0, 0, 0, 0, 0, 0, 0, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3], [1, 1, 4, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5], [1, 1, 4, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9], [1, 1, 4, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1], [1, 1, 4, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3], [1, 1, 4, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5], [1, 1, 4, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 4, 3, 2, 1, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1], [1, 1, 4, 2, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3], [1, 1, 4, 1, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5], [1, 1, 4, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9], [1, 1, 4, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1], [1, 1, 4, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3], [1, 1, 4, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5], [1, 1, 4, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9], [1, 1, 4, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1], [1, 1, 4, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3], [1, 1, 4, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5], [1, 1, 4, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9], [1, 1, 4, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1], [1, 1, 4, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3], [1, 1, 4, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5], [1, 1, 4, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9], [1, 1, 4, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1], [1, 1, 4, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3], [1, 1, 4, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5], [1, 1, 4, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9]]}], "train": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 4, 3, 2, 1, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5], [1, 1, 4, 2, 3, 5, 7, 2, 4, 6, 0, 0, 0, 0, 0, 0, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7], [1, 1, 4, 1, 5, 7, 2, 4, 6, 1, 0, 0, 0, 0, 0, 0, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2], [1, 1, 4, 5, 7, 2, 4, 6, 1, 3, 0, 0, 0, 0, 0, 0, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4], [1, 1, 4, 7, 2, 4, 6, 1, 3, 5, 0, 0, 0, 0, 0, 0, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6], [1, 1, 4, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1], [1, 1, 4, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 0, 0, 0, 0, 0, 2, 4, 6, 1, 3], [1, 1, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 0, 0, 0, 0, 0, 4, 6, 1, 3, 5], [1, 1, 4, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 0, 0, 0, 0, 0, 6, 1, 3, 5, 7], [1, 1, 4, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 0, 0, 0, 0, 0, 1, 3, 5, 7, 2], [1, 1, 4, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 0, 0, 0, 0, 0, 3, 5, 7, 2, 4], [1, 1, 4, 7, 0, 0, 0, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 0, 0, 0, 0, 0, 5, 7, 2, 4, 6], [1, 1, 4, 2, 0, 0, 0, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1], [1, 1, 4, 4, 0, 0, 0, 0, 0, 0, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3], [1, 1, 4, 6, 0, 0, 0, 0, 0, 0, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5], [1, 1, 4, 1, 0, 0, 0, 0, 0, 0, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7], [1, 1, 4, 3, 0, 0, 0, 0, 0, 0, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2], [1, 1, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4], [1, 1, 4, 7, 2, 4, 6, 0, 0, 0, 0, 0, 0, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6], [1, 1, 4, 2, 4, 6, 1, 0, 0, 0, 0, 0, 0, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1], [1, 1, 4, 4, 6, 1, 3, 0, 0, 0, 0, 0, 0, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3], [1, 1, 4, 6, 1, 3, 5, 0, 0, 0, 0, 0, 0, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5], [1, 1, 4, 1, 3, 5, 7, 0, 0, 0, 0, 0, 0, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7], [1, 1, 4, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2], [1, 1, 4, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 4, 3, 2, 1, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5], [1, 1, 4, 2, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7], [1, 1, 4, 1, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2], [1, 1, 4, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4], [1, 1, 4, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6], [1, 1, 4, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1], [1, 1, 4, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3], [1, 1, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5], [1, 1, 4, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7], [1, 1, 4, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2], [1, 1, 4, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4], [1, 1, 4, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6], [1, 1, 4, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1], [1, 1, 4, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3], [1, 1, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5], [1, 1, 4, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7], [1, 1, 4, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2], [1, 1, 4, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4], [1, 1, 4, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6], [1, 1, 4, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1], [1, 1, 4, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3], [1, 1, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5], [1, 1, 4, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7], [1, 1, 4, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2], [1, 1, 4, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 4, 3, 2, 1, 3, 5, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5], [1, 1, 4, 2, 1, 3, 5, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1], [1, 1, 4, 3, 5, 7, 1, 3, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3], [1, 1, 4, 5, 7, 1, 3, 5, 7, 0, 0, 0, 0, 0, 0, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5], [1, 1, 4, 7, 1, 3, 5, 7, 1, 0, 0, 0, 0, 0, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1], [1, 1, 4, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3], [1, 1, 4, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5], [1, 1, 4, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1], [1, 1, 4, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3], [1, 1, 4, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5], [1, 1, 4, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1], [1, 1, 4, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3], [1, 1, 4, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5], [1, 1, 4, 7, 1, 3, 0, 0, 0, 0, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 0, 0, 0, 0, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1], [1, 1, 4, 3, 5, 7, 0, 0, 0, 0, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3], [1, 1, 4, 5, 7, 1, 0, 0, 0, 0, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5], [1, 1, 4, 7, 1, 3, 0, 0, 0, 0, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 0, 0, 0, 0, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1], [1, 1, 4, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3], [1, 1, 4, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 4, 3, 2, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5], [1, 1, 4, 2, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1], [1, 1, 4, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3], [1, 1, 4, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5], [1, 1, 4, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1], [1, 1, 4, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3], [1, 1, 4, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5], [1, 1, 4, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1], [1, 1, 4, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3], [1, 1, 4, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5], [1, 1, 4, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1], [1, 1, 4, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3], [1, 1, 4, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5], [1, 1, 4, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1], [1, 1, 4, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3], [1, 1, 4, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5], [1, 1, 4, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7], [1, 1, 4, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1], [1, 1, 4, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3], [1, 1, 4, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 4, 3, 2, 1, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7], [1, 1, 4, 2, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9], [1, 1, 4, 1, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2], [1, 1, 4, 1, 3, 5, 7, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 3, 5, 7, 9, 2, 4], [1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 5, 7, 9, 2, 4, 6], [1, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 7, 9, 2, 4, 6, 8], [1, 0, 0, 0, 0, 0, 0, 0, 8, 1, 3, 5, 7, 9, 0, 0, 0, 0, 0, 0, 5, 7, 9, 2, 4, 6, 8, 1], [1, 0, 0, 0, 0, 0, 0, 0, 1, 3, 5, 7, 9, 2, 4, 6, 0, 0, 0, 0, 7, 9, 2, 4, 6, 8, 1, 3], [1, 0, 0, 0, 0, 0, 0, 0, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5], [1, 1, 4, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7], [1, 1, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9], [1, 1, 4, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2], [1, 1, 4, 1, 3, 5, 7, 0, 0, 0, 0, 0, 0, 0, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4], [1, 1, 4, 3, 5, 7, 9, 0, 0, 0, 0, 0, 0, 0, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6], [1, 1, 4, 5, 7, 9, 2, 0, 0, 0, 0, 0, 0, 0, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8], [1, 1, 4, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1], [1, 1, 4, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3], [1, 1, 4, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5], [1, 1, 4, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7], [1, 1, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9], [1, 1, 4, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2], [1, 1, 4, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4], [1, 1, 4, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6], [1, 1, 4, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8], [1, 1, 4, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 4, 3, 2, 1, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7], [1, 1, 4, 2, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9], [1, 1, 4, 1, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2], [1, 1, 4, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4], [1, 1, 4, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6], [1, 1, 4, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8], [1, 1, 4, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1], [1, 1, 4, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3], [1, 1, 4, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5], [1, 1, 4, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7], [1, 1, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9], [1, 1, 4, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2], [1, 1, 4, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4], [1, 1, 4, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6], [1, 1, 4, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8], [1, 1, 4, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1], [1, 1, 4, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3], [1, 1, 4, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5], [1, 1, 4, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7], [1, 1, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9], [1, 1, 4, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2], [1, 1, 4, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4], [1, 1, 4, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6], [1, 1, 4, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8], [1, 1, 4, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/4acc7107.json b/data/arc-agi/evaluation/4acc7107.json
deleted file mode 100644
index b0f06c7..0000000
--- a/data/arc-agi/evaluation/4acc7107.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [6, 6, 0, 0, 0, 0, 6, 6, 0, 0], [6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 1, 0, 0, 0, 0, 0], [6, 6, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 0, 0, 1, 1, 1, 0, 0, 0], [6, 6, 0, 1, 1, 1, 1, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 3, 3, 3], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [3, 3, 3, 0, 0, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 0, 4, 4, 4, 0, 0], [3, 3, 0, 0, 0, 0, 4, 4, 0, 0], [3, 3, 0, 0, 0, 0, 4, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 4, 0, 0, 0], [8, 0, 0, 0, 4, 4, 4, 4, 0, 0], [8, 8, 8, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 4, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 0, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 4, 0, 0], [8, 0, 0, 0, 0, 4, 4, 4, 4, 0], [8, 8, 8, 0, 0, 0, 0, 4, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 0, 0, 0, 9, 9, 9, 0], [7, 7, 7, 7, 0, 0, 9, 9, 9, 0], [0, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 9, 9, 9, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 9, 9, 0, 0], [0, 7, 7, 0, 0, 9, 9, 9, 0, 0], [7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 7, 7, 0, 0, 9, 9, 9, 9, 9]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 3, 3, 3, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 2, 2, 2, 0], [0, 0, 0, 3, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 3, 3, 0], [0, 0, 0, 2, 0, 3, 3, 3, 3, 0], [0, 0, 2, 2, 0, 0, 0, 3, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/4b6b68e5.json b/data/arc-agi/evaluation/4b6b68e5.json
deleted file mode 100644
index 5ec746d..0000000
--- a/data/arc-agi/evaluation/4b6b68e5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 8, 0, 0, 8, 2, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 3, 0, 8, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 5, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 8, 8, 8, 8, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 8, 8, 8, 8, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 8, 8, 8, 8, 8, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 8, 8, 8, 8, 8, 2, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 2, 8, 8, 8, 8, 8, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 1, 1, 1, 5, 5, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 5, 5, 5, 5, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 5, 5, 5, 5, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 5, 5, 5, 5, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 5, 5, 5, 5, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 6, 6, 6, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 6, 0, 3, 0, 0], [0, 0, 2, 2, 2, 0, 3, 0, 0, 0, 2, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 6, 6, 6, 6, 6], [0, 0, 0, 0, 2, 0, 0, 0, 8, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 8, 0], [3, 0, 0, 0, 0, 0, 0, 4, 8, 0, 3, 0, 8, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 8, 0, 4, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 3, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 3, 3, 3, 3, 3, 3, 3, 2, 0, 0, 6, 6, 6, 0, 0], [0, 0, 2, 3, 3, 3, 3, 3, 3, 3, 2, 0, 0, 6, 0, 0, 0, 0], [0, 0, 2, 2, 2, 3, 3, 3, 3, 3, 2, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 2, 3, 3, 3, 3, 3, 2, 0, 0, 6, 6, 6, 6, 6], [0, 0, 0, 0, 2, 3, 3, 3, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 3, 3, 3, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 8, 8, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 8, 8, 8, 8, 8, 8, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 8, 8, 8, 8, 8, 8, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 8, 8, 8, 8, 8, 8, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 8, 8, 8, 8, 8, 8, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 8, 8, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 3, 0, 0, 0, 8, 0, 0, 8, 0, 3, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 3, 0, 6, 0, 0, 2, 0, 0, 3, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 3, 0, 0, 0, 0, 6, 0, 0, 0, 3, 0, 0], [0, 0, 3, 0, 0, 6, 0, 3, 3, 3, 3, 3, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 6, 6, 6, 6, 6, 6, 3, 0, 0, 0], [0, 3, 3, 3, 6, 6, 6, 6, 6, 6, 3, 0, 0, 0], [0, 3, 6, 6, 6, 6, 6, 6, 6, 6, 3, 0, 0, 0], [0, 3, 6, 6, 6, 6, 6, 6, 6, 6, 3, 0, 0, 0], [0, 3, 3, 3, 6, 6, 6, 6, 6, 6, 3, 3, 0, 0], [0, 0, 0, 3, 6, 6, 6, 6, 6, 6, 6, 3, 0, 0], [0, 0, 0, 3, 6, 6, 6, 6, 6, 6, 6, 3, 0, 0], [0, 0, 3, 3, 6, 6, 6, 6, 6, 6, 6, 3, 0, 0], [0, 0, 3, 6, 6, 6, 6, 6, 6, 6, 6, 3, 0, 0], [0, 0, 3, 6, 6, 6, 6, 3, 3, 3, 3, 3, 0, 0], [0, 0, 3, 6, 6, 6, 6, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 1, 0, 0, 3, 3, 3, 3, 3, 3, 0, 1], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 2, 0, 6, 0, 0, 8, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 6, 0, 3, 0, 0], [0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 3, 3, 3, 0, 0, 0, 0, 3, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 3, 0, 0, 0, 0, 8, 0, 3, 0, 0], [0, 2, 0, 0, 1, 0, 6, 0, 0, 0, 0, 2, 0, 0, 3, 8, 0, 0, 0, 0, 0, 3, 0, 0], [0, 2, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 3, 0, 0, 0, 8, 0, 0, 3, 0, 0], [0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 3, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 3, 3, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 8, 0, 3, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 0, 8, 0, 8, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 8, 0, 4, 0, 0, 0, 0, 3, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 4, 0, 0, 0, 0, 8, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 8, 0, 3, 0, 0, 0, 0, 4, 0, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 7, 0, 2, 0, 1, 0, 7, 0, 0], [0, 0, 8, 0, 0, 8, 8, 8, 8, 0, 0, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 8, 8, 8, 8, 0, 0, 0, 7, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 2, 1, 1, 1, 1, 1, 2, 2, 2, 0, 0, 0, 0, 3, 8, 8, 8, 8, 3, 0, 0], [0, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0, 0, 3, 8, 8, 8, 8, 3, 0, 0], [0, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 3, 3, 3, 8, 8, 8, 8, 3, 0, 0], [0, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 3, 8, 8, 8, 8, 8, 8, 3, 0, 0], [0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 3, 8, 8, 8, 8, 8, 8, 3, 0, 0], [0, 2, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 0, 0, 3, 8, 8, 8, 8, 8, 8, 3, 0, 0], [0, 2, 1, 1, 1, 1, 1, 2, 0, 0, 0, 0, 0, 0, 3, 8, 8, 8, 8, 8, 8, 3, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 3, 8, 8, 8, 8, 8, 8, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 8, 8, 8, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 8, 8, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 8, 8, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 4, 4, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 4, 4, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 4, 4, 4, 4, 4, 4, 4, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 4, 4, 4, 4, 4, 4, 4, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 4, 4, 4, 4, 4, 4, 4, 4, 8, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 8, 4, 4, 4, 4, 4, 4, 4, 4, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 8, 4, 4, 4, 4, 4, 4, 4, 4, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 8, 4, 4, 8, 8, 8, 8, 4, 4, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 8, 8, 8, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/4c177718.json b/data/arc-agi/evaluation/4c177718.json
deleted file mode 100644
index 5689fbe..0000000
--- a/data/arc-agi/evaluation/4c177718.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 2, 0, 0, 3, 3, 3, 0, 0], [0, 0, 1, 1, 1, 0, 2, 2, 2, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 2, 0, 0, 4, 4, 4, 0, 0], [0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 4, 4, 4, 0, 0], [0, 0, 1, 0, 1, 0, 2, 2, 2, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 2, 2, 2, 0, 6, 6, 6, 0, 0], [0, 0, 1, 1, 1, 0, 0, 2, 0, 0, 6, 0, 6, 0, 0], [0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 2, 2, 2, 0, 0, 7, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 7, 0, 7, 0, 0], [0, 0, 0, 1, 1, 0, 0, 2, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 2, 0, 0, 8, 8, 0, 0, 0], [0, 0, 1, 1, 0, 0, 2, 2, 2, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 2, 2, 2, 0, 3, 3, 3, 0, 0], [0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 3, 0, 3, 0, 0], [0, 0, 1, 1, 1, 0, 0, 2, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/4cd1b7b2.json b/data/arc-agi/evaluation/4cd1b7b2.json
deleted file mode 100644
index 1df72be..0000000
--- a/data/arc-agi/evaluation/4cd1b7b2.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 0, 3, 4], [0, 0, 2, 1], [2, 1, 4, 0], [0, 3, 1, 2]], "output": [[1, 2, 3, 4], [3, 4, 2, 1], [2, 1, 4, 3], [4, 3, 1, 2]]}, {"input": [[0, 4, 2, 3], [4, 1, 0, 2], [0, 3, 4, 0], [3, 0, 1, 4]], "output": [[1, 4, 2, 3], [4, 1, 3, 2], [2, 3, 4, 1], [3, 2, 1, 4]]}, {"input": [[3, 0, 2, 1], [1, 0, 0, 0], [4, 3, 0, 2], [0, 1, 4, 3]], "output": [[3, 4, 2, 1], [1, 2, 3, 4], [4, 3, 1, 2], [2, 1, 4, 3]]}], "test": [{"input": [[0, 1, 2, 3], [0, 3, 1, 0], [3, 0, 4, 1], [0, 4, 0, 2]], "output": [[4, 1, 2, 3], [2, 3, 1, 4], [3, 2, 4, 1], [1, 4, 3, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/4e45f183.json b/data/arc-agi/evaluation/4e45f183.json
deleted file mode 100644
index 19594b3..0000000
--- a/data/arc-agi/evaluation/4e45f183.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 1, 8, 8, 0, 8, 8, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0], [0, 8, 1, 1, 1, 8, 0, 8, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0], [0, 8, 1, 1, 1, 8, 0, 1, 1, 1, 1, 1, 0, 8, 1, 1, 1, 1, 0], [0, 8, 8, 1, 8, 8, 0, 1, 1, 1, 1, 1, 0, 8, 8, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 1, 8, 8, 0, 1, 1, 1, 8, 8, 0, 8, 8, 1, 1, 1, 0], [0, 8, 1, 1, 1, 8, 0, 1, 1, 1, 1, 8, 0, 8, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 8, 0, 8, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 8, 8, 0, 8, 8, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 8, 8, 0], [0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 8, 0], [0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0], [0, 8, 1, 1, 1, 8, 0, 1, 1, 1, 1, 8, 0, 1, 1, 1, 1, 1, 0], [0, 8, 8, 1, 8, 8, 0, 1, 1, 1, 8, 8, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 1, 1, 1, 0, 8, 8, 1, 8, 8, 0, 1, 1, 1, 8, 8, 0], [0, 8, 1, 1, 1, 1, 0, 8, 1, 1, 1, 8, 0, 1, 1, 1, 1, 8, 0], [0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 1, 1, 1, 0, 8, 8, 1, 8, 8, 0, 1, 1, 1, 8, 8, 0], [0, 8, 1, 1, 1, 1, 0, 8, 1, 1, 1, 8, 0, 1, 1, 1, 1, 8, 0], [0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0], [0, 8, 1, 1, 1, 1, 0, 8, 1, 1, 1, 8, 0, 1, 1, 1, 1, 8, 0], [0, 8, 8, 1, 1, 1, 0, 8, 8, 1, 8, 8, 0, 1, 1, 1, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0], [0, 8, 1, 1, 1, 1, 0, 8, 1, 1, 1, 8, 0, 1, 1, 1, 1, 8, 0], [0, 8, 8, 1, 1, 1, 0, 8, 8, 1, 8, 8, 0, 1, 1, 1, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 3, 2, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 3, 3, 3, 3, 3, 0, 2, 2, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 2, 3, 0], [0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 2, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 3, 3, 3, 2, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 2, 2, 0], [0, 3, 3, 3, 3, 3, 0, 3, 2, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 3, 3, 3, 3, 3, 0, 2, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 3, 3, 3, 2, 0, 3, 3, 3, 3, 3, 0, 3, 3, 2, 3, 3, 0], [0, 3, 2, 3, 2, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 2, 3, 3, 0], [0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 3, 2, 3, 2, 3, 0, 3, 3, 2, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 2, 3, 3, 3, 2, 0, 3, 3, 2, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 3, 3, 3, 3, 0, 3, 3, 2, 3, 3, 0, 3, 3, 3, 3, 2, 0], [0, 3, 2, 3, 3, 3, 0, 3, 3, 2, 3, 3, 0, 3, 3, 3, 2, 3, 0], [0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 2, 3, 3, 3, 2, 0, 3, 3, 3, 3, 3, 0], [0, 3, 3, 3, 3, 3, 0, 3, 2, 3, 2, 3, 0, 3, 3, 3, 3, 3, 0], [0, 2, 2, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 2, 2, 0], [0, 3, 3, 3, 3, 3, 0, 3, 2, 3, 2, 3, 0, 3, 3, 3, 3, 3, 0], [0, 3, 3, 3, 3, 3, 0, 2, 3, 3, 3, 2, 0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 3, 2, 3, 3, 3, 0, 3, 3, 2, 3, 3, 0, 3, 3, 3, 2, 3, 0], [0, 2, 3, 3, 3, 3, 0, 3, 3, 2, 3, 3, 0, 3, 3, 3, 3, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 6, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 6, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 6, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 6, 6, 0, 8, 8, 8, 8, 6, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 6, 6, 0, 8, 8, 8, 8, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 6, 6, 8, 6, 6, 0, 8, 8, 8, 6, 6, 0], [0, 8, 8, 8, 8, 8, 0, 6, 6, 8, 6, 6, 0, 8, 8, 8, 6, 6, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0], [0, 6, 6, 8, 8, 8, 0, 6, 6, 8, 6, 6, 0, 8, 8, 8, 8, 8, 0], [0, 6, 6, 8, 8, 8, 0, 6, 6, 8, 6, 6, 0, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 8, 8, 8, 8, 0, 6, 6, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0], [0, 6, 8, 8, 8, 8, 0, 6, 6, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0], [0, 6, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0], [0, 6, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0], [0, 6, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 6, 6, 6, 6, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 8, 8, 8, 0, 6, 6, 6, 6, 6, 0, 8, 8, 8, 6, 6, 0], [0, 6, 6, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 6, 6, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 8, 8, 8, 8, 0, 6, 6, 8, 6, 6, 0, 8, 8, 8, 8, 6, 0], [0, 6, 8, 8, 8, 8, 0, 6, 6, 8, 6, 6, 0, 8, 8, 8, 8, 6, 0], [0, 6, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 6, 0], [0, 6, 8, 8, 8, 8, 0, 6, 6, 8, 6, 6, 0, 8, 8, 8, 8, 6, 0], [0, 6, 8, 8, 8, 8, 0, 6, 6, 8, 6, 6, 0, 8, 8, 8, 8, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0], [0, 6, 6, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 6, 6, 0], [0, 6, 6, 8, 8, 8, 0, 6, 6, 6, 6, 6, 0, 8, 8, 8, 6, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0], [0, 1, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0], [0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0], [0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 1, 0, 4, 4, 1, 4, 4, 0], [0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 1, 1, 0, 4, 1, 1, 1, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 1, 1, 0, 4, 1, 1, 1, 4, 0, 1, 1, 4, 1, 1, 0], [0, 4, 4, 4, 4, 1, 0, 4, 4, 1, 4, 4, 0, 1, 4, 4, 4, 1, 0], [0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0], [0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 1, 4, 4, 4, 1, 0], [0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 1, 1, 4, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0], [0, 1, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 1, 0], [0, 1, 1, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 1, 1, 0], [0, 1, 4, 4, 4, 4, 0, 1, 4, 4, 4, 4, 0, 4, 4, 4, 4, 1, 0], [0, 4, 4, 4, 4, 4, 0, 1, 1, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 4, 4, 4, 0, 4, 1, 1, 1, 4, 0, 4, 4, 4, 1, 1, 0], [0, 1, 4, 4, 4, 4, 0, 4, 4, 1, 4, 4, 0, 4, 4, 4, 4, 1, 0], [0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0], [0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0], [0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 1, 1, 4, 1, 1, 0, 4, 4, 4, 4, 4, 0], [0, 1, 4, 4, 4, 4, 0, 1, 4, 4, 4, 1, 0, 4, 4, 4, 4, 1, 0], [0, 1, 1, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 1, 1, 0], [0, 1, 4, 4, 4, 4, 0, 1, 4, 4, 4, 1, 0, 4, 4, 4, 4, 1, 0], [0, 4, 4, 4, 4, 4, 0, 1, 1, 4, 1, 1, 0, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0], [0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0], [0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0], [0, 1, 4, 4, 4, 4, 0, 4, 4, 1, 4, 4, 0, 4, 4, 4, 4, 1, 0], [0, 1, 1, 4, 4, 4, 0, 4, 1, 1, 1, 4, 0, 4, 4, 4, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/4e469f39.json b/data/arc-agi/evaluation/4e469f39.json
deleted file mode 100644
index 80972c9..0000000
--- a/data/arc-agi/evaluation/4e469f39.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 5, 0, 0, 0, 0], [0, 0, 5, 0, 0, 5, 0, 0, 0, 0], [0, 0, 5, 0, 0, 5, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 5, 5, 2, 5, 0, 0, 0, 0], [0, 0, 5, 2, 2, 5, 0, 0, 0, 0], [0, 0, 5, 2, 2, 5, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 5, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2], [0, 0, 0, 5, 2, 5, 5, 0, 0, 0], [0, 0, 0, 5, 2, 2, 5, 0, 0, 0], [0, 0, 0, 5, 2, 2, 5, 0, 0, 0], [0, 0, 0, 5, 2, 2, 5, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 5, 5, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 5, 0], [0, 0, 0, 0, 0, 5, 0, 0, 5, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2], [0, 5, 2, 5, 5, 0, 0, 0, 0, 0], [0, 5, 2, 2, 5, 0, 0, 0, 0, 0], [0, 5, 2, 2, 5, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 5, 5, 2, 5, 0], [0, 0, 0, 0, 0, 5, 2, 2, 5, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 5, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 5, 0], [0, 0, 0, 0, 0, 5, 0, 0, 5, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 0]], "output": [[2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 5, 5, 2, 5, 0, 0, 0, 0, 0], [0, 5, 2, 2, 5, 0, 0, 0, 0, 0], [0, 5, 2, 2, 5, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 5, 5, 2, 5, 0], [0, 0, 0, 0, 0, 5, 2, 2, 5, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/4f537728.json b/data/arc-agi/evaluation/4f537728.json
deleted file mode 100644
index 6687d3e..0000000
--- a/data/arc-agi/evaluation/4f537728.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1]], "output": [[1, 1, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 2, 2, 0, 2, 2, 0, 2, 2, 0, 2, 2, 0, 2, 2, 0, 2, 2], [2, 2, 0, 2, 2, 0, 2, 2, 0, 2, 2, 0, 2, 2, 0, 2, 2, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1]]}, {"input": [[1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 3, 3, 0, 1, 1, 0, 1, 1, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 3, 3, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 3, 3, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 3, 3, 0, 1, 1, 0, 1, 1, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 3, 3, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 3, 3, 0, 1, 1, 0, 1, 1, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 3, 3, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 3, 3, 0, 1, 1, 0, 1, 1, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 3, 3, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 3, 3, 0, 1, 1, 0, 1, 1, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 3, 3, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 3, 3, 0, 3, 3, 0, 3, 3, 0, 3, 3, 0, 3, 3, 0, 3, 3, 0], [3, 0, 3, 3, 0, 3, 3, 0, 3, 3, 0, 3, 3, 0, 3, 3, 0, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 3, 3, 0, 1, 1, 0, 1, 1, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 3, 3, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 8, 8, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 8, 8, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 8, 8, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 8, 8, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 8, 8, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8], [8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 8, 8, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 8, 8, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 8, 8, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 8, 8, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 8, 8, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 8, 8, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 8, 8, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 8, 8, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/4ff4c9da.json b/data/arc-agi/evaluation/4ff4c9da.json
deleted file mode 100644
index 6b0fa2e..0000000
--- a/data/arc-agi/evaluation/4ff4c9da.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 1, 2, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 1, 0, 2, 1], [0, 0, 1, 2, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 1, 0, 2, 1], [1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 1, 2, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 8, 0, 2, 1], [1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 8, 8, 8, 2, 1], [0, 0, 1, 2, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 8, 0, 2, 1], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1], [0, 0, 1, 2, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 1, 0, 2, 1], [0, 0, 1, 2, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 1, 0, 2, 1], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 1, 2, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 1, 0, 2, 1], [0, 0, 1, 2, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 1, 0, 2, 1], [1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 1, 2, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 1, 0, 2, 1], [1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1], [0, 0, 1, 2, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 1, 0, 2, 1], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1]], "output": [[0, 0, 1, 2, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 1, 0, 2, 1], [0, 0, 1, 2, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 1, 0, 2, 1], [1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 1, 2, 0, 8, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 8, 0, 2, 1], [1, 1, 1, 2, 8, 8, 8, 2, 1, 1, 1, 2, 1, 1, 1, 2, 8, 8, 8, 2, 1], [0, 0, 1, 2, 0, 8, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 8, 0, 2, 1], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1], [0, 0, 1, 2, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 1, 0, 2, 1], [0, 0, 1, 2, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 1, 0, 2, 1], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 1, 2, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 1, 0, 2, 1], [0, 0, 1, 2, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 1, 0, 2, 1], [1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 1, 2, 0, 8, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 8, 0, 2, 1], [1, 1, 1, 2, 8, 8, 8, 2, 1, 1, 1, 2, 1, 1, 1, 2, 8, 8, 8, 2, 1], [0, 0, 1, 2, 0, 8, 0, 2, 1, 0, 0, 2, 0, 0, 1, 2, 0, 8, 0, 2, 1], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1]]}, {"input": [[0, 0, 2, 1, 2, 1, 0, 1, 2, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [0, 0, 2, 1, 2, 1, 0, 1, 2, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 2, 1, 2, 1, 0, 1, 8, 8, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 8, 1, 2, 1, 2, 2, 2], [2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 8, 1, 2, 1, 2, 2, 2], [0, 0, 2, 1, 2, 1, 0, 1, 2, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 2, 1, 2, 1, 0, 1, 2, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [0, 0, 2, 1, 2, 1, 0, 1, 2, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 2, 1, 2, 1, 0, 1, 2, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 2, 1, 2, 1, 0, 1, 2, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2], [0, 0, 2, 1, 2, 1, 0, 1, 2, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [0, 0, 2, 1, 2, 1, 0, 1, 2, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0]], "output": [[0, 0, 2, 1, 2, 1, 0, 1, 2, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [0, 0, 2, 1, 2, 1, 0, 1, 2, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 2, 1, 2, 1, 0, 1, 8, 8, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 1, 2, 1, 8, 1, 2, 2, 2, 1, 2, 2, 2, 1, 8, 1, 8, 1, 2, 2, 2], [2, 2, 2, 1, 2, 1, 8, 1, 2, 2, 2, 1, 2, 2, 2, 1, 8, 1, 8, 1, 2, 2, 2], [0, 0, 2, 1, 2, 1, 0, 1, 2, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 2, 1, 2, 1, 0, 1, 2, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [0, 0, 2, 1, 2, 1, 0, 1, 2, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 2, 1, 2, 1, 0, 1, 8, 8, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 2, 1, 2, 1, 0, 1, 8, 8, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 2], [0, 0, 2, 1, 2, 1, 0, 1, 2, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0], [0, 0, 2, 1, 2, 1, 0, 1, 2, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 1, 2, 0, 0]]}, {"input": [[0, 0, 1, 1, 2, 2, 0, 1, 1, 2, 0, 1, 0, 0, 2, 1, 0], [0, 0, 1, 1, 2, 2, 0, 1, 1, 2, 0, 1, 0, 0, 2, 1, 0], [1, 1, 1, 1, 2, 2, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 1, 1, 8, 1, 1, 1, 2, 1, 1, 2, 2, 2, 1, 2], [2, 2, 2, 1, 8, 1, 8, 1, 2, 1, 2, 1, 2, 2, 2, 1, 2], [0, 0, 1, 1, 1, 8, 0, 1, 1, 2, 0, 1, 0, 0, 2, 1, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1], [8, 8, 8, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 2, 2, 1, 2], [0, 0, 1, 1, 1, 2, 0, 1, 1, 2, 0, 1, 0, 0, 2, 1, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 2, 2, 0, 1, 1, 2, 0, 1, 0, 0, 2, 1, 0], [0, 0, 1, 1, 2, 2, 0, 1, 1, 2, 0, 1, 0, 0, 2, 1, 0], [2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 2, 2, 0, 1, 1, 2, 0, 1, 0, 0, 2, 1, 0]], "output": [[0, 0, 1, 1, 2, 2, 0, 1, 1, 2, 0, 1, 0, 0, 2, 1, 0], [0, 0, 1, 1, 2, 2, 0, 1, 1, 2, 0, 1, 0, 0, 2, 1, 0], [1, 1, 1, 1, 2, 2, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 1, 1, 8, 1, 1, 1, 8, 1, 1, 2, 2, 2, 1, 2], [2, 2, 2, 1, 8, 1, 8, 1, 8, 1, 8, 1, 2, 2, 2, 1, 2], [0, 0, 1, 1, 1, 8, 0, 1, 1, 8, 0, 1, 0, 0, 2, 1, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 1, 1, 1, 8, 1, 1, 1, 1, 2, 1, 1], [8, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 2, 2, 2, 1, 2], [0, 0, 1, 1, 1, 8, 0, 1, 1, 8, 0, 1, 0, 0, 2, 1, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 2, 2, 0, 1, 1, 2, 0, 1, 0, 0, 2, 1, 0], [0, 0, 1, 1, 2, 2, 0, 1, 1, 2, 0, 1, 0, 0, 2, 1, 0], [8, 8, 8, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 2, 2, 0, 1, 1, 2, 0, 1, 0, 0, 2, 1, 0]]}], "test": [{"input": [[0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 8, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1], [2, 2, 1, 8, 8, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 1, 2, 2, 1, 2, 2, 1, 8, 8, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 8, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 8, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 2, 1, 1], [2, 2, 1, 8, 8, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 8, 8, 1, 2, 2, 1, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 1, 2, 2, 1, 2, 2, 1, 8, 8, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 8, 8, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 8, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 8, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 8, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 8, 1, 0, 0, 1, 2, 0, 1], [2, 2, 1, 8, 8, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 8, 8, 1, 2, 2, 1, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 1, 2, 2, 1, 2, 2, 1, 8, 8, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 8, 8, 1], [0, 0, 1, 1, 2, 1, 0, 1, 1, 8, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0, 1, 8, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/505fff84.json b/data/arc-agi/evaluation/505fff84.json
deleted file mode 100644
index ccc140f..0000000
--- a/data/arc-agi/evaluation/505fff84.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 2, 0, 2, 2, 0, 2, 2, 0, 2], [2, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 0, 2, 2], [2, 0, 1, 2, 2, 2, 0, 0, 8, 2, 0], [0, 0, 2, 0, 0, 2, 0, 2, 0, 0, 0], [1, 2, 2, 0, 0, 2, 8, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 2, 0, 2, 2, 2], [0, 0, 2, 1, 2, 0, 0, 0, 2, 8, 0], [0, 2, 0, 0, 1, 2, 2, 2, 0, 2, 8], [0, 2, 0, 2, 2, 0, 2, 2, 2, 0, 0], [2, 0, 0, 2, 0, 0, 0, 2, 0, 2, 0], [2, 1, 2, 2, 2, 2, 2, 8, 2, 2, 0], [2, 2, 2, 0, 2, 0, 0, 2, 0, 0, 2], [0, 0, 2, 0, 2, 0, 2, 2, 2, 2, 0]], "output": [[2, 2, 2, 0, 0], [2, 2, 0, 0, 2], [2, 0, 0, 0, 2], [2, 2, 2, 0, 2], [2, 2, 2, 2, 2]]}, {"input": [[2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 2], [2, 2, 0, 0, 2, 0, 0, 2, 0, 2, 0], [2, 1, 0, 2, 0, 0, 0, 0, 2, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]], "output": [[0, 2, 0, 0, 0, 0, 2]]}, {"input": [[2, 2, 0, 0, 2, 2, 0, 2, 2, 0], [1, 0, 2, 0, 8, 0, 2, 0, 0, 0], [2, 2, 0, 0, 0, 2, 0, 0, 0, 2], [2, 0, 2, 0, 0, 1, 2, 0, 0, 8], [2, 2, 0, 0, 2, 2, 0, 2, 2, 0]], "output": [[0, 2, 0], [2, 0, 0]]}, {"input": [[2, 0, 2, 2, 0, 0, 0, 2, 0, 0, 2, 2], [2, 0, 1, 2, 0, 2, 0, 8, 0, 2, 0, 2], [1, 2, 2, 2, 2, 8, 2, 0, 0, 0, 2, 0], [2, 0, 0, 0, 2, 2, 2, 0, 2, 2, 0, 0], [2, 2, 1, 0, 2, 2, 2, 8, 2, 0, 2, 2], [2, 0, 0, 2, 0, 2, 0, 2, 2, 2, 0, 0]], "output": [[2, 0, 2, 0], [2, 2, 2, 2], [0, 2, 2, 2]]}, {"input": [[1, 2, 0, 2, 0, 0, 0, 8, 2, 0, 0, 2], [1, 2, 0, 2, 0, 2, 0, 8, 0, 0, 0, 2], [1, 0, 2, 2, 0, 2, 2, 8, 0, 0, 2, 2], [2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 2, 2], [0, 2, 2, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2], [0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 2, 2], [2, 0, 0, 2, 0, 0, 2, 2, 2, 0, 0, 0]], "output": [[2, 0, 2, 0, 0, 0], [2, 0, 2, 0, 2, 0], [0, 2, 2, 0, 2, 2]]}], "test": [{"input": [[2, 0, 1, 0, 2, 0, 2, 2, 8, 2, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 2], [0, 1, 0, 2, 2, 0, 2, 8, 2, 0, 0, 0, 0, 2], [0, 2, 1, 0, 0, 0, 0, 0, 8, 2, 2, 0, 2, 2], [2, 0, 2, 0, 2, 0, 2, 2, 0, 2, 2, 2, 0, 0], [0, 1, 2, 2, 0, 0, 0, 8, 0, 2, 2, 2, 2, 2], [2, 0, 0, 0, 2, 2, 0, 0, 2, 0, 2, 2, 2, 0], [2, 2, 2, 2, 1, 0, 0, 2, 0, 0, 8, 0, 2, 2], [0, 0, 0, 0, 2, 0, 0, 2, 2, 0, 0, 0, 2, 2]], "output": [[0, 2, 0, 2, 2], [0, 2, 2, 0, 2], [0, 0, 0, 0, 0], [2, 2, 0, 0, 0], [0, 0, 2, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/506d28a5.json b/data/arc-agi/evaluation/506d28a5.json
deleted file mode 100644
index 8414318..0000000
--- a/data/arc-agi/evaluation/506d28a5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[0, 2, 2, 2, 2], [0, 0, 0, 2, 0], [0, 2, 0, 0, 0], [2, 2, 2, 0, 2], [4, 4, 4, 4, 4], [0, 0, 1, 0, 0], [0, 0, 0, 0, 1], [1, 0, 0, 1, 1], [0, 0, 0, 0, 1]], "output": [[0, 3, 3, 3, 3], [0, 0, 0, 3, 3], [3, 3, 0, 3, 3], [3, 3, 3, 0, 3]]}], "train": [{"input": [[0, 2, 2, 0, 0], [2, 2, 2, 2, 0], [0, 0, 2, 2, 0], [0, 0, 2, 2, 0], [4, 4, 4, 4, 4], [1, 0, 0, 1, 0], [1, 1, 1, 0, 1], [0, 0, 1, 1, 1], [1, 1, 1, 0, 0]], "output": [[3, 3, 3, 3, 0], [3, 3, 3, 3, 3], [0, 0, 3, 3, 3], [3, 3, 3, 3, 0]]}, {"input": [[2, 2, 2, 2, 2], [0, 0, 0, 2, 0], [0, 2, 0, 2, 2], [2, 2, 2, 2, 2], [4, 4, 4, 4, 4], [0, 1, 1, 0, 0], [1, 1, 0, 1, 0], [1, 1, 0, 0, 0], [0, 0, 1, 1, 1]], "output": [[3, 3, 3, 3, 3], [3, 3, 0, 3, 0], [3, 3, 0, 3, 3], [3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0], [0, 2, 2, 2, 0], [0, 2, 0, 0, 0], [2, 2, 2, 0, 2], [4, 4, 4, 4, 4], [1, 1, 0, 0, 1], [1, 1, 0, 1, 1], [1, 0, 1, 0, 1], [0, 1, 0, 1, 1]], "output": [[3, 3, 0, 0, 3], [3, 3, 3, 3, 3], [3, 3, 3, 0, 3], [3, 3, 3, 3, 3]]}, {"input": [[0, 2, 0, 0, 2], [0, 2, 2, 0, 2], [0, 0, 0, 2, 2], [0, 0, 2, 2, 0], [4, 4, 4, 4, 4], [1, 0, 1, 0, 0], [1, 0, 0, 1, 0], [0, 0, 0, 0, 1], [0, 1, 1, 1, 0]], "output": [[3, 3, 3, 0, 3], [3, 3, 3, 3, 3], [0, 0, 0, 3, 3], [0, 3, 3, 3, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/50a16a69.json b/data/arc-agi/evaluation/50a16a69.json
deleted file mode 100644
index c6f0d03..0000000
--- a/data/arc-agi/evaluation/50a16a69.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[6, 8, 6, 8, 6, 3], [8, 6, 8, 6, 8, 3], [6, 8, 6, 8, 6, 3], [8, 6, 8, 6, 8, 3], [6, 8, 6, 8, 6, 3], [3, 3, 3, 3, 3, 3]], "output": [[8, 6, 8, 6, 8, 6], [6, 8, 6, 8, 6, 8], [8, 6, 8, 6, 8, 6], [6, 8, 6, 8, 6, 8], [8, 6, 8, 6, 8, 6], [6, 8, 6, 8, 6, 8]]}], "train": [{"input": [[5, 2, 5, 2, 5, 2, 5, 1], [2, 5, 2, 5, 2, 5, 2, 1], [5, 2, 5, 2, 5, 2, 5, 1], [2, 5, 2, 5, 2, 5, 2, 1], [5, 2, 5, 2, 5, 2, 5, 1], [2, 5, 2, 5, 2, 5, 2, 1], [5, 2, 5, 2, 5, 2, 5, 1], [1, 1, 1, 1, 1, 1, 1, 1]], "output": [[2, 5, 2, 5, 2, 5, 2, 5], [5, 2, 5, 2, 5, 2, 5, 2], [2, 5, 2, 5, 2, 5, 2, 5], [5, 2, 5, 2, 5, 2, 5, 2], [2, 5, 2, 5, 2, 5, 2, 5], [5, 2, 5, 2, 5, 2, 5, 2], [2, 5, 2, 5, 2, 5, 2, 5], [5, 2, 5, 2, 5, 2, 5, 2]]}, {"input": [[6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8], [5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8], [5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8], [5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8], [5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8], [5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6], [7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5], [3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6], [7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5], [3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6], [7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5], [3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6], [7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5], [3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6], [7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5], [3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6], [7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5], [3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6], [7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5], [3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6], [7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5], [3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6], [7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5], [3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6], [7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5, 7, 6, 3, 5]]}, {"input": [[7, 6, 3, 7, 6, 3, 7, 6, 4], [6, 3, 7, 6, 3, 7, 6, 3, 4], [7, 6, 3, 7, 6, 3, 7, 6, 4], [6, 3, 7, 6, 3, 7, 6, 3, 4], [7, 6, 3, 7, 6, 3, 7, 6, 4], [6, 3, 7, 6, 3, 7, 6, 3, 4], [7, 6, 3, 7, 6, 3, 7, 6, 4], [6, 3, 7, 6, 3, 7, 6, 3, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[6, 3, 7, 6, 3, 7, 6, 3, 7], [3, 7, 6, 3, 7, 6, 3, 7, 6], [6, 3, 7, 6, 3, 7, 6, 3, 7], [3, 7, 6, 3, 7, 6, 3, 7, 6], [6, 3, 7, 6, 3, 7, 6, 3, 7], [3, 7, 6, 3, 7, 6, 3, 7, 6], [6, 3, 7, 6, 3, 7, 6, 3, 7], [3, 7, 6, 3, 7, 6, 3, 7, 6], [6, 3, 7, 6, 3, 7, 6, 3, 7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/50aad11f.json b/data/arc-agi/evaluation/50aad11f.json
deleted file mode 100644
index b8bf703..0000000
--- a/data/arc-agi/evaluation/50aad11f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 0, 8, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 1, 0], [0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 0], [8, 8, 8, 8], [0, 0, 8, 0], [0, 8, 8, 0], [0, 1, 1, 1], [0, 1, 0, 0], [1, 1, 1, 0], [0, 0, 1, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 6, 6, 0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0], [0, 0, 6, 6, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 3, 0, 2, 0, 0], [0, 3, 3, 3, 0, 2, 0, 0], [3, 3, 0, 0, 2, 2, 2, 2], [0, 3, 3, 3, 0, 0, 2, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 6, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 0], [0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 6, 6, 0], [0, 0, 1, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 1, 0, 0, 0, 3, 0, 0, 4, 0, 0, 4], [1, 1, 1, 1, 3, 3, 0, 0, 4, 4, 4, 4], [0, 1, 1, 0, 0, 3, 0, 0, 0, 4, 4, 0], [0, 1, 0, 0, 3, 3, 3, 3, 0, 0, 4, 4]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 0, 7, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 1, 1, 0], [1, 1, 0, 0], [0, 1, 1, 1], [0, 0, 0, 1], [7, 0, 0, 0], [7, 7, 7, 7], [7, 0, 0, 0], [7, 7, 0, 0], [3, 3, 3, 0], [3, 0, 3, 3], [3, 0, 0, 0], [3, 3, 3, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/50f325b5.json b/data/arc-agi/evaluation/50f325b5.json
deleted file mode 100644
index 9590b15..0000000
--- a/data/arc-agi/evaluation/50f325b5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 0, 7, 0, 3, 2, 7, 0, 2, 7, 0, 3, 2, 7, 0, 0, 3], [2, 2, 0, 0, 2, 3, 3, 4, 0, 0, 7, 0, 0, 0, 0, 0, 0, 7], [4, 2, 7, 2, 7, 0, 4, 0, 0, 7, 2, 0, 3, 0, 7, 3, 2, 0], [3, 7, 2, 2, 7, 0, 0, 3, 0, 2, 4, 0, 2, 4, 0, 4, 3, 3], [2, 4, 3, 2, 0, 4, 3, 2, 3, 2, 0, 0, 8, 8, 8, 7, 0, 2], [2, 7, 3, 2, 7, 0, 0, 2, 3, 3, 3, 7, 0, 8, 2, 2, 2, 0], [0, 2, 2, 2, 0, 3, 2, 7, 3, 3, 7, 0, 0, 8, 0, 0, 0, 0], [4, 2, 7, 3, 0, 3, 0, 7, 2, 7, 2, 0, 4, 2, 7, 7, 0, 0], [0, 0, 2, 0, 2, 0, 4, 7, 4, 0, 0, 2, 2, 2, 3, 3, 3, 0], [2, 0, 4, 7, 0, 7, 0, 3, 2, 4, 2, 0, 0, 2, 0, 0, 2, 7], [7, 4, 2, 7, 4, 3, 3, 7, 2, 2, 0, 0, 7, 7, 0, 7, 0, 4]], "output": [[2, 2, 0, 7, 0, 3, 2, 7, 0, 2, 7, 0, 3, 2, 7, 0, 0, 3], [2, 2, 0, 0, 2, 3, 3, 4, 0, 0, 7, 0, 0, 0, 0, 0, 0, 7], [4, 2, 7, 2, 7, 0, 4, 0, 0, 7, 2, 0, 3, 0, 7, 3, 2, 0], [3, 7, 2, 2, 7, 0, 0, 3, 0, 2, 4, 0, 2, 4, 0, 4, 3, 3], [2, 4, 3, 2, 0, 4, 3, 2, 8, 2, 0, 0, 8, 8, 8, 7, 0, 2], [2, 7, 3, 2, 7, 0, 0, 2, 8, 8, 8, 7, 0, 8, 2, 2, 2, 0], [0, 2, 2, 2, 0, 3, 2, 7, 8, 3, 7, 0, 0, 8, 0, 0, 0, 0], [4, 2, 7, 3, 0, 3, 0, 7, 2, 7, 2, 0, 4, 2, 7, 7, 0, 0], [0, 0, 2, 0, 2, 0, 4, 7, 4, 0, 0, 2, 2, 2, 3, 3, 3, 0], [2, 0, 4, 7, 0, 7, 0, 3, 2, 4, 2, 0, 0, 2, 0, 0, 2, 7], [7, 4, 2, 7, 4, 3, 3, 7, 2, 2, 0, 0, 7, 7, 0, 7, 0, 4]]}, {"input": [[2, 7, 7, 0, 0, 3, 3, 2, 2, 0, 0, 2, 3, 3, 7, 0, 0], [0, 3, 7, 2, 2, 4, 2, 7, 4, 2, 7, 2, 2, 7, 0, 7, 2], [2, 3, 0, 3, 7, 3, 0, 2, 7, 2, 0, 2, 2, 3, 2, 3, 2], [2, 4, 7, 3, 0, 0, 4, 2, 4, 2, 4, 0, 7, 0, 3, 3, 0], [7, 3, 2, 4, 3, 2, 0, 0, 7, 2, 0, 3, 2, 2, 3, 0, 2], [2, 7, 3, 7, 2, 2, 2, 0, 2, 2, 7, 4, 2, 2, 3, 0, 3], [0, 3, 0, 0, 2, 3, 0, 2, 2, 0, 7, 7, 3, 2, 0, 0, 0], [2, 0, 0, 4, 0, 2, 2, 2, 0, 4, 4, 0, 7, 0, 0, 3, 2], [3, 2, 7, 0, 7, 8, 0, 8, 0, 4, 2, 2, 2, 2, 0, 0, 0], [7, 2, 3, 4, 3, 2, 8, 8, 2, 0, 4, 0, 3, 7, 0, 3, 2], [7, 7, 2, 2, 0, 7, 7, 4, 2, 3, 2, 7, 2, 2, 7, 2, 3], [0, 0, 0, 4, 2, 3, 0, 4, 7, 7, 3, 0, 7, 2, 0, 3, 0], [0, 0, 7, 2, 3, 0, 2, 3, 0, 3, 4, 2, 3, 3, 3, 2, 3], [7, 2, 2, 2, 2, 3, 0, 3, 0, 3, 3, 0, 7, 0, 3, 3, 2]], "output": [[2, 7, 7, 0, 0, 3, 3, 2, 2, 0, 0, 2, 3, 3, 7, 0, 0], [0, 3, 7, 2, 2, 4, 2, 7, 4, 2, 7, 2, 2, 7, 0, 7, 2], [2, 3, 0, 3, 7, 3, 0, 2, 7, 2, 0, 2, 2, 8, 2, 8, 2], [2, 4, 7, 3, 0, 0, 4, 2, 4, 2, 4, 0, 7, 0, 8, 8, 0], [7, 3, 2, 4, 3, 2, 0, 0, 7, 2, 0, 3, 2, 2, 3, 0, 2], [2, 7, 3, 7, 2, 2, 2, 0, 2, 2, 7, 4, 2, 2, 3, 0, 3], [0, 3, 0, 0, 2, 3, 0, 2, 2, 0, 7, 7, 3, 2, 0, 0, 0], [2, 0, 0, 4, 0, 2, 2, 2, 0, 4, 4, 0, 7, 0, 0, 3, 2], [3, 2, 7, 0, 7, 8, 0, 8, 0, 4, 2, 2, 2, 2, 0, 0, 0], [7, 2, 3, 4, 3, 2, 8, 8, 2, 0, 4, 0, 3, 7, 0, 3, 2], [7, 7, 2, 2, 0, 7, 7, 4, 2, 3, 2, 7, 2, 2, 7, 2, 3], [0, 0, 0, 4, 2, 3, 0, 4, 7, 7, 8, 0, 7, 2, 0, 8, 0], [0, 0, 7, 2, 3, 0, 2, 3, 0, 8, 4, 2, 3, 3, 8, 2, 3], [7, 2, 2, 2, 2, 3, 0, 3, 0, 8, 8, 0, 7, 0, 8, 8, 2]]}, {"input": [[3, 0, 0, 7, 3, 3, 3, 2, 2, 3, 3, 2, 0, 2, 4, 7, 2, 0], [0, 2, 4, 0, 2, 0, 7, 0, 0, 2, 0, 3, 2, 2, 2, 2, 2, 7], [7, 0, 2, 3, 0, 4, 4, 7, 2, 7, 7, 0, 4, 0, 4, 3, 0, 3], [7, 3, 0, 2, 4, 3, 7, 2, 0, 2, 0, 3, 3, 2, 2, 7, 4, 0], [0, 3, 4, 3, 2, 4, 3, 8, 0, 2, 3, 3, 4, 0, 3, 0, 3, 0], [0, 2, 2, 0, 7, 3, 8, 8, 8, 4, 3, 0, 7, 3, 4, 2, 2, 2], [2, 3, 2, 4, 7, 0, 7, 2, 0, 4, 0, 0, 0, 0, 7, 0, 4, 7], [3, 4, 7, 7, 0, 3, 2, 0, 0, 7, 3, 0, 2, 7, 4, 2, 0, 3], [2, 3, 0, 3, 3, 0, 0, 2, 2, 0, 7, 7, 3, 0, 2, 2, 2, 3], [0, 3, 3, 4, 0, 3, 0, 0, 2, 7, 3, 0, 0, 0, 2, 3, 7, 3], [0, 3, 4, 3, 0, 7, 2, 0, 3, 0, 3, 3, 0, 4, 0, 2, 3, 3], [3, 2, 0, 4, 0, 2, 7, 3, 7, 0, 3, 3, 2, 0, 0, 2, 2, 7], [2, 2, 3, 3, 4, 3, 7, 7, 2, 2, 4, 0, 0, 0, 4, 2, 3, 2], [0, 2, 0, 2, 0, 0, 4, 0, 0, 3, 7, 0, 0, 0, 4, 3, 4, 2], [0, 4, 3, 0, 0, 3, 0, 0, 7, 0, 0, 0, 2, 3, 3, 7, 4, 3]], "output": [[3, 0, 0, 7, 3, 3, 3, 2, 2, 3, 3, 2, 0, 2, 4, 7, 2, 0], [0, 2, 4, 0, 2, 0, 7, 0, 0, 2, 0, 3, 2, 2, 2, 2, 2, 7], [7, 0, 2, 3, 0, 4, 4, 7, 2, 7, 7, 0, 4, 0, 4, 3, 0, 3], [7, 3, 0, 2, 4, 3, 7, 2, 0, 2, 0, 3, 3, 2, 2, 7, 4, 0], [0, 3, 4, 3, 2, 4, 3, 8, 0, 2, 3, 3, 4, 0, 3, 0, 3, 0], [0, 2, 2, 0, 7, 3, 8, 8, 8, 4, 3, 0, 7, 3, 4, 2, 2, 2], [2, 3, 2, 4, 7, 0, 7, 2, 0, 4, 0, 0, 0, 0, 7, 0, 4, 7], [3, 4, 7, 7, 0, 3, 2, 0, 0, 7, 3, 0, 2, 7, 4, 2, 0, 3], [2, 8, 0, 3, 3, 0, 0, 2, 2, 0, 7, 7, 3, 0, 2, 2, 2, 3], [0, 8, 8, 4, 0, 3, 0, 0, 2, 7, 8, 0, 0, 0, 2, 3, 7, 3], [0, 8, 4, 3, 0, 7, 2, 0, 3, 0, 8, 8, 0, 4, 0, 2, 3, 3], [3, 2, 0, 4, 0, 2, 7, 3, 7, 0, 8, 3, 2, 0, 0, 2, 2, 7], [2, 2, 3, 3, 4, 3, 7, 7, 2, 2, 4, 0, 0, 0, 4, 2, 3, 2], [0, 2, 0, 2, 0, 0, 4, 0, 0, 3, 7, 0, 0, 0, 4, 3, 4, 2], [0, 4, 3, 0, 0, 3, 0, 0, 7, 0, 0, 0, 2, 3, 3, 7, 4, 3]]}, {"input": [[2, 3, 2, 8, 4, 4, 0, 2, 3, 0, 2, 4, 7, 7, 3, 7, 3], [3, 4, 8, 8, 8, 0, 0, 2, 0, 2, 0, 2, 7, 7, 7, 3, 7], [7, 3, 0, 8, 0, 2, 2, 0, 2, 2, 0, 7, 3, 0, 3, 3, 3], [2, 0, 2, 0, 2, 0, 3, 2, 0, 7, 0, 7, 0, 0, 2, 3, 0], [7, 7, 4, 3, 7, 2, 0, 2, 3, 0, 3, 4, 7, 2, 0, 3, 7], [2, 4, 0, 7, 0, 0, 3, 4, 4, 0, 3, 4, 4, 3, 3, 4, 0], [3, 2, 7, 3, 7, 3, 7, 2, 0, 2, 3, 2, 3, 3, 3, 4, 4], [3, 7, 4, 0, 2, 0, 2, 0, 3, 7, 2, 3, 3, 3, 3, 0, 2], [3, 2, 3, 2, 0, 2, 0, 2, 0, 7, 2, 0, 2, 4, 4, 7, 3], [4, 3, 4, 2, 0, 7, 0, 0, 7, 0, 0, 0, 0, 3, 0, 0, 3], [2, 3, 0, 0, 4, 0, 2, 0, 3, 3, 2, 0, 4, 0, 0, 2, 2], [3, 3, 4, 3, 2, 7, 2, 4, 3, 0, 7, 3, 3, 4, 2, 0, 3], [2, 0, 7, 7, 0, 3, 7, 4, 3, 7, 0, 2, 0, 3, 7, 0, 2], [2, 3, 0, 0, 2, 3, 0, 7, 0, 7, 3, 7, 0, 4, 0, 3, 7], [2, 0, 2, 2, 7, 2, 0, 0, 2, 2, 3, 0, 0, 3, 7, 0, 3], [7, 2, 4, 0, 3, 0, 0, 2, 2, 7, 4, 0, 0, 2, 2, 0, 4], [0, 0, 3, 0, 4, 4, 7, 7, 4, 2, 0, 0, 3, 7, 0, 2, 0], [2, 3, 4, 0, 3, 0, 3, 3, 2, 3, 4, 7, 7, 0, 2, 0, 3]], "output": [[2, 3, 2, 8, 4, 4, 0, 2, 3, 0, 2, 4, 7, 7, 3, 7, 3], [3, 4, 8, 8, 8, 0, 0, 2, 0, 2, 0, 2, 7, 7, 7, 8, 7], [7, 3, 0, 8, 0, 2, 2, 0, 2, 2, 0, 7, 3, 0, 8, 8, 8], [2, 0, 2, 0, 2, 0, 3, 2, 0, 7, 0, 7, 0, 0, 2, 8, 0], [7, 7, 4, 3, 7, 2, 0, 2, 3, 0, 3, 4, 7, 2, 0, 3, 7], [2, 4, 0, 7, 0, 0, 3, 4, 4, 0, 3, 4, 4, 8, 3, 4, 0], [3, 2, 7, 3, 7, 3, 7, 2, 0, 2, 3, 2, 8, 8, 8, 4, 4], [3, 7, 4, 0, 2, 0, 2, 0, 3, 7, 2, 3, 3, 8, 3, 0, 2], [3, 2, 3, 2, 0, 2, 0, 2, 0, 7, 2, 0, 2, 4, 4, 7, 3], [4, 3, 4, 2, 0, 7, 0, 0, 7, 0, 0, 0, 0, 3, 0, 0, 3], [2, 3, 0, 0, 4, 0, 2, 0, 3, 3, 2, 0, 4, 0, 0, 2, 2], [3, 3, 4, 3, 2, 7, 2, 4, 3, 0, 7, 3, 3, 4, 2, 0, 3], [2, 0, 7, 7, 0, 3, 7, 4, 3, 7, 0, 2, 0, 3, 7, 0, 2], [2, 3, 0, 0, 2, 3, 0, 7, 0, 7, 3, 7, 0, 4, 0, 3, 7], [2, 0, 2, 2, 7, 2, 0, 0, 2, 2, 3, 0, 0, 3, 7, 0, 3], [7, 2, 4, 0, 3, 0, 0, 2, 2, 7, 4, 0, 0, 2, 2, 0, 4], [0, 0, 3, 0, 4, 4, 7, 7, 4, 2, 0, 0, 3, 7, 0, 2, 0], [2, 3, 4, 0, 3, 0, 3, 3, 2, 3, 4, 7, 7, 0, 2, 0, 3]]}], "test": [{"input": [[7, 3, 2, 2, 4, 3, 7, 2, 7, 0, 7, 3, 4, 0, 3, 2, 4], [0, 2, 2, 2, 2, 3, 0, 3, 3, 0, 3, 2, 0, 0, 3, 0, 7], [3, 2, 0, 3, 7, 0, 2, 2, 2, 3, 7, 0, 3, 3, 0, 2, 2], [4, 2, 7, 7, 0, 0, 2, 0, 0, 0, 7, 4, 3, 2, 3, 7, 2], [7, 0, 8, 3, 0, 7, 3, 3, 0, 2, 3, 0, 4, 0, 0, 7, 0], [3, 4, 8, 8, 3, 2, 0, 0, 3, 4, 2, 4, 0, 3, 3, 2, 4], [2, 3, 0, 8, 0, 0, 2, 4, 0, 4, 4, 0, 0, 7, 2, 3, 0], [2, 4, 0, 3, 0, 0, 2, 2, 3, 2, 7, 3, 3, 7, 0, 4, 0], [2, 7, 7, 4, 0, 3, 0, 2, 7, 7, 0, 4, 7, 0, 7, 3, 3], [0, 0, 7, 3, 4, 0, 2, 3, 0, 7, 4, 3, 2, 3, 0, 7, 3], [2, 7, 0, 3, 4, 7, 3, 4, 0, 4, 0, 0, 0, 3, 3, 7, 2], [4, 3, 0, 2, 3, 0, 4, 0, 4, 3, 3, 2, 2, 3, 3, 0, 3], [4, 7, 0, 7, 3, 3, 2, 3, 3, 0, 7, 0, 0, 0, 0, 4, 7], [3, 3, 3, 3, 0, 4, 3, 4, 4, 7, 3, 7, 0, 0, 0, 3, 0], [0, 2, 2, 3, 3, 3, 0, 7, 3, 2, 7, 3, 4, 3, 3, 3, 3], [3, 3, 3, 4, 7, 4, 3, 3, 3, 0, 0, 4, 0, 7, 0, 4, 3]], "output": [[7, 3, 2, 2, 4, 3, 7, 2, 7, 0, 7, 3, 4, 0, 3, 2, 4], [0, 2, 2, 2, 2, 3, 0, 3, 3, 0, 3, 2, 0, 0, 3, 0, 7], [3, 2, 0, 3, 7, 0, 2, 2, 2, 3, 7, 0, 3, 3, 0, 2, 2], [4, 2, 7, 7, 0, 0, 2, 0, 0, 0, 7, 4, 3, 2, 3, 7, 2], [7, 0, 8, 3, 0, 7, 3, 3, 0, 2, 3, 0, 4, 0, 0, 7, 0], [3, 4, 8, 8, 3, 2, 0, 0, 3, 4, 2, 4, 0, 3, 3, 2, 4], [2, 3, 0, 8, 0, 0, 2, 4, 0, 4, 4, 0, 0, 7, 2, 3, 0], [2, 4, 0, 3, 0, 0, 2, 2, 3, 2, 7, 3, 3, 7, 0, 4, 0], [2, 7, 7, 4, 0, 3, 0, 2, 7, 7, 0, 4, 7, 0, 7, 3, 3], [0, 0, 7, 3, 4, 0, 2, 3, 0, 7, 4, 3, 2, 8, 0, 7, 3], [2, 7, 0, 3, 4, 7, 3, 4, 0, 4, 0, 0, 0, 8, 8, 7, 2], [4, 3, 0, 2, 3, 0, 4, 0, 4, 3, 3, 2, 2, 3, 8, 0, 3], [4, 7, 0, 7, 3, 3, 2, 3, 3, 0, 7, 0, 0, 0, 0, 4, 7], [3, 3, 8, 8, 0, 4, 3, 4, 4, 7, 3, 7, 0, 0, 0, 8, 0], [0, 2, 2, 8, 8, 3, 0, 7, 3, 2, 7, 3, 4, 3, 3, 8, 8], [3, 3, 3, 4, 7, 4, 3, 3, 3, 0, 0, 4, 0, 7, 0, 4, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/516b51b7.json b/data/arc-agi/evaluation/516b51b7.json
deleted file mode 100644
index 361e3d0..0000000
--- a/data/arc-agi/evaluation/516b51b7.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0], [0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0], [0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0], [0, 1, 2, 2, 1, 0, 0, 1, 2, 1, 0], [0, 1, 2, 2, 1, 0, 0, 1, 1, 1, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 2, 2, 2, 1, 0, 0, 0, 0], [0, 0, 1, 2, 3, 2, 1, 0, 0, 0, 0], [0, 0, 1, 2, 3, 2, 1, 0, 0, 0, 0], [0, 0, 1, 2, 2, 2, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 1, 2, 2, 2, 2, 2, 2, 1, 0, 0, 0, 0], [0, 1, 2, 3, 3, 3, 3, 2, 1, 0, 0, 0, 0], [0, 1, 2, 3, 2, 2, 3, 2, 1, 0, 0, 0, 0], [0, 1, 2, 3, 3, 3, 3, 2, 1, 0, 0, 0, 0], [0, 1, 2, 2, 2, 2, 2, 2, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 2, 2, 2, 2, 2, 2, 1, 0, 0, 0, 0], [0, 0, 1, 2, 3, 3, 3, 3, 2, 1, 0, 0, 0, 0], [0, 0, 1, 2, 3, 2, 2, 3, 2, 1, 0, 0, 0, 0], [0, 0, 1, 2, 3, 2, 2, 3, 2, 1, 0, 0, 0, 0], [0, 0, 1, 2, 3, 3, 3, 3, 2, 1, 0, 0, 0, 0], [0, 0, 1, 2, 2, 2, 2, 2, 2, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 1, 0, 0, 0], [0, 0, 0, 0, 1, 2, 3, 3, 3, 2, 1, 0, 0, 0], [0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0]]}], "test": [{"input": [[0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0]], "output": [[0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 0, 0, 0, 0], [0, 0, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 1, 0, 0, 0, 0], [0, 0, 1, 2, 3, 3, 3, 3, 3, 3, 3, 2, 1, 0, 0, 0, 0], [0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 1, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 2, 3, 3, 3, 2, 1, 0], [0, 1, 2, 2, 2, 1, 0, 0, 0, 1, 2, 3, 2, 3, 2, 1, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 2, 3, 2, 3, 2, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 3, 3, 2, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/5207a7b5.json b/data/arc-agi/evaluation/5207a7b5.json
deleted file mode 100644
index 9a6c7e4..0000000
--- a/data/arc-agi/evaluation/5207a7b5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 5, 6, 6, 0], [8, 8, 8, 5, 6, 0, 0], [8, 8, 8, 5, 6, 0, 0], [8, 8, 8, 5, 0, 0, 0], [8, 8, 8, 5, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 5, 6, 0, 0, 0, 0], [8, 8, 5, 6, 0, 0, 0, 0], [8, 8, 5, 0, 0, 0, 0, 0], [8, 8, 5, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 5, 6, 6, 6], [8, 8, 8, 8, 5, 6, 6, 0], [8, 8, 8, 8, 5, 6, 6, 0], [8, 8, 8, 8, 5, 6, 0, 0], [8, 8, 8, 8, 5, 6, 0, 0], [8, 8, 8, 8, 5, 0, 0, 0], [8, 8, 8, 8, 5, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 5, 6, 6, 6, 0, 0], [8, 8, 8, 5, 6, 6, 0, 0, 0], [8, 8, 8, 5, 6, 6, 0, 0, 0], [8, 8, 8, 5, 6, 0, 0, 0, 0], [8, 8, 8, 5, 6, 0, 0, 0, 0], [8, 8, 8, 5, 0, 0, 0, 0, 0], [8, 8, 8, 5, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/5289ad53.json b/data/arc-agi/evaluation/5289ad53.json
deleted file mode 100644
index af46aca..0000000
--- a/data/arc-agi/evaluation/5289ad53.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 8], [8, 8, 8, 8, 8, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[3, 3, 3], [3, 2, 0]]}, {"input": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [3, 3, 3, 3, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 2, 2, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 2, 2, 2, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 3, 3, 3, 3, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]], "output": [[3, 3, 2], [2, 0, 0]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 1, 1], [1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[3, 3, 3], [2, 2, 0]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[3, 3, 2], [2, 2, 2]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3], [2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/52fd389e.json b/data/arc-agi/evaluation/52fd389e.json
deleted file mode 100644
index e9c2096..0000000
--- a/data/arc-agi/evaluation/52fd389e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 2, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 1, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 1, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 4, 4, 4, 4, 4, 4, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 4, 2, 4, 4, 4, 4, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 4, 4, 4, 4, 4, 4, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 4, 4, 4, 4, 4, 4, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 4, 4, 4, 2, 4, 4, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 4, 4, 4, 4, 4, 4, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 4, 4, 4, 1, 4, 4, 4, 4, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 4, 1, 4, 4, 4, 4, 4, 4, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 4, 4, 4, 1, 4, 4, 4, 4, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 2, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 2, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 4, 4, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 4, 3, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 4, 4, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 4, 4, 2, 4, 4, 4, 4, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 4, 4, 4, 4, 4, 2, 4, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 4, 2, 4, 4, 4, 4, 4, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 1, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 8, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 8, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 8, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 8, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 4, 4, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 4, 1, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 4, 4, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 4, 4, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 4, 4, 8, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 8, 4, 4, 4, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 4, 4, 4, 8, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 8, 4, 4, 4, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 3, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 6, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 6, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 6, 4, 6, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 1, 4, 4, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 1, 4, 4, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 4, 4, 4, 4, 3, 3, 0, 0, 0, 0], [0, 0, 0, 1, 4, 4, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 3, 4, 4, 4, 3, 3, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 4, 4, 3, 4, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 4, 4, 4, 4, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 4, 4, 4, 4, 4, 4, 4, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 4, 4, 4, 4, 6, 4, 4, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 4, 4, 6, 4, 4, 4, 4, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 4, 4, 4, 4, 4, 6, 4, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 4, 6, 4, 6, 4, 4, 4, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 4, 4, 4, 4, 4, 4, 4, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/54db823b.json b/data/arc-agi/evaluation/54db823b.json
deleted file mode 100644
index a4579af..0000000
--- a/data/arc-agi/evaluation/54db823b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 3, 3, 9, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 3, 9, 3, 3, 0, 0, 0, 0], [0, 9, 3, 3, 9, 3, 0, 3, 3, 3, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 9, 3, 9, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [3, 3, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [9, 3, 3, 0, 0, 3, 9, 3, 0, 0, 0, 3, 3, 9, 3], [3, 9, 3, 0, 0, 3, 3, 9, 0, 0, 0, 9, 3, 3, 3], [3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 3], [9, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 9, 3, 3], [3, 3, 9, 0, 3, 3, 3, 9, 3, 0, 0, 3, 3, 9, 3], [0, 0, 0, 0, 9, 3, 9, 3, 3, 0, 0, 3, 3, 3, 9], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 9, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 3, 3, 9, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 3, 9, 3, 3, 0, 0, 0, 0], [0, 9, 3, 3, 9, 3, 0, 3, 3, 3, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 9, 3, 9, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [3, 3, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [9, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 3], [3, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 9, 3, 3, 3], [3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 3], [9, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 9, 3, 3], [3, 3, 9, 0, 3, 3, 3, 9, 3, 0, 0, 3, 3, 9, 3], [0, 0, 0, 0, 9, 3, 9, 3, 3, 0, 0, 3, 3, 3, 9], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 9, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 9, 3, 9, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 3, 9, 3, 0, 0, 3, 3, 3, 9, 3, 0, 0, 0, 0], [0, 3, 3, 9, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 3, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3], [0, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3, 3, 3], [0, 3, 3, 3, 3, 3, 0, 0, 3, 9, 3, 9, 9, 3, 3], [0, 3, 9, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3, 3, 3], [0, 3, 3, 3, 3, 3, 0, 0, 3, 3, 9, 3, 3, 3, 3], [0, 3, 3, 3, 9, 3, 0, 0, 3, 3, 3, 3, 3, 3, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 9, 3, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3], [0, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3, 3, 3], [0, 3, 3, 3, 3, 3, 0, 0, 3, 9, 3, 9, 9, 3, 3], [0, 3, 9, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3, 3, 3], [0, 3, 3, 3, 3, 3, 0, 0, 3, 3, 9, 3, 3, 3, 3], [0, 3, 3, 3, 9, 3, 0, 0, 3, 3, 3, 3, 3, 3, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 3, 9, 3], [0, 3, 3, 9, 3, 3, 0, 3, 3, 3, 3, 0, 3, 9, 3], [0, 3, 9, 3, 3, 3, 0, 3, 9, 9, 3, 0, 3, 3, 9], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 9, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 9, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0], [3, 3, 3, 9, 3, 0, 0, 0, 0, 0, 0, 0, 3, 9, 0], [3, 9, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 3, 3, 0], [3, 3, 3, 9, 3, 0, 0, 3, 9, 3, 9, 0, 3, 9, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 9, 3, 0], [0, 0, 0, 0, 0, 0, 0, 3, 9, 9, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 9, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 3, 9, 3], [0, 0, 0, 0, 0, 0, 0, 3, 9, 9, 3, 0, 3, 3, 9], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 9, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 9, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0], [3, 3, 3, 9, 3, 0, 0, 0, 0, 0, 0, 0, 3, 9, 0], [3, 9, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 3, 3, 0], [3, 3, 3, 9, 3, 0, 0, 3, 9, 3, 9, 0, 3, 9, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 9, 3, 0], [0, 0, 0, 0, 0, 0, 0, 3, 9, 9, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 9, 3, 3, 3, 3, 0, 0, 0, 3, 3, 9, 3, 9], [3, 3, 3, 3, 3, 9, 3, 0, 0, 0, 3, 3, 3, 3, 3], [3, 9, 3, 9, 3, 3, 3, 0, 0, 0, 3, 9, 3, 3, 9], [3, 3, 3, 3, 9, 3, 3, 0, 0, 0, 3, 3, 3, 3, 3], [3, 3, 9, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 9, 3, 0, 0], [0, 3, 9, 3, 9, 0, 3, 9, 3, 3, 3, 3, 3, 0, 0], [0, 3, 3, 3, 9, 0, 3, 3, 3, 9, 3, 3, 3, 0, 0], [0, 9, 3, 9, 3, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 9, 3, 3, 3, 3, 0, 0, 0, 3, 3, 9, 3, 9], [3, 3, 3, 3, 3, 9, 3, 0, 0, 0, 3, 3, 3, 3, 3], [3, 9, 3, 9, 3, 3, 3, 0, 0, 0, 3, 9, 3, 3, 9], [3, 3, 3, 3, 9, 3, 3, 0, 0, 0, 3, 3, 3, 3, 3], [3, 3, 9, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 9, 3, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 9, 3, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0], [0, 0, 3, 3, 3, 3, 9, 3, 0, 3, 9, 3, 3, 3, 0], [0, 0, 3, 9, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0], [0, 0, 3, 3, 3, 3, 3, 9, 0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0], [3, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 9, 3, 3, 0], [3, 9, 3, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 9, 3, 9, 3, 0, 3, 3, 9, 9, 3, 0, 0, 0, 0], [3, 3, 9, 3, 3, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0], [3, 3, 3, 3, 3, 0, 3, 9, 3, 9, 3, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 3, 3, 9], [3, 3, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [3, 9, 3, 9, 0, 0, 0, 0, 0, 0, 0, 0, 3, 9, 9], [9, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 9, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 9, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 9, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 9, 3, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 9, 3, 9, 3, 0, 3, 3, 9, 9, 3, 0, 0, 0, 0], [3, 3, 9, 3, 3, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0], [3, 3, 3, 3, 3, 0, 3, 9, 3, 9, 3, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 3, 3, 9], [3, 3, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [3, 9, 3, 9, 0, 0, 0, 0, 0, 0, 0, 0, 3, 9, 9], [9, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/55059096.json b/data/arc-agi/evaluation/55059096.json
deleted file mode 100644
index 1b4bbb7..0000000
--- a/data/arc-agi/evaluation/55059096.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 2, 3, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 3, 2, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/551d5bf1.json b/data/arc-agi/evaluation/551d5bf1.json
deleted file mode 100644
index 8164917..0000000
--- a/data/arc-agi/evaluation/551d5bf1.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 1, 0], [8, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 1, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 1, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 8, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 1, 0, 0], [0, 1, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 1, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 1, 0, 0], [0, 1, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 1, 0, 0, 0], [0, 0, 1, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 1, 0, 0, 0], [0, 0, 1, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 8, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 1, 1, 1, 8, 1, 1, 1, 1, 1, 0], [0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0], [0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0], [0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0], [0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 8, 8, 8, 8, 8, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 1, 0, 0, 0], [0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 1, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 8, 1, 1, 0, 0, 0], [0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 1, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 8, 1, 1, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/55783887.json b/data/arc-agi/evaluation/55783887.json
deleted file mode 100644
index db66caf..0000000
--- a/data/arc-agi/evaluation/55783887.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 1, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 1, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 1, 4, 4, 4, 4, 4, 4, 4], [4, 4, 1, 4, 4, 4, 4, 4, 4], [4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 4, 4, 4], [4, 4, 4, 4, 4, 4, 1, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 6, 8, 8, 8, 1, 8, 8, 8, 8], [8, 8, 8, 6, 8, 1, 8, 8, 8, 8, 8], [8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 8, 6, 8, 8, 8, 8, 8], [8, 8, 1, 8, 8, 8, 6, 8, 8, 8, 8], [8, 1, 8, 8, 8, 8, 8, 6, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8]]}, {"input": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 6, 4, 4, 4, 4], [4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 1, 4, 4, 4, 4, 6, 4, 4, 4, 4], [4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]]}, {"input": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 5, 5], [5, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 1, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]], "output": [[5, 5, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 6, 5, 5, 6, 5, 5], [5, 1, 5, 5, 5, 6, 5, 5, 5, 5, 5, 6], [5, 5, 1, 5, 6, 5, 5, 5, 5, 5, 6, 5], [5, 5, 5, 6, 5, 5, 5, 5, 5, 6, 5, 5], [5, 5, 6, 5, 1, 5, 5, 5, 6, 5, 5, 5], [5, 6, 5, 5, 5, 1, 5, 6, 5, 5, 5, 5], [6, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 6, 5, 1, 5, 5, 5, 5], [5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 6, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5], [6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8], [8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 1, 8, 8, 6], [8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 8], [8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8], [8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 6, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 6, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 1, 8, 6, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8], [8, 6, 8, 8, 8, 8, 8, 8, 6, 8, 1, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 6, 8, 8, 8, 1, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 6, 8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8]]}], "test": [{"input": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 6, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[4, 4, 4, 4, 4, 4, 4, 4, 6, 4, 4, 4, 6, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 6, 4, 4, 4, 6, 4, 4, 4, 4], [4, 4, 1, 4, 4, 4, 6, 4, 4, 4, 6, 4, 4, 4, 4, 4], [4, 4, 4, 1, 4, 6, 4, 4, 4, 6, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 6, 4, 4, 4, 6, 4, 4, 4, 4, 4, 1, 4], [4, 4, 4, 6, 4, 1, 4, 6, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 6, 4, 4, 4, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 6, 4, 4, 4, 6, 4, 1, 4, 4, 4, 4, 4, 4, 6, 4], [6, 4, 4, 4, 6, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 6, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4], [4, 4, 6, 4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/575b1a71.json b/data/arc-agi/evaluation/575b1a71.json
deleted file mode 100644
index 5f619bf..0000000
--- a/data/arc-agi/evaluation/575b1a71.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 5, 5, 5, 5, 0, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 0, 5, 5, 5, 0, 5, 5, 5, 5], [5, 5, 5, 5, 0, 0, 5, 5, 5, 5], [5, 0, 5, 5, 0, 5, 5, 5, 5, 5], [5, 0, 5, 5, 0, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 0, 5], [5, 0, 5, 5, 0, 0, 5, 5, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 0, 5]], "output": [[5, 5, 5, 5, 5, 3, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 1, 5, 5, 5, 3, 5, 5, 5, 5], [5, 5, 5, 5, 2, 3, 5, 5, 5, 5], [5, 1, 5, 5, 2, 5, 5, 5, 5, 5], [5, 1, 5, 5, 2, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 4, 5], [5, 1, 5, 5, 2, 3, 5, 5, 4, 5], [5, 5, 5, 5, 5, 5, 5, 5, 4, 5]]}, {"input": [[0, 5, 5, 5, 5, 5, 5, 0, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 0, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 0, 5, 5], [5, 5, 5, 5, 0, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 0, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 0, 5], [5, 5, 5, 5, 0, 5, 5, 5, 5, 5]], "output": [[1, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 2, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 5, 2, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 2, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 4, 5], [5, 5, 5, 5, 2, 5, 5, 5, 5, 5]]}, {"input": [[5, 5, 5, 5, 5, 0, 0, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 0, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]], "output": [[5, 5, 5, 5, 5, 1, 2, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 4], [5, 5, 5, 5, 5, 5, 5, 5, 5, 4], [5, 5, 5, 5, 5, 5, 5, 5, 3, 4], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 2, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 4], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]]}], "test": [{"input": [[5, 5, 5, 0, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 0, 5, 5, 5, 5], [5, 5, 0, 5, 5, 5, 5, 5, 5, 5], [5, 5, 0, 5, 5, 5, 5, 5, 5, 5], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5]], "output": [[5, 5, 5, 3, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [1, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 4, 5, 5, 5, 5], [5, 5, 2, 5, 5, 5, 5, 5, 5, 5], [5, 5, 2, 5, 5, 5, 5, 5, 5, 5], [1, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [1, 5, 5, 5, 5, 4, 5, 5, 5, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/5783df64.json b/data/arc-agi/evaluation/5783df64.json
deleted file mode 100644
index 5827520..0000000
--- a/data/arc-agi/evaluation/5783df64.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 6, 0, 0, 0, 7], [0, 0, 0, 4, 0, 0], [2, 0, 0, 0, 9, 0], [0, 0, 3, 0, 0, 0], [0, 0, 0, 5, 0, 0], [1, 0, 0, 0, 8, 0]], "output": [[6, 4, 7], [2, 3, 9], [1, 5, 8]]}, {"input": [[0, 0, 0, 7, 0, 0, 8, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1], [5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 7, 8], [5, 2, 1], [3, 9, 6]]}, {"input": [[2, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 7], [0, 3, 0, 0, 9, 0], [0, 0, 5, 0, 0, 0], [0, 0, 0, 6, 0, 0], [4, 0, 0, 0, 8, 0]], "output": [[2, 1, 7], [3, 5, 9], [4, 6, 8]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 9, 0, 0], [5, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7]], "output": [[5, 6, 9], [4, 1, 8], [3, 2, 7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/5833af48.json b/data/arc-agi/evaluation/5833af48.json
deleted file mode 100644
index fa10621..0000000
--- a/data/arc-agi/evaluation/5833af48.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 8, 2, 2, 0, 1, 1, 8, 8, 1, 1, 1, 1, 0, 0, 0, 0], [0, 8, 8, 2, 2, 0, 1, 1, 8, 8, 1, 1, 1, 1, 0, 0, 0, 0], [0, 2, 8, 8, 8, 0, 8, 8, 1, 1, 1, 1, 8, 8, 0, 0, 0, 0], [0, 2, 8, 2, 2, 0, 8, 8, 1, 1, 1, 1, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1], [8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1], [1, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8], [1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 8, 2, 0, 3, 3, 8, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 3, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 8, 2, 0, 3, 3, 8, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 8, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 3], [3, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 3], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8], [3, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 3], [3, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 8, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 8, 2, 0, 4, 4, 8, 8, 4, 4, 0, 0, 0, 0, 0], [8, 2, 2, 0, 4, 4, 8, 8, 4, 4, 0, 0, 0, 0, 0], [8, 8, 8, 0, 8, 8, 4, 4, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 4, 4, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 4, 4, 4, 8, 4, 4, 4, 4], [4, 4, 4, 8, 4, 4, 4, 4, 4], [4, 4, 4, 8, 8, 8, 4, 4, 4], [4, 8, 4, 4, 4, 4, 4, 8, 4], [8, 4, 4, 4, 4, 4, 8, 4, 4], [8, 8, 8, 4, 4, 4, 8, 8, 8]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 8, 2, 8, 0, 1, 8, 1, 1, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 2, 2, 0, 8, 1, 1, 1, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 8, 8, 0, 1, 8, 1, 1, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 2, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 8, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 8, 1, 1, 1, 1], [1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1], [1, 1, 1, 1, 8, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 8, 8, 1, 1, 1, 1], [1, 8, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 8], [8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1], [1, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8], [8, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 8, 8], [1, 1, 1, 1, 1, 8, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 8, 1, 1, 1, 1], [1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1], [1, 1, 1, 1, 8, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 8, 8, 1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/58743b76.json b/data/arc-agi/evaluation/58743b76.json
deleted file mode 100644
index 0474cc6..0000000
--- a/data/arc-agi/evaluation/58743b76.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 4, 8, 8, 8, 8, 8, 8, 8, 8], [3, 2, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 1, 0, 0, 0], [8, 8, 0, 1, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 1, 0, 1], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 1, 0, 0, 1, 0, 0], [8, 8, 0, 0, 0, 0, 0, 1, 0, 0], [8, 8, 0, 1, 0, 0, 1, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0, 1]], "output": [[1, 4, 8, 8, 8, 8, 8, 8, 8, 8], [3, 2, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 4, 0, 0, 0], [8, 8, 0, 1, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 4, 0, 4], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 3, 0, 0, 2, 0, 0], [8, 8, 0, 0, 0, 0, 0, 2, 0, 0], [8, 8, 0, 3, 0, 0, 2, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0, 2]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 6], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 8, 8], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [2, 0, 0, 0, 0, 0, 2, 2, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 8, 8], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 8, 8], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 8, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 6], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 2], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 8, 8], [0, 4, 0, 0, 0, 0, 0, 0, 6, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [4, 0, 0, 0, 0, 0, 6, 6, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 8], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 8, 8], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 8, 8]]}], "test": [{"input": [[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 8, 8], [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 8, 8], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 8, 8], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 1], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 4]], "output": [[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 3, 0, 0, 0, 1, 0, 1, 0, 0, 8, 8], [3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 8, 8], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [7, 0, 0, 0, 0, 7, 0, 0, 4, 0, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 4, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 8, 8], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 1], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/58e15b12.json b/data/arc-agi/evaluation/58e15b12.json
deleted file mode 100644
index c71d232..0000000
--- a/data/arc-agi/evaluation/58e15b12.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 0, 3, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 3, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 8, 0, 8, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 8, 0, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 8, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 8, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 8, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 3, 0, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 3, 0, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 3, 0, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 3, 0, 0, 3, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 3, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 3, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 3, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 3, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 0, 0, 0, 3, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 3, 0, 3, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 3, 0, 3, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0, 3, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0], [0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0], [0, 0, 8, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3], [0, 8, 0, 0, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 0, 3], [0, 8, 0, 0, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 0, 3], [8, 0, 0, 0, 0, 0, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 8, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 8, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 8, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 3, 0, 0, 0, 0, 8, 0, 0, 3, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 3, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 8, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 0, 0, 8, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 0, 0, 8, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0, 8, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0, 0, 0, 8, 0, 0], [3, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 3, 0, 0, 0, 0, 8, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 8, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 8, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 8, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 8, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 8, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 8, 0, 0, 3, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 3, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 3, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 3, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 3, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
diff --git a/data/arc-agi/evaluation/59341089.json b/data/arc-agi/evaluation/59341089.json
deleted file mode 100644
index fd49a06..0000000
--- a/data/arc-agi/evaluation/59341089.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[8, 5, 7], [5, 7, 5], [8, 8, 5]], "output": [[7, 5, 8, 8, 5, 7, 7, 5, 8, 8, 5, 7], [5, 7, 5, 5, 7, 5, 5, 7, 5, 5, 7, 5], [5, 8, 8, 8, 8, 5, 5, 8, 8, 8, 8, 5]]}], "train": [{"input": [[7, 5, 7], [5, 5, 7], [7, 7, 5]], "output": [[7, 5, 7, 7, 5, 7, 7, 5, 7, 7, 5, 7], [7, 5, 5, 5, 5, 7, 7, 5, 5, 5, 5, 7], [5, 7, 7, 7, 7, 5, 5, 7, 7, 7, 7, 5]]}, {"input": [[7, 7, 8], [5, 8, 8], [5, 8, 8]], "output": [[8, 7, 7, 7, 7, 8, 8, 7, 7, 7, 7, 8], [8, 8, 5, 5, 8, 8, 8, 8, 5, 5, 8, 8], [8, 8, 5, 5, 8, 8, 8, 8, 5, 5, 8, 8]]}, {"input": [[8, 8, 8], [5, 5, 7], [5, 7, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [7, 5, 5, 5, 5, 7, 7, 5, 5, 5, 5, 7], [8, 7, 5, 5, 7, 8, 8, 7, 5, 5, 7, 8]]}, {"input": [[8, 8, 7], [7, 5, 5], [5, 7, 8]], "output": [[7, 8, 8, 8, 8, 7, 7, 8, 8, 8, 8, 7], [5, 5, 7, 7, 5, 5, 5, 5, 7, 7, 5, 5], [8, 7, 5, 5, 7, 8, 8, 7, 5, 5, 7, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/5a5a2103.json b/data/arc-agi/evaluation/5a5a2103.json
deleted file mode 100644
index af4f396..0000000
--- a/data/arc-agi/evaluation/5a5a2103.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 8, 0, 5, 5, 0, 8, 0, 0, 0, 0], [0, 2, 2, 0, 8, 0, 0, 5, 0, 8, 0, 0, 0, 0], [0, 2, 2, 0, 8, 5, 5, 5, 5, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 5, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 3, 3, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 3, 3, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 1, 1, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 1, 1, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0]], "output": [[0, 2, 2, 0, 8, 0, 2, 2, 0, 8, 0, 2, 2, 0], [0, 0, 2, 0, 8, 0, 0, 2, 0, 8, 0, 0, 2, 0], [2, 2, 2, 2, 8, 2, 2, 2, 2, 8, 2, 2, 2, 2], [0, 2, 0, 0, 8, 0, 2, 0, 0, 8, 0, 2, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 3, 3, 0, 8, 0, 3, 3, 0, 8, 0, 3, 3, 0], [0, 0, 3, 0, 8, 0, 0, 3, 0, 8, 0, 0, 3, 0], [3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3], [0, 3, 0, 0, 8, 0, 3, 0, 0, 8, 0, 3, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 1, 1, 0, 8, 0, 1, 1, 0, 8, 0, 1, 1, 0], [0, 0, 1, 0, 8, 0, 0, 1, 0, 8, 0, 0, 1, 0], [1, 1, 1, 1, 8, 1, 1, 1, 1, 8, 1, 1, 1, 1], [0, 1, 0, 0, 8, 0, 1, 0, 0, 8, 0, 1, 0, 0]]}, {"input": [[0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 4, 4, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 4, 4, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 2, 2, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 2, 2, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 8, 8, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 8, 8, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 1, 1, 0, 3, 6, 6, 0, 6, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 1, 1, 0, 3, 0, 6, 6, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 6, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [4, 4, 0, 4, 3, 4, 4, 0, 4, 3, 4, 4, 0, 4, 3, 4, 4, 0, 4], [0, 4, 4, 0, 3, 0, 4, 4, 0, 3, 0, 4, 4, 0, 3, 0, 4, 4, 0], [0, 0, 4, 0, 3, 0, 0, 4, 0, 3, 0, 0, 4, 0, 3, 0, 0, 4, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [2, 2, 0, 2, 3, 2, 2, 0, 2, 3, 2, 2, 0, 2, 3, 2, 2, 0, 2], [0, 2, 2, 0, 3, 0, 2, 2, 0, 3, 0, 2, 2, 0, 3, 0, 2, 2, 0], [0, 0, 2, 0, 3, 0, 0, 2, 0, 3, 0, 0, 2, 0, 3, 0, 0, 2, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [8, 8, 0, 8, 3, 8, 8, 0, 8, 3, 8, 8, 0, 8, 3, 8, 8, 0, 8], [0, 8, 8, 0, 3, 0, 8, 8, 0, 3, 0, 8, 8, 0, 3, 0, 8, 8, 0], [0, 0, 8, 0, 3, 0, 0, 8, 0, 3, 0, 0, 8, 0, 3, 0, 0, 8, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [1, 1, 0, 1, 3, 1, 1, 0, 1, 3, 1, 1, 0, 1, 3, 1, 1, 0, 1], [0, 1, 1, 0, 3, 0, 1, 1, 0, 3, 0, 1, 1, 0, 3, 0, 1, 1, 0], [0, 0, 1, 0, 3, 0, 0, 1, 0, 3, 0, 0, 1, 0, 3, 0, 0, 1, 0]]}], "test": [{"input": [[0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 2, 2, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 2, 2, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 1, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 3, 3, 0, 5, 0, 0, 0, 0, 5, 1, 1, 1, 1, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 3, 3, 0, 5, 0, 0, 0, 0, 5, 0, 1, 1, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 1, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 4, 4, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 4, 4, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 6, 6, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 6, 6, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 7, 7, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 7, 7, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0]], "output": [[0, 0, 2, 0, 5, 0, 0, 2, 0, 5, 0, 0, 2, 0, 5, 0, 0, 2, 0, 5, 0, 0, 2, 0], [2, 2, 2, 2, 5, 2, 2, 2, 2, 5, 2, 2, 2, 2, 5, 2, 2, 2, 2, 5, 2, 2, 2, 2], [0, 2, 2, 0, 5, 0, 2, 2, 0, 5, 0, 2, 2, 0, 5, 0, 2, 2, 0, 5, 0, 2, 2, 0], [0, 0, 2, 0, 5, 0, 0, 2, 0, 5, 0, 0, 2, 0, 5, 0, 0, 2, 0, 5, 0, 0, 2, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 3, 0, 5, 0, 0, 3, 0, 5, 0, 0, 3, 0, 5, 0, 0, 3, 0, 5, 0, 0, 3, 0], [3, 3, 3, 3, 5, 3, 3, 3, 3, 5, 3, 3, 3, 3, 5, 3, 3, 3, 3, 5, 3, 3, 3, 3], [0, 3, 3, 0, 5, 0, 3, 3, 0, 5, 0, 3, 3, 0, 5, 0, 3, 3, 0, 5, 0, 3, 3, 0], [0, 0, 3, 0, 5, 0, 0, 3, 0, 5, 0, 0, 3, 0, 5, 0, 0, 3, 0, 5, 0, 0, 3, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 4, 0, 5, 0, 0, 4, 0, 5, 0, 0, 4, 0, 5, 0, 0, 4, 0, 5, 0, 0, 4, 0], [4, 4, 4, 4, 5, 4, 4, 4, 4, 5, 4, 4, 4, 4, 5, 4, 4, 4, 4, 5, 4, 4, 4, 4], [0, 4, 4, 0, 5, 0, 4, 4, 0, 5, 0, 4, 4, 0, 5, 0, 4, 4, 0, 5, 0, 4, 4, 0], [0, 0, 4, 0, 5, 0, 0, 4, 0, 5, 0, 0, 4, 0, 5, 0, 0, 4, 0, 5, 0, 0, 4, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 6, 0, 5, 0, 0, 6, 0, 5, 0, 0, 6, 0, 5, 0, 0, 6, 0, 5, 0, 0, 6, 0], [6, 6, 6, 6, 5, 6, 6, 6, 6, 5, 6, 6, 6, 6, 5, 6, 6, 6, 6, 5, 6, 6, 6, 6], [0, 6, 6, 0, 5, 0, 6, 6, 0, 5, 0, 6, 6, 0, 5, 0, 6, 6, 0, 5, 0, 6, 6, 0], [0, 0, 6, 0, 5, 0, 0, 6, 0, 5, 0, 0, 6, 0, 5, 0, 0, 6, 0, 5, 0, 0, 6, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 7, 0, 5, 0, 0, 7, 0, 5, 0, 0, 7, 0, 5, 0, 0, 7, 0, 5, 0, 0, 7, 0], [7, 7, 7, 7, 5, 7, 7, 7, 7, 5, 7, 7, 7, 7, 5, 7, 7, 7, 7, 5, 7, 7, 7, 7], [0, 7, 7, 0, 5, 0, 7, 7, 0, 5, 0, 7, 7, 0, 5, 0, 7, 7, 0, 5, 0, 7, 7, 0], [0, 0, 7, 0, 5, 0, 0, 7, 0, 5, 0, 0, 7, 0, 5, 0, 0, 7, 0, 5, 0, 0, 7, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/5af49b42.json b/data/arc-agi/evaluation/5af49b42.json
deleted file mode 100644
index 876009b..0000000
--- a/data/arc-agi/evaluation/5af49b42.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 5, 1, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 3, 5, 1, 6, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 5, 1, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 3, 5, 1, 6, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 5, 1, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 4, 3, 0, 0, 0, 0, 0, 0, 0, 5, 7, 8, 6]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 8, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 2, 4, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 8, 6, 0, 0, 0, 1, 2, 4, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 4, 3, 0, 0, 0, 0, 0, 0, 0, 5, 7, 8, 6]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 7, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 7, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 3, 7, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 2, 0], [0, 4, 3, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[9, 5, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 1, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 6, 7]], "output": [[9, 5, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 3, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 9, 5, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 6, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 1, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 3, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 5, 6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 1, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 6, 7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/5b526a93.json b/data/arc-agi/evaluation/5b526a93.json
deleted file mode 100644
index 7ed1418..0000000
--- a/data/arc-agi/evaluation/5b526a93.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0], [0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 1, 0, 1, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 0], [0, 0, 1, 1, 1, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 1, 0, 1, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 0], [0, 0, 1, 1, 1, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0], [0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0], [0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0], [0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0], [0, 1, 0, 1, 0, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0], [0, 1, 1, 1, 0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0], [0, 1, 0, 1, 0, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0], [0, 1, 1, 1, 0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0], [0, 1, 0, 1, 0, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0], [0, 1, 1, 1, 0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/5b692c0f.json b/data/arc-agi/evaluation/5b692c0f.json
deleted file mode 100644
index 753a240..0000000
--- a/data/arc-agi/evaluation/5b692c0f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 4, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 4, 2, 4, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 4, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 4, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 4, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 4, 2, 4, 2, 4, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 4, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 4, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 0, 2, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 4, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 4, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 3, 3, 4, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 3, 3, 4, 3, 4, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 4, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 4, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 0, 3, 4, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 4, 3, 3, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 4, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 3, 4, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 4, 3, 4, 3, 4, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 4, 3, 3, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 4, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 3, 4, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 4, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 8, 8, 4, 8, 4, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 4, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 8, 8, 8, 4, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 4, 8, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 4, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 4, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 4, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 4, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 8, 8, 4, 8, 4, 8, 4, 8, 8, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 4, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 4, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 4, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 4, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 4, 1, 4, 1, 4, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 1, 1, 1, 4, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 1, 1, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 4, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/5b6cbef5.json b/data/arc-agi/evaluation/5b6cbef5.json
deleted file mode 100644
index 1e98bee..0000000
--- a/data/arc-agi/evaluation/5b6cbef5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[0, 2, 0, 2], [2, 2, 0, 2], [2, 2, 0, 0], [0, 0, 0, 2]], "output": [[0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2], [0, 0, 0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 2, 2, 0, 2], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2], [0, 2, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2], [2, 2, 0, 2, 2, 2, 0, 2, 0, 0, 0, 0, 2, 2, 0, 2], [2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2], [0, 2, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 2, 2, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]]}], "train": [{"input": [[2, 0, 0, 2], [2, 2, 2, 2], [2, 0, 0, 2], [0, 2, 0, 2]], "output": [[2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2], [2, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 2], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 2], [0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 2], [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2]]}, {"input": [[0, 0, 0, 1], [0, 1, 1, 0], [0, 0, 0, 0], [0, 0, 0, 1]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]]}, {"input": [[0, 0, 0, 0], [4, 4, 4, 4], [0, 4, 4, 0], [4, 4, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 4, 4, 0, 0, 4, 4, 0, 0, 4, 4, 0, 0, 4, 4, 0], [4, 4, 0, 0, 4, 4, 0, 0, 4, 4, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[3, 3, 0, 3], [3, 0, 0, 3], [0, 0, 0, 3], [3, 3, 0, 3]], "output": [[3, 3, 0, 3, 3, 3, 0, 3, 0, 0, 0, 0, 3, 3, 0, 3], [3, 0, 0, 3, 3, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 0, 3, 3, 3, 0, 3, 0, 0, 0, 0, 3, 3, 0, 3], [3, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 3], [3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 3], [3, 3, 0, 3, 3, 3, 0, 3, 0, 0, 0, 0, 3, 3, 0, 3], [3, 0, 0, 3, 3, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 0, 3, 3, 3, 0, 3, 0, 0, 0, 0, 3, 3, 0, 3]]}, {"input": [[1, 0, 1, 0], [1, 1, 0, 0], [1, 1, 1, 1], [1, 0, 0, 1]], "output": [[1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], [1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0], [1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1], [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1], [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/5d2a5c43.json b/data/arc-agi/evaluation/5d2a5c43.json
deleted file mode 100644
index e98c9cc..0000000
--- a/data/arc-agi/evaluation/5d2a5c43.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[0, 0, 4, 0, 1, 0, 0, 4, 0], [4, 0, 4, 4, 1, 4, 4, 0, 4], [0, 0, 0, 4, 1, 4, 4, 0, 4], [4, 0, 4, 0, 1, 4, 4, 4, 0], [0, 4, 0, 0, 1, 4, 4, 4, 4], [4, 4, 0, 4, 1, 0, 4, 0, 4]], "output": [[0, 0, 8, 0], [8, 8, 8, 8], [8, 8, 0, 8], [8, 8, 8, 0], [8, 8, 8, 8], [8, 8, 0, 8]]}, {"input": [[4, 4, 4, 0, 1, 0, 0, 4, 4], [4, 4, 0, 0, 1, 0, 0, 0, 4], [4, 0, 0, 4, 1, 0, 4, 0, 0], [0, 4, 4, 4, 1, 0, 4, 4, 4], [0, 4, 0, 4, 1, 0, 0, 4, 0], [0, 0, 4, 0, 1, 0, 4, 4, 0]], "output": [[8, 8, 8, 8], [8, 8, 0, 8], [8, 8, 0, 8], [0, 8, 8, 8], [0, 8, 8, 8], [0, 8, 8, 0]]}], "train": [{"input": [[4, 4, 4, 4, 1, 0, 0, 0, 0], [0, 4, 0, 4, 1, 4, 0, 0, 0], [4, 0, 0, 0, 1, 0, 4, 0, 0], [0, 4, 4, 0, 1, 0, 0, 0, 0], [4, 0, 4, 0, 1, 4, 4, 4, 4], [0, 4, 4, 4, 1, 0, 0, 0, 0]], "output": [[8, 8, 8, 8], [8, 8, 0, 8], [8, 8, 0, 0], [0, 8, 8, 0], [8, 8, 8, 8], [0, 8, 8, 8]]}, {"input": [[0, 0, 4, 4, 1, 0, 0, 4, 4], [0, 4, 4, 4, 1, 0, 0, 0, 0], [0, 4, 0, 0, 1, 4, 0, 4, 0], [0, 4, 4, 4, 1, 4, 4, 0, 4], [0, 4, 4, 4, 1, 4, 0, 4, 4], [0, 4, 0, 4, 1, 4, 0, 0, 0]], "output": [[0, 0, 8, 8], [0, 8, 8, 8], [8, 8, 8, 0], [8, 8, 8, 8], [8, 8, 8, 8], [8, 8, 0, 8]]}, {"input": [[4, 0, 4, 0, 1, 4, 0, 4, 4], [4, 0, 4, 0, 1, 4, 4, 4, 0], [4, 4, 0, 4, 1, 4, 0, 4, 0], [0, 4, 0, 0, 1, 4, 0, 0, 4], [0, 0, 4, 4, 1, 4, 4, 4, 0], [4, 4, 0, 4, 1, 4, 0, 0, 0]], "output": [[8, 0, 8, 8], [8, 8, 8, 0], [8, 8, 8, 8], [8, 8, 0, 8], [8, 8, 8, 8], [8, 8, 0, 8]]}, {"input": [[0, 0, 0, 4, 1, 4, 4, 0, 0], [0, 0, 4, 4, 1, 0, 4, 0, 0], [4, 0, 4, 4, 1, 0, 4, 4, 0], [4, 4, 4, 0, 1, 4, 4, 0, 0], [4, 0, 4, 4, 1, 4, 0, 0, 4], [0, 0, 0, 0, 1, 4, 4, 4, 4]], "output": [[8, 8, 0, 8], [0, 8, 8, 8], [8, 8, 8, 8], [8, 8, 8, 0], [8, 0, 8, 8], [8, 8, 8, 8]]}, {"input": [[4, 0, 0, 4, 1, 0, 4, 0, 4], [0, 0, 4, 4, 1, 0, 4, 0, 0], [4, 0, 4, 4, 1, 4, 0, 4, 0], [0, 4, 0, 4, 1, 4, 0, 4, 4], [4, 4, 0, 4, 1, 0, 4, 4, 0], [0, 4, 4, 4, 1, 0, 4, 0, 4]], "output": [[8, 8, 0, 8], [0, 8, 8, 8], [8, 0, 8, 8], [8, 8, 8, 8], [8, 8, 8, 8], [0, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/5ffb2104.json b/data/arc-agi/evaluation/5ffb2104.json
deleted file mode 100644
index 0761730..0000000
--- a/data/arc-agi/evaluation/5ffb2104.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 3, 0, 0, 0, 0], [0, 3, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0], [0, 8, 0, 0, 2, 2], [0, 0, 0, 0, 2, 2], [6, 6, 6, 0, 0, 0]], "output": [[0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 2], [0, 0, 0, 0, 0, 2], [0, 0, 0, 8, 2, 2], [0, 0, 0, 0, 2, 2], [0, 0, 0, 6, 6, 6]]}, {"input": [[0, 2, 2, 0, 0, 0], [6, 0, 2, 0, 0, 0], [6, 0, 0, 0, 0, 0], [0, 0, 8, 0, 3, 0], [0, 0, 0, 0, 3, 0], [8, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 6, 2], [0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 8, 3], [0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 8]]}], "test": [{"input": [[0, 0, 0, 8, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [2, 0, 3, 3, 3, 0, 0, 0, 0, 0], [2, 0, 0, 0, 4, 0, 4, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 8, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 8, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 2, 3, 3, 3], [0, 0, 0, 0, 0, 0, 2, 4, 0, 4], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 8, 6], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/604001fa.json b/data/arc-agi/evaluation/604001fa.json
deleted file mode 100644
index 04536b1..0000000
--- a/data/arc-agi/evaluation/604001fa.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0], [1, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 6, 0, 6, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0], [0, 7, 7, 0, 0, 0], [1, 0, 1, 1, 0, 0], [0, 1, 1, 1, 0, 0], [1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [3, 0, 3, 3, 0, 0], [0, 3, 3, 3, 0, 0], [3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 7, 7, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 7, 0, 0, 0, 1, 1, 1, 0, 0], [1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0], [4, 0, 4, 0, 0, 0, 6, 0, 6, 0, 0], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 0, 0, 7, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0], [1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 3, 3, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 7, 7, 0, 0, 0], [0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0], [1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 1, 0, 0, 7, 0, 0], [0, 0, 0, 1, 0, 1, 0, 0, 0, 7, 7, 0], [0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 0, 0, 0, 3, 3, 3, 3, 0, 0], [6, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 8, 8, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/60a26a3e.json b/data/arc-agi/evaluation/60a26a3e.json
deleted file mode 100644
index a994fc4..0000000
--- a/data/arc-agi/evaluation/60a26a3e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 2, 1, 1, 1, 1, 2, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 2, 1, 1, 2, 0, 2, 1, 1, 2, 0, 2, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 2, 0, 2, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 2, 0, 2, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 2, 1, 1, 1, 1, 2, 0, 2, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 2, 1, 1, 1, 1, 2, 0, 2, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0], [0, 2, 0, 2, 1, 1, 1, 1, 1, 2, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/60c09cac.json b/data/arc-agi/evaluation/60c09cac.json
deleted file mode 100644
index fd2ff70..0000000
--- a/data/arc-agi/evaluation/60c09cac.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 3, 0], [0, 7, 7], [0, 0, 0]], "output": [[0, 0, 3, 3, 0, 0], [0, 0, 3, 3, 0, 0], [0, 0, 7, 7, 7, 7], [0, 0, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 8, 0], [0, 8, 5, 5], [0, 0, 0, 5], [0, 0, 0, 0]], "output": [[0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 8, 8, 5, 5, 5, 5], [0, 0, 8, 8, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 5, 5], [0, 0, 0, 0, 0, 0, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 1, 0, 0], [0, 0, 1, 0, 0], [0, 6, 6, 6, 0], [0, 0, 1, 6, 0], [0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 1, 1, 6, 6, 0, 0], [0, 0, 0, 0, 1, 1, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/626c0bcc.json b/data/arc-agi/evaluation/626c0bcc.json
deleted file mode 100644
index 14ab2cd..0000000
--- a/data/arc-agi/evaluation/626c0bcc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 8, 8, 0, 0, 0], [8, 8, 8, 8, 8, 0, 0], [0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 1, 1, 0, 0, 0], [3, 3, 1, 1, 4, 0, 0], [0, 3, 2, 0, 4, 4, 0], [0, 2, 2, 1, 1, 0, 0], [0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 8, 0, 0, 8, 0, 0], [8, 8, 0, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0], [0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 0, 0, 4, 0, 0], [2, 2, 0, 0, 4, 4, 0], [0, 1, 1, 0, 1, 1, 0], [0, 1, 1, 0, 1, 1, 0], [0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[8, 8, 8, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0], [8, 8, 0, 8, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 4, 0, 0, 0, 0], [1, 1, 4, 4, 0, 0, 0], [3, 3, 0, 2, 0, 0, 0], [0, 3, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 8, 8, 0, 8, 8, 0], [8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 0, 8, 0, 0], [0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 4, 0, 1, 1, 0], [2, 2, 4, 4, 1, 1, 0], [0, 3, 3, 0, 2, 0, 0], [0, 0, 3, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/62ab2642.json b/data/arc-agi/evaluation/62ab2642.json
deleted file mode 100644
index 055d1e8..0000000
--- a/data/arc-agi/evaluation/62ab2642.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 0, 0, 5, 0], [5, 0, 0, 5, 0], [5, 0, 5, 5, 5], [5, 5, 5, 0, 0], [0, 0, 5, 0, 0], [0, 0, 5, 5, 5], [0, 0, 0, 5, 0], [5, 5, 5, 5, 0], [0, 5, 0, 0, 0], [0, 5, 0, 0, 0], [0, 5, 5, 5, 0], [0, 0, 0, 5, 0], [0, 5, 5, 5, 5], [5, 5, 0, 0, 0], [0, 5, 0, 0, 0]], "output": [[5, 0, 0, 5, 0], [5, 0, 0, 5, 0], [5, 0, 5, 5, 5], [5, 5, 5, 0, 0], [0, 0, 5, 0, 0], [0, 0, 5, 5, 5], [0, 0, 0, 5, 8], [5, 5, 5, 5, 8], [0, 5, 8, 8, 8], [0, 5, 8, 8, 8], [0, 5, 5, 5, 8], [0, 0, 0, 5, 8], [0, 5, 5, 5, 5], [5, 5, 0, 0, 0], [7, 5, 0, 0, 0]]}, {"input": [[0, 0, 5, 0, 0, 5, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0], [5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 5, 5, 5, 5], [0, 5, 5, 5, 5, 5, 0, 0, 0], [5, 5, 0, 0, 0, 5, 5, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0]], "output": [[0, 0, 5, 7, 7, 5, 8, 8, 8], [0, 0, 5, 5, 5, 5, 8, 8, 8], [5, 5, 5, 8, 8, 8, 8, 8, 8], [0, 5, 8, 8, 8, 8, 8, 8, 8], [0, 5, 8, 8, 8, 5, 5, 5, 5], [0, 5, 5, 5, 5, 5, 0, 0, 0], [5, 5, 0, 0, 0, 5, 5, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0]]}, {"input": [[0, 5, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 5, 0, 0, 5, 5, 5, 0, 0, 5, 0, 0], [0, 5, 5, 5, 5, 0, 5, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 5, 5, 5, 5, 0, 0], [5, 5, 5, 0, 0, 0, 5, 0, 0, 5, 5, 5], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [5, 5, 5, 5, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0]], "output": [[0, 5, 7, 7, 5, 0, 0, 0, 0, 5, 0, 0], [0, 5, 7, 7, 5, 5, 5, 0, 0, 5, 0, 0], [0, 5, 5, 5, 5, 0, 5, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 5, 5, 5, 5, 0, 0], [5, 5, 5, 0, 0, 0, 5, 8, 8, 5, 5, 5], [0, 0, 0, 0, 0, 0, 5, 8, 8, 8, 8, 8], [0, 0, 0, 5, 5, 5, 5, 8, 8, 8, 8, 8], [5, 5, 5, 5, 0, 0, 5, 8, 8, 8, 8, 8], [0, 0, 0, 5, 0, 0, 5, 5, 5, 8, 8, 8], [0, 0, 0, 5, 0, 0, 0, 0, 5, 8, 8, 8]]}], "test": [{"input": [[0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0], [0, 5, 0, 0, 0, 5, 5, 5, 0, 5, 5, 0], [5, 5, 5, 0, 0, 5, 0, 5, 5, 5, 0, 0], [0, 0, 5, 5, 5, 5, 0, 5, 0, 5, 5, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 5, 0]], "output": [[7, 5, 8, 8, 8, 8, 8, 5, 0, 0, 5, 0], [7, 5, 8, 8, 8, 5, 5, 5, 0, 5, 5, 0], [5, 5, 5, 8, 8, 5, 0, 5, 5, 5, 0, 0], [0, 0, 5, 5, 5, 5, 0, 5, 0, 5, 5, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 5, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/62b74c02.json b/data/arc-agi/evaluation/62b74c02.json
deleted file mode 100644
index 55683a1..0000000
--- a/data/arc-agi/evaluation/62b74c02.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 2, 8, 0, 0, 0, 0, 0, 0, 0], [1, 8, 1, 0, 0, 0, 0, 0, 0, 0], [1, 8, 1, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 2, 8, 8, 8, 8, 8, 8, 2, 8], [1, 8, 1, 1, 1, 1, 1, 1, 8, 1], [1, 8, 1, 1, 1, 1, 1, 1, 8, 1]]}, {"input": [[3, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3], [1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1], [3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3], [1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1]]}, {"input": [[2, 3, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 8, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 8, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 3, 8, 2, 2, 2, 2, 2, 2, 2, 2, 3, 8, 2], [2, 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8, 2], [2, 8, 3, 2, 2, 2, 2, 2, 2, 2, 2, 8, 3, 2]]}], "test": [{"input": [[3, 8, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 3], [2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 2], [1, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 1], [2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/639f5a19.json b/data/arc-agi/evaluation/639f5a19.json
deleted file mode 100644
index af57bcb..0000000
--- a/data/arc-agi/evaluation/639f5a19.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 4, 4, 4, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 4, 4, 4, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 4, 4, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 4, 4, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 4, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 4, 4, 1, 1, 0, 0, 0, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 0], [0, 0, 0, 6, 6, 4, 4, 1, 1, 0, 0, 0, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 0], [0, 0, 0, 2, 2, 4, 4, 3, 3, 0, 0, 0, 6, 6, 4, 4, 4, 4, 4, 4, 1, 1, 0], [0, 0, 0, 2, 2, 4, 4, 3, 3, 0, 0, 0, 6, 6, 4, 4, 4, 4, 4, 4, 1, 1, 0], [0, 0, 0, 2, 2, 4, 4, 3, 3, 0, 0, 0, 6, 6, 4, 4, 4, 4, 4, 4, 1, 1, 0], [0, 0, 0, 2, 2, 2, 3, 3, 3, 0, 0, 0, 6, 6, 4, 4, 4, 4, 4, 4, 1, 1, 0], [0, 0, 0, 2, 2, 2, 3, 3, 3, 0, 0, 0, 6, 6, 4, 4, 4, 4, 4, 4, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 4, 4, 4, 4, 4, 4, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 4, 4, 4, 4, 4, 4, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 4, 4, 4, 4, 4, 4, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 4, 4, 4, 4, 4, 4, 3, 3, 0], [0, 0, 0, 6, 6, 6, 1, 1, 1, 0, 0, 0, 2, 2, 4, 4, 4, 4, 4, 4, 3, 3, 0], [0, 0, 0, 6, 6, 6, 1, 1, 1, 0, 0, 0, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 0], [0, 0, 0, 6, 6, 4, 4, 1, 1, 0, 0, 0, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 0], [0, 0, 0, 2, 2, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/642248e4.json b/data/arc-agi/evaluation/642248e4.json
deleted file mode 100644
index df9efb6..0000000
--- a/data/arc-agi/evaluation/642248e4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 1, 0, 8, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0], [0, 1, 0, 2, 0, 0, 0, 0, 1, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4]]}, {"input": [[3, 0, 0, 0, 0, 0, 0, 0, 0, 4], [3, 0, 0, 0, 0, 0, 1, 0, 0, 4], [3, 0, 1, 0, 0, 0, 0, 0, 0, 4], [3, 0, 0, 0, 0, 0, 0, 0, 0, 4], [3, 0, 0, 1, 0, 0, 0, 0, 0, 4], [3, 0, 0, 0, 0, 1, 0, 0, 0, 4], [3, 0, 0, 0, 0, 0, 0, 0, 0, 4], [3, 0, 0, 0, 0, 0, 0, 0, 0, 4], [3, 0, 0, 0, 0, 0, 1, 0, 0, 4], [3, 0, 0, 0, 0, 0, 0, 0, 0, 4], [3, 0, 1, 0, 0, 0, 0, 0, 0, 4], [3, 0, 0, 0, 0, 0, 0, 0, 0, 4]], "output": [[3, 0, 0, 0, 0, 0, 0, 0, 0, 4], [3, 0, 0, 0, 0, 0, 1, 4, 0, 4], [3, 3, 1, 0, 0, 0, 0, 0, 0, 4], [3, 0, 0, 0, 0, 0, 0, 0, 0, 4], [3, 0, 3, 1, 0, 0, 0, 0, 0, 4], [3, 0, 0, 0, 0, 1, 4, 0, 0, 4], [3, 0, 0, 0, 0, 0, 0, 0, 0, 4], [3, 0, 0, 0, 0, 0, 0, 0, 0, 4], [3, 0, 0, 0, 0, 0, 1, 4, 0, 4], [3, 0, 0, 0, 0, 0, 0, 0, 0, 4], [3, 3, 1, 0, 0, 0, 0, 0, 0, 4], [3, 0, 0, 0, 0, 0, 0, 0, 0, 4]]}], "test": [{"input": [[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 8], [2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8]], "output": [[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8], [2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/642d658d.json b/data/arc-agi/evaluation/642d658d.json
deleted file mode 100644
index 18a9941..0000000
--- a/data/arc-agi/evaluation/642d658d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 8, 8, 8, 3, 8, 0, 0, 8, 1, 0, 8, 0, 3, 8, 0, 1, 8, 0, 8, 8, 0, 0, 8], [1, 2, 8, 0, 8, 8, 1, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 0, 0, 3], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 8, 8, 0, 8], [8, 8, 8, 8, 1, 3, 8, 8, 8, 8, 8, 8, 8, 8, 2, 8, 8, 8, 3, 4, 3, 8, 8, 3], [0, 8, 8, 8, 2, 3, 0, 0, 8, 0, 0, 8, 0, 8, 8, 0, 0, 8, 8, 3, 8, 8, 8, 8], [8, 3, 8, 2, 4, 2, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8], [0, 8, 8, 8, 2, 8, 0, 0, 8, 8, 0, 8, 0, 8, 8, 0, 1, 8, 1, 8, 1, 0, 0, 8], [0, 1, 8, 1, 0, 8, 0, 0, 1, 8, 0, 3, 0, 8, 8, 0, 0, 8, 8, 0, 8, 8, 8, 2], [8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 3, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 8, 8, 8, 8, 8, 8, 8, 8], [0, 8, 8, 8, 0, 8, 0, 0, 8, 8, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 8, 0, 0, 8], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 8], [0, 8, 8, 2, 0, 8, 0, 0, 8, 0, 0, 8, 0, 8, 8, 0, 0, 8, 2, 8, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 8, 0, 0, 8], [8, 3, 8, 8, 8, 8, 8, 8, 8, 1, 8, 8, 0, 8, 8, 1, 8, 8, 8, 3, 8, 8, 8, 8], [0, 8, 8, 8, 1, 8, 0, 0, 8, 8, 0, 8, 0, 2, 8, 0, 0, 8, 8, 8, 8, 8, 8, 2], [0, 8, 8, 8, 0, 8, 0, 0, 8, 8, 0, 8, 0, 8, 8, 0, 0, 8, 0, 8, 8, 0, 0, 8], [8, 8, 0, 8, 8, 8, 8, 8, 8, 1, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 0, 0, 8, 0, 0, 8], [0, 8, 1, 4, 1, 8, 0, 0, 8, 8, 0, 8, 0, 8, 8, 0, 0, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 1, 8, 8, 3, 8, 8, 8, 8, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 8, 8, 8, 0, 8, 8, 3, 0, 8, 0, 0, 8, 0, 0, 8, 0, 8, 8, 0, 2, 8], [0, 0, 8, 8, 8, 8, 0, 8, 8, 8, 0, 3, 0, 0, 8, 8, 0, 8, 0, 8, 8, 0, 0, 8], [8, 3, 0, 8, 8, 8, 8, 3, 8, 8, 8, 8, 1, 8, 8, 2, 8, 8, 8, 8, 8, 8, 8, 8], [8, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 2, 4, 2, 8, 3, 8, 8, 3, 8, 8], [0, 0, 8, 8, 0, 8, 3, 8, 3, 8, 1, 8, 0, 0, 3, 2, 8, 8, 0, 8, 8, 0, 0, 8]], "output": [[2]]}, {"input": [[0, 3, 0, 2, 2, 0, 2, 2, 0, 2, 0, 2, 0, 0, 2, 2, 0, 2, 0, 8, 0, 0], [0, 2, 0, 2, 2, 0, 0, 2, 0, 2, 2, 3, 0, 0, 6, 2, 0, 2, 0, 2, 2, 0], [0, 0, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 0, 2, 2, 0, 1, 0, 2, 2, 0], [0, 2, 2, 7, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 2], [2, 8, 6, 2, 2, 0, 3, 4, 3, 2, 2, 2, 2, 0, 2, 2, 2, 2, 1, 0, 2, 7], [2, 2, 2, 2, 2, 0, 2, 3, 2, 2, 2, 2, 2, 2, 0, 2, 2, 1, 4, 1, 2, 2], [2, 0, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 1, 0, 2, 2, 0, 2, 1, 2, 0, 0], [2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 0], [2, 1, 0, 2, 3, 2, 0, 2, 0, 2, 0, 2, 0, 0, 2, 2, 2, 2, 0, 2, 1, 0], [2, 2, 2, 3, 4, 3, 2, 2, 2, 3, 2, 2, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 2, 0, 2, 3, 2, 0, 2, 2, 1, 0, 2, 2, 2, 0, 2, 0, 0, 0, 2, 3, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 6, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 7, 2, 0, 2, 0, 0, 0, 0, 6, 4, 6, 2, 0, 2, 0, 2, 0, 0], [0, 0, 0, 2, 2, 2, 0, 2, 2, 2, 2, 0, 0, 6, 2, 2, 0, 2, 2, 2, 0, 6], [2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 7, 2, 2, 2], [0, 0, 0, 2, 2, 8, 4, 8, 0, 2, 0, 2, 0, 0, 2, 2, 0, 7, 4, 7, 0, 0], [2, 2, 2, 0, 2, 0, 8, 2, 2, 2, 2, 2, 0, 2, 2, 2, 0, 0, 7, 2, 2, 2], [0, 0, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 2, 6, 0, 2, 0, 2, 0, 0], [2, 1, 2, 0, 2, 2, 2, 2, 2, 0, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 0, 2, 2, 0, 2, 0, 2, 7, 0], [0, 0, 0, 2, 2, 2, 0, 8, 0, 0, 2, 1, 0, 0, 2, 2, 0, 2, 0, 2, 0, 0]], "output": [[3]]}, {"input": [[0, 0, 5, 5, 5, 5, 0, 5, 0, 5, 0, 5, 0, 0, 5, 5, 0, 5, 0, 5, 5, 0], [0, 0, 5, 0, 5, 5, 0, 0, 5, 5, 0, 5, 0, 0, 5, 5, 0, 5, 0, 5, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 5, 3, 5, 5, 5, 5, 0, 5], [5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 0, 3, 4, 3, 5, 5, 5, 5, 5], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 3, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 5, 8, 4, 8, 0, 0, 5, 5, 0, 5, 0, 0, 5, 5, 0, 5, 0, 5, 0, 0], [5, 5, 0, 5, 8, 5, 0, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 5, 5], [0, 0, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 0, 0, 5, 5, 0, 5, 0, 5, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 5, 5, 5, 5, 0, 5, 5, 5, 8, 5, 0, 0, 5, 5, 0, 5, 0, 0, 5, 0], [0, 0, 0, 5, 5, 5, 0, 5, 5, 8, 4, 8, 0, 0, 5, 5, 0, 5, 0, 5, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 8, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 5, 0, 5, 5, 0, 5, 5, 5, 0, 5, 0, 0, 5, 5, 0, 5, 0, 5, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 0, 0, 5, 5, 0, 5, 0, 0, 5, 0], [5, 0, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5]], "output": [[8]]}], "test": [{"input": [[0, 0, 9, 9, 0, 9, 0, 9, 0, 6, 0, 9, 0, 0, 9, 9, 0, 9, 0, 0, 9, 0], [0, 0, 9, 9, 9, 9, 3, 9, 9, 9, 0, 9, 0, 0, 9, 9, 0, 6, 0, 9, 9, 0], [9, 9, 2, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 9], [9, 2, 4, 2, 9, 9, 9, 0, 9, 9, 0, 9, 0, 3, 9, 9, 9, 1, 9, 9, 2, 9], [9, 9, 2, 9, 9, 9, 6, 9, 9, 9, 6, 9, 9, 9, 2, 0, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 0, 9, 9, 0, 0, 9, 9, 9, 9, 0, 9, 9, 9, 9, 9, 9, 9], [0, 0, 9, 9, 9, 9, 0, 9, 9, 9, 0, 9, 3, 0, 9, 9, 0, 9, 0, 9, 9, 0], [9, 9, 9, 0, 9, 9, 9, 3, 9, 9, 9, 9, 0, 9, 9, 9, 9, 0, 9, 9, 9, 9], [6, 9, 9, 0, 9, 9, 3, 4, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 0, 9, 9, 9, 3, 9, 3, 9, 9, 9, 9, 9, 9, 6, 9, 9, 0, 0, 3], [0, 0, 0, 1, 9, 9, 0, 9, 9, 9, 0, 9, 0, 0, 9, 6, 4, 6, 0, 9, 9, 0], [9, 9, 9, 9, 9, 9, 9, 0, 9, 9, 9, 0, 2, 9, 9, 9, 6, 9, 9, 0, 9, 1], [0, 0, 9, 9, 9, 9, 0, 9, 9, 9, 0, 9, 0, 0, 9, 9, 0, 9, 0, 9, 0, 0], [0, 0, 9, 2, 9, 9, 3, 9, 0, 6, 0, 9, 0, 0, 9, 9, 0, 9, 0, 9, 9, 0], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 9, 0, 9, 9, 9, 2, 9], [0, 6, 3, 9, 9, 9, 0, 9, 9, 0, 0, 9, 0, 3, 9, 9, 0, 2, 0, 0, 9, 0], [9, 9, 9, 9, 9, 9, 0, 3, 9, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [0, 0, 9, 9, 9, 9, 0, 9, 9, 2, 0, 9, 0, 0, 9, 9, 0, 9, 0, 9, 9, 0], [9, 9, 9, 9, 0, 9, 9, 9, 9, 9, 9, 6, 0, 9, 9, 9, 9, 9, 9, 9, 6, 9], [9, 9, 9, 9, 1, 9, 9, 9, 9, 9, 0, 9, 9, 9, 9, 3, 9, 9, 9, 9, 9, 9], [0, 0, 0, 1, 4, 1, 0, 9, 9, 0, 0, 9, 0, 0, 0, 9, 0, 9, 2, 9, 0, 0], [0, 0, 9, 9, 1, 9, 0, 9, 9, 9, 0, 9, 0, 0, 9, 9, 0, 9, 0, 9, 9, 0], [3, 9, 9, 9, 9, 0, 9, 9, 0, 9, 9, 9, 2, 9, 0, 9, 9, 9, 9, 0, 0, 9], [9, 9, 9, 9, 9, 9, 6, 9, 9, 9, 9, 2, 4, 2, 9, 9, 0, 9, 9, 9, 9, 9], [0, 0, 9, 9, 9, 9, 0, 0, 9, 1, 0, 9, 2, 0, 9, 9, 0, 9, 6, 9, 9, 0], [9, 9, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 9, 9]], "output": [[2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/64a7c07e.json b/data/arc-agi/evaluation/64a7c07e.json
deleted file mode 100644
index cbc8dd0..0000000
--- a/data/arc-agi/evaluation/64a7c07e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0], [8, 8, 0, 0, 0], [8, 8, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 0, 8, 8, 0], [0, 0, 8, 8, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/66e6c45b.json b/data/arc-agi/evaluation/66e6c45b.json
deleted file mode 100644
index 549f867..0000000
--- a/data/arc-agi/evaluation/66e6c45b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0], [0, 3, 4, 0], [0, 7, 6, 0], [0, 0, 0, 0]], "output": [[3, 0, 0, 4], [0, 0, 0, 0], [0, 0, 0, 0], [7, 0, 0, 6]]}, {"input": [[0, 0, 0, 0], [0, 5, 6, 0], [0, 8, 3, 0], [0, 0, 0, 0]], "output": [[5, 0, 0, 6], [0, 0, 0, 0], [0, 0, 0, 0], [8, 0, 0, 3]]}], "test": [{"input": [[0, 0, 0, 0], [0, 2, 3, 0], [0, 4, 9, 0], [0, 0, 0, 0]], "output": [[2, 0, 0, 3], [0, 0, 0, 0], [0, 0, 0, 0], [4, 0, 0, 9]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/66f2d22f.json b/data/arc-agi/evaluation/66f2d22f.json
deleted file mode 100644
index b49efc3..0000000
--- a/data/arc-agi/evaluation/66f2d22f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[3, 0, 3, 0, 0, 3, 3, 0, 0, 2, 2, 0, 2, 2], [3, 0, 0, 0, 3, 3, 0, 2, 0, 0, 0, 0, 2, 0], [0, 3, 0, 3, 0, 3, 0, 0, 2, 2, 2, 0, 2, 2], [0, 3, 0, 0, 3, 3, 3, 0, 2, 0, 0, 0, 2, 2]], "output": [[0, 5, 0, 0, 5, 0, 0], [0, 5, 5, 5, 0, 0, 5], [5, 0, 0, 0, 5, 0, 0], [5, 0, 5, 5, 0, 0, 0]]}], "train": [{"input": [[0, 0, 3, 3, 3, 3, 3, 2, 2, 2, 0, 0, 0, 0], [3, 0, 0, 0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0], [3, 0, 0, 3, 3, 0, 0, 0, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 2, 2, 0, 2]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 5], [0, 5, 0, 0, 0, 0, 5], [5, 5, 5, 0, 0, 0, 0]]}, {"input": [[3, 3, 3, 0, 0, 3, 0, 2, 0, 0, 0, 2, 2, 2], [0, 3, 3, 3, 3, 0, 3, 2, 0, 0, 0, 0, 0, 2], [0, 0, 3, 0, 3, 3, 3, 0, 0, 2, 2, 0, 2, 2], [0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 0, 2, 2, 2]], "output": [[0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0], [5, 5, 0, 0, 0, 0, 0], [5, 5, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 3, 0, 3, 3, 0, 2, 2, 2, 2, 0, 0, 0], [3, 0, 0, 0, 3, 3, 0, 0, 2, 2, 2, 2, 0, 2], [3, 3, 0, 3, 0, 0, 0, 2, 0, 2, 0, 2, 0, 2], [3, 3, 3, 0, 0, 0, 3, 2, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 5, 5, 0]]}, {"input": [[0, 3, 3, 0, 3, 0, 3, 2, 0, 2, 0, 0, 0, 2], [3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0], [0, 3, 3, 0, 0, 3, 3, 0, 0, 0, 0, 2, 0, 2], [0, 3, 3, 0, 3, 0, 3, 0, 2, 2, 2, 0, 2, 0]], "output": [[0, 0, 0, 5, 0, 5, 0], [0, 5, 0, 5, 0, 0, 5], [5, 0, 0, 5, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/67636eac.json b/data/arc-agi/evaluation/67636eac.json
deleted file mode 100644
index 47ca208..0000000
--- a/data/arc-agi/evaluation/67636eac.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 0, 0, 3, 0, 0, 8, 0], [2, 2, 2, 3, 3, 3, 8, 8, 8], [0, 2, 0, 0, 3, 0, 0, 8, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 3, 0], [3, 0, 3], [0, 3, 0], [0, 1, 0], [1, 0, 1], [0, 1, 0], [0, 8, 0], [8, 0, 8], [0, 8, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 2], [0, 2, 0], [2, 0, 2], [1, 0, 1], [0, 1, 0], [1, 0, 1]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 1, 0, 1, 0], [0, 4, 4, 4, 0, 0, 2, 0, 2, 0, 3, 0, 3, 0, 1, 1, 1, 0], [0, 4, 0, 4, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 0, 4, 2, 0, 2, 3, 0, 3, 1, 0, 1], [4, 4, 4, 2, 2, 2, 3, 3, 3, 1, 1, 1], [4, 0, 4, 2, 0, 2, 3, 0, 3, 1, 0, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/67b4a34d.json b/data/arc-agi/evaluation/67b4a34d.json
deleted file mode 100644
index 256e341..0000000
--- a/data/arc-agi/evaluation/67b4a34d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[9, 9, 2, 9, 4, 6, 6, 5, 5, 6, 6, 4, 9, 2, 9, 9], [9, 2, 9, 1, 6, 6, 1, 4, 4, 1, 6, 6, 1, 9, 2, 9], [2, 9, 1, 1, 6, 1, 4, 6, 6, 4, 1, 6, 1, 1, 9, 2], [9, 1, 1, 5, 5, 4, 6, 4, 4, 6, 4, 5, 5, 1, 1, 9], [4, 6, 6, 5, 1, 7, 7, 7, 7, 7, 7, 1, 5, 6, 6, 4], [6, 6, 1, 4, 7, 5, 1, 1, 1, 1, 5, 7, 4, 1, 6, 6], [6, 1, 4, 6, 7, 1, 5, 9, 9, 5, 1, 7, 6, 4, 1, 6], [5, 4, 6, 4, 7, 1, 9, 7, 7, 9, 1, 7, 4, 6, 4, 5], [5, 4, 6, 3, 3, 3, 3, 7, 7, 9, 1, 7, 4, 6, 4, 5], [6, 1, 4, 3, 3, 3, 3, 9, 9, 5, 1, 7, 6, 4, 1, 6], [6, 6, 1, 3, 3, 3, 3, 1, 1, 1, 5, 7, 4, 1, 6, 6], [4, 6, 6, 3, 3, 3, 3, 7, 7, 7, 7, 1, 5, 6, 6, 4], [9, 1, 1, 5, 5, 4, 6, 4, 4, 6, 4, 5, 5, 1, 1, 9], [2, 9, 1, 1, 6, 1, 4, 6, 6, 4, 1, 6, 1, 1, 9, 2], [9, 2, 9, 1, 6, 6, 1, 4, 4, 1, 6, 6, 1, 9, 2, 9], [9, 9, 2, 9, 4, 6, 6, 5, 5, 6, 6, 4, 9, 2, 9, 9]], "output": [[4, 7, 1, 9], [6, 7, 1, 5], [4, 7, 5, 1], [5, 1, 7, 7]]}], "train": [{"input": [[9, 9, 1, 9, 9, 6, 6, 4, 4, 6, 6, 9, 9, 1, 9, 9], [9, 9, 2, 2, 6, 6, 2, 2, 2, 2, 6, 6, 2, 2, 9, 9], [1, 2, 1, 7, 6, 2, 6, 6, 6, 6, 2, 6, 7, 1, 2, 1], [9, 2, 7, 1, 4, 2, 6, 3, 3, 3, 3, 4, 1, 7, 2, 9], [9, 6, 6, 4, 8, 6, 6, 3, 3, 3, 3, 8, 4, 6, 6, 9], [6, 6, 2, 2, 6, 8, 6, 3, 3, 3, 3, 6, 2, 2, 6, 6], [6, 2, 6, 6, 6, 6, 8, 3, 3, 3, 3, 6, 6, 6, 2, 6], [4, 2, 6, 2, 8, 2, 8, 6, 6, 8, 2, 8, 2, 6, 2, 4], [4, 2, 6, 2, 8, 2, 8, 6, 6, 8, 2, 8, 2, 6, 2, 4], [6, 2, 6, 6, 6, 6, 8, 8, 8, 8, 6, 6, 6, 6, 2, 6], [6, 6, 2, 2, 6, 8, 6, 2, 2, 6, 8, 6, 2, 2, 6, 6], [9, 6, 6, 4, 8, 6, 6, 8, 8, 6, 6, 8, 4, 6, 6, 9], [9, 2, 7, 1, 4, 2, 6, 2, 2, 6, 2, 4, 1, 7, 2, 9], [1, 2, 1, 7, 6, 2, 6, 6, 6, 6, 2, 6, 7, 1, 2, 1], [9, 9, 2, 2, 6, 6, 2, 2, 2, 2, 6, 6, 2, 2, 9, 9], [9, 9, 1, 9, 9, 6, 6, 4, 4, 6, 6, 9, 9, 1, 9, 9]], "output": [[2, 2, 6, 2], [8, 8, 6, 6], [2, 2, 6, 8], [8, 8, 8, 6]]}, {"input": [[1, 7, 7, 1, 2, 8, 6, 2, 2, 6, 8, 2, 1, 7, 7, 1], [7, 5, 1, 1, 8, 2, 4, 8, 8, 4, 2, 8, 1, 1, 5, 7], [7, 1, 5, 8, 6, 4, 8, 6, 6, 8, 4, 6, 8, 5, 1, 7], [1, 1, 8, 8, 2, 8, 6, 4, 4, 6, 8, 2, 8, 8, 1, 1], [2, 8, 6, 2, 9, 2, 9, 2, 2, 9, 2, 9, 2, 6, 8, 2], [8, 2, 4, 8, 2, 2, 2, 9, 9, 2, 2, 2, 8, 4, 2, 8], [6, 4, 8, 6, 9, 2, 9, 9, 9, 9, 2, 9, 6, 8, 4, 6], [2, 8, 6, 4, 2, 9, 9, 2, 2, 9, 9, 2, 4, 6, 8, 2], [2, 8, 6, 4, 2, 9, 9, 2, 2, 9, 9, 2, 4, 6, 8, 2], [6, 4, 8, 6, 9, 2, 9, 9, 3, 3, 3, 3, 6, 8, 4, 6], [8, 2, 4, 8, 2, 2, 2, 9, 3, 3, 3, 3, 8, 4, 2, 8], [2, 8, 6, 2, 9, 2, 9, 2, 3, 3, 3, 3, 2, 6, 8, 2], [1, 1, 8, 8, 2, 8, 6, 4, 3, 3, 3, 3, 8, 8, 1, 1], [7, 1, 5, 8, 6, 4, 8, 6, 6, 8, 4, 6, 8, 5, 1, 7], [7, 5, 1, 1, 8, 2, 4, 8, 8, 4, 2, 8, 1, 1, 5, 7], [1, 7, 7, 1, 2, 8, 6, 2, 2, 6, 8, 2, 1, 7, 7, 1]], "output": [[9, 9, 2, 9], [9, 2, 2, 2], [2, 9, 2, 9], [4, 6, 8, 2]]}, {"input": [[7, 8, 9, 7, 9, 7, 1, 7, 7, 1, 7, 9, 7, 9, 8, 7], [8, 9, 9, 8, 7, 7, 9, 9, 9, 9, 7, 7, 8, 9, 9, 8], [9, 9, 7, 9, 1, 9, 1, 7, 7, 1, 9, 1, 9, 7, 9, 9], [7, 8, 9, 1, 7, 9, 7, 2, 2, 7, 9, 7, 1, 9, 8, 7], [9, 7, 1, 7, 5, 7, 1, 1, 1, 1, 7, 5, 7, 1, 7, 9], [7, 7, 9, 9, 7, 5, 1, 2, 2, 1, 5, 7, 9, 9, 7, 7], [1, 9, 1, 7, 1, 1, 1, 5, 5, 1, 1, 1, 7, 1, 9, 1], [7, 9, 7, 2, 1, 2, 5, 2, 2, 5, 2, 1, 2, 7, 9, 7], [7, 9, 7, 2, 1, 2, 5, 2, 2, 5, 2, 1, 2, 7, 9, 7], [1, 9, 1, 7, 1, 1, 1, 5, 5, 1, 1, 1, 7, 1, 9, 1], [7, 7, 9, 9, 7, 5, 1, 2, 2, 1, 5, 7, 9, 9, 7, 7], [9, 7, 1, 3, 3, 3, 3, 1, 1, 1, 7, 5, 7, 1, 7, 9], [7, 8, 9, 3, 3, 3, 3, 2, 2, 7, 9, 7, 1, 9, 8, 7], [9, 9, 7, 3, 3, 3, 3, 7, 7, 1, 9, 1, 9, 7, 9, 9], [8, 9, 9, 3, 3, 3, 3, 9, 9, 9, 7, 7, 8, 9, 9, 8], [7, 8, 9, 7, 9, 7, 1, 7, 7, 1, 7, 9, 7, 9, 8, 7]], "output": [[7, 5, 7, 1], [1, 7, 9, 7], [9, 1, 9, 1], [8, 7, 7, 9]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/67c52801.json b/data/arc-agi/evaluation/67c52801.json
deleted file mode 100644
index bf5ab54..0000000
--- a/data/arc-agi/evaluation/67c52801.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 3, 3], [0, 0, 0, 0, 3, 3], [0, 0, 0, 0, 0, 0], [1, 0, 1, 0, 0, 1], [1, 1, 1, 1, 1, 1]], "output": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 2, 0, 3, 3, 0], [1, 2, 1, 3, 3, 1], [1, 1, 1, 1, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0], [0, 0, 0, 0, 0, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 8, 0, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 2, 2, 2, 0], [8, 5, 5, 8, 2, 2, 2, 8], [8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[0, 0, 8, 8, 0], [0, 0, 0, 0, 0], [3, 0, 3, 3, 3], [3, 3, 3, 3, 3]], "output": [[0, 0, 0, 0, 0], [0, 8, 0, 0, 0], [3, 8, 3, 3, 3], [3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0], [6, 6, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 6, 6, 0, 0, 7, 7, 7, 0, 0], [1, 5, 1, 6, 6, 1, 1, 7, 7, 7, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}], "test": [{"input": [[2, 2, 0, 6, 6, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0], [2, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 5, 0, 0, 5, 0, 0, 0, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 1, 1, 0, 2, 2, 2, 2, 0], [5, 6, 5, 1, 1, 5, 2, 2, 2, 2, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/68b67ca3.json b/data/arc-agi/evaluation/68b67ca3.json
deleted file mode 100644
index 961ac48..0000000
--- a/data/arc-agi/evaluation/68b67ca3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 0, 2, 0, 1, 0], [0, 0, 0, 0, 0, 0], [2, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[2, 2, 1], [2, 1, 0], [3, 0, 0]]}, {"input": [[3, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[3, 0, 2], [8, 0, 8], [0, 1, 0]]}, {"input": [[1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0]], "output": [[1, 0, 0], [0, 2, 0], [6, 0, 6]]}], "test": [{"input": [[3, 0, 3, 0, 4, 0], [0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0]], "output": [[3, 3, 4], [7, 0, 1], [7, 0, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/692cd3b6.json b/data/arc-agi/evaluation/692cd3b6.json
deleted file mode 100644
index 78cfd81..0000000
--- a/data/arc-agi/evaluation/692cd3b6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 4, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 2, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0]], "output": [[0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 2, 4, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 2, 5, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 4, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 4, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/695367ec.json b/data/arc-agi/evaluation/695367ec.json
deleted file mode 100644
index 0948389..0000000
--- a/data/arc-agi/evaluation/695367ec.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 3, 3], [3, 3, 3], [3, 3, 3]], "output": [[0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0]]}, {"input": [[8, 8], [8, 8]], "output": [[0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[2, 2, 2, 2], [2, 2, 2, 2], [2, 2, 2, 2], [2, 2, 2, 2]], "output": [[0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}], "test": [{"input": [[4, 4, 4, 4, 4], [4, 4, 4, 4, 4], [4, 4, 4, 4, 4], [4, 4, 4, 4, 4], [4, 4, 4, 4, 4]], "output": [[0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/696d4842.json b/data/arc-agi/evaluation/696d4842.json
deleted file mode 100644
index 35474f7..0000000
--- a/data/arc-agi/evaluation/696d4842.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/69889d6e.json b/data/arc-agi/evaluation/69889d6e.json
deleted file mode 100644
index afbfb69..0000000
--- a/data/arc-agi/evaluation/69889d6e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 1, 2, 2, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 1, 1, 2, 2, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 1, 2, 2, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 1, 2, 2], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 1, 1, 2, 2, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/6a11f6da.json b/data/arc-agi/evaluation/6a11f6da.json
deleted file mode 100644
index c9a0641..0000000
--- a/data/arc-agi/evaluation/6a11f6da.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[1, 0, 1, 1, 1], [1, 0, 1, 0, 0], [0, 1, 1, 0, 0], [0, 1, 1, 1, 0], [1, 0, 1, 0, 1], [0, 0, 8, 0, 0], [0, 0, 8, 8, 8], [8, 8, 0, 8, 8], [0, 0, 8, 0, 0], [8, 8, 0, 8, 0], [0, 6, 0, 6, 0], [0, 0, 6, 0, 6], [0, 6, 0, 0, 6], [0, 0, 6, 0, 6], [6, 0, 6, 6, 0]], "output": [[1, 6, 1, 6, 1], [1, 0, 6, 8, 6], [8, 6, 1, 8, 6], [0, 1, 6, 1, 6], [6, 8, 6, 6, 1]]}], "train": [{"input": [[1, 0, 0, 0, 0], [1, 1, 1, 1, 1], [0, 1, 0, 1, 0], [1, 1, 1, 0, 1], [0, 0, 0, 1, 0], [8, 0, 8, 0, 0], [8, 0, 0, 8, 0], [8, 0, 0, 0, 8], [8, 8, 0, 0, 0], [8, 8, 0, 0, 0], [0, 6, 0, 0, 6], [6, 0, 0, 6, 6], [0, 6, 6, 6, 0], [6, 6, 0, 6, 6], [0, 0, 6, 0, 6]], "output": [[1, 6, 8, 0, 6], [6, 1, 1, 6, 6], [8, 6, 6, 6, 8], [6, 6, 1, 6, 6], [8, 8, 6, 1, 6]]}, {"input": [[1, 0, 1, 0, 1], [0, 1, 0, 0, 1], [0, 1, 0, 0, 0], [1, 0, 0, 1, 1], [1, 0, 0, 1, 1], [0, 0, 0, 0, 0], [0, 8, 8, 8, 0], [0, 8, 0, 0, 0], [8, 0, 0, 0, 8], [8, 0, 8, 8, 0], [0, 0, 6, 0, 6], [6, 0, 6, 0, 0], [6, 0, 0, 0, 6], [6, 0, 0, 0, 6], [0, 6, 6, 6, 6]], "output": [[1, 0, 6, 0, 6], [6, 1, 6, 8, 1], [6, 1, 0, 0, 6], [6, 0, 0, 1, 6], [1, 6, 6, 6, 6]]}, {"input": [[0, 0, 1, 1, 0], [1, 1, 1, 0, 0], [0, 1, 1, 1, 0], [0, 1, 0, 0, 1], [1, 0, 0, 1, 1], [8, 0, 8, 8, 0], [8, 0, 8, 8, 8], [8, 8, 8, 0, 8], [0, 8, 0, 8, 8], [8, 0, 8, 8, 8], [6, 0, 6, 0, 6], [0, 0, 0, 0, 6], [6, 6, 6, 6, 6], [0, 0, 6, 0, 0], [0, 6, 0, 6, 0]], "output": [[6, 0, 6, 1, 6], [1, 1, 1, 8, 6], [6, 6, 6, 6, 6], [0, 1, 6, 8, 1], [1, 6, 8, 6, 1]]}, {"input": [[0, 1, 1, 1, 1], [0, 1, 1, 0, 0], [0, 1, 1, 1, 0], [0, 0, 1, 1, 1], [0, 1, 1, 1, 0], [0, 8, 8, 0, 0], [8, 0, 0, 8, 0], [0, 8, 0, 0, 8], [0, 0, 8, 0, 0], [8, 0, 8, 0, 8], [0, 6, 0, 6, 6], [0, 0, 6, 6, 6], [0, 6, 0, 0, 0], [0, 6, 6, 0, 6], [0, 0, 0, 0, 0]], "output": [[0, 6, 1, 6, 6], [8, 1, 6, 6, 6], [0, 6, 1, 1, 8], [0, 6, 6, 1, 6], [8, 1, 1, 1, 8]]}, {"input": [[1, 1, 1, 0, 0], [0, 0, 1, 1, 0], [1, 1, 0, 0, 1], [0, 1, 1, 1, 1], [0, 0, 0, 0, 1], [0, 8, 0, 0, 8], [8, 8, 8, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 8, 0], [0, 0, 8, 8, 8], [6, 6, 0, 0, 0], [0, 6, 6, 6, 0], [0, 0, 6, 0, 6], [0, 0, 6, 6, 6], [6, 6, 6, 6, 6]], "output": [[6, 6, 1, 0, 8], [8, 6, 6, 6, 0], [1, 1, 6, 0, 6], [0, 1, 6, 6, 6], [6, 6, 6, 6, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/6ad5bdfd.json b/data/arc-agi/evaluation/6ad5bdfd.json
deleted file mode 100644
index d1620db..0000000
--- a/data/arc-agi/evaluation/6ad5bdfd.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 8, 8], [3, 0, 0, 4, 0, 0], [3, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 6], [1, 1, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2]], "output": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [3, 0, 0, 4, 8, 8], [3, 0, 0, 4, 0, 6], [1, 1, 5, 5, 0, 6], [2, 2, 2, 2, 2, 2]]}, {"input": [[2, 0, 0, 3, 3, 0, 0, 4, 4, 0, 0], [2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 5, 0, 0, 6, 6, 0], [2, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [2, 0, 7, 7, 0, 0, 0, 8, 0, 0, 0]], "output": [[2, 3, 3, 4, 4, 0, 0, 0, 0, 0, 0], [2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 5, 6, 6, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [2, 7, 7, 8, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 4, 4, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 5, 5, 0, 0, 6, 0, 2], [0, 0, 0, 0, 0, 0, 0, 6, 0, 2], [0, 9, 0, 0, 8, 8, 0, 0, 0, 2], [0, 9, 0, 0, 0, 0, 0, 0, 0, 2]], "output": [[0, 0, 0, 0, 0, 0, 0, 4, 4, 2], [0, 0, 0, 0, 0, 0, 5, 5, 6, 2], [0, 0, 0, 0, 0, 0, 0, 0, 6, 2], [0, 0, 0, 0, 0, 0, 9, 8, 8, 2], [0, 0, 0, 0, 0, 0, 9, 0, 0, 2]]}], "test": [{"input": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 3, 3, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 7, 0, 6, 0, 0], [0, 8, 8, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 6], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 9, 0, 0, 0, 0, 0, 4, 0], [0, 0, 9, 0, 0, 0, 0, 0, 4, 0], [3, 0, 0, 0, 0, 1, 1, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 5, 5, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [3, 0, 3, 3, 0, 7, 0, 6, 6, 6], [3, 8, 8, 0, 0, 7, 0, 6, 4, 0], [0, 0, 9, 0, 3, 3, 0, 0, 4, 0], [0, 0, 9, 0, 0, 1, 1, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/6df30ad6.json b/data/arc-agi/evaluation/6df30ad6.json
deleted file mode 100644
index 44762f9..0000000
--- a/data/arc-agi/evaluation/6df30ad6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[7, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 9, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [6, 0, 0, 5, 5, 5, 0, 6, 0, 9], [0, 0, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 6, 0], [9, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 9, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 0, 0, 0], [0, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 9, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 9, 0, 0], [4, 0, 0, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 2], [0, 0, 9, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 9, 9, 9, 0, 0, 0, 0], [0, 0, 0, 9, 9, 9, 0, 0, 0, 0], [0, 0, 0, 9, 9, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[8, 0, 4, 0, 0, 0, 3, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 5, 0, 0, 8, 0, 0], [0, 0, 4, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 4], [0, 8, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 8, 0, 0, 3, 0, 0, 4, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 4, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 6], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 3, 0, 0, 2, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 5, 5, 0, 0, 0, 3], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 2, 0, 0, 5, 5, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0], [3, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 7, 0, 2, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/6ea4a07e.json b/data/arc-agi/evaluation/6ea4a07e.json
deleted file mode 100644
index 4de657e..0000000
--- a/data/arc-agi/evaluation/6ea4a07e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 0, 0], [0, 8, 0], [0, 0, 0]], "output": [[0, 2, 2], [2, 0, 2], [2, 2, 2]]}, {"input": [[0, 0, 3], [0, 3, 0], [3, 0, 0]], "output": [[1, 1, 0], [1, 0, 1], [0, 1, 1]]}, {"input": [[5, 0, 0], [5, 5, 0], [5, 0, 0]], "output": [[0, 4, 4], [0, 0, 4], [0, 4, 4]]}, {"input": [[5, 5, 5], [0, 0, 5], [0, 0, 0]], "output": [[0, 0, 0], [4, 4, 0], [4, 4, 4]]}, {"input": [[0, 8, 0], [0, 8, 0], [8, 0, 0]], "output": [[2, 0, 2], [2, 0, 2], [0, 2, 2]]}, {"input": [[8, 0, 8], [0, 8, 0], [0, 8, 0]], "output": [[0, 2, 0], [2, 0, 2], [2, 0, 2]]}], "test": [{"input": [[3, 0, 0], [3, 3, 3], [0, 0, 3]], "output": [[0, 1, 1], [0, 0, 0], [1, 1, 0]]}, {"input": [[0, 5, 0], [5, 5, 0], [0, 0, 5]], "output": [[4, 0, 4], [0, 0, 4], [4, 4, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/6f473927.json b/data/arc-agi/evaluation/6f473927.json
deleted file mode 100644
index 3194859..0000000
--- a/data/arc-agi/evaluation/6f473927.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 2], [0, 0, 0, 2, 0], [0, 0, 2, 0, 2], [0, 2, 2, 2, 2], [0, 0, 0, 0, 2], [0, 0, 2, 2, 0], [0, 0, 0, 0, 2], [0, 0, 0, 2, 2], [0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 2, 0, 8, 8, 8, 8], [0, 0, 0, 2, 0, 8, 0, 8, 8, 8], [0, 0, 2, 0, 2, 0, 8, 0, 8, 8], [0, 2, 2, 2, 2, 0, 0, 0, 0, 8], [0, 0, 0, 0, 2, 0, 8, 8, 8, 8], [0, 0, 2, 2, 0, 8, 0, 0, 8, 8], [0, 0, 0, 0, 2, 0, 8, 8, 8, 8], [0, 0, 0, 2, 2, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8]]}, {"input": [[2, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0], [0, 2, 2, 2, 0, 0], [0, 0, 2, 2, 0, 0], [2, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 0], [2, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8, 0, 2, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 2, 2, 2, 0, 0, 0], [8, 8, 8, 0, 8, 8, 0, 0, 2, 0, 0, 0], [8, 8, 0, 0, 0, 8, 0, 2, 2, 2, 0, 0], [8, 8, 0, 0, 8, 8, 0, 0, 2, 2, 0, 0], [8, 8, 8, 8, 0, 0, 2, 2, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0], [8, 8, 8, 8, 8, 0, 2, 0, 0, 0, 0, 0]]}, {"input": [[0, 2, 0], [0, 2, 2], [0, 0, 2]], "output": [[0, 2, 0, 8, 0, 8], [0, 2, 2, 0, 0, 8], [0, 0, 2, 0, 8, 8]]}, {"input": [[2, 2, 0], [2, 0, 0], [2, 2, 0]], "output": [[8, 0, 0, 2, 2, 0], [8, 8, 0, 2, 0, 0], [8, 0, 0, 2, 2, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 2, 0], [0, 0, 0, 2, 2, 2], [0, 0, 0, 0, 2, 2], [0, 2, 2, 2, 0, 0], [0, 0, 0, 2, 2, 2], [0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 2, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 2, 0, 8, 0, 8, 8, 8, 8], [0, 0, 0, 2, 2, 2, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 2, 2, 0, 0, 8, 8, 8, 8], [0, 2, 2, 2, 0, 0, 8, 8, 0, 0, 0, 8], [0, 0, 0, 2, 2, 2, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 2, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 2, 2, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 2, 2, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/7039b2d7.json b/data/arc-agi/evaluation/7039b2d7.json
deleted file mode 100644
index 12fe19d..0000000
--- a/data/arc-agi/evaluation/7039b2d7.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[1, 1, 3, 1, 3, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1], [1, 1, 3, 1, 3, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1], [1, 1, 3, 1, 3, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1], [1, 1, 3, 1, 3, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1], [1, 1, 3, 1, 3, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1], [1, 1, 3, 1, 3, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [1, 1, 3, 1, 3, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1], [1, 1, 3, 1, 3, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1], [1, 1, 3, 1, 3, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1], [1, 1, 3, 1, 3, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1], [1, 1, 3, 1, 3, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1], [1, 1, 3, 1, 3, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1], [1, 1, 3, 1, 3, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [1, 1, 3, 1, 3, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1], [1, 1, 1, 1, 1], [1, 1, 1, 1, 1]]}], "train": [{"input": [[5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5]], "output": [[5, 5, 5, 5], [5, 5, 5, 5], [5, 5, 5, 5]]}, {"input": [[5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 5, 5, 8, 5]], "output": [[5, 5, 5, 5, 5], [5, 5, 5, 5, 5], [5, 5, 5, 5, 5], [5, 5, 5, 5, 5], [5, 5, 5, 5, 5]]}, {"input": [[4, 1, 4, 1, 1, 1, 1, 1, 4, 1], [4, 1, 4, 1, 1, 1, 1, 1, 4, 1], [4, 1, 4, 1, 1, 1, 1, 1, 4, 1], [4, 1, 4, 1, 1, 1, 1, 1, 4, 1], [4, 1, 4, 1, 1, 1, 1, 1, 4, 1], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 1, 4, 1, 1, 1, 1, 1, 4, 1], [4, 1, 4, 1, 1, 1, 1, 1, 4, 1], [4, 1, 4, 1, 1, 1, 1, 1, 4, 1], [4, 1, 4, 1, 1, 1, 1, 1, 4, 1]], "output": [[1, 1, 1], [1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/705a3229.json b/data/arc-agi/evaluation/705a3229.json
deleted file mode 100644
index e341cff..0000000
--- a/data/arc-agi/evaluation/705a3229.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 8, 0, 0, 0, 4, 0, 0, 0], [0, 0, 8, 0, 0, 0, 4, 0, 0, 0], [0, 0, 8, 0, 0, 0, 4, 0, 0, 0], [8, 8, 8, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 0, 9, 9, 9, 9], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/712bf12e.json b/data/arc-agi/evaluation/712bf12e.json
deleted file mode 100644
index 29bf870..0000000
--- a/data/arc-agi/evaluation/712bf12e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 5, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 5, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0]], "output": [[0, 5, 0, 2, 0, 0, 0, 0, 0, 5, 2, 0, 0], [0, 5, 0, 2, 0, 5, 5, 0, 0, 2, 2, 0, 0], [5, 0, 0, 2, 0, 0, 2, 5, 0, 2, 0, 5, 0], [0, 0, 0, 2, 0, 5, 2, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 5, 0, 2, 0, 0, 2, 0, 0, 5], [0, 0, 0, 2, 5, 0, 2, 0, 0, 2, 0, 0, 0], [5, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 5, 5], [0, 0, 5, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0], [0, 0, 5, 2, 0, 5, 2, 0, 5, 2, 0, 0, 0], [0, 5, 2, 2, 5, 2, 2, 5, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 2, 5, 5, 0, 2, 5, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 5, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [5, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5], [5, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 5, 0, 0, 0], [5, 0, 2, 0, 0, 2, 0, 5, 5, 0, 2, 0, 0, 0]], "output": [[0, 0, 0, 0, 2, 0, 5, 0, 0, 0, 5, 0, 0, 2], [0, 0, 0, 0, 2, 0, 0, 0, 5, 0, 0, 0, 5, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 5, 2, 2], [0, 0, 5, 5, 2, 0, 0, 5, 5, 0, 0, 0, 2, 0], [0, 0, 5, 5, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 2, 2, 0, 5, 0, 0, 0, 5, 0, 2, 0], [0, 5, 5, 2, 0, 0, 0, 0, 0, 5, 0, 0, 2, 0], [5, 0, 5, 2, 0, 5, 0, 0, 0, 0, 0, 0, 2, 5], [5, 0, 0, 2, 5, 2, 5, 0, 0, 0, 0, 0, 2, 0], [5, 0, 0, 2, 0, 2, 0, 0, 0, 0, 5, 0, 2, 0], [0, 0, 5, 2, 0, 2, 5, 0, 0, 0, 5, 5, 2, 0], [0, 0, 2, 2, 0, 2, 0, 5, 0, 5, 5, 2, 2, 0], [5, 0, 2, 0, 0, 2, 0, 5, 5, 0, 2, 2, 0, 0]]}, {"input": [[0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 5], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0], [5, 5, 0, 0, 0, 0, 0, 5, 0, 5, 5, 0, 0, 0, 5], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 5, 0, 0], [0, 5, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 5, 0, 5, 0, 0], [0, 5, 5, 2, 0, 0, 0, 2, 0, 2, 0, 0, 5, 5, 0]], "output": [[0, 5, 0, 0, 0, 2, 0, 5, 0, 2, 0, 0, 2, 5, 5], [0, 5, 0, 0, 0, 2, 0, 0, 0, 2, 5, 0, 2, 5, 0], [5, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 2, 0, 0], [0, 0, 0, 0, 5, 2, 0, 0, 0, 2, 0, 5, 2, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 5, 2, 5, 2, 2, 0, 0], [0, 5, 5, 5, 5, 2, 0, 0, 2, 2, 5, 2, 0, 5, 0], [5, 5, 0, 0, 0, 2, 0, 5, 2, 5, 5, 2, 0, 0, 5], [0, 5, 0, 0, 0, 2, 0, 0, 2, 0, 5, 2, 0, 0, 0], [0, 0, 0, 5, 5, 2, 0, 0, 2, 5, 0, 2, 0, 0, 0], [0, 5, 0, 2, 2, 2, 0, 5, 2, 0, 5, 2, 5, 0, 0], [0, 5, 5, 2, 0, 0, 5, 2, 2, 0, 5, 2, 0, 0, 0], [0, 0, 5, 2, 0, 0, 0, 2, 0, 5, 5, 2, 5, 0, 0], [0, 5, 5, 2, 0, 0, 0, 2, 0, 2, 2, 2, 5, 5, 0]]}], "test": [{"input": [[0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 5, 5], [0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [5, 0, 5, 0, 0, 0, 5, 5, 0, 0, 0, 0, 5], [0, 0, 5, 5, 0, 5, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0], [0, 0, 5, 5, 0, 5, 0, 5, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 5, 5, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0], [0, 5, 0, 5, 0, 0, 0, 5, 0, 5, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0], [5, 0, 5, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 2, 5, 5, 0]], "output": [[0, 0, 0, 5, 2, 5, 0, 0, 0, 0, 0, 5, 5], [0, 0, 0, 0, 2, 5, 0, 5, 0, 5, 5, 5, 0], [0, 0, 0, 0, 2, 0, 5, 0, 0, 0, 0, 0, 0], [5, 0, 5, 0, 2, 0, 5, 5, 0, 0, 0, 0, 5], [0, 0, 5, 5, 2, 5, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 2, 0, 0, 0, 5, 0, 5, 0, 2], [0, 0, 5, 5, 2, 5, 0, 5, 0, 0, 0, 0, 2], [5, 0, 0, 0, 2, 5, 5, 0, 5, 0, 0, 0, 2], [0, 5, 0, 0, 2, 0, 0, 0, 2, 5, 5, 0, 2], [0, 5, 0, 5, 2, 0, 0, 5, 2, 5, 0, 5, 2], [0, 5, 0, 2, 2, 0, 0, 2, 2, 5, 5, 2, 2], [5, 0, 5, 2, 5, 0, 5, 2, 0, 2, 2, 2, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 2, 5, 5, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/72207abc.json b/data/arc-agi/evaluation/72207abc.json
deleted file mode 100644
index 4948e2f..0000000
--- a/data/arc-agi/evaluation/72207abc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 0, 2, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 8, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 8, 0, 1, 0, 0, 6, 0, 0, 0, 8, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 0, 1, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 1, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 1, 0, 8, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/72a961c9.json b/data/arc-agi/evaluation/72a961c9.json
deleted file mode 100644
index 10a3186..0000000
--- a/data/arc-agi/evaluation/72a961c9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 2, 1, 1, 1, 8, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 8, 0, 0, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [1, 1, 2, 1, 1, 1, 8, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 2, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0], [1, 1, 1, 2, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [1, 8, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0], [1, 8, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 8, 1, 1, 1, 8, 1, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 8, 0, 0, 0, 8, 0, 1, 0], [0, 1, 0, 0, 0, 1, 0, 1, 0], [0, 1, 0, 0, 0, 1, 0, 1, 0], [1, 8, 1, 1, 1, 8, 1, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 1, 8, 1, 1, 1, 8, 1, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 1, 0, 8, 0, 0, 0, 8, 0, 1, 0], [0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0], [0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0], [1, 2, 1, 8, 1, 1, 1, 8, 1, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/73182012.json b/data/arc-agi/evaluation/73182012.json
deleted file mode 100644
index b05a20f..0000000
--- a/data/arc-agi/evaluation/73182012.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 3, 1, 1, 3, 2, 0, 0, 0, 0, 0], [2, 2, 1, 0, 0, 1, 2, 2, 0, 0, 0, 0], [2, 2, 1, 0, 0, 1, 2, 2, 0, 0, 0, 0], [0, 2, 3, 1, 1, 3, 2, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 2], [0, 0, 2, 2], [0, 2, 3, 1], [2, 2, 1, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 2, 2, 5, 5, 0, 0, 0], [0, 0, 0, 5, 3, 3, 3, 3, 5, 0, 0, 0], [0, 0, 2, 2, 3, 1, 1, 3, 2, 2, 0, 0], [0, 0, 2, 2, 3, 1, 1, 3, 2, 2, 0, 0], [0, 0, 0, 5, 3, 3, 3, 3, 5, 0, 0, 0], [0, 0, 0, 5, 5, 2, 2, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 2], [0, 5, 5, 2], [0, 5, 3, 3], [2, 2, 3, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 0, 0, 7, 7, 0], [0, 0, 0, 0, 7, 2, 2, 3, 3, 2, 2, 7], [0, 0, 0, 0, 7, 2, 8, 8, 8, 8, 2, 7], [0, 0, 0, 0, 0, 3, 8, 0, 0, 8, 3, 0], [0, 0, 0, 0, 0, 3, 8, 0, 0, 8, 3, 0], [0, 0, 0, 0, 7, 2, 8, 8, 8, 8, 2, 7], [0, 0, 0, 0, 7, 2, 2, 3, 3, 2, 2, 7], [0, 0, 0, 0, 0, 7, 7, 0, 0, 7, 7, 0]], "output": [[0, 7, 7, 0], [7, 2, 2, 3], [7, 2, 8, 8], [0, 3, 8, 0]]}], "test": [{"input": [[0, 0, 1, 0, 0, 5, 5, 0, 0, 1, 0, 0], [0, 0, 0, 5, 3, 8, 8, 3, 5, 0, 0, 0], [0, 0, 0, 3, 2, 8, 8, 2, 3, 0, 0, 0], [0, 0, 5, 8, 8, 6, 6, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 6, 6, 8, 8, 5, 0, 0], [0, 0, 0, 3, 2, 8, 8, 2, 3, 0, 0, 0], [0, 0, 0, 5, 3, 8, 8, 3, 5, 0, 0, 0], [0, 0, 1, 0, 0, 5, 5, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 0, 5], [0, 5, 3, 8], [0, 3, 2, 8], [5, 8, 8, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/73c3b0d8.json b/data/arc-agi/evaluation/73c3b0d8.json
deleted file mode 100644
index e897904..0000000
--- a/data/arc-agi/evaluation/73c3b0d8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 4, 0, 0], [0, 0, 0, 0, 0], [2, 2, 2, 2, 2]], "output": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [4, 0, 0, 0, 4], [0, 4, 0, 4, 0], [0, 0, 4, 0, 0], [2, 2, 2, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[4, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0], [0, 4, 0, 4, 0, 4], [0, 0, 0, 0, 4, 0], [2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 4], [0, 0, 4, 0, 0, 0, 4, 0], [0, 0, 0, 4, 0, 4, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0]]}, {"input": [[0, 0, 0], [0, 4, 0], [0, 0, 0], [0, 0, 0], [2, 2, 2], [0, 0, 0]], "output": [[0, 0, 0], [0, 0, 0], [0, 4, 0], [0, 0, 0], [2, 2, 2], [0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 4, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 4, 0, 0, 0, 0, 0], [0, 4, 0, 0, 4, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/73ccf9c2.json b/data/arc-agi/evaluation/73ccf9c2.json
deleted file mode 100644
index 5c844ca..0000000
--- a/data/arc-agi/evaluation/73ccf9c2.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 1, 1], [0, 1, 1, 1], [1, 1, 1, 0], [0, 1, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 2, 0], [0, 2, 2, 2, 0], [2, 0, 2, 0, 2], [0, 2, 2, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 3, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 0, 0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 0, 0, 0, 0, 0, 3], [0, 3, 0, 3, 0, 3, 0], [0, 0, 3, 3, 3, 0, 0], [0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 3, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 8, 0, 8], [8, 8, 8, 8, 8], [0, 0, 8, 0, 8], [0, 8, 8, 8, 0], [8, 0, 8, 0, 8], [8, 8, 8, 8, 8], [0, 8, 8, 8, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/759f3fd3.json b/data/arc-agi/evaluation/759f3fd3.json
deleted file mode 100644
index 65e9381..0000000
--- a/data/arc-agi/evaluation/759f3fd3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 4], [0, 4, 0, 4, 4, 4, 4, 3, 4, 4, 4, 4, 0, 4, 0, 4, 0, 4, 0, 4], [0, 4, 0, 4, 0, 0, 0, 3, 0, 0, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4], [0, 4, 0, 4, 0, 4, 4, 3, 4, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4], [0, 4, 0, 4, 0, 4, 0, 3, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 4, 0, 4, 0, 4, 0, 3, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4], [0, 4, 0, 4, 0, 4, 4, 3, 4, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4], [0, 4, 0, 4, 0, 0, 0, 3, 0, 0, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4], [0, 4, 0, 4, 4, 4, 4, 3, 4, 4, 4, 4, 0, 4, 0, 4, 0, 4, 0, 4], [0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 4], [0, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 0, 4, 0, 4, 0, 4], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 4], [4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 0, 4], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4], [4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0]], "output": [[4, 0, 4, 4, 4, 4, 3, 4, 4, 4], [4, 0, 4, 0, 0, 0, 3, 0, 0, 0], [4, 0, 4, 0, 4, 4, 3, 4, 4, 0], [4, 0, 4, 0, 4, 0, 3, 0, 4, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [4, 0, 4, 0, 4, 0, 3, 0, 4, 0], [4, 0, 4, 0, 4, 4, 3, 4, 4, 0], [4, 0, 4, 0, 0, 0, 3, 0, 0, 0], [4, 0, 4, 4, 4, 4, 3, 4, 4, 4], [4, 0, 0, 0, 0, 0, 3, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]], "output": [[4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4], [4, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [4, 0, 4, 4, 4, 4, 3, 4, 4, 4, 4, 0], [4, 0, 4, 0, 0, 0, 3, 0, 0, 0, 4, 0], [4, 0, 4, 0, 4, 4, 3, 4, 4, 0, 4, 0], [4, 0, 4, 0, 4, 0, 3, 0, 4, 0, 4, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [4, 0, 4, 0, 4, 0, 3, 0, 4, 0, 4, 0], [4, 0, 4, 0, 4, 4, 3, 4, 4, 0, 4, 0], [4, 0, 4, 0, 0, 0, 3, 0, 0, 0, 4, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/762cd429.json b/data/arc-agi/evaluation/762cd429.json
deleted file mode 100644
index c1fe8b5..0000000
--- a/data/arc-agi/evaluation/762cd429.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 3, 3, 3, 3], [0, 0, 2, 2, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3], [2, 3, 2, 2, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 5, 5, 5, 5], [0, 0, 2, 2, 5, 5, 2, 2, 2, 2, 5, 5, 5, 5], [2, 5, 2, 2, 5, 5, 2, 2, 2, 2, 5, 5, 5, 5], [5, 3, 5, 5, 3, 3, 5, 5, 5, 5, 3, 3, 3, 3], [0, 0, 5, 5, 3, 3, 5, 5, 5, 5, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2], [1, 2, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2], [3, 4, 3, 3, 4, 4, 3, 3, 3, 3, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 3, 3, 4, 4, 3, 3, 3, 3, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/770cc55f.json b/data/arc-agi/evaluation/770cc55f.json
deleted file mode 100644
index 039a953..0000000
--- a/data/arc-agi/evaluation/770cc55f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 3, 3, 3], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [2, 2, 2, 2], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [3, 3, 0, 0]], "output": [[0, 3, 3, 3], [0, 4, 0, 0], [0, 4, 0, 0], [0, 4, 0, 0], [2, 2, 2, 2], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [3, 3, 0, 0]]}, {"input": [[0, 6, 6, 6, 6], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [2, 2, 2, 2, 2], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 6, 6, 6]], "output": [[0, 6, 6, 6, 6], [0, 0, 4, 4, 4], [0, 0, 4, 4, 4], [0, 0, 4, 4, 4], [0, 0, 4, 4, 4], [0, 0, 4, 4, 4], [2, 2, 2, 2, 2], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 6, 6, 6]]}, {"input": [[0, 1, 1, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [2, 2, 2, 2, 2], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [1, 1, 1, 1, 0]], "output": [[0, 1, 1, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [2, 2, 2, 2, 2], [0, 4, 4, 0, 0], [0, 4, 4, 0, 0], [0, 4, 4, 0, 0], [0, 4, 4, 0, 0], [0, 4, 4, 0, 0], [1, 1, 1, 1, 0]]}, {"input": [[0, 0, 0, 3, 3, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3]], "output": [[0, 0, 0, 3, 3, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2], [0, 0, 0, 4, 4, 0], [0, 0, 0, 4, 4, 0], [0, 0, 0, 4, 4, 0], [0, 0, 0, 4, 4, 0], [0, 0, 0, 4, 4, 0], [0, 3, 3, 3, 3, 3]]}], "test": [{"input": [[7, 7, 7, 7, 7], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [2, 2, 2, 2, 2], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 7, 7, 0, 0]], "output": [[7, 7, 7, 7, 7], [0, 4, 4, 0, 0], [0, 4, 4, 0, 0], [0, 4, 4, 0, 0], [0, 4, 4, 0, 0], [2, 2, 2, 2, 2], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 7, 7, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/782b5218.json b/data/arc-agi/evaluation/782b5218.json
deleted file mode 100644
index 7e7db18..0000000
--- a/data/arc-agi/evaluation/782b5218.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 5, 5, 0, 5, 0, 0, 0, 5, 5], [5, 0, 0, 5, 5, 0, 5, 0, 5, 5], [0, 5, 5, 0, 5, 5, 0, 5, 0, 0], [2, 0, 5, 5, 2, 0, 5, 0, 2, 5], [5, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 0, 2, 5, 5, 5, 2, 0, 5, 0], [5, 5, 0, 0, 0, 5, 5, 5, 5, 5], [0, 5, 0, 5, 5, 0, 5, 0, 5, 5], [0, 5, 5, 0, 5, 0, 5, 0, 5, 5], [5, 5, 0, 0, 5, 5, 5, 5, 5, 5]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 2, 0, 0, 0, 2, 0], [5, 2, 0, 2, 5, 2, 0, 2, 5, 2], [5, 5, 2, 5, 5, 5, 2, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]]}, {"input": [[1, 0, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 0, 1, 1, 0, 1, 0, 1], [1, 1, 0, 0, 1, 1, 1, 1, 1, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 0, 0, 0, 0, 1, 0], [0, 1, 1, 1, 0, 1, 1, 0, 1, 0], [1, 1, 0, 0, 0, 1, 0, 0, 1, 0], [0, 0, 1, 0, 0, 0, 1, 1, 0, 0], [0, 1, 1, 1, 0, 1, 1, 0, 0, 1]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[0, 8, 8, 0, 8, 0, 8, 8, 0, 0], [2, 0, 8, 8, 0, 8, 0, 0, 0, 8], [2, 2, 8, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 8, 0, 0, 0, 0, 0], [8, 8, 2, 2, 0, 0, 0, 8, 8, 0], [8, 8, 8, 2, 2, 8, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 8, 8, 8, 0], [8, 0, 8, 0, 0, 2, 2, 8, 8, 8], [8, 8, 0, 0, 0, 0, 2, 2, 8, 0], [0, 8, 0, 8, 0, 8, 8, 2, 2, 8]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [8, 2, 2, 0, 0, 0, 0, 0, 0, 0], [8, 8, 2, 2, 0, 0, 0, 0, 0, 0], [8, 8, 8, 2, 2, 0, 0, 0, 0, 0], [8, 8, 8, 8, 2, 2, 0, 0, 0, 0], [8, 8, 8, 8, 8, 2, 2, 0, 0, 0], [8, 8, 8, 8, 8, 8, 2, 2, 0, 0], [8, 8, 8, 8, 8, 8, 8, 2, 2, 0]]}], "test": [{"input": [[9, 9, 9, 0, 0, 0, 0, 0, 0, 0], [9, 9, 9, 0, 9, 0, 0, 9, 0, 0], [9, 0, 0, 0, 9, 0, 9, 0, 0, 0], [0, 0, 9, 9, 9, 0, 9, 0, 0, 0], [0, 2, 2, 2, 0, 2, 2, 2, 9, 2], [2, 2, 0, 2, 2, 2, 9, 2, 2, 2], [9, 0, 0, 9, 9, 9, 0, 9, 9, 0], [0, 0, 0, 0, 9, 0, 9, 0, 0, 9], [0, 9, 9, 0, 0, 0, 0, 9, 9, 0], [9, 0, 9, 0, 0, 9, 0, 9, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 2, 2, 2, 0, 2], [2, 2, 9, 2, 2, 2, 9, 2, 2, 2], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/79369cc6.json b/data/arc-agi/evaluation/79369cc6.json
deleted file mode 100644
index 6a6eab1..0000000
--- a/data/arc-agi/evaluation/79369cc6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 1, 8, 0, 8, 1, 8, 0, 1, 0, 1, 1], [1, 0, 1, 1, 8, 6, 0, 1, 1, 6, 6, 8], [0, 1, 8, 8, 0, 8, 0, 1, 0, 6, 1, 0], [0, 8, 0, 8, 0, 0, 0, 0, 6, 8, 8, 6], [1, 8, 0, 8, 0, 0, 0, 6, 8, 8, 0, 0], [4, 6, 6, 8, 6, 0, 8, 0, 1, 1, 0, 8], [4, 4, 6, 8, 0, 1, 8, 1, 1, 1, 8, 6], [6, 4, 4, 0, 8, 0, 6, 0, 1, 0, 1, 0], [8, 8, 1, 1, 8, 8, 8, 0, 0, 0, 8, 0], [0, 6, 8, 8, 0, 0, 0, 1, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 6], [1, 0, 1, 8, 8, 0, 6, 0, 8, 8, 1, 8], [1, 0, 0, 8, 1, 6, 6, 0, 1, 0, 8, 8], [8, 1, 8, 8, 1, 1, 0, 1, 8, 0, 8, 8], [0, 1, 1, 0, 0, 6, 1, 8, 0, 0, 8, 1], [1, 8, 8, 8, 0, 8, 8, 6, 1, 8, 6, 0], [8, 0, 6, 1, 8, 1, 6, 6, 8, 0, 1, 1], [8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 1], [8, 1, 0, 0, 1, 1, 0, 8, 8, 0, 0, 8]], "output": [[8, 1, 8, 0, 8, 1, 8, 0, 1, 0, 1, 1], [1, 0, 1, 1, 8, 6, 0, 1, 1, 6, 6, 4], [0, 1, 8, 8, 0, 8, 0, 1, 0, 6, 4, 4], [0, 8, 0, 8, 0, 0, 0, 0, 6, 4, 4, 6], [1, 8, 0, 8, 0, 0, 0, 6, 8, 8, 0, 0], [4, 6, 6, 8, 6, 0, 8, 0, 1, 1, 0, 8], [4, 4, 6, 8, 0, 1, 8, 1, 1, 1, 8, 6], [6, 4, 4, 0, 8, 0, 6, 0, 1, 0, 1, 0], [8, 8, 1, 1, 8, 8, 8, 0, 0, 0, 8, 0], [0, 6, 8, 8, 0, 0, 0, 1, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 6], [1, 0, 1, 8, 8, 0, 6, 0, 8, 8, 1, 8], [1, 0, 0, 8, 1, 6, 6, 0, 1, 0, 8, 8], [8, 1, 8, 8, 1, 1, 0, 1, 8, 0, 8, 8], [0, 1, 1, 0, 0, 6, 4, 4, 0, 0, 8, 1], [1, 8, 8, 8, 0, 4, 4, 6, 1, 8, 6, 0], [8, 0, 6, 1, 8, 4, 6, 6, 8, 0, 1, 1], [8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 1], [8, 1, 0, 0, 1, 1, 0, 8, 8, 0, 0, 8]]}, {"input": [[1, 0, 6, 0, 0, 0, 0, 8, 0, 1, 8, 8, 8, 1, 1, 1], [0, 1, 8, 6, 1, 6, 0, 0, 0, 0, 6, 1, 1, 8, 8, 1], [0, 1, 8, 1, 0, 1, 0, 0, 6, 6, 1, 0, 0, 8, 1, 1], [0, 0, 1, 1, 1, 6, 1, 1, 0, 6, 6, 0, 1, 1, 8, 0], [0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 6, 6, 1], [0, 0, 0, 0, 0, 6, 0, 1, 8, 8, 0, 8, 1, 1, 0, 1], [1, 1, 1, 8, 1, 0, 0, 8, 1, 1, 0, 8, 8, 1, 1, 1], [8, 8, 1, 1, 0, 6, 1, 8, 1, 8, 6, 8, 8, 1, 8, 6], [1, 1, 6, 1, 8, 1, 0, 1, 1, 1, 6, 0, 6, 8, 1, 8], [0, 0, 8, 8, 6, 4, 6, 0, 1, 8, 0, 1, 0, 0, 1, 8], [0, 1, 8, 0, 4, 6, 6, 1, 0, 8, 1, 1, 1, 1, 1, 0], [1, 1, 1, 6, 4, 6, 4, 8, 0, 0, 0, 1, 0, 8, 6, 8], [6, 0, 1, 1, 1, 1, 1, 0, 8, 1, 0, 1, 1, 8, 0, 0], [0, 1, 1, 1, 1, 8, 1, 1, 1, 8, 8, 1, 8, 8, 8, 0], [0, 1, 0, 0, 6, 0, 0, 0, 8, 1, 6, 8, 8, 6, 0, 0], [1, 1, 1, 1, 8, 8, 8, 1, 1, 1, 0, 8, 1, 1, 8, 1], [8, 1, 1, 0, 0, 6, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1], [6, 0, 1, 0, 1, 8, 8, 8, 8, 6, 1, 1, 8, 1, 8, 8]], "output": [[1, 0, 6, 0, 0, 0, 0, 8, 0, 1, 8, 8, 8, 1, 1, 1], [0, 1, 8, 6, 1, 6, 0, 0, 4, 4, 6, 1, 1, 8, 8, 1], [0, 1, 8, 1, 0, 1, 0, 0, 6, 6, 4, 0, 0, 8, 1, 1], [0, 0, 1, 1, 1, 6, 1, 1, 4, 6, 6, 0, 1, 1, 8, 0], [0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 6, 6, 1], [0, 0, 0, 0, 0, 6, 0, 1, 8, 8, 0, 8, 1, 1, 0, 1], [1, 1, 1, 8, 1, 0, 0, 8, 1, 1, 0, 8, 8, 1, 1, 1], [8, 8, 1, 1, 0, 6, 1, 8, 1, 8, 6, 8, 8, 1, 8, 6], [1, 1, 6, 1, 8, 1, 0, 1, 1, 1, 6, 0, 6, 8, 1, 8], [0, 0, 8, 8, 6, 4, 6, 0, 1, 8, 0, 1, 0, 0, 1, 8], [0, 1, 8, 0, 4, 6, 6, 1, 0, 8, 1, 1, 1, 1, 1, 0], [1, 1, 1, 6, 4, 6, 4, 8, 0, 0, 0, 1, 0, 8, 6, 8], [6, 0, 1, 1, 1, 1, 1, 0, 8, 1, 0, 1, 1, 8, 0, 0], [0, 1, 1, 1, 1, 8, 1, 1, 1, 8, 8, 1, 8, 8, 8, 0], [0, 1, 0, 0, 6, 0, 0, 0, 8, 1, 6, 8, 8, 6, 0, 0], [1, 1, 1, 1, 8, 8, 8, 1, 1, 1, 0, 8, 1, 1, 8, 1], [8, 1, 1, 0, 0, 6, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1], [6, 0, 1, 0, 1, 8, 8, 8, 8, 6, 1, 1, 8, 1, 8, 8]]}, {"input": [[8, 1, 8, 8, 6, 0, 0, 1, 0, 0, 1, 0, 8, 0, 1, 0, 0], [6, 8, 1, 0, 0, 8, 0, 4, 6, 6, 1, 0, 0, 0, 8, 0, 1], [0, 8, 1, 8, 0, 1, 0, 6, 4, 4, 0, 0, 8, 0, 0, 0, 8], [1, 1, 0, 1, 1, 0, 8, 4, 4, 4, 1, 8, 8, 1, 0, 1, 8], [1, 6, 6, 0, 0, 8, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 8, 6, 0, 0, 8, 0, 0, 1, 1, 0, 6, 0, 0, 0, 1, 8], [0, 8, 0, 8, 0, 0, 8, 8, 8, 1, 8, 0, 8, 0, 0, 0, 6], [0, 1, 0, 1, 6, 0, 0, 1, 1, 0, 0, 8, 1, 1, 6, 8, 6], [0, 0, 1, 0, 1, 8, 0, 8, 8, 0, 1, 1, 8, 1, 1, 8, 0], [0, 8, 0, 8, 1, 0, 6, 8, 8, 0, 0, 0, 0, 6, 8, 1, 1], [0, 0, 0, 0, 6, 0, 1, 1, 8, 1, 1, 8, 8, 0, 8, 8, 8], [8, 8, 8, 0, 6, 8, 1, 8, 1, 0, 0, 0, 1, 8, 1, 1, 6], [8, 8, 0, 0, 1, 0, 1, 8, 0, 1, 8, 0, 1, 0, 0, 0, 1], [0, 8, 8, 1, 8, 6, 8, 1, 6, 1, 0, 6, 0, 0, 8, 0, 6], [1, 0, 8, 8, 1, 0, 8, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0], [0, 0, 0, 8, 0, 0, 1, 0, 8, 8, 0, 0, 0, 8, 0, 6, 6], [1, 0, 0, 0, 0, 0, 1, 0, 8, 0, 1, 1, 6, 0, 6, 0, 1]], "output": [[8, 1, 8, 8, 6, 0, 0, 1, 0, 0, 1, 0, 8, 0, 1, 0, 0], [6, 8, 1, 0, 0, 8, 0, 4, 6, 6, 1, 0, 0, 0, 8, 0, 1], [0, 8, 1, 8, 0, 1, 0, 6, 4, 4, 0, 0, 8, 0, 0, 0, 8], [1, 1, 0, 1, 1, 0, 8, 4, 4, 4, 1, 8, 8, 1, 0, 1, 8], [1, 6, 6, 0, 0, 8, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 8, 6, 0, 0, 8, 0, 0, 1, 1, 0, 6, 0, 0, 0, 1, 8], [0, 8, 0, 8, 0, 0, 8, 8, 8, 1, 8, 0, 8, 0, 0, 0, 6], [0, 1, 0, 1, 6, 0, 0, 1, 1, 0, 0, 8, 1, 1, 6, 8, 6], [0, 0, 1, 0, 1, 8, 0, 8, 8, 0, 1, 1, 8, 1, 1, 8, 0], [0, 8, 0, 8, 1, 0, 6, 8, 8, 0, 0, 0, 0, 6, 8, 1, 1], [0, 0, 0, 0, 6, 0, 1, 1, 8, 1, 1, 8, 8, 0, 8, 8, 8], [8, 8, 8, 0, 6, 8, 1, 8, 1, 0, 0, 0, 1, 8, 1, 1, 6], [8, 8, 0, 0, 1, 0, 1, 8, 0, 1, 8, 0, 1, 0, 0, 0, 1], [0, 8, 8, 1, 8, 6, 8, 1, 6, 1, 0, 6, 0, 0, 8, 0, 6], [1, 0, 8, 8, 1, 0, 8, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0], [0, 0, 0, 8, 0, 0, 1, 0, 8, 8, 0, 0, 0, 8, 4, 6, 6], [1, 0, 0, 0, 0, 0, 1, 0, 8, 0, 1, 1, 6, 0, 6, 4, 4]]}], "test": [{"input": [[0, 6, 8, 0, 0, 6, 1, 6, 6, 1, 1, 1, 0, 0, 1], [1, 0, 8, 1, 6, 8, 8, 1, 1, 0, 1, 0, 8, 0, 1], [0, 0, 6, 0, 1, 8, 0, 1, 1, 0, 0, 0, 1, 0, 1], [1, 1, 1, 8, 6, 6, 6, 8, 0, 0, 1, 8, 0, 8, 6], [1, 0, 8, 0, 8, 6, 0, 6, 8, 1, 1, 1, 1, 1, 8], [0, 0, 6, 0, 1, 0, 0, 8, 8, 1, 1, 8, 1, 6, 0], [0, 1, 8, 1, 0, 6, 8, 8, 8, 6, 0, 1, 6, 6, 0], [1, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 8, 1, 0, 8], [0, 1, 0, 8, 1, 1, 1, 8, 0, 0, 8, 1, 1, 8, 6], [0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 8, 1], [8, 0, 8, 8, 8, 4, 4, 4, 6, 1, 1, 8, 6, 8, 0], [1, 0, 8, 1, 1, 6, 4, 4, 8, 1, 8, 1, 0, 1, 1], [0, 6, 1, 0, 0, 6, 6, 4, 1, 1, 0, 0, 8, 8, 8], [8, 1, 1, 0, 0, 8, 8, 0, 8, 8, 0, 0, 1, 1, 1], [1, 1, 8, 8, 0, 1, 8, 8, 8, 8, 0, 0, 1, 6, 8], [0, 8, 1, 8, 0, 1, 8, 0, 6, 1, 6, 0, 6, 6, 0]], "output": [[0, 6, 8, 0, 0, 6, 1, 6, 6, 1, 1, 1, 0, 0, 1], [1, 0, 8, 1, 6, 8, 8, 1, 1, 0, 1, 0, 8, 0, 1], [0, 0, 6, 0, 1, 8, 0, 1, 1, 0, 0, 0, 1, 0, 1], [1, 1, 1, 4, 6, 6, 6, 8, 0, 0, 1, 8, 0, 8, 6], [1, 0, 8, 4, 4, 6, 0, 6, 8, 1, 1, 4, 4, 4, 8], [0, 0, 6, 4, 4, 4, 0, 8, 8, 1, 1, 4, 4, 6, 0], [0, 1, 8, 1, 0, 6, 8, 8, 8, 6, 0, 4, 6, 6, 0], [1, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 8, 1, 0, 8], [0, 1, 0, 8, 1, 1, 1, 8, 0, 0, 8, 1, 1, 8, 6], [0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 8, 1], [8, 0, 8, 8, 8, 4, 4, 4, 6, 1, 1, 8, 6, 8, 0], [1, 0, 8, 1, 1, 6, 4, 4, 8, 1, 8, 1, 0, 1, 1], [0, 6, 1, 0, 0, 6, 6, 4, 1, 1, 0, 0, 8, 8, 8], [8, 1, 1, 0, 0, 8, 8, 0, 8, 8, 0, 4, 4, 4, 1], [1, 1, 8, 8, 0, 1, 8, 8, 8, 8, 0, 4, 4, 6, 8], [0, 8, 1, 8, 0, 1, 8, 0, 6, 1, 6, 4, 6, 6, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/7953d61e.json b/data/arc-agi/evaluation/7953d61e.json
deleted file mode 100644
index 8ced945..0000000
--- a/data/arc-agi/evaluation/7953d61e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[4, 6, 4, 4], [4, 6, 4, 4], [7, 6, 7, 9], [9, 4, 9, 7]], "output": [[4, 6, 4, 4, 4, 4, 9, 7], [4, 6, 4, 4, 4, 4, 7, 9], [7, 6, 7, 9, 6, 6, 6, 4], [9, 4, 9, 7, 4, 4, 7, 9], [7, 9, 4, 9, 9, 7, 4, 4], [9, 7, 6, 7, 4, 6, 6, 6], [4, 4, 6, 4, 9, 7, 4, 4], [4, 4, 6, 4, 7, 9, 4, 4]]}], "train": [{"input": [[4, 1, 9, 1], [1, 9, 1, 4], [9, 1, 4, 6], [4, 1, 6, 6]], "output": [[4, 1, 9, 1, 1, 4, 6, 6], [1, 9, 1, 4, 9, 1, 4, 6], [9, 1, 4, 6, 1, 9, 1, 1], [4, 1, 6, 6, 4, 1, 9, 4], [6, 6, 1, 4, 4, 9, 1, 4], [6, 4, 1, 9, 1, 1, 9, 1], [4, 1, 9, 1, 6, 4, 1, 9], [1, 9, 1, 4, 6, 6, 4, 1]]}, {"input": [[6, 2, 6, 2], [6, 6, 5, 5], [1, 1, 1, 2], [5, 1, 2, 1]], "output": [[6, 2, 6, 2, 2, 5, 2, 1], [6, 6, 5, 5, 6, 5, 1, 2], [1, 1, 1, 2, 2, 6, 1, 1], [5, 1, 2, 1, 6, 6, 1, 5], [1, 2, 1, 5, 5, 1, 6, 6], [2, 1, 1, 1, 1, 1, 6, 2], [5, 5, 6, 6, 2, 1, 5, 6], [2, 6, 2, 6, 1, 2, 5, 2]]}, {"input": [[6, 7, 7, 6], [7, 1, 6, 6], [9, 1, 6, 6], [9, 1, 6, 1]], "output": [[6, 7, 7, 6, 6, 6, 6, 1], [7, 1, 6, 6, 7, 6, 6, 6], [9, 1, 6, 6, 7, 1, 1, 1], [9, 1, 6, 1, 6, 7, 9, 9], [1, 6, 1, 9, 9, 9, 7, 6], [6, 6, 1, 9, 1, 1, 1, 7], [6, 6, 1, 7, 6, 6, 6, 7], [6, 7, 7, 6, 1, 6, 6, 6]]}, {"input": [[4, 9, 1, 8], [8, 4, 1, 8], [4, 8, 8, 1], [1, 1, 1, 8]], "output": [[4, 9, 1, 8, 8, 8, 1, 8], [8, 4, 1, 8, 1, 1, 8, 1], [4, 8, 8, 1, 9, 4, 8, 1], [1, 1, 1, 8, 4, 8, 4, 1], [8, 1, 1, 1, 1, 4, 8, 4], [1, 8, 8, 4, 1, 8, 4, 9], [8, 1, 4, 8, 1, 8, 1, 1], [8, 1, 9, 4, 8, 1, 8, 8]]}, {"input": [[1, 1, 2, 1], [6, 6, 7, 6], [7, 6, 2, 1], [1, 6, 2, 6]], "output": [[1, 1, 2, 1, 1, 6, 1, 6], [6, 6, 7, 6, 2, 7, 2, 2], [7, 6, 2, 1, 1, 6, 6, 6], [1, 6, 2, 6, 1, 6, 7, 1], [6, 2, 6, 1, 1, 7, 6, 1], [1, 2, 6, 7, 6, 6, 6, 1], [6, 7, 6, 6, 2, 2, 7, 2], [1, 2, 1, 1, 6, 1, 6, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/79fb03f4.json b/data/arc-agi/evaluation/79fb03f4.json
deleted file mode 100644
index 3417440..0000000
--- a/data/arc-agi/evaluation/79fb03f4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train":[{"input":[[0,0,0,8,0,8,0,0,0,8,0,8,0,0,0,0,0,0,0,0],[8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,8],[0,8,0,8,0,0,0,0,8,0,0,8,0,0,8,0,0,0,0,0],[0,0,0,0,8,0,0,8,0,0,0,0,0,8,0,0,0,0,0,0],[0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,0,8,0,8,0],[0,0,0,0,0,0,0,0,8,0,8,0,0,0,8,0,0,0,0,0],[1,0,0,0,0,8,0,0,0,0,0,8,0,0,0,0,0,0,0,0],[0,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0],[0,0,0,8,0,0,0,0,8,0,0,0,8,0,0,8,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],[8,0,0,0,0,8,0,0,0,0,0,8,0,0,0,0,8,0,0,8],[1,0,8,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0],[0,0,0,0,0,0,0,0,0,0,0,0,8,0,8,0,8,0,0,0],[0,0,0,0,0,0,0,0,8,0,0,8,0,0,0,0,0,0,8,0],[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,0,0],[1,0,8,0,8,0,0,0,0,0,8,0,0,0,0,8,0,0,0,0],[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0],[0,0,0,0,0,0,0,8,0,0,0,0,0,8,0,0,0,0,0,0],[0,0,0,8,0,0,0,0,0,8,0,0,8,0,8,0,0,0,8,0],[0,0,8,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0]],"output":[[0,0,0,8,0,8,0,0,0,8,0,8,0,0,0,0,0,0,0,0],[8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,8],[0,8,0,8,0,0,0,0,8,0,0,8,0,0,8,0,0,0,0,0],[0,0,0,0,8,0,0,8,0,0,0,0,0,8,0,0,0,0,0,0],[0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,0,8,0,8,0],[0,0,0,0,1,1,1,0,8,0,8,0,0,0,8,0,0,0,0,0],[1,1,1,1,1,8,1,1,1,1,1,8,1,1,1,1,1,1,1,1],[0,8,0,0,1,1,1,0,0,8,1,1,1,0,0,0,0,0,8,0],[0,0,0,8,0,0,0,0,8,0,0,0,8,0,0,8,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,1],[8,1,1,1,0,8,0,1,1,1,0,8,0,0,0,0,8,1,1,8],[1,1,8,1,1,1,1,1,8,1,1,1,1,1,1,1,1,1,8,1],[0,1,1,1,0,0,0,1,1,1,0,0,8,0,8,0,8,1,1,1],[0,0,0,0,0,0,0,0,8,0,0,8,0,0,0,1,1,1,8,0],[0,1,1,1,1,1,8,0,0,1,1,1,0,0,1,1,8,1,0,0],[1,1,8,1,8,1,1,1,1,1,8,1,1,1,1,8,1,1,1,1],[0,1,1,8,1,1,0,0,0,1,1,1,0,0,1,1,1,0,8,0],[0,0,1,1,1,0,0,8,0,0,0,0,0,8,0,0,0,0,0,0],[0,0,0,8,0,0,0,0,0,8,0,0,8,0,8,0,0,0,8,0],[0,0,8,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0]]},{"input":[[0,0,5,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,5,0,0],[0,0,0,0,0,0,0,0,5,0],[1,0,5,0,0,0,0,0,0,0],[0,0,0,5,0,0,0,0,5,0],[0,0,0,0,0,0,0,0,0,0],[0,0,5,0,0,0,5,0,0,0],[0,0,0,0,0,0,0,0,0,0],[1,0,0,0,5,0,0,0,0,0],[0,5,0,0,0,0,0,0,5,0]],"output":[[0,0,5,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,5,0,0],[0,1,1,1,0,0,0,0,5,0],[1,1,5,1,1,1,1,1,1,1],[0,1,1,5,1,0,0,0,5,0],[0,0,1,1,1,0,0,0,0,0],[0,0,5,0,0,0,5,0,0,0],[0,0,0,1,1,1,0,0,0,0],[1,1,1,1,5,1,1,1,1,1],[0,5,0,1,1,1,0,0,5,0]]},{"input":[[0,0,0,0,0,0],[0,0,5,0,0,0],[0,0,0,0,0,0],[1,0,0,5,0,0],[0,0,0,0,0,0],[0,0,0,0,0,0]],"output":[[0,0,0,0,0,0],[0,0,5,0,0,0],[0,0,1,1,1,0],[1,1,1,5,1,1],[0,0,1,1,1,0],[0,0,0,0,0,0]]},{"input":[[0,0,0,0,0,0],[0,0,0,0,0,0],[1,0,8,0,0,0],[0,8,0,0,0,0],[0,0,0,0,8,0],[0,0,0,0,0,0]],"output":[[0,0,0,0,0,0],[0,1,1,1,0,0],[1,1,8,1,1,1],[0,8,0,0,0,0],[0,0,0,0,8,0],[0,0,0,0,0,0]]},{"input":[[5,0,0,0,0,0,5,0,0,0,0,0,0],[0,5,0,5,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,5,0],[0,0,0,0,5,0,0,0,0,5,0,0,0],[1,0,5,0,0,0,0,0,5,0,0,0,5],[0,0,0,0,0,5,0,0,0,5,0,0,0],[0,5,0,5,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,5,0,0,0,0,0],[0,0,0,0,0,5,0,0,0,0,0,0,0],[5,0,0,5,0,0,5,0,5,0,0,5,0],[0,0,0,0,5,0,0,0,0,5,0,0,0],[1,0,0,0,0,0,0,0,0,0,0,5,0],[0,0,0,0,5,0,5,0,0,5,0,0,0]],"output":[[5,0,0,0,0,0,5,0,0,0,0,0,0],[0,5,0,5,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,1,1,1,5,0],[0,1,1,1,5,0,0,1,1,5,1,1,1],[1,1,5,1,1,1,1,1,5,0,0,0,5],[0,1,1,1,0,5,0,1,1,5,1,1,1],[0,5,0,5,0,0,0,0,1,1,1,0,0],[0,0,0,0,0,0,0,5,0,0,0,0,0],[0,0,0,0,0,5,0,0,0,0,0,0,0],[5,0,0,5,0,0,5,0,5,0,0,5,0],[0,0,0,0,5,0,0,0,0,5,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,5,1],[0,0,0,0,5,0,5,0,0,5,1,1,1]]},{"input":[[0,0,0,8,0,0,0],[0,0,0,0,0,0,0],[0,0,0,0,0,0,0],[1,0,8,0,8,0,0],[0,0,0,0,0,0,0],[0,0,8,0,0,0,0],[0,0,0,0,0,0,0]],"output":[[0,0,0,8,0,0,0],[0,0,0,0,0,0,0],[0,1,1,1,1,1,0],[1,1,8,1,8,1,1],[0,1,1,1,1,1,0],[0,0,8,0,0,0,0],[0,0,0,0,0,0,0]]}],"test":[{"input":[[0,0,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0],[8,0,0,0,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0],[0,0,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0],[1,0,0,0,0,8,0,8,0,0,8,0,0,8,0,0,0,0,0,0,0,8,0,0,0,0],[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8],[0,8,0,0,0,0,8,0,0,0,0,0,8,0,0,0,0,0,8,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0],[1,0,0,0,0,0,0,0,0,0,0,8,0,8,0,0,0,0,0,0,0,8,0,0,0,0],[0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0],[0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,8],[0,0,0,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0],[8,0,0,0,0,0,8,0,0,0,0,0,8,0,8,0,0,0,0,0,0,0,0,8,0,0],[0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0],[1,0,0,0,0,8,0,0,0,0,8,0,8,0,0,8,0,0,8,0,0,0,0,0,0,0],[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0],[0,0,0,0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8],[0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,0],[0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,8,0,0,8,0,0],[8,0,0,0,0,0,0,0,8,0,0,8,0,0,0,8,0,8,0,0,0,0,0,0,0,0],[0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0,0,0,8,0,0,0,0,0,0],[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,8,0,0,0,0,8,0,0,0,0,0,0,0,8,0,8,0,0,0,0,0,8,0]],"output":[[0,0,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0],[8,0,0,0,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0],[0,0,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,8,8,0,1,1,1,0,0,0],[1,1,1,1,1,8,1,8,1,1,8,1,1,8,1,1,1,1,1,1,1,8,1,1,1,1],[0,0,0,0,8,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0],[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8],[0,8,0,0,0,0,8,0,0,0,0,0,8,0,0,0,0,0,8,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,8,0],[1,1,1,1,1,1,1,1,1,1,1,8,1,8,1,1,1,1,1,1,1,8,1,1,1,1],[0,0,0,0,0,8,0,0,0,8,1,1,1,1,1,0,0,0,0,0,1,1,8,0,0,0],[0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,8],[0,0,0,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0],[8,0,0,0,0,0,8,0,0,0,0,0,8,0,8,0,0,0,0,0,0,0,0,8,0,0],[0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,0,0,0],[0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,8,0],[1,1,1,1,1,8,1,1,1,1,8,1,8,1,1,8,1,1,8,1,1,1,1,1,1,1],[8,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,8,0,0,0,0,0],[0,0,0,0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8],[0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,0],[0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,8,0,0,8,0,0],[8,0,0,0,0,0,0,0,8,0,0,8,0,0,0,8,0,8,0,0,0,0,0,0,0,0],[0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0,0,0,8,0,0,0,0,0,0],[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,8,0,0,0,0,8,0,0,0,0,0,0,0,8,0,8,0,0,0,0,0,8,0]]}],"name":"79fb03f4"}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/7bb29440.json b/data/arc-agi/evaluation/7bb29440.json
deleted file mode 100644
index 4aae40a..0000000
--- a/data/arc-agi/evaluation/7bb29440.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 4, 1, 6, 0, 0, 1, 6, 1, 1, 4, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 6, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1], [0, 1, 4, 1, 0, 0, 1, 6, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1], [0, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 1, 1], [0, 1, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 4, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 6, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 0, 0, 1, 1, 6, 1], [0, 0, 1, 1, 1, 6, 1, 1, 1, 6, 1, 1, 0, 0, 6, 1, 1, 1], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 4, 1], [0, 0, 1, 1, 1, 1, 1, 6, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1], [1, 1, 1, 1, 1], [1, 6, 1, 1, 1], [1, 1, 1, 4, 1], [1, 1, 1, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 4, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 6, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 6, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 6, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 4, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 4, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 4, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 4, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 6, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 4, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 4, 1, 1, 6, 1, 0, 0, 0, 1, 1, 1, 6, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 6, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 4, 1, 1, 1], [1, 1, 1, 6, 1], [6, 1, 1, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 6, 1, 4, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 1, 4, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 6, 1, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 4, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 6, 0, 0, 0, 1, 1, 1, 4, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 4, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 6, 1, 1, 1, 1, 0, 1, 1, 6, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 6, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [1, 1, 1, 6, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [6, 1, 1, 1, 0, 1, 1, 1, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 4, 1, 6, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 1, 6, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 4, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 4, 1, 0, 0, 0, 1, 4, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 6, 1, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 1, 1, 1, 4, 1, 4, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 6, 1, 1, 1, 1, 1, 1, 0]], "output": [[1, 1, 1, 1, 4], [1, 4, 1, 1, 1], [1, 1, 1, 6, 1], [1, 1, 1, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 4, 0, 0, 0, 0, 0, 0], [0, 1, 4, 1, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 1, 1, 6, 1, 1, 1, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1], [1, 1, 6, 1, 1, 1], [1, 1, 1, 1, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 4, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 6, 1, 6, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 4, 1, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 4, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 6, 1, 1], [1, 1, 1, 1, 4, 0, 0, 0, 0, 1, 1, 4, 1, 1, 1], [1, 4, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1], [1, 1, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 4, 1, 1, 6, 1, 4, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 4, 1, 1, 1, 1, 6, 1, 0, 0, 0]], "output": [[1, 1, 1, 1, 1], [1, 1, 1, 1, 1], [1, 4, 1, 1, 1], [1, 1, 1, 1, 1], [1, 1, 4, 1, 1], [1, 1, 1, 1, 1], [1, 1, 1, 1, 1]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 1, 4, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 1, 1, 6, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 1, 1, 4, 1, 0, 0, 1, 6, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 6, 1, 1, 0, 0, 1, 4, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 4, 1, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 4, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 1, 1, 6, 1, 0, 0, 0, 1, 1, 6, 1, 4, 1, 1, 1, 0, 0, 0, 1, 1, 1, 6, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 6, 1, 0, 0, 0, 6, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 4, 1, 1, 1, 0, 0, 0, 1, 1, 1, 4, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 6, 1, 1, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 4, 1], [1, 1, 1, 1], [1, 6, 1, 1], [1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/7c8af763.json b/data/arc-agi/evaluation/7c8af763.json
deleted file mode 100644
index 2d83996..0000000
--- a/data/arc-agi/evaluation/7c8af763.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 5, 1, 5, 5, 2, 5, 5, 5, 1], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0], [0, 0, 0, 5, 0, 0, 0, 2, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0], [5, 2, 5, 5, 5, 5, 5, 5, 2, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0], [0, 0, 0, 1, 0, 0, 0, 5, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0], [5, 2, 5, 5, 5, 5, 1, 5, 5, 2]], "output": [[1, 5, 1, 5, 5, 2, 5, 5, 5, 1], [1, 1, 1, 5, 2, 2, 2, 5, 2, 2], [1, 1, 1, 5, 2, 2, 2, 2, 2, 2], [1, 1, 1, 5, 2, 2, 2, 5, 2, 2], [5, 2, 5, 5, 5, 5, 5, 5, 2, 5], [2, 2, 2, 5, 1, 1, 1, 5, 2, 2], [2, 2, 2, 1, 1, 1, 1, 5, 2, 2], [2, 2, 2, 5, 1, 1, 1, 5, 2, 2], [2, 2, 2, 5, 1, 1, 1, 5, 2, 2], [5, 2, 5, 5, 5, 5, 1, 5, 5, 2]]}, {"input": [[2, 5, 5, 5, 1, 5, 5, 5, 5, 2], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [5, 1, 5, 5, 5, 2, 5, 5, 5, 1], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 2, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [1, 5, 5, 5, 2, 5, 5, 5, 5, 1]], "output": [[2, 5, 5, 5, 1, 5, 5, 5, 5, 2], [1, 1, 5, 1, 1, 1, 1, 5, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 5, 1, 1, 1, 1, 5, 1, 1], [1, 1, 5, 1, 1, 1, 1, 5, 1, 1], [5, 1, 5, 5, 5, 2, 5, 5, 5, 1], [1, 1, 5, 2, 2, 2, 2, 5, 1, 1], [1, 1, 5, 2, 2, 2, 2, 2, 1, 1], [1, 1, 5, 2, 2, 2, 2, 5, 1, 1], [1, 5, 5, 5, 2, 5, 5, 5, 5, 1]]}, {"input": [[1, 5, 2, 5, 2, 5, 5, 5, 5, 1], [0, 0, 0, 5, 0, 0, 2, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 0, 0, 0], [5, 2, 5, 5, 5, 1, 5, 5, 2, 5], [0, 0, 0, 5, 0, 0, 2, 0, 0, 0], [0, 0, 0, 1, 0, 0, 5, 0, 0, 0], [2, 2, 5, 5, 1, 5, 5, 5, 1, 5], [0, 0, 0, 5, 0, 0, 1, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 0, 0, 0], [5, 5, 1, 5, 5, 1, 5, 5, 2, 5]], "output": [[1, 5, 2, 5, 2, 5, 5, 5, 5, 1], [2, 2, 2, 5, 2, 2, 2, 2, 2, 2], [2, 2, 2, 5, 2, 2, 5, 2, 2, 2], [5, 2, 5, 5, 5, 1, 5, 5, 2, 5], [2, 2, 2, 5, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 5, 2, 2, 2], [2, 2, 5, 5, 1, 5, 5, 5, 1, 5], [2, 2, 2, 5, 1, 1, 1, 1, 1, 1], [2, 2, 2, 5, 1, 1, 5, 1, 1, 1], [5, 5, 1, 5, 5, 1, 5, 5, 2, 5]]}], "test": [{"input": [[5, 1, 5, 5, 5, 5, 5, 5, 1, 5], [0, 0, 5, 0, 0, 5, 0, 0, 0, 0], [0, 0, 5, 0, 0, 1, 0, 0, 0, 0], [5, 5, 5, 5, 1, 5, 5, 2, 1, 5], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0], [0, 0, 5, 0, 0, 5, 0, 0, 0, 0], [2, 5, 5, 5, 2, 5, 5, 1, 2, 5], [0, 0, 1, 0, 0, 2, 0, 0, 0, 0], [0, 0, 5, 0, 0, 5, 0, 0, 0, 0], [5, 2, 5, 5, 5, 5, 1, 5, 5, 1]], "output": [[5, 1, 5, 5, 5, 5, 5, 5, 1, 5], [1, 1, 5, 1, 1, 5, 1, 1, 1, 1], [1, 1, 5, 1, 1, 1, 1, 1, 1, 1], [5, 5, 5, 5, 1, 5, 5, 2, 1, 5], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 5, 2, 2, 5, 2, 2, 2, 2], [2, 5, 5, 5, 2, 5, 5, 1, 2, 5], [2, 2, 1, 2, 2, 2, 1, 1, 1, 1], [2, 2, 5, 2, 2, 5, 1, 1, 1, 1], [5, 2, 5, 5, 5, 5, 1, 5, 5, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/7c9b52a0.json b/data/arc-agi/evaluation/7c9b52a0.json
deleted file mode 100644
index 4b5b300..0000000
--- a/data/arc-agi/evaluation/7c9b52a0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1], [1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 3, 3, 0, 0, 1, 1], [1, 0, 2, 2, 0, 1, 1, 1, 1, 1, 3, 3, 0, 0, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[4, 4, 4, 4], [3, 3, 0, 0], [3, 3, 0, 0], [0, 2, 2, 0]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 1, 1, 0, 0, 8, 8, 8, 8, 0, 0, 3, 3, 8, 8, 8], [8, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 0, 2, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 2, 2, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 4, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 4, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[0, 0, 3, 3], [1, 1, 2, 4], [0, 2, 2, 4]]}, {"input": [[9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 0, 1, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 1, 1, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 0, 1, 1, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 0, 0, 2, 2, 0, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 0, 0, 0, 2, 0, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 0, 0, 0, 2, 0, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]], "output": [[0, 1, 0, 0, 0], [1, 1, 2, 2, 0], [0, 1, 1, 2, 0], [0, 0, 0, 2, 0]]}], "test": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 2, 0, 1, 1, 1, 1, 0, 0, 3, 1, 1, 1, 1, 1], [1, 2, 2, 0, 1, 1, 1, 1, 0, 0, 3, 1, 1, 1, 1, 1], [1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1], [1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1], [1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1], [1, 1, 1, 4, 4, 4, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1], [1, 1, 1, 0, 4, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1], [1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 6, 0, 0, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 6, 0, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[0, 2, 3], [2, 2, 3], [4, 4, 4], [6, 4, 0], [6, 6, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/7d18a6fb.json b/data/arc-agi/evaluation/7d18a6fb.json
deleted file mode 100644
index 7b59734..0000000
--- a/data/arc-agi/evaluation/7d18a6fb.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 4, 1, 1, 1, 8, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 8, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 8, 0, 8, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 8, 0, 0], [1, 3, 1, 1, 1, 2, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0]], "output": [[0, 4, 0, 0, 0, 8, 0], [4, 4, 4, 0, 8, 0, 8], [0, 4, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0], [3, 0, 3, 0, 2, 2, 0], [3, 3, 0, 0, 2, 0, 2], [0, 3, 0, 0, 0, 2, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 2, 1, 1, 1, 4, 1], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1, 1, 1, 3, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 2, 0, 0, 4, 0], [2, 2, 2, 0, 4, 4, 4], [0, 2, 2, 0, 0, 4, 4], [0, 0, 0, 0, 0, 0, 0], [6, 0, 6, 0, 3, 3, 0], [0, 6, 0, 0, 3, 0, 3], [6, 6, 6, 0, 0, 3, 0]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 5, 1, 1, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [1, 2, 1, 1, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 6, 0, 0], [0, 0, 3, 0, 3, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 5, 0, 0, 0, 0, 4], [5, 5, 0, 0, 0, 4, 0], [0, 0, 5, 0, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 3, 0, 3], [2, 0, 2, 0, 0, 3, 3], [2, 2, 2, 0, 0, 0, 3]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 2, 2, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 2, 0], [0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 1, 1, 1, 3, 1, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 8, 1, 1, 1, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 0, 0, 3, 3, 3], [2, 2, 0, 0, 0, 3, 0], [0, 0, 2, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 6, 6], [8, 8, 8, 0, 6, 6, 0], [0, 0, 8, 0, 0, 6, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/7d1f7ee8.json b/data/arc-agi/evaluation/7d1f7ee8.json
deleted file mode 100644
index 3dba69d..0000000
--- a/data/arc-agi/evaluation/7d1f7ee8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 4, 0, 3, 3, 0, 4, 0, 2, 2, 2, 0, 8, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 8, 0, 4, 0, 0, 0, 0, 4, 0, 2, 0, 2, 0, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 7], [0, 8, 0, 4, 0, 0, 0, 0, 4, 0, 2, 0, 2, 0, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 7], [0, 8, 0, 4, 4, 4, 4, 4, 4, 0, 2, 0, 2, 0, 8, 0, 0, 0, 7, 0, 1, 1, 1, 1, 1, 0, 7], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 8, 0, 0, 0, 7, 0, 1, 0, 0, 0, 1, 0, 7], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 7, 0, 1, 0, 0, 0, 1, 0, 7], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 7, 0, 1, 0, 0, 0, 1, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 1, 0, 0, 0, 1, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 1, 0, 0, 0, 1, 0, 7], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 7, 0, 1, 0, 0, 0, 1, 0, 7], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 7, 0, 1, 0, 0, 0, 1, 0, 7], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 7, 0, 1, 0, 0, 0, 1, 0, 7], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 7, 0, 1, 1, 1, 1, 1, 0, 7], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 8, 0, 8, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 8, 0, 8, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 7], [0, 8, 0, 8, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 7], [0, 8, 0, 8, 8, 8, 8, 8, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 7, 0, 7, 7, 7, 7, 7, 0, 7], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 8, 0, 0, 0, 7, 0, 7, 0, 0, 0, 7, 0, 7], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 7, 0, 7, 0, 0, 0, 7, 0, 7], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 7, 0, 7, 0, 0, 0, 7, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 7, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 7, 0, 7], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 7, 0, 7], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 7, 0, 7], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 7, 0, 7], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 7, 0, 7, 7, 7, 7, 7, 0, 7], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 0, 0, 0, 1, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0], [0, 2, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 2, 0, 1, 6, 6, 6, 6, 1, 0], [0, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 0, 1, 6, 0, 0, 6, 1, 0], [0, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 0, 1, 6, 0, 0, 6, 1, 0], [0, 2, 0, 4, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 4, 0, 0, 0, 2, 0, 1, 6, 6, 6, 6, 1, 0], [0, 2, 0, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0], [0, 2, 0, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0], [0, 2, 0, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0, 2, 0, 1, 1, 1, 1, 1, 1, 0], [0, 2, 0, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 4, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 2, 0, 0, 3, 3, 3, 3, 3, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 3, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 3, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 0, 0, 0, 1, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0], [0, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 2, 0, 1, 1, 1, 1, 1, 1, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 1, 1, 0, 0, 1, 1, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 1, 1, 0, 0, 1, 1, 0], [0, 2, 0, 2, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 2, 0, 0, 0, 2, 0, 1, 1, 1, 1, 1, 1, 0], [0, 2, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0], [0, 2, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0], [0, 2, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 2, 0, 1, 1, 1, 1, 1, 1, 0], [0, 2, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 2, 0, 0, 3, 3, 3, 3, 3, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 3, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 3, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 1, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 3, 3, 0, 1, 0], [0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 3, 3, 0, 1, 0], [0, 0, 1, 0, 2, 0, 8, 8, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0], [0, 0, 1, 0, 2, 0, 8, 8, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0], [0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0], [0, 0, 1, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 1, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0], [0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], [0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], [0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 3, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 3, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 3, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 3, 0, 0, 0, 0, 8, 0, 1, 1, 0, 0, 0, 0, 8, 0, 3, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 3, 0, 0, 0, 0, 8, 0, 1, 1, 0, 0, 0, 0, 8, 0, 3, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 3, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 3, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 3, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 3, 0, 4, 0, 0, 6, 0, 0], [0, 0, 4, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 4, 0, 0, 6, 0, 0], [0, 0, 4, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 1, 0, 8, 0, 0, 4, 4, 4, 0, 0, 8, 0, 0, 0], [0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 8, 0, 0, 4, 0, 4, 0, 0, 8, 0, 0, 0], [0, 0, 1, 0, 3, 0, 0, 0, 2, 2, 0, 3, 0, 0, 1, 0, 8, 0, 0, 4, 4, 4, 0, 0, 8, 0, 0, 0], [0, 0, 1, 0, 3, 0, 0, 0, 2, 2, 0, 3, 0, 0, 1, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 4, 0, 4, 4, 0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 4, 0, 4, 4, 0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 0, 4, 0, 0, 6, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 6, 0, 0], [0, 0, 4, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 8, 0, 0, 8, 8, 8, 0, 0, 8, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 8, 0, 0, 8, 0, 8, 0, 0, 8, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 8, 0, 0, 8, 8, 8, 0, 0, 8, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/7d419a02.json b/data/arc-agi/evaluation/7d419a02.json
deleted file mode 100644
index c955d2e..0000000
--- a/data/arc-agi/evaluation/7d419a02.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 0, 0, 8, 8, 0, 0, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 0, 8, 0, 8, 8, 0, 8, 8, 0, 0, 8, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 0, 0, 8, 8, 0, 8, 8, 0], [0, 0, 0, 0, 8, 8, 0, 6, 6, 0, 8, 8, 0, 8, 0, 0, 8, 0, 0], [0, 8, 8, 0, 8, 8, 0, 6, 6, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 0, 8, 0, 0, 8, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 0, 0, 8, 0, 0], [0, 8, 8, 0, 8, 8, 0, 8, 0, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 4, 4, 0, 8, 8, 0, 4, 4, 0, 4, 4, 0, 8, 8, 0], [0, 4, 4, 0, 4, 0, 0, 8, 8, 0, 0, 4, 0, 4, 4, 0, 8, 8, 0], [0, 8, 8, 0, 4, 4, 0, 0, 8, 0, 4, 4, 0, 8, 8, 0, 0, 8, 0], [0, 8, 8, 0, 4, 4, 0, 8, 8, 0, 4, 0, 0, 8, 8, 0, 8, 8, 0], [0, 0, 0, 0, 8, 8, 0, 6, 6, 0, 8, 8, 0, 8, 0, 0, 8, 0, 0], [0, 8, 8, 0, 8, 8, 0, 6, 6, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 4, 4, 0, 8, 8, 0, 4, 4, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 4, 4, 0, 8, 8, 0, 4, 4, 0, 0, 8, 0, 0, 8, 0], [0, 4, 4, 0, 4, 4, 0, 8, 8, 0, 4, 4, 0, 4, 0, 0, 8, 0, 0], [0, 4, 4, 0, 4, 4, 0, 8, 0, 0, 4, 4, 0, 4, 4, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 6, 6, 8, 8, 8, 0, 8, 0], [0, 8, 8, 8, 8, 8, 6, 6, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 8, 8, 8, 8, 8, 8, 4, 4, 4, 0], [0, 4, 0, 4, 8, 8, 8, 8, 8, 8, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 8, 8, 4, 4, 0, 4, 4, 0], [0, 4, 4, 4, 4, 4, 8, 8, 4, 4, 0, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 6, 6, 8, 8, 8, 0, 8, 0], [0, 8, 8, 8, 8, 8, 6, 6, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 8, 8, 4, 4, 4, 4, 4, 0], [0, 4, 4, 4, 4, 0, 8, 8, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 8, 0, 8, 8, 8, 8, 4, 4, 4, 0], [0, 4, 4, 4, 8, 8, 8, 0, 8, 8, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 0, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 0, 8, 0, 8, 8, 0, 6, 6, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 6, 6, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 0, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 0, 0, 8, 8, 0], [0, 8, 8, 0, 8, 0, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 0, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 8, 0, 0, 8, 8, 0, 8, 8, 0, 8, 0, 0, 8, 8, 0], [0, 8, 8, 0, 8, 0, 0, 8, 8, 0, 8, 0, 0, 0, 8, 0, 8, 8, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 4, 4, 0, 4, 4, 0, 8, 8, 0, 4, 4, 0, 4, 4, 0, 8, 8, 0], [0, 8, 8, 0, 4, 4, 0, 4, 4, 0, 8, 8, 0, 4, 4, 0, 4, 4, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 4, 4, 0, 8, 8, 0, 4, 4, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 4, 4, 0, 8, 0, 0, 4, 4, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 0, 8, 0, 8, 8, 0, 6, 6, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 6, 6, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 4, 4, 0, 8, 8, 0, 0, 4, 0, 8, 8, 0, 8, 8, 0], [0, 8, 8, 0, 8, 8, 0, 4, 4, 0, 8, 8, 0, 4, 4, 0, 8, 0, 0, 8, 8, 0], [0, 8, 8, 0, 4, 0, 0, 4, 4, 0, 8, 8, 0, 4, 4, 0, 4, 4, 0, 8, 8, 0], [0, 8, 8, 0, 4, 4, 0, 4, 4, 0, 8, 0, 0, 4, 4, 0, 4, 4, 0, 8, 8, 0], [0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 8, 8, 0, 4, 4, 0, 4, 4, 0, 4, 4, 0], [0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 8, 8, 0, 4, 4, 0, 4, 4, 0, 4, 4, 0], [0, 4, 4, 0, 4, 4, 0, 4, 0, 0, 8, 8, 0, 4, 4, 0, 4, 0, 0, 4, 4, 0], [0, 4, 4, 0, 4, 0, 0, 4, 4, 0, 8, 0, 0, 0, 4, 0, 4, 4, 0, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 6, 6, 0, 8, 8, 8, 8, 0, 0, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 8, 0, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 0, 0, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 4, 0, 4, 4, 0], [0, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 0, 4, 8, 8, 8, 8, 0, 8, 4, 4, 4, 4, 4, 4, 0], [0, 4, 4, 4, 4, 4, 0, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 4, 4, 4, 0, 4, 4, 4, 4, 8, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 8, 8, 6, 6, 0, 8, 8, 8, 8, 0, 0, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 8, 0, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 4, 4, 4, 4, 0, 0, 4, 4, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 0, 4, 0], [0, 4, 4, 4, 0, 4, 4, 0, 0, 8, 8, 0, 8, 4, 4, 4, 4, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 4, 4, 4, 4, 0], [0, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 0], [0, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/7e02026e.json b/data/arc-agi/evaluation/7e02026e.json
deleted file mode 100644
index 107417b..0000000
--- a/data/arc-agi/evaluation/7e02026e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 0, 0, 8, 0, 0, 0, 8, 8, 0, 8, 0], [8, 0, 8, 0, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 8, 8, 8, 8, 8, 0, 8], [0, 8, 0, 8, 0, 0, 8, 0, 8, 8, 0, 0], [8, 0, 0, 8, 0, 0, 0, 8, 8, 8, 0, 0], [8, 8, 0, 8, 0, 8, 8, 8, 8, 8, 8, 0], [0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 8, 0], [0, 8, 8, 8, 8, 0, 0, 8, 0, 0, 8, 8], [0, 8, 0, 8, 8, 8, 8, 0, 0, 8, 8, 0], [0, 8, 8, 8, 8, 0, 0, 0, 8, 0, 0, 8], [8, 0, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 8, 0]], "output": [[8, 0, 0, 8, 3, 0, 0, 8, 8, 0, 8, 0], [8, 0, 8, 3, 3, 3, 8, 0, 0, 8, 0, 0], [0, 0, 0, 8, 3, 8, 8, 8, 8, 8, 0, 8], [0, 8, 0, 8, 0, 0, 8, 0, 8, 8, 0, 0], [8, 0, 0, 8, 0, 0, 0, 8, 8, 8, 0, 0], [8, 8, 0, 8, 0, 8, 8, 8, 8, 8, 8, 0], [0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 8, 0], [0, 8, 8, 8, 8, 0, 0, 8, 0, 0, 8, 8], [0, 8, 0, 8, 8, 8, 8, 0, 0, 8, 8, 0], [0, 8, 8, 8, 8, 0, 3, 0, 8, 0, 0, 8], [8, 0, 8, 0, 0, 3, 3, 3, 8, 8, 0, 0], [0, 8, 0, 8, 0, 8, 3, 8, 0, 0, 8, 0]]}, {"input": [[8, 0, 8, 8, 8, 8, 0, 8, 0, 8, 8, 8], [0, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8], [8, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8], [0, 8, 0, 0, 8, 8, 0, 0, 0, 8, 0, 0], [8, 0, 8, 8, 0, 0, 8, 8, 0, 0, 8, 8], [8, 8, 8, 0, 8, 8, 0, 0, 8, 8, 8, 8], [8, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 8, 0, 0, 0, 8, 8, 0], [0, 8, 0, 8, 0, 0, 0, 8, 8, 0, 8, 8], [8, 8, 8, 8, 0, 0, 0, 0, 8, 0, 8, 0], [0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 0], [8, 0, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 0, 8, 8, 8, 8, 0, 8, 0, 8, 8, 8], [0, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8], [8, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8], [0, 8, 0, 0, 8, 8, 0, 0, 0, 8, 0, 0], [8, 0, 8, 8, 0, 0, 8, 8, 0, 0, 8, 8], [8, 8, 8, 0, 8, 8, 0, 0, 8, 8, 8, 8], [8, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 8, 0, 0, 0, 8, 8, 0], [0, 8, 0, 8, 0, 3, 0, 8, 8, 0, 8, 8], [8, 8, 8, 8, 3, 3, 3, 0, 8, 0, 8, 0], [0, 8, 8, 3, 3, 3, 8, 8, 0, 0, 0, 0], [8, 0, 0, 8, 3, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[8, 8, 0, 0, 0, 8, 0, 0, 0, 0, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8], [8, 8, 8, 0, 0, 8, 8, 0, 0, 0, 8, 8], [0, 8, 0, 8, 8, 8, 8, 0, 0, 8, 8, 8], [0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 8, 0, 8, 8, 0, 0], [0, 0, 8, 8, 0, 8, 8, 0, 8, 8, 8, 0], [8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 0, 8], [8, 8, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8], [8, 8, 0, 0, 0, 8, 0, 8, 8, 8, 8, 8], [8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8], [8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 0, 8]], "output": [[8, 8, 0, 0, 0, 8, 0, 0, 0, 3, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 8], [8, 8, 8, 0, 0, 8, 8, 3, 3, 3, 8, 8], [0, 8, 0, 8, 8, 8, 8, 0, 3, 8, 8, 8], [0, 3, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [3, 3, 3, 8, 8, 0, 8, 0, 8, 8, 0, 0], [0, 3, 8, 8, 0, 8, 8, 0, 8, 8, 8, 0], [8, 8, 8, 3, 8, 8, 8, 8, 0, 8, 0, 8], [8, 8, 3, 3, 3, 8, 8, 8, 0, 8, 8, 8], [8, 8, 3, 3, 3, 8, 0, 8, 8, 8, 8, 8], [8, 0, 0, 3, 0, 8, 8, 8, 8, 8, 8, 8], [8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 0, 8]]}], "test": [{"input": [[8, 0, 8, 8, 8, 8, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 0, 8, 0, 8, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8], [8, 0, 0, 0, 8, 0, 8, 8, 0, 0, 8, 0], [0, 8, 8, 8, 0, 8, 0, 8, 8, 0, 8, 8], [0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 8, 0, 8, 8, 0, 8, 0, 0, 0], [0, 8, 0, 8, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 8, 0, 0, 8, 0, 8, 0, 0], [0, 0, 0, 0, 8, 0, 8, 8, 0, 8, 8, 0], [0, 0, 0, 8, 8, 0, 8, 8, 0, 8, 8, 8], [8, 8, 8, 0, 8, 0, 0, 0, 0, 8, 8, 8]], "output": [[8, 0, 8, 8, 8, 8, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 3, 8, 0, 8, 0, 0, 0], [8, 8, 8, 8, 3, 3, 3, 8, 8, 8, 8, 8], [8, 0, 0, 0, 8, 3, 8, 8, 0, 0, 8, 0], [0, 8, 8, 8, 0, 8, 0, 8, 8, 3, 8, 8], [0, 0, 8, 8, 8, 0, 0, 0, 3, 3, 3, 0], [8, 0, 8, 8, 0, 8, 8, 0, 8, 3, 0, 0], [0, 8, 0, 8, 0, 0, 8, 8, 8, 8, 8, 8], [0, 3, 3, 8, 8, 0, 0, 8, 0, 8, 0, 0], [3, 3, 3, 3, 8, 0, 8, 8, 0, 8, 8, 0], [0, 3, 3, 8, 8, 0, 8, 8, 0, 8, 8, 8], [8, 8, 8, 0, 8, 0, 0, 0, 0, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/7ee1c6ea.json b/data/arc-agi/evaluation/7ee1c6ea.json
deleted file mode 100644
index 7ec588b..0000000
--- a/data/arc-agi/evaluation/7ee1c6ea.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[9, 4, 0, 0, 4, 9, 0, 0, 9, 9], [4, 9, 9, 4, 9, 9, 0, 0, 9, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 9], [9, 4, 5, 9, 0, 9, 9, 5, 0, 4], [4, 4, 5, 0, 0, 4, 0, 5, 4, 4], [9, 4, 5, 4, 9, 0, 9, 5, 0, 0], [0, 9, 5, 0, 4, 0, 0, 5, 0, 4], [0, 4, 5, 5, 5, 5, 5, 5, 4, 4], [9, 0, 9, 9, 4, 0, 9, 0, 0, 0], [9, 9, 9, 0, 9, 4, 9, 9, 0, 0]], "output": [[9, 4, 0, 0, 4, 9, 0, 0, 9, 9], [4, 9, 9, 4, 9, 9, 0, 0, 9, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 9], [9, 4, 5, 4, 0, 4, 4, 5, 0, 4], [4, 4, 5, 0, 0, 9, 0, 5, 4, 4], [9, 4, 5, 9, 4, 0, 4, 5, 0, 0], [0, 9, 5, 0, 9, 0, 0, 5, 0, 4], [0, 4, 5, 5, 5, 5, 5, 5, 4, 4], [9, 0, 9, 9, 4, 0, 9, 0, 0, 0], [9, 9, 9, 0, 9, 4, 9, 9, 0, 0]]}, {"input": [[0, 0, 8, 6, 0, 6, 0, 8, 0, 8], [8, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 0, 8, 8, 6, 6, 0, 5, 8], [6, 5, 6, 6, 6, 8, 0, 6, 5, 8], [0, 5, 6, 6, 8, 6, 0, 6, 5, 8], [6, 5, 8, 8, 8, 6, 8, 0, 5, 8], [6, 5, 6, 8, 6, 8, 6, 8, 5, 8], [0, 5, 6, 0, 6, 8, 8, 8, 5, 8], [8, 5, 5, 5, 5, 5, 5, 5, 5, 6], [8, 8, 8, 0, 8, 8, 6, 0, 6, 6]], "output": [[0, 0, 8, 6, 0, 6, 0, 8, 0, 8], [8, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 0, 6, 6, 8, 8, 0, 5, 8], [6, 5, 8, 8, 8, 6, 0, 8, 5, 8], [0, 5, 8, 8, 6, 8, 0, 8, 5, 8], [6, 5, 6, 6, 6, 8, 6, 0, 5, 8], [6, 5, 8, 6, 8, 6, 8, 6, 5, 8], [0, 5, 8, 0, 8, 6, 6, 6, 5, 8], [8, 5, 5, 5, 5, 5, 5, 5, 5, 6], [8, 8, 8, 0, 8, 8, 6, 0, 6, 6]]}, {"input": [[0, 0, 3, 3, 3, 3, 2, 0, 2, 0], [3, 5, 5, 5, 5, 5, 5, 5, 5, 3], [3, 5, 3, 2, 2, 2, 2, 0, 5, 2], [0, 5, 0, 3, 0, 3, 2, 2, 5, 2], [3, 5, 2, 0, 2, 3, 2, 2, 5, 3], [3, 5, 3, 3, 0, 2, 3, 3, 5, 3], [3, 5, 3, 3, 3, 0, 3, 2, 5, 2], [0, 5, 3, 0, 3, 3, 3, 0, 5, 3], [0, 5, 5, 5, 5, 5, 5, 5, 5, 3], [2, 0, 3, 3, 3, 2, 3, 2, 3, 0]], "output": [[0, 0, 3, 3, 3, 3, 2, 0, 2, 0], [3, 5, 5, 5, 5, 5, 5, 5, 5, 3], [3, 5, 2, 3, 3, 3, 3, 0, 5, 2], [0, 5, 0, 2, 0, 2, 3, 3, 5, 2], [3, 5, 3, 0, 3, 2, 3, 3, 5, 3], [3, 5, 2, 2, 0, 3, 2, 2, 5, 3], [3, 5, 2, 2, 2, 0, 2, 3, 5, 2], [0, 5, 2, 0, 2, 2, 2, 0, 5, 3], [0, 5, 5, 5, 5, 5, 5, 5, 5, 3], [2, 0, 3, 3, 3, 2, 3, 2, 3, 0]]}], "test": [{"input": [[7, 0, 1, 1, 7, 0, 0, 7, 7, 7], [1, 5, 5, 5, 5, 5, 5, 5, 5, 7], [1, 5, 0, 0, 1, 0, 1, 7, 5, 7], [0, 5, 7, 1, 7, 0, 1, 7, 5, 1], [7, 5, 7, 7, 0, 1, 7, 1, 5, 1], [7, 5, 0, 1, 7, 0, 7, 7, 5, 1], [1, 5, 7, 7, 1, 1, 1, 1, 5, 0], [0, 5, 1, 7, 7, 7, 7, 0, 5, 7], [0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 1, 7, 1, 0, 7, 0, 0, 7, 7]], "output": [[7, 0, 1, 1, 7, 0, 0, 7, 7, 7], [1, 5, 5, 5, 5, 5, 5, 5, 5, 7], [1, 5, 0, 0, 7, 0, 7, 1, 5, 7], [0, 5, 1, 7, 1, 0, 7, 1, 5, 1], [7, 5, 1, 1, 0, 7, 1, 7, 5, 1], [7, 5, 0, 7, 1, 0, 1, 1, 5, 1], [1, 5, 1, 1, 7, 7, 7, 7, 5, 0], [0, 5, 7, 1, 1, 1, 1, 0, 5, 7], [0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 1, 7, 1, 0, 7, 0, 0, 7, 7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/817e6c09.json b/data/arc-agi/evaluation/817e6c09.json
deleted file mode 100644
index 61c8ed3..0000000
--- a/data/arc-agi/evaluation/817e6c09.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2]], "output": [[8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [8, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 2, 2, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 8, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2], [0, 2, 2, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 8, 8], [0, 2, 2, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2, 2], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 8, 8], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 2, 2, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 0, 2, 2, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2], [2, 2, 0, 0, 0, 2, 2], [2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8], [8, 8, 0, 0, 0, 8, 8], [8, 8, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0], [2, 2, 0, 0, 0], [2, 2, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 2, 2], [0, 0, 0, 2, 2], [0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [2, 2, 0, 0, 0], [2, 2, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 8, 8], [0, 0, 0, 8, 8], [0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2], [0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2, 2, 0, 0], [2, 2, 0, 0, 2, 2, 0, 0, 2, 2, 0, 2, 2, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 8, 8], [0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 8, 8], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 2, 2, 0, 0], [8, 8, 0, 0, 8, 8, 0, 0, 8, 8, 0, 2, 2, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/81c0276b.json b/data/arc-agi/evaluation/81c0276b.json
deleted file mode 100644
index a8160c4..0000000
--- a/data/arc-agi/evaluation/81c0276b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0], [0, 4, 4, 0, 6, 0, 6, 6, 0, 6, 0, 8, 8], [0, 4, 4, 0, 6, 0, 6, 6, 0, 6, 0, 8, 8], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0], [0, 8, 8, 0, 6, 0, 6, 6, 0, 6, 0, 3, 3], [0, 8, 8, 0, 6, 0, 6, 6, 0, 6, 0, 3, 3], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0], [0, 6, 6, 0, 6, 0, 8, 8, 0, 6, 0, 4, 4], [0, 6, 6, 0, 6, 0, 8, 8, 0, 6, 0, 4, 4], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0], [0, 6, 6, 0, 6, 0, 6, 6, 0, 6, 0, 6, 6], [0, 6, 6, 0, 6, 0, 6, 6, 0, 6, 0, 6, 6], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0]], "output": [[3, 0, 0], [4, 4, 0], [8, 8, 8]]}, {"input": [[0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 3, 3, 0, 3, 0, 1, 1, 0, 3, 0, 2, 2, 0, 3, 0], [0, 3, 3, 0, 3, 0, 1, 1, 0, 3, 0, 2, 2, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 2, 2, 0, 3, 0, 1, 1, 0, 3, 0, 3, 3, 0, 3, 0], [0, 2, 2, 0, 3, 0, 1, 1, 0, 3, 0, 3, 3, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 1, 1, 0, 3, 0, 3, 3, 0, 3, 0, 3, 3, 0, 3, 0], [0, 1, 1, 0, 3, 0, 3, 3, 0, 3, 0, 3, 3, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0]], "output": [[2, 2, 0], [1, 1, 1]]}, {"input": [[0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 4, 4, 0, 2, 0, 1, 1, 0, 2, 0, 1, 1, 0, 2, 0, 8, 8], [0, 4, 4, 0, 2, 0, 1, 1, 0, 2, 0, 1, 1, 0, 2, 0, 8, 8], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 2, 2, 0, 2, 0, 4, 4, 0, 2, 0, 2, 2, 0, 2, 0, 2, 2], [0, 2, 2, 0, 2, 0, 4, 4, 0, 2, 0, 2, 2, 0, 2, 0, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 4, 4, 0, 2, 0, 4, 4, 0, 2, 0, 2, 2, 0, 2, 0, 2, 2], [0, 4, 4, 0, 2, 0, 4, 4, 0, 2, 0, 2, 2, 0, 2, 0, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0]], "output": [[8, 0, 0, 0], [1, 1, 0, 0], [4, 4, 4, 4]]}], "test": [{"input": [[0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0], [0, 4, 4, 0, 8, 0, 6, 6, 0, 8, 0, 3, 3, 0, 8, 0, 2, 2, 0, 8, 0], [0, 4, 4, 0, 8, 0, 6, 6, 0, 8, 0, 3, 3, 0, 8, 0, 2, 2, 0, 8, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0], [0, 6, 6, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 3, 3, 0, 8, 0], [0, 6, 6, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 3, 3, 0, 8, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0], [0, 8, 8, 0, 8, 0, 6, 6, 0, 8, 0, 2, 2, 0, 8, 0, 8, 8, 0, 8, 0], [0, 8, 8, 0, 8, 0, 6, 6, 0, 8, 0, 2, 2, 0, 8, 0, 8, 8, 0, 8, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0], [0, 2, 2, 0, 8, 0, 2, 2, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0], [0, 2, 2, 0, 8, 0, 2, 2, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0]], "output": [[4, 0, 0, 0], [3, 3, 0, 0], [6, 6, 6, 0], [2, 2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/833dafe3.json b/data/arc-agi/evaluation/833dafe3.json
deleted file mode 100644
index 4e2bda2..0000000
--- a/data/arc-agi/evaluation/833dafe3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 0, 0], [3, 4, 0], [3, 4, 2]], "output": [[2, 4, 3, 3, 4, 2], [0, 4, 3, 3, 4, 0], [0, 0, 3, 3, 0, 0], [0, 0, 3, 3, 0, 0], [0, 4, 3, 3, 4, 0], [2, 4, 3, 3, 4, 2]]}, {"input": [[0, 6, 0, 0], [4, 6, 0, 3], [4, 6, 3, 0], [4, 3, 3, 0]], "output": [[0, 3, 3, 4, 4, 3, 3, 0], [0, 3, 6, 4, 4, 6, 3, 0], [3, 0, 6, 4, 4, 6, 0, 3], [0, 0, 6, 0, 0, 6, 0, 0], [0, 0, 6, 0, 0, 6, 0, 0], [3, 0, 6, 4, 4, 6, 0, 3], [0, 3, 6, 4, 4, 6, 3, 0], [0, 3, 3, 4, 4, 3, 3, 0]]}], "test": [{"input": [[0, 0, 1, 0, 0, 0, 0, 0], [0, 2, 1, 0, 9, 0, 0, 0], [0, 2, 1, 0, 9, 0, 0, 0], [0, 2, 1, 0, 9, 1, 1, 1], [9, 2, 0, 0, 9, 0, 0, 0], [9, 2, 0, 0, 9, 0, 0, 9], [1, 2, 0, 0, 9, 0, 0, 9], [9, 9, 0, 0, 9, 0, 0, 9]], "output": [[9, 0, 0, 9, 0, 0, 9, 9, 9, 9, 0, 0, 9, 0, 0, 9], [9, 0, 0, 9, 0, 0, 2, 1, 1, 2, 0, 0, 9, 0, 0, 9], [9, 0, 0, 9, 0, 0, 2, 9, 9, 2, 0, 0, 9, 0, 0, 9], [0, 0, 0, 9, 0, 0, 2, 9, 9, 2, 0, 0, 9, 0, 0, 0], [1, 1, 1, 9, 0, 1, 2, 0, 0, 2, 1, 0, 9, 1, 1, 1], [0, 0, 0, 9, 0, 1, 2, 0, 0, 2, 1, 0, 9, 0, 0, 0], [0, 0, 0, 9, 0, 1, 2, 0, 0, 2, 1, 0, 9, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 9, 0, 1, 2, 0, 0, 2, 1, 0, 9, 0, 0, 0], [0, 0, 0, 9, 0, 1, 2, 0, 0, 2, 1, 0, 9, 0, 0, 0], [1, 1, 1, 9, 0, 1, 2, 0, 0, 2, 1, 0, 9, 1, 1, 1], [0, 0, 0, 9, 0, 0, 2, 9, 9, 2, 0, 0, 9, 0, 0, 0], [9, 0, 0, 9, 0, 0, 2, 9, 9, 2, 0, 0, 9, 0, 0, 9], [9, 0, 0, 9, 0, 0, 2, 1, 1, 2, 0, 0, 9, 0, 0, 9], [9, 0, 0, 9, 0, 0, 9, 9, 9, 9, 0, 0, 9, 0, 0, 9]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/845d6e51.json b/data/arc-agi/evaluation/845d6e51.json
deleted file mode 100644
index e186ef1..0000000
--- a/data/arc-agi/evaluation/845d6e51.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 2, 0, 0, 1, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 1, 0, 0, 5, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 0, 0, 1, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 1, 0, 0, 5, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 2, 0, 4, 4, 0, 1, 1, 1, 0, 5, 0, 0, 3, 0, 0], [0, 2, 0, 4, 0, 0, 0, 1, 0, 0, 5, 0, 0, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 3, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 3, 3, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 3, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]], "output": [[0, 2, 0, 4, 4, 0, 1, 1, 1, 0, 5, 0, 0, 1, 0, 0], [0, 2, 0, 4, 0, 0, 0, 1, 0, 0, 5, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 4, 4, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 1, 1, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]]}, {"input": [[2, 2, 0, 0, 7, 0, 0, 5, 0, 0], [2, 0, 0, 7, 7, 7, 0, 5, 0, 0], [2, 2, 0, 0, 7, 0, 0, 5, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 3, 0, 3, 0, 0], [0, 0, 3, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0]], "output": [[2, 2, 0, 0, 7, 0, 0, 5, 0, 0], [2, 0, 0, 7, 7, 7, 0, 5, 0, 0], [2, 2, 0, 0, 7, 0, 0, 5, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 0, 2, 0, 2, 0, 0], [0, 0, 7, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0]]}], "test": [{"input": [[0, 2, 0, 1, 0, 0, 4, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0], [2, 2, 0, 1, 1, 0, 4, 0, 0, 8, 8, 5, 0, 0, 3, 0, 0], [0, 0, 0, 1, 0, 0, 4, 4, 0, 0, 0, 5, 0, 0, 3, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 0, 1, 0, 0, 4, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0], [2, 2, 0, 1, 1, 0, 4, 0, 0, 8, 8, 5, 0, 0, 8, 0, 0], [0, 0, 0, 1, 0, 0, 4, 4, 0, 0, 0, 5, 0, 0, 8, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/84db8fc4.json b/data/arc-agi/evaluation/84db8fc4.json
deleted file mode 100644
index 051a0b9..0000000
--- a/data/arc-agi/evaluation/84db8fc4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 1, 0, 3, 3, 3, 3, 3, 0, 3], [1, 0, 0, 3, 3, 0, 1, 3, 1, 1], [0, 1, 1, 1, 0, 3, 0, 0, 0, 3], [0, 1, 3, 3, 0, 3, 1, 3, 0, 0], [1, 3, 1, 1, 0, 1, 3, 0, 0, 0], [0, 1, 1, 3, 0, 0, 3, 1, 1, 3], [3, 0, 1, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 3, 3, 1, 0, 0, 1, 3], [3, 3, 1, 0, 0, 1, 1, 0, 0, 1], [0, 1, 3, 0, 1, 1, 1, 1, 1, 3]], "output": [[3, 1, 2, 3, 3, 3, 3, 3, 2, 3], [1, 2, 2, 3, 3, 5, 1, 3, 1, 1], [2, 1, 1, 1, 5, 3, 2, 2, 2, 3], [2, 1, 3, 3, 5, 3, 1, 3, 2, 2], [1, 3, 1, 1, 5, 1, 3, 2, 2, 2], [2, 1, 1, 3, 5, 5, 3, 1, 1, 3], [3, 2, 1, 5, 5, 5, 5, 5, 3, 2], [2, 2, 2, 3, 3, 1, 5, 5, 1, 3], [3, 3, 1, 2, 2, 1, 1, 5, 5, 1], [2, 1, 3, 2, 1, 1, 1, 1, 1, 3]]}, {"input": [[0, 3, 3, 0, 3, 1, 0, 1, 1, 3], [1, 3, 0, 0, 1, 1, 3, 1, 0, 0], [1, 0, 1, 0, 0, 1, 3, 0, 3, 3], [0, 0, 3, 3, 1, 3, 3, 3, 0, 1], [0, 0, 3, 3, 0, 0, 0, 0, 3, 1], [3, 3, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 3, 3, 3, 0, 3, 0, 3, 3], [3, 1, 1, 1, 3, 0, 1, 1, 1, 3], [0, 0, 1, 3, 1, 0, 0, 3, 3, 3], [0, 3, 3, 0, 3, 3, 1, 3, 1, 1]], "output": [[2, 3, 3, 2, 3, 1, 2, 1, 1, 3], [1, 3, 2, 2, 1, 1, 3, 1, 2, 2], [1, 2, 1, 2, 2, 1, 3, 5, 3, 3], [2, 2, 3, 3, 1, 3, 3, 3, 5, 1], [2, 2, 3, 3, 5, 5, 5, 5, 3, 1], [3, 3, 5, 5, 3, 5, 5, 5, 3, 2], [2, 2, 3, 3, 3, 5, 3, 5, 3, 3], [3, 1, 1, 1, 3, 5, 1, 1, 1, 3], [2, 2, 1, 3, 1, 5, 5, 3, 3, 3], [2, 3, 3, 2, 3, 3, 1, 3, 1, 1]]}, {"input": [[0, 3, 0, 3, 0, 0, 1, 3, 3, 1], [0, 1, 1, 1, 1, 3, 0, 0, 1, 1], [0, 3, 1, 0, 1, 0, 3, 0, 3, 0], [3, 3, 3, 0, 0, 3, 3, 3, 0, 0], [1, 1, 3, 1, 3, 0, 0, 0, 1, 0], [1, 0, 1, 0, 3, 0, 3, 3, 0, 3], [0, 0, 0, 0, 1, 1, 3, 0, 1, 0], [3, 0, 1, 3, 3, 1, 0, 3, 0, 0], [1, 1, 0, 0, 1, 3, 3, 1, 1, 3], [0, 0, 1, 1, 0, 1, 0, 0, 0, 0]], "output": [[2, 3, 2, 3, 2, 2, 1, 3, 3, 1], [2, 1, 1, 1, 1, 3, 5, 5, 1, 1], [2, 3, 1, 5, 1, 5, 3, 5, 3, 2], [3, 3, 3, 5, 5, 3, 3, 3, 2, 2], [1, 1, 3, 1, 3, 5, 5, 5, 1, 2], [1, 2, 1, 2, 3, 5, 3, 3, 5, 3], [2, 2, 2, 2, 1, 1, 3, 5, 1, 2], [3, 2, 1, 3, 3, 1, 5, 3, 2, 2], [1, 1, 5, 5, 1, 3, 3, 1, 1, 3], [2, 2, 1, 1, 2, 1, 2, 2, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 3, 1, 1, 3], [0, 0, 3, 1, 0, 1, 1, 0, 0, 3], [0, 1, 0, 0, 1, 3, 3, 1, 3, 1], [0, 1, 3, 0, 0, 0, 0, 0, 1, 0], [0, 1, 3, 1, 0, 1, 0, 3, 0, 1], [1, 0, 0, 3, 1, 3, 1, 0, 1, 0], [1, 0, 0, 3, 0, 1, 0, 3, 0, 0], [0, 1, 0, 1, 1, 0, 3, 1, 0, 3], [0, 3, 1, 1, 3, 0, 0, 3, 1, 0], [1, 1, 3, 3, 0, 0, 1, 3, 0, 3]], "output": [[2, 2, 2, 2, 2, 2, 3, 1, 1, 3], [2, 2, 3, 1, 2, 1, 1, 5, 5, 3], [2, 1, 5, 5, 1, 3, 3, 1, 3, 1], [2, 1, 3, 5, 5, 5, 5, 5, 1, 2], [2, 1, 3, 1, 5, 1, 5, 3, 5, 1], [1, 5, 5, 3, 1, 3, 1, 5, 1, 2], [1, 5, 5, 3, 5, 1, 5, 3, 2, 2], [2, 1, 5, 1, 1, 2, 3, 1, 2, 3], [2, 3, 1, 1, 3, 2, 2, 3, 1, 2], [1, 1, 3, 3, 2, 2, 1, 3, 2, 3]]}], "test": [{"input": [[1, 0, 0, 1, 0, 1, 1, 1, 1, 3], [0, 0, 0, 3, 0, 3, 0, 1, 0, 0], [0, 1, 0, 3, 3, 0, 1, 3, 3, 3], [3, 1, 3, 1, 1, 0, 3, 3, 0, 1], [1, 1, 3, 0, 1, 3, 0, 1, 1, 0], [0, 3, 0, 1, 3, 0, 1, 1, 0, 3], [1, 1, 3, 0, 0, 3, 0, 3, 3, 3], [3, 1, 1, 1, 1, 3, 1, 0, 3, 1], [3, 0, 0, 0, 3, 3, 1, 0, 1, 1], [1, 0, 3, 1, 1, 0, 0, 0, 1, 0]], "output": [[1, 2, 2, 1, 2, 1, 1, 1, 1, 3], [2, 2, 2, 3, 2, 3, 5, 1, 2, 2], [2, 1, 2, 3, 3, 5, 1, 3, 3, 3], [3, 1, 3, 1, 1, 5, 3, 3, 5, 1], [1, 1, 3, 5, 1, 3, 5, 1, 1, 2], [2, 3, 5, 1, 3, 5, 1, 1, 5, 3], [1, 1, 3, 5, 5, 3, 5, 3, 3, 3], [3, 1, 1, 1, 1, 3, 1, 2, 3, 1], [3, 2, 2, 2, 3, 3, 1, 2, 1, 1], [1, 2, 3, 1, 1, 2, 2, 2, 1, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/84f2aca1.json b/data/arc-agi/evaluation/84f2aca1.json
deleted file mode 100644
index 1ff6a4b..0000000
--- a/data/arc-agi/evaluation/84f2aca1.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 3, 0, 3, 0, 0, 0], [8, 0, 0, 8, 0, 0, 0, 3, 3, 3, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 4, 5, 4, 0, 0, 0, 2, 5, 2, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 7, 7, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 3, 5, 3, 0, 0, 0], [8, 7, 7, 8, 0, 0, 0, 3, 3, 3, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0], [0, 8, 0, 8, 0, 0], [0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0], [0, 8, 5, 8, 0, 0], [0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [4, 4, 4, 0, 0, 0], [4, 0, 4, 0, 0, 0], [4, 0, 4, 0, 0, 0], [4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [4, 4, 4, 0, 0, 0], [4, 7, 4, 0, 0, 0], [4, 7, 4, 0, 0, 0], [4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 4, 0, 0, 3, 3, 3, 0, 0], [0, 4, 4, 4, 4, 0, 0, 3, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 2, 2, 2, 2], [0, 0, 0, 3, 0, 3, 0, 0, 2, 0, 0, 2], [0, 0, 0, 3, 3, 3, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 4, 7, 7, 4, 0, 0, 3, 3, 3, 0, 0], [0, 4, 4, 4, 4, 0, 0, 3, 7, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 7, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 2, 2, 2, 2], [0, 0, 0, 3, 5, 3, 0, 0, 2, 7, 7, 2], [0, 0, 0, 3, 3, 3, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 5, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 2, 2, 2, 2, 0, 0], [0, 4, 4, 4, 0, 0, 2, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 0, 2, 2, 2, 0, 0, 0, 0, 0], [3, 0, 3, 0, 2, 0, 2, 0, 0, 0, 0, 0], [3, 0, 3, 0, 2, 2, 2, 0, 0, 3, 3, 3], [3, 3, 3, 0, 0, 0, 0, 0, 0, 3, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 5, 4, 0, 0, 2, 2, 2, 2, 0, 0], [0, 4, 4, 4, 0, 0, 2, 7, 7, 2, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 0, 2, 2, 2, 0, 0, 0, 0, 0], [3, 7, 3, 0, 2, 5, 2, 0, 0, 0, 0, 0], [3, 7, 3, 0, 2, 2, 2, 0, 0, 3, 3, 3], [3, 3, 3, 0, 0, 0, 0, 0, 0, 3, 5, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/8597cfd7.json b/data/arc-agi/evaluation/8597cfd7.json
deleted file mode 100644
index 8d09c85..0000000
--- a/data/arc-agi/evaluation/8597cfd7.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0]], "output": [[4, 4], [4, 4]]}, {"input": [[0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 4, 0, 0]], "output": [[2, 2], [2, 2]]}, {"input": [[0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0]], "output": [[2, 2], [2, 2]]}, {"input": [[0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2], [2, 2]]}], "test": [{"input": [[0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 4], [4, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/85b81ff1.json b/data/arc-agi/evaluation/85b81ff1.json
deleted file mode 100644
index 7dfd330..0000000
--- a/data/arc-agi/evaluation/85b81ff1.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 0, 0, 6, 6, 0, 6, 6, 0, 6, 0, 0, 6, 0], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 0, 0, 6, 0, 0, 6, 0, 0, 6, 0, 0, 6, 0], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 0, 0, 6, 0], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 6, 0, 6, 0, 0, 6, 0, 0, 6, 0, 0, 6, 0], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 6, 0, 6, 0, 0, 6, 6, 0, 6, 0, 0, 6, 6], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 0, 0, 6, 0, 0, 6, 6, 0, 6, 0, 0, 6, 0], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6]], "output": [[6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 0, 0, 6, 0, 0, 6, 6, 0, 6, 0, 0, 6, 6], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 0, 0, 6, 0, 0, 6, 0, 0, 6, 0, 0, 6, 0], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 0, 0, 6, 0, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 0, 0, 6, 0, 0, 6, 0, 0, 6, 6, 0, 6, 0], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 0, 0, 6, 6, 0, 6, 0, 0, 6, 6, 0, 6, 6], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 0, 0, 6, 0, 0, 6, 0, 0, 6, 0, 0, 6, 6], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6]]}, {"input": [[7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7], [7, 7, 0, 7, 0, 0, 7, 7, 0, 7, 0, 0, 7, 7], [7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7], [7, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 0, 7, 7], [7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7], [7, 7, 0, 7, 0, 0, 7, 7, 0, 7, 7, 0, 7, 7], [7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7], [7, 0, 0, 7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 0], [7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7], [7, 0, 0, 7, 0, 0, 7, 7, 0, 7, 0, 0, 7, 7], [7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7], [7, 7, 0, 7, 0, 0, 7, 7, 0, 7, 0, 0, 7, 0], [7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7]], "output": [[7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7], [7, 0, 0, 7, 0, 0, 7, 7, 0, 7, 7, 0, 7, 7], [7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7], [7, 0, 0, 7, 0, 0, 7, 0, 0, 7, 7, 0, 7, 0], [7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7], [7, 0, 0, 7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7], [7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7], [7, 7, 0, 7, 7, 0, 7, 0, 0, 7, 0, 0, 7, 7], [7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7], [7, 0, 0, 7, 0, 0, 7, 0, 0, 7, 7, 0, 7, 7], [7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7], [7, 0, 0, 7, 0, 0, 7, 7, 0, 7, 0, 0, 7, 7], [7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7, 0, 7, 7]]}, {"input": [[1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1]], "output": [[1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1]]}, {"input": [[1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1]], "output": [[1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1]]}], "test": [{"input": [[6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 0, 0, 6, 6, 0, 6, 0, 0, 6, 6, 0, 6, 0], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 6, 0, 6, 0, 0, 6, 6, 0, 6, 0, 0, 6, 0], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 0, 0, 6, 0], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 6, 0, 6, 0, 0, 6, 6, 0, 6, 0, 0, 6, 0], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 6, 0, 6, 0, 0, 6, 6, 0, 6, 0, 0, 6, 6], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 0, 0, 6, 6, 0, 6, 6, 0, 6, 0, 0, 6, 6], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6]], "output": [[6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 6, 0, 6, 0, 0, 6, 6, 0, 6, 0, 0, 6, 0], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 0, 0, 6, 0, 0, 6, 0, 0, 6, 6, 0, 6, 6], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 0, 0, 6, 0, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 0, 0, 6, 0, 0, 6, 0, 0, 6, 6, 0, 6, 6], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 0, 0, 6, 6, 0, 6, 0, 0, 6, 6, 0, 6, 6], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 0, 0, 6, 6, 0, 6, 6, 0, 6, 0, 0, 6, 6], [6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/85fa5666.json b/data/arc-agi/evaluation/85fa5666.json
deleted file mode 100644
index a0413ac..0000000
--- a/data/arc-agi/evaluation/85fa5666.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 6, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 8, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 0, 0, 0, 0, 0, 0, 3, 0], [0, 8, 0, 0, 0, 0, 3, 0, 0], [0, 0, 8, 0, 0, 3, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 7, 0, 0, 6, 0, 0, 0], [0, 7, 0, 0, 0, 0, 6, 0, 0], [7, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6]]}, {"input": [[0, 0, 0, 0, 0, 0, 8, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0], [0, 8, 0, 0, 3, 0, 0, 0, 3, 0, 0, 8], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 3, 0, 3, 0, 0, 8, 0, 8], [0, 0, 0, 0, 0, 3, 0, 2, 2, 0, 8, 0], [0, 0, 0, 0, 0, 0, 3, 2, 2, 8, 0, 0], [0, 0, 0, 0, 0, 0, 7, 3, 8, 6, 0, 0], [0, 0, 0, 0, 0, 7, 0, 8, 3, 0, 6, 6], [0, 0, 0, 0, 7, 0, 8, 0, 0, 2, 2, 6], [7, 0, 0, 7, 0, 8, 0, 0, 0, 2, 2, 0], [0, 7, 7, 0, 8, 0, 0, 0, 8, 0, 0, 7], [0, 0, 2, 2, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 8, 0, 0, 0, 0, 0], [0, 6, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 6, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [8, 0, 0, 7, 0, 0, 0, 2, 2, 0, 0, 0], [0, 2, 2, 0, 0, 0, 8, 0, 0, 3, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 0, 0, 0, 0, 8, 8, 0, 0, 6, 0, 0], [0, 3, 0, 0, 8, 0, 0, 2, 2, 0, 0, 0], [6, 0, 3, 8, 0, 0, 0, 2, 2, 0, 0, 0], [0, 2, 2, 3, 0, 0, 3, 0, 0, 7, 0, 0], [0, 2, 2, 0, 3, 3, 0, 0, 0, 0, 7, 6], [3, 0, 0, 7, 3, 3, 0, 0, 0, 0, 6, 7], [0, 0, 0, 3, 7, 0, 3, 0, 0, 6, 0, 0], [0, 0, 3, 0, 0, 7, 0, 2, 2, 0, 0, 0], [0, 3, 0, 0, 0, 0, 7, 2, 2, 0, 0, 0], [3, 0, 0, 0, 0, 0, 8, 7, 0, 7, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 7, 0, 7, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 7, 0, 7]]}, {"input": [[3, 0, 0, 7, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0], [6, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 7, 0], [0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 8, 0, 0, 3, 0]], "output": [[6, 0, 0, 3, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0], [8, 0, 8, 7, 0, 0, 0, 6], [0, 0, 0, 8, 7, 0, 6, 0], [0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 3, 0, 0, 7, 0]]}], "test": [{"input": [[0, 0, 3, 0, 0, 8, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 7, 0, 0, 6, 0, 0], [7, 0, 0, 6, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0], [8, 0, 0, 3, 0, 0, 0, 0]], "output": [[0, 0, 7, 0, 0, 3, 0, 7], [0, 0, 0, 2, 2, 0, 7, 0], [0, 0, 0, 2, 2, 7, 0, 0], [0, 0, 6, 0, 7, 8, 0, 0], [8, 6, 0, 7, 0, 0, 8, 0], [6, 2, 2, 0, 0, 0, 0, 8], [0, 2, 2, 0, 0, 0, 0, 0], [3, 0, 0, 6, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/8719f442.json b/data/arc-agi/evaluation/8719f442.json
deleted file mode 100644
index 1dbb730..0000000
--- a/data/arc-agi/evaluation/8719f442.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 5, 0], [5, 5, 5], [0, 5, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 5, 0], [5, 5, 0], [0, 0, 5]], "output": [[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [5, 5, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0]]}, {"input": [[5, 0, 0], [0, 5, 0], [0, 0, 5]], "output": [[0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0]]}], "test": [{"input": [[0, 5, 0], [0, 5, 0], [5, 0, 5]], "output": [[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 5, 0], [0, 5, 0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 5, 0], [5, 0, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0, 5], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 5, 0, 5, 0, 0, 0, 5, 0, 5, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/88207623.json b/data/arc-agi/evaluation/88207623.json
deleted file mode 100644
index 48e71cc..0000000
--- a/data/arc-agi/evaluation/88207623.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 2, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 2, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 2, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 2, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 2, 3, 0, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 2, 0, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 4, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 2, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 0, 4, 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 5, 0, 5, 5, 0, 2, 0, 4, 4, 0, 4, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 2, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 2, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 2, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 0, 4, 2, 7, 0, 7, 7, 7, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 2, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 2, 0, 0, 0, 0, 0, 0, 0, 4, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 2, 0, 0, 8, 0], [0, 0, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 2, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 4, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 2, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 2, 1, 1, 1, 1, 0, 0, 0, 4, 2, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 2, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 2, 8, 8, 8, 0], [0, 0, 4, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 2, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 2, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 2, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 4, 4, 2, 7, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 2, 0, 7, 0, 0, 0, 0, 3, 2, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/891232d6.json b/data/arc-agi/evaluation/891232d6.json
deleted file mode 100644
index e452621..0000000
--- a/data/arc-agi/evaluation/891232d6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 0], [7, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0], [0, 7, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0], [0, 7, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 7, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [7, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 7, 7, 7, 8, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 8, 2, 0, 0, 0], [7, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 7, 0], [0, 7, 0, 0, 0, 0, 0, 7, 7, 8, 7, 7, 7, 7, 2, 0, 0, 0, 0], [0, 7, 0, 0, 7, 0, 0, 0, 0, 4, 2, 2, 2, 2, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 0, 0, 0, 8, 2, 0, 0, 0, 0, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 2, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 7, 7, 7, 7, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 2, 0, 0, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 7, 7, 7, 7, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0], [0, 4, 2, 2, 2, 2, 2, 3, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 7, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 7, 7, 7, 7, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0], [0, 7, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 7, 0, 0, 7, 7, 7, 7, 7, 0, 7, 7, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0], [7, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 7, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 7, 0, 0, 7, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 7, 7, 7, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [7, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 7, 7, 7, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0]], "output": [[0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 6, 7, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0], [0, 7, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 2, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 7, 0, 0, 7, 7, 7, 7, 7, 0, 7, 7, 7, 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 2, 0, 7, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0], [7, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 2, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 7, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 7, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 7, 2, 0, 7, 0, 0, 0, 0, 0, 7, 0, 7, 0, 0, 7, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 4, 2, 2, 3, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 7, 0, 2, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 8, 7, 7, 6, 7, 0, 0, 0, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 7, 4, 2, 2, 3, 0, 0, 7, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [7, 0, 4, 3, 0, 0, 0, 7, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 7, 7, 7, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 8, 7, 7, 7, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 2, 2, 3, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 7, 8, 7, 7, 7, 2, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 2, 2, 3, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 7, 7, 8, 7, 7, 7, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 4, 2, 2, 2, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 7, 7, 7, 8, 7, 7, 7, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 2, 2, 2, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 8, 7, 7, 7, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 4, 2, 2, 2, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 7, 8, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 4, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 7, 0, 0, 0], [0, 0, 0, 7, 7, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 7, 0, 0, 0], [0, 0, 0, 7, 7, 6, 7, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 7, 8, 7, 7, 2, 0, 0, 0, 0], [0, 0, 4, 2, 2, 3, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 7, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 7, 0, 0, 0, 7, 0, 0, 7, 7, 7, 7, 7, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 7, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 7, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 6, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 7, 0, 0, 0]], "output": [[0, 0, 7, 0, 0, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0, 2, 0], [0, 0, 7, 0, 0, 0, 2, 0, 0, 0, 0, 0, 8, 6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 2, 7, 0, 7, 0, 7, 4, 3, 0, 7, 0, 0, 7, 7, 7, 8, 7, 2, 0], [0, 0, 7, 0, 0, 0, 2, 0, 0, 7, 0, 8, 2, 0, 7, 7, 0, 0, 0, 0, 0, 4, 2, 3, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 7, 8, 7, 7, 2, 0, 0, 7, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 4, 2, 2, 3, 0, 7, 0, 0, 2, 7, 7, 7, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 7, 7, 7, 7, 8, 7, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 7, 0, 0, 0, 0, 4, 2, 3, 0, 0, 0], [7, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 8, 2, 0, 0, 0, 8, 7, 7, 7, 2, 0, 0, 0, 0, 0, 0, 0, 2, 7, 0, 0, 0, 0], [0, 0, 4, 3, 0, 7, 0, 4, 2, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [7, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 2, 7, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 7, 7, 7, 7, 0, 0, 0, 0, 7, 0, 0, 2, 0, 0, 0, 7, 0], [0, 0, 2, 0, 0, 7, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 7, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 7, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 2, 7, 7, 7, 7, 0], [0, 0, 2, 0, 0, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 8, 2, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 4, 3, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 7, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 6, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 7, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/896d5239.json b/data/arc-agi/evaluation/896d5239.json
deleted file mode 100644
index 36225f6..0000000
--- a/data/arc-agi/evaluation/896d5239.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1], [1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1], [1, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 3, 1, 3, 0, 0, 0, 0, 0, 0], [1, 0, 3, 1, 1, 1, 3, 0, 1, 0, 1, 0], [1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0], [1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 3, 0, 1, 0, 1, 0], [0, 0, 0, 3, 1, 0, 1, 1, 0, 0, 1, 0], [1, 0, 3, 1, 0, 1, 0, 0, 1, 0, 0, 1], [0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1]], "output": [[0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1], [1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1], [1, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 3, 8, 3, 0, 0, 0, 0, 0, 0], [1, 0, 3, 8, 8, 8, 3, 0, 1, 0, 1, 0], [1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0], [1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 3, 8, 3, 0, 1, 0, 1, 0], [0, 0, 0, 3, 8, 8, 8, 8, 0, 0, 1, 0], [1, 0, 3, 8, 8, 8, 8, 8, 8, 0, 0, 1], [0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1]]}, {"input": [[1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0], [1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1], [1, 0, 0, 0, 0, 0, 3, 0, 1, 0, 1, 1], [1, 0, 0, 1, 0, 3, 0, 1, 1, 1, 1, 1], [1, 1, 1, 0, 3, 1, 0, 0, 1, 0, 1, 1], [0, 1, 1, 3, 1, 1, 1, 1, 0, 1, 0, 0], [0, 1, 0, 0, 3, 1, 0, 0, 1, 0, 0, 1], [1, 1, 1, 1, 1, 3, 0, 0, 1, 0, 0, 1], [0, 0, 1, 0, 0, 1, 3, 0, 1, 0, 1, 1], [1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0], [1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0], [1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0], [0, 1, 0, 0, 3, 1, 1, 0, 0, 0, 0, 1], [0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1], [0, 1, 3, 0, 0, 0, 3, 0, 0, 1, 1, 1]], "output": [[1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0], [1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1], [1, 0, 0, 0, 0, 0, 3, 0, 1, 0, 1, 1], [1, 0, 0, 1, 0, 3, 8, 1, 1, 1, 1, 1], [1, 1, 1, 0, 3, 8, 8, 0, 1, 0, 1, 1], [0, 1, 1, 3, 8, 8, 8, 1, 0, 1, 0, 0], [0, 1, 0, 0, 3, 8, 8, 0, 1, 0, 0, 1], [1, 1, 1, 1, 1, 3, 8, 0, 1, 0, 0, 1], [0, 0, 1, 0, 0, 1, 3, 0, 1, 0, 1, 1], [1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0], [1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0], [1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0], [0, 1, 0, 0, 3, 1, 1, 0, 0, 0, 0, 1], [0, 1, 0, 8, 8, 8, 1, 1, 0, 0, 1, 1], [0, 1, 3, 8, 8, 8, 3, 0, 0, 1, 1, 1]]}, {"input": [[1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1], [1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 0, 0, 3, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 3, 1, 3, 0, 1, 1, 0, 0, 1, 1, 1, 0], [0, 1, 0, 3, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0], [1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1], [0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1], [1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0], [1, 0, 0, 1, 0, 0, 1, 1, 3, 0, 0, 0, 3, 1, 1, 0], [0, 1, 0, 1, 1, 0, 1, 3, 1, 1, 1, 0, 0, 3, 1, 3], [1, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 1, 0, 0, 3, 0], [0, 0, 1, 0, 1, 3, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 1, 3, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1], [0, 1, 1, 1, 0, 0, 1, 1, 3, 1, 0, 1, 0, 1, 1, 1]], "output": [[1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1], [1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 0, 0, 3, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 3, 8, 3, 0, 1, 1, 0, 0, 1, 1, 1, 0], [0, 1, 0, 3, 8, 8, 8, 8, 0, 1, 0, 1, 1, 1, 0, 0], [1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1], [0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1], [1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0], [1, 0, 0, 1, 0, 0, 1, 1, 3, 0, 0, 0, 3, 8, 8, 8], [0, 1, 0, 1, 1, 0, 1, 3, 8, 1, 1, 0, 0, 3, 8, 3], [1, 0, 0, 0, 0, 1, 3, 8, 8, 0, 0, 1, 0, 0, 3, 0], [0, 0, 1, 0, 1, 3, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 1, 3, 8, 8, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 8, 8, 0, 0, 0, 0, 1, 1, 1], [0, 1, 1, 1, 0, 0, 1, 1, 3, 1, 0, 1, 0, 1, 1, 1]]}], "test": [{"input": [[0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0], [1, 0, 1, 3, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0], [0, 3, 0, 1, 0, 3, 1, 0, 1, 1, 0, 1, 0, 3, 1, 0, 0, 3], [0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 3, 0, 3, 0], [0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 3, 1, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0], [1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0], [1, 3, 0, 0, 1, 1, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 3, 0, 0, 0, 1, 1, 3, 0, 1, 1, 0, 1, 0, 0, 1, 0], [0, 0, 0, 3, 0, 1, 1, 3, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0], [0, 0, 3, 1, 1, 0, 3, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0], [0, 1, 1, 0, 0, 1, 1, 3, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0], [1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1]], "output": [[0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0], [1, 0, 1, 3, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0], [0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0], [0, 3, 8, 8, 8, 3, 1, 0, 1, 1, 0, 1, 0, 3, 8, 8, 8, 3], [0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 3, 8, 3, 0], [0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 3, 1, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0], [1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0], [1, 3, 0, 0, 1, 1, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 3, 0, 0, 0, 1, 1, 3, 8, 1, 1, 0, 1, 0, 0, 1, 0], [0, 8, 8, 3, 0, 1, 1, 3, 8, 8, 0, 0, 1, 1, 1, 0, 1, 0], [0, 8, 3, 1, 1, 0, 3, 8, 8, 8, 0, 1, 0, 1, 1, 0, 0, 0], [0, 8, 1, 0, 0, 1, 1, 3, 8, 8, 1, 1, 1, 1, 1, 0, 1, 0], [1, 1, 1, 1, 1, 0, 1, 0, 8, 8, 0, 0, 0, 0, 0, 1, 0, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/8a371977.json b/data/arc-agi/evaluation/8a371977.json
deleted file mode 100644
index d63abce..0000000
--- a/data/arc-agi/evaluation/8a371977.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1], [1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1], [1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1], [1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 2, 1, 1], [1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 2, 1, 1], [1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 2, 1, 1], [1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 2, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1], [1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1], [1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1], [1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1], [1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1], [1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 2, 2, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 2, 2, 2, 1], [1, 2, 2, 2, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 2, 2, 2, 1], [1, 2, 2, 2, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 2, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 2, 2, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 2, 2, 2, 1], [1, 2, 2, 2, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 2, 2, 2, 1], [1, 2, 2, 2, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 2, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 2, 2, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 2, 2, 2, 1], [1, 2, 2, 2, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 2, 2, 2, 1], [1, 2, 2, 2, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 2, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 2, 2, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 2, 2, 2, 1], [1, 2, 2, 2, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 2, 2, 2, 1], [1, 2, 2, 2, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 2, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1], [1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1], [1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}], "test": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 1, 1, 2, 2, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1], [1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/8b28cd80.json b/data/arc-agi/evaluation/8b28cd80.json
deleted file mode 100644
index 8f7a1eb..0000000
--- a/data/arc-agi/evaluation/8b28cd80.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0], [0, 4, 0], [0, 0, 0]], "output": [[4, 0, 4, 4, 4, 4, 4, 4, 4], [4, 0, 4, 0, 0, 0, 0, 0, 4], [4, 0, 4, 0, 4, 4, 4, 0, 4], [4, 0, 4, 0, 4, 0, 4, 0, 4], [4, 0, 4, 0, 4, 0, 4, 0, 4], [4, 0, 4, 0, 0, 0, 4, 0, 4], [4, 0, 4, 4, 4, 4, 4, 0, 4], [4, 0, 0, 0, 0, 0, 0, 0, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4]]}, {"input": [[0, 0, 0], [5, 0, 0], [0, 0, 0]], "output": [[5, 5, 5, 5, 5, 0, 5, 0, 5], [0, 0, 0, 0, 5, 0, 5, 0, 5], [5, 5, 5, 0, 5, 0, 5, 0, 5], [5, 0, 5, 0, 5, 0, 5, 0, 5], [5, 0, 5, 0, 5, 0, 5, 0, 5], [0, 0, 5, 0, 5, 0, 5, 0, 5], [5, 5, 5, 0, 5, 0, 5, 0, 5], [0, 0, 0, 0, 5, 0, 5, 0, 5], [5, 5, 5, 5, 5, 0, 5, 0, 5]]}, {"input": [[0, 3, 0], [0, 0, 0], [0, 0, 0]], "output": [[3, 0, 3, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 0, 0, 3, 0, 3], [3, 0, 3, 3, 3, 3, 3, 0, 3], [3, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0], [0, 0, 8], [0, 0, 0]], "output": [[8, 0, 8, 0, 8, 0, 8, 8, 8], [8, 0, 8, 0, 8, 0, 8, 0, 0], [8, 0, 8, 0, 8, 0, 8, 0, 8], [8, 0, 8, 0, 8, 0, 8, 0, 8], [8, 0, 8, 0, 8, 0, 8, 0, 8], [8, 0, 8, 0, 8, 0, 8, 0, 0], [8, 0, 8, 0, 8, 0, 8, 8, 8], [8, 0, 8, 0, 8, 0, 0, 0, 0], [8, 0, 8, 0, 8, 8, 8, 8, 8]]}, {"input": [[0, 0, 7], [0, 0, 0], [0, 0, 0]], "output": [[7, 0, 7, 0, 7, 0, 7, 0, 7], [7, 0, 7, 0, 7, 0, 7, 0, 0], [7, 0, 7, 0, 7, 0, 7, 7, 7], [7, 0, 7, 0, 7, 0, 0, 0, 0], [7, 0, 7, 0, 7, 7, 7, 7, 7], [7, 0, 7, 0, 0, 0, 0, 0, 0], [7, 0, 7, 7, 7, 7, 7, 7, 7], [7, 0, 0, 0, 0, 0, 0, 0, 0], [7, 7, 7, 7, 7, 7, 7, 7, 7]]}], "test": [{"input": [[0, 0, 0], [0, 0, 0], [0, 0, 6]], "output": [[6, 0, 6, 6, 6, 6, 6, 6, 6], [6, 0, 6, 0, 0, 0, 0, 0, 0], [6, 0, 6, 0, 6, 6, 6, 6, 6], [6, 0, 6, 0, 6, 0, 0, 0, 0], [6, 0, 6, 0, 6, 0, 6, 6, 6], [6, 0, 6, 0, 6, 0, 6, 0, 0], [6, 0, 6, 0, 6, 0, 6, 0, 6], [6, 0, 6, 0, 6, 0, 6, 0, 6], [6, 0, 6, 0, 6, 0, 6, 0, 6]]}, {"input": [[0, 0, 0], [0, 0, 0], [3, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3, 0, 3], [0, 0, 0, 0, 0, 0, 3, 0, 3], [3, 3, 3, 3, 3, 0, 3, 0, 3], [0, 0, 0, 0, 3, 0, 3, 0, 3], [3, 3, 3, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 0, 3, 0, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/8ba14f53.json b/data/arc-agi/evaluation/8ba14f53.json
deleted file mode 100644
index 9d2d154..0000000
--- a/data/arc-agi/evaluation/8ba14f53.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 4, 4, 4, 6, 6, 6, 6, 6], [0, 4, 0, 4, 6, 0, 0, 0, 6], [0, 4, 4, 4, 6, 0, 0, 0, 6], [0, 0, 0, 0, 6, 6, 6, 6, 6]], "output": [[4, 0, 0], [6, 6, 6], [6, 6, 6]]}, {"input": [[7, 7, 7, 0, 0, 0, 0, 0, 0], [7, 0, 7, 7, 0, 8, 8, 8, 8], [7, 0, 0, 7, 0, 8, 0, 0, 8], [7, 7, 7, 7, 0, 8, 8, 8, 8]], "output": [[7, 7, 7], [8, 8, 0], [0, 0, 0]]}, {"input": [[9, 9, 9, 9, 0, 5, 5, 5, 5], [9, 0, 0, 9, 0, 5, 0, 0, 5], [9, 9, 0, 9, 0, 5, 0, 5, 5], [0, 9, 9, 9, 0, 5, 5, 5, 0]], "output": [[9, 9, 9], [5, 5, 5], [0, 0, 0]]}, {"input": [[3, 3, 3, 3, 0, 1, 1, 1, 0], [3, 0, 0, 3, 0, 1, 0, 1, 0], [3, 0, 0, 3, 0, 1, 0, 1, 0], [3, 3, 3, 3, 0, 1, 1, 1, 0]], "output": [[3, 3, 3], [3, 0, 0], [1, 1, 0]]}, {"input": [[8, 8, 8, 0, 6, 6, 6, 0, 0], [8, 0, 8, 0, 6, 0, 6, 0, 0], [8, 8, 8, 0, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 0, 0], [6, 0, 0], [0, 0, 0]]}, {"input": [[7, 7, 7, 0, 8, 8, 8, 0, 0], [7, 0, 7, 0, 8, 0, 8, 8, 0], [7, 0, 7, 0, 8, 0, 0, 8, 0], [7, 7, 7, 0, 8, 8, 8, 8, 0]], "output": [[7, 7, 0], [8, 8, 8], [0, 0, 0]]}], "test": [{"input": [[4, 4, 4, 0, 0, 0, 7, 7, 7], [4, 0, 4, 4, 4, 0, 7, 0, 7], [4, 0, 0, 0, 4, 0, 7, 7, 7], [4, 4, 4, 4, 4, 0, 0, 0, 0]], "output": [[4, 4, 4], [4, 0, 0], [7, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/8cb8642d.json b/data/arc-agi/evaluation/8cb8642d.json
deleted file mode 100644
index 4bfe1f4..0000000
--- a/data/arc-agi/evaluation/8cb8642d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 1, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 1, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 1, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 1, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 6, 3, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 6, 0, 0, 0, 0, 0, 6, 3, 0, 0, 0], [0, 0, 3, 0, 6, 0, 0, 0, 6, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 6, 0, 6, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 6, 0, 6, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 6, 0, 0, 0, 6, 0, 3, 0, 0, 0], [0, 0, 3, 6, 0, 0, 0, 0, 0, 6, 3, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 3, 3, 3, 3, 2, 3, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 1, 1, 1, 1, 1, 2, 1, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 1, 2, 0, 0, 0, 2, 1, 0, 0, 3, 2, 0, 0, 2, 3, 0], [0, 0, 1, 0, 2, 0, 2, 0, 1, 0, 0, 3, 0, 2, 2, 0, 3, 0], [0, 0, 1, 0, 0, 2, 0, 0, 1, 0, 0, 3, 0, 2, 2, 0, 3, 0], [0, 0, 1, 0, 2, 0, 2, 0, 1, 0, 0, 3, 2, 0, 0, 2, 3, 0], [0, 0, 1, 2, 0, 0, 0, 2, 1, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0], [0, 0, 0, 0, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 3, 0, 4, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 3, 3, 3, 3, 3, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 3, 0, 4, 0], [0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 8, 6, 8, 8, 8, 8, 8, 8, 8, 0], [0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 3, 1, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 4, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 1, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 3, 0, 1, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 8, 6, 0, 0, 0, 0, 0, 6, 8, 0], [0, 3, 0, 1, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 8, 0, 6, 0, 0, 0, 6, 0, 8, 0], [0, 3, 1, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 6, 0, 6, 0, 0, 8, 0], [0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 6, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 6, 0, 0, 0, 8, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 8, 0, 0, 0, 6, 0, 0, 0, 8, 0], [0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 4, 2, 0, 8, 0, 0, 0, 6, 0, 0, 0, 8, 0], [0, 0, 0, 2, 0, 4, 0, 0, 0, 0, 4, 0, 2, 0, 8, 0, 0, 0, 6, 0, 0, 0, 8, 0], [0, 0, 0, 2, 0, 0, 4, 0, 0, 4, 0, 0, 2, 0, 8, 0, 0, 6, 0, 6, 0, 0, 8, 0], [0, 0, 0, 2, 0, 0, 0, 4, 4, 0, 0, 0, 2, 0, 8, 0, 6, 0, 0, 0, 6, 0, 8, 0], [0, 0, 0, 2, 0, 0, 0, 4, 4, 0, 0, 0, 2, 0, 8, 6, 0, 0, 0, 0, 0, 6, 8, 0], [0, 0, 0, 2, 0, 0, 4, 0, 0, 4, 0, 0, 2, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 2, 0, 4, 0, 0, 0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/8dae5dfc.json b/data/arc-agi/evaluation/8dae5dfc.json
deleted file mode 100644
index 53b55aa..0000000
--- a/data/arc-agi/evaluation/8dae5dfc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 7, 7, 7, 7, 7, 7, 7, 7, 8, 0, 2, 2, 2, 2, 2, 2], [0, 0, 8, 7, 7, 7, 7, 7, 7, 7, 7, 8, 0, 2, 1, 1, 1, 1, 2], [0, 0, 8, 7, 7, 4, 4, 4, 4, 7, 7, 8, 0, 2, 1, 3, 3, 1, 2], [0, 0, 8, 7, 7, 4, 3, 3, 4, 7, 7, 8, 0, 2, 1, 3, 3, 1, 2], [0, 0, 8, 7, 7, 4, 3, 3, 4, 7, 7, 8, 0, 2, 1, 1, 1, 1, 2], [0, 0, 8, 7, 7, 4, 3, 3, 4, 7, 7, 8, 0, 2, 2, 2, 2, 2, 2], [0, 0, 8, 7, 7, 4, 3, 3, 4, 7, 7, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 7, 7, 4, 3, 3, 4, 7, 7, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 7, 7, 4, 4, 4, 4, 7, 7, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 7, 7, 7, 7, 7, 7, 7, 7, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 7, 7, 7, 7, 7, 7, 7, 7, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 4, 4, 4, 4, 4, 4, 4, 4, 3, 0, 3, 3, 3, 3, 3, 3], [0, 0, 3, 4, 4, 4, 4, 4, 4, 4, 4, 3, 0, 3, 1, 1, 1, 1, 3], [0, 0, 3, 4, 4, 7, 7, 7, 7, 4, 4, 3, 0, 3, 1, 2, 2, 1, 3], [0, 0, 3, 4, 4, 7, 8, 8, 7, 4, 4, 3, 0, 3, 1, 2, 2, 1, 3], [0, 0, 3, 4, 4, 7, 8, 8, 7, 4, 4, 3, 0, 3, 1, 1, 1, 1, 3], [0, 0, 3, 4, 4, 7, 8, 8, 7, 4, 4, 3, 0, 3, 3, 3, 3, 3, 3], [0, 0, 3, 4, 4, 7, 8, 8, 7, 4, 4, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 4, 4, 7, 8, 8, 7, 4, 4, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 4, 4, 7, 7, 7, 7, 4, 4, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 4, 4, 4, 4, 4, 4, 4, 4, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 4, 4, 4, 4, 4, 4, 4, 4, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 0, 0], [0, 0, 1, 1, 3, 8, 8, 8, 8, 8, 8, 3, 1, 1, 0, 0], [0, 0, 1, 1, 3, 8, 8, 8, 8, 8, 8, 3, 1, 1, 0, 0], [0, 0, 1, 1, 3, 8, 8, 2, 2, 8, 8, 3, 1, 1, 0, 0], [0, 0, 1, 1, 3, 8, 8, 2, 2, 8, 8, 3, 1, 1, 0, 0], [0, 0, 1, 1, 3, 8, 8, 8, 8, 8, 8, 3, 1, 1, 0, 0], [0, 0, 1, 1, 3, 8, 8, 8, 8, 8, 8, 3, 1, 1, 0, 0], [0, 0, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 0, 0], [0, 0, 2, 2, 8, 3, 3, 3, 3, 3, 3, 8, 2, 2, 0, 0], [0, 0, 2, 2, 8, 3, 3, 3, 3, 3, 3, 8, 2, 2, 0, 0], [0, 0, 2, 2, 8, 3, 3, 1, 1, 3, 3, 8, 2, 2, 0, 0], [0, 0, 2, 2, 8, 3, 3, 1, 1, 3, 3, 8, 2, 2, 0, 0], [0, 0, 2, 2, 8, 3, 3, 3, 3, 3, 3, 8, 2, 2, 0, 0], [0, 0, 2, 2, 8, 3, 3, 3, 3, 3, 3, 8, 2, 2, 0, 0], [0, 0, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 2, 2, 2, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 2, 1, 1, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 2, 1, 1, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 2, 2, 2, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0], [0, 0, 0, 0, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 0], [0, 0, 0, 0, 6, 3, 4, 4, 4, 4, 4, 4, 4, 4, 3, 6, 0], [0, 0, 0, 0, 6, 3, 4, 2, 2, 2, 2, 2, 2, 4, 3, 6, 0], [0, 0, 0, 0, 6, 3, 4, 2, 1, 1, 1, 1, 2, 4, 3, 6, 0], [0, 0, 0, 0, 6, 3, 4, 2, 1, 1, 1, 1, 2, 4, 3, 6, 0], [0, 0, 0, 0, 6, 3, 4, 2, 2, 2, 2, 2, 2, 4, 3, 6, 0], [0, 0, 0, 0, 6, 3, 4, 4, 4, 4, 4, 4, 4, 4, 3, 6, 0], [0, 0, 0, 0, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 0], [0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0]], "output": [[1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 2, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 8, 8, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 8, 8, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 2, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 0], [0, 0, 0, 0, 1, 2, 4, 4, 4, 4, 4, 4, 4, 4, 2, 1, 0], [0, 0, 0, 0, 1, 2, 4, 3, 3, 3, 3, 3, 3, 4, 2, 1, 0], [0, 0, 0, 0, 1, 2, 4, 3, 6, 6, 6, 6, 3, 4, 2, 1, 0], [0, 0, 0, 0, 1, 2, 4, 3, 6, 6, 6, 6, 3, 4, 2, 1, 0], [0, 0, 0, 0, 1, 2, 4, 3, 3, 3, 3, 3, 3, 4, 2, 1, 0], [0, 0, 0, 0, 1, 2, 4, 4, 4, 4, 4, 4, 4, 4, 2, 1, 0], [0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0]]}, {"input": [[0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 6, 6, 6, 6, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 6, 8, 8, 8, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 6, 6, 6, 6, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 0, 0, 0, 0, 0, 0], [0, 2, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4, 2, 0, 0, 0, 0, 0, 0], [0, 2, 4, 1, 8, 8, 8, 8, 8, 8, 1, 4, 2, 0, 0, 0, 0, 0, 0], [0, 2, 4, 1, 8, 8, 8, 8, 8, 8, 1, 4, 2, 0, 0, 0, 0, 0, 0], [0, 2, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4, 2, 0, 0, 0, 0, 0, 0], [0, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 6, 6, 6, 6, 6, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 6, 1, 1, 1, 6, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 6, 6, 6, 6, 6, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 0, 0, 0, 0, 0, 0], [0, 8, 1, 4, 4, 4, 4, 4, 4, 4, 4, 1, 8, 0, 0, 0, 0, 0, 0], [0, 8, 1, 4, 2, 2, 2, 2, 2, 2, 4, 1, 8, 0, 0, 0, 0, 0, 0], [0, 8, 1, 4, 2, 2, 2, 2, 2, 2, 4, 1, 8, 0, 0, 0, 0, 0, 0], [0, 8, 1, 4, 4, 4, 4, 4, 4, 4, 4, 1, 8, 0, 0, 0, 0, 0, 0], [0, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 6, 6, 6, 6, 6, 6, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 6, 1, 1, 1, 1, 6, 3, 3, 0, 0, 5, 5, 5, 5, 5, 5], [0, 3, 3, 6, 1, 4, 4, 1, 6, 3, 3, 0, 0, 5, 4, 4, 4, 4, 5], [0, 3, 3, 6, 1, 1, 1, 1, 6, 3, 3, 0, 0, 5, 4, 8, 8, 4, 5], [0, 3, 3, 6, 6, 6, 6, 6, 6, 3, 3, 0, 0, 5, 4, 8, 8, 4, 5], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 5, 4, 4, 4, 4, 5], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0], [0, 0, 0, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 0, 0, 0], [0, 0, 0, 6, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 6, 0, 0, 0], [0, 0, 0, 6, 8, 2, 4, 4, 4, 4, 4, 4, 4, 2, 8, 6, 0, 0, 0], [0, 0, 0, 6, 8, 2, 4, 3, 3, 3, 3, 3, 4, 2, 8, 6, 0, 0, 0], [0, 0, 0, 6, 8, 2, 4, 4, 4, 4, 4, 4, 4, 2, 8, 6, 0, 0, 0], [0, 0, 0, 6, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 6, 0, 0, 0], [0, 0, 0, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 1, 1, 1, 1, 1, 1, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 1, 6, 6, 6, 6, 1, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8], [0, 4, 4, 1, 6, 3, 3, 6, 1, 4, 4, 0, 0, 8, 4, 4, 4, 4, 8], [0, 4, 4, 1, 6, 6, 6, 6, 1, 4, 4, 0, 0, 8, 4, 5, 5, 4, 8], [0, 4, 4, 1, 1, 1, 1, 1, 1, 4, 4, 0, 0, 8, 4, 5, 5, 4, 8], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 8, 4, 4, 4, 4, 8], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 2, 8, 8, 8, 8, 8, 8, 8, 2, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 2, 8, 6, 6, 6, 6, 6, 8, 2, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 2, 8, 8, 8, 8, 8, 8, 8, 2, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/8e2edd66.json b/data/arc-agi/evaluation/8e2edd66.json
deleted file mode 100644
index f78243d..0000000
--- a/data/arc-agi/evaluation/8e2edd66.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[9, 9, 0], [0, 0, 9], [0, 9, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 0, 0, 0, 0, 9, 9, 0], [0, 0, 0, 0, 0, 0, 9, 0, 9], [0, 0, 9, 0, 0, 9, 0, 0, 0], [9, 9, 0, 9, 9, 0, 0, 0, 0], [9, 0, 9, 9, 0, 9, 0, 0, 0], [0, 0, 9, 0, 0, 0, 0, 0, 9], [9, 9, 0, 0, 0, 0, 9, 9, 0], [9, 0, 9, 0, 0, 0, 9, 0, 9]]}, {"input": [[8, 8, 0], [0, 8, 8], [0, 8, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 8], [0, 0, 8, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 0, 8, 0, 0], [8, 0, 8, 0, 0, 0, 8, 0, 8]]}, {"input": [[7, 0, 7], [7, 7, 7], [0, 7, 0]], "output": [[0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 7, 0, 0, 0, 7, 0, 7]]}], "test": [{"input": [[1, 1, 0], [0, 1, 0], [1, 0, 1]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1], [1, 0, 1, 0, 0, 0, 1, 0, 1], [0, 1, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 1, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/8ee62060.json b/data/arc-agi/evaluation/8ee62060.json
deleted file mode 100644
index 02fd8c9..0000000
--- a/data/arc-agi/evaluation/8ee62060.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2]]}, {"input": [[2, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 2, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 2, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [2, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/8fbca751.json b/data/arc-agi/evaluation/8fbca751.json
deleted file mode 100644
index 3182a22..0000000
--- a/data/arc-agi/evaluation/8fbca751.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0]], "output": [[0, 0, 0, 0, 2, 8, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 2], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 2], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 2, 8], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 2, 2]]}, {"input": [[0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 8, 0, 0, 8, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [8, 8, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0]], "output": [[2, 8, 2, 2, 8, 2, 2, 2, 0, 0, 0, 0], [2, 8, 8, 2, 8, 2, 2, 8, 0, 0, 0, 0], [2, 8, 8, 8, 8, 8, 8, 2, 0, 0, 0, 0], [8, 8, 2, 2, 8, 8, 8, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 8, 0, 0], [0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 8, 2, 2, 8, 0, 0], [0, 8, 8, 8, 8, 0, 0], [0, 2, 2, 8, 2, 0, 0], [0, 2, 8, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [8, 8, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0], [0, 0, 8, 0, 8, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 8, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 8, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [8, 8, 2, 8, 8, 2, 2, 2, 0, 0, 0, 0], [2, 8, 2, 8, 8, 2, 8, 8, 0, 0, 0, 0], [2, 2, 8, 2, 8, 2, 2, 8, 0, 0, 0, 0], [2, 2, 2, 8, 8, 2, 2, 8, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/90347967.json b/data/arc-agi/evaluation/90347967.json
deleted file mode 100644
index a3d1cdb..0000000
--- a/data/arc-agi/evaluation/90347967.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 2, 5, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 1, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 1, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 5, 2, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[6, 0, 0], [2, 5, 0], [2, 1, 0]], "output": [[0, 1, 2], [0, 5, 2], [0, 0, 6]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 5, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 5, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 5, 0, 0, 0, 0], [0, 3, 3, 2, 0, 0, 0, 0, 0], [0, 3, 2, 2, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 2, 2, 3, 0], [0, 0, 0, 0, 0, 2, 3, 3, 0], [0, 0, 0, 0, 5, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/903d1b4a.json b/data/arc-agi/evaluation/903d1b4a.json
deleted file mode 100644
index f10f2c6..0000000
--- a/data/arc-agi/evaluation/903d1b4a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[1, 8, 2, 8, 9, 7, 9, 7, 7, 9, 7, 9, 8, 2, 8, 1], [8, 8, 1, 1, 7, 9, 1, 1, 1, 1, 9, 7, 1, 1, 8, 8], [2, 1, 1, 2, 9, 1, 9, 9, 9, 9, 1, 9, 2, 1, 1, 2], [8, 1, 2, 8, 7, 1, 9, 9, 9, 9, 1, 7, 8, 2, 1, 8], [9, 7, 9, 7, 8, 6, 8, 6, 6, 8, 6, 8, 7, 9, 7, 9], [7, 3, 3, 3, 6, 4, 6, 8, 8, 6, 4, 6, 1, 1, 9, 7], [9, 3, 3, 3, 8, 6, 6, 6, 6, 6, 6, 8, 9, 9, 1, 9], [7, 3, 3, 3, 6, 8, 6, 8, 8, 6, 8, 6, 9, 9, 1, 7], [7, 3, 3, 3, 6, 8, 6, 8, 8, 6, 8, 6, 9, 9, 1, 7], [9, 1, 9, 9, 8, 6, 6, 6, 6, 6, 6, 8, 9, 9, 1, 9], [7, 3, 3, 3, 3, 4, 6, 8, 8, 6, 4, 6, 1, 1, 9, 7], [9, 3, 3, 3, 3, 6, 8, 6, 6, 8, 6, 8, 7, 9, 7, 9], [8, 1, 2, 8, 7, 1, 9, 9, 9, 9, 1, 7, 8, 2, 1, 8], [2, 1, 1, 2, 9, 1, 9, 9, 9, 9, 1, 9, 2, 1, 1, 2], [8, 8, 1, 1, 7, 9, 1, 1, 1, 1, 9, 7, 1, 1, 8, 8], [1, 8, 2, 8, 9, 7, 9, 7, 7, 9, 7, 9, 8, 2, 8, 1]], "output": [[1, 8, 2, 8, 9, 7, 9, 7, 7, 9, 7, 9, 8, 2, 8, 1], [8, 8, 1, 1, 7, 9, 1, 1, 1, 1, 9, 7, 1, 1, 8, 8], [2, 1, 1, 2, 9, 1, 9, 9, 9, 9, 1, 9, 2, 1, 1, 2], [8, 1, 2, 8, 7, 1, 9, 9, 9, 9, 1, 7, 8, 2, 1, 8], [9, 7, 9, 7, 8, 6, 8, 6, 6, 8, 6, 8, 7, 9, 7, 9], [7, 9, 1, 1, 6, 4, 6, 8, 8, 6, 4, 6, 1, 1, 9, 7], [9, 1, 9, 9, 8, 6, 6, 6, 6, 6, 6, 8, 9, 9, 1, 9], [7, 1, 9, 9, 6, 8, 6, 8, 8, 6, 8, 6, 9, 9, 1, 7], [7, 1, 9, 9, 6, 8, 6, 8, 8, 6, 8, 6, 9, 9, 1, 7], [9, 1, 9, 9, 8, 6, 6, 6, 6, 6, 6, 8, 9, 9, 1, 9], [7, 9, 1, 1, 6, 4, 6, 8, 8, 6, 4, 6, 1, 1, 9, 7], [9, 7, 9, 7, 8, 6, 8, 6, 6, 8, 6, 8, 7, 9, 7, 9], [8, 1, 2, 8, 7, 1, 9, 9, 9, 9, 1, 7, 8, 2, 1, 8], [2, 1, 1, 2, 9, 1, 9, 9, 9, 9, 1, 9, 2, 1, 1, 2], [8, 8, 1, 1, 7, 9, 1, 1, 1, 1, 9, 7, 1, 1, 8, 8], [1, 8, 2, 8, 9, 7, 9, 7, 7, 9, 7, 9, 8, 2, 8, 1]]}], "train": [{"input": [[6, 6, 8, 8, 1, 6, 4, 6, 6, 4, 6, 1, 8, 8, 6, 6], [6, 8, 6, 6, 6, 4, 6, 1, 1, 6, 4, 6, 6, 6, 8, 6], [8, 6, 8, 8, 3, 3, 3, 6, 6, 6, 6, 4, 8, 8, 6, 8], [8, 6, 8, 9, 3, 3, 3, 6, 6, 6, 1, 6, 9, 8, 6, 8], [1, 6, 4, 6, 3, 3, 3, 7, 7, 2, 7, 2, 6, 4, 6, 1], [6, 4, 6, 1, 3, 3, 3, 7, 7, 7, 5, 7, 1, 6, 4, 6], [4, 6, 6, 6, 2, 7, 5, 7, 7, 5, 7, 2, 6, 6, 6, 4], [6, 1, 6, 6, 7, 7, 7, 5, 5, 7, 7, 7, 6, 6, 1, 6], [6, 1, 6, 6, 7, 7, 7, 5, 5, 7, 7, 7, 6, 6, 1, 6], [4, 6, 6, 6, 2, 7, 5, 7, 7, 5, 7, 2, 6, 6, 6, 4], [6, 4, 6, 1, 7, 5, 7, 7, 7, 7, 5, 7, 1, 6, 4, 6], [1, 6, 4, 6, 2, 7, 2, 7, 7, 2, 7, 2, 6, 4, 6, 1], [8, 6, 8, 9, 6, 1, 6, 6, 6, 6, 1, 6, 9, 8, 6, 8], [8, 6, 8, 8, 4, 6, 6, 6, 3, 3, 6, 4, 8, 8, 6, 8], [6, 8, 6, 6, 6, 4, 6, 1, 3, 3, 4, 6, 6, 6, 8, 6], [6, 6, 8, 8, 1, 6, 4, 6, 6, 4, 6, 1, 8, 8, 6, 6]], "output": [[6, 6, 8, 8, 1, 6, 4, 6, 6, 4, 6, 1, 8, 8, 6, 6], [6, 8, 6, 6, 6, 4, 6, 1, 1, 6, 4, 6, 6, 6, 8, 6], [8, 6, 8, 8, 4, 6, 6, 6, 6, 6, 6, 4, 8, 8, 6, 8], [8, 6, 8, 9, 6, 1, 6, 6, 6, 6, 1, 6, 9, 8, 6, 8], [1, 6, 4, 6, 2, 7, 2, 7, 7, 2, 7, 2, 6, 4, 6, 1], [6, 4, 6, 1, 7, 5, 7, 7, 7, 7, 5, 7, 1, 6, 4, 6], [4, 6, 6, 6, 2, 7, 5, 7, 7, 5, 7, 2, 6, 6, 6, 4], [6, 1, 6, 6, 7, 7, 7, 5, 5, 7, 7, 7, 6, 6, 1, 6], [6, 1, 6, 6, 7, 7, 7, 5, 5, 7, 7, 7, 6, 6, 1, 6], [4, 6, 6, 6, 2, 7, 5, 7, 7, 5, 7, 2, 6, 6, 6, 4], [6, 4, 6, 1, 7, 5, 7, 7, 7, 7, 5, 7, 1, 6, 4, 6], [1, 6, 4, 6, 2, 7, 2, 7, 7, 2, 7, 2, 6, 4, 6, 1], [8, 6, 8, 9, 6, 1, 6, 6, 6, 6, 1, 6, 9, 8, 6, 8], [8, 6, 8, 8, 4, 6, 6, 6, 6, 6, 6, 4, 8, 8, 6, 8], [6, 8, 6, 6, 6, 4, 6, 1, 1, 6, 4, 6, 6, 6, 8, 6], [6, 6, 8, 8, 1, 6, 4, 6, 6, 4, 6, 1, 8, 8, 6, 6]]}, {"input": [[4, 9, 2, 2, 9, 7, 9, 6, 6, 9, 7, 9, 2, 2, 9, 4], [9, 4, 2, 9, 7, 6, 9, 6, 6, 9, 6, 7, 9, 2, 4, 9], [2, 2, 2, 4, 9, 9, 7, 9, 9, 7, 9, 9, 4, 2, 2, 2], [2, 9, 4, 9, 6, 6, 9, 7, 7, 9, 6, 6, 9, 4, 9, 2], [9, 7, 9, 6, 1, 7, 2, 1, 1, 2, 7, 1, 6, 9, 7, 9], [7, 6, 9, 6, 7, 7, 7, 7, 7, 7, 7, 7, 6, 9, 6, 7], [9, 9, 7, 9, 2, 7, 1, 1, 1, 1, 7, 2, 9, 7, 9, 9], [6, 6, 9, 7, 1, 7, 1, 1, 1, 1, 7, 3, 3, 9, 6, 6], [6, 6, 9, 7, 1, 7, 1, 1, 1, 1, 7, 3, 3, 9, 6, 6], [9, 9, 7, 9, 2, 7, 1, 1, 1, 1, 7, 3, 3, 7, 9, 9], [7, 6, 9, 6, 7, 7, 7, 7, 7, 7, 7, 3, 3, 9, 6, 7], [9, 7, 3, 3, 3, 7, 2, 1, 1, 2, 7, 1, 6, 9, 7, 9], [2, 9, 3, 3, 3, 6, 9, 7, 7, 9, 6, 6, 9, 4, 9, 2], [2, 2, 3, 3, 3, 9, 7, 9, 9, 7, 9, 9, 4, 2, 2, 2], [9, 4, 2, 9, 7, 6, 9, 6, 6, 9, 6, 7, 9, 2, 4, 9], [4, 9, 2, 2, 9, 7, 9, 6, 6, 9, 7, 9, 2, 2, 9, 4]], "output": [[4, 9, 2, 2, 9, 7, 9, 6, 6, 9, 7, 9, 2, 2, 9, 4], [9, 4, 2, 9, 7, 6, 9, 6, 6, 9, 6, 7, 9, 2, 4, 9], [2, 2, 2, 4, 9, 9, 7, 9, 9, 7, 9, 9, 4, 2, 2, 2], [2, 9, 4, 9, 6, 6, 9, 7, 7, 9, 6, 6, 9, 4, 9, 2], [9, 7, 9, 6, 1, 7, 2, 1, 1, 2, 7, 1, 6, 9, 7, 9], [7, 6, 9, 6, 7, 7, 7, 7, 7, 7, 7, 7, 6, 9, 6, 7], [9, 9, 7, 9, 2, 7, 1, 1, 1, 1, 7, 2, 9, 7, 9, 9], [6, 6, 9, 7, 1, 7, 1, 1, 1, 1, 7, 1, 7, 9, 6, 6], [6, 6, 9, 7, 1, 7, 1, 1, 1, 1, 7, 1, 7, 9, 6, 6], [9, 9, 7, 9, 2, 7, 1, 1, 1, 1, 7, 2, 9, 7, 9, 9], [7, 6, 9, 6, 7, 7, 7, 7, 7, 7, 7, 7, 6, 9, 6, 7], [9, 7, 9, 6, 1, 7, 2, 1, 1, 2, 7, 1, 6, 9, 7, 9], [2, 9, 4, 9, 6, 6, 9, 7, 7, 9, 6, 6, 9, 4, 9, 2], [2, 2, 2, 4, 9, 9, 7, 9, 9, 7, 9, 9, 4, 2, 2, 2], [9, 4, 2, 9, 7, 6, 9, 6, 6, 9, 6, 7, 9, 2, 4, 9], [4, 9, 2, 2, 9, 7, 9, 6, 6, 9, 7, 9, 2, 2, 9, 4]]}, {"input": [[2, 7, 7, 7, 1, 1, 1, 1, 1, 3, 3, 1, 7, 7, 7, 2], [7, 7, 2, 2, 1, 6, 1, 1, 1, 3, 3, 1, 2, 2, 7, 7], [7, 2, 7, 7, 1, 1, 6, 2, 2, 6, 1, 1, 7, 7, 2, 7], [7, 2, 7, 7, 1, 1, 2, 6, 6, 2, 1, 1, 7, 7, 2, 7], [1, 1, 1, 1, 2, 9, 2, 9, 9, 2, 9, 2, 1, 1, 1, 1], [1, 6, 1, 1, 9, 9, 2, 6, 6, 2, 9, 9, 1, 1, 6, 1], [1, 1, 6, 2, 2, 2, 9, 9, 9, 9, 2, 2, 2, 6, 1, 1], [1, 1, 2, 6, 9, 6, 9, 2, 2, 9, 6, 9, 6, 2, 1, 1], [1, 1, 2, 6, 9, 6, 9, 2, 2, 9, 6, 9, 6, 2, 1, 1], [1, 1, 6, 2, 2, 2, 9, 9, 9, 9, 2, 2, 2, 6, 1, 1], [1, 6, 1, 1, 9, 9, 2, 6, 6, 2, 9, 9, 1, 1, 6, 1], [1, 1, 1, 1, 2, 9, 2, 3, 3, 2, 9, 2, 1, 1, 1, 1], [7, 2, 7, 7, 1, 1, 2, 3, 3, 2, 1, 1, 7, 7, 2, 7], [7, 2, 7, 7, 1, 1, 6, 3, 3, 6, 1, 1, 7, 7, 2, 7], [7, 7, 2, 2, 1, 6, 1, 1, 1, 1, 6, 1, 2, 2, 7, 7], [2, 7, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 7, 7, 7, 2]], "output": [[2, 7, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 7, 7, 7, 2], [7, 7, 2, 2, 1, 6, 1, 1, 1, 1, 6, 1, 2, 2, 7, 7], [7, 2, 7, 7, 1, 1, 6, 2, 2, 6, 1, 1, 7, 7, 2, 7], [7, 2, 7, 7, 1, 1, 2, 6, 6, 2, 1, 1, 7, 7, 2, 7], [1, 1, 1, 1, 2, 9, 2, 9, 9, 2, 9, 2, 1, 1, 1, 1], [1, 6, 1, 1, 9, 9, 2, 6, 6, 2, 9, 9, 1, 1, 6, 1], [1, 1, 6, 2, 2, 2, 9, 9, 9, 9, 2, 2, 2, 6, 1, 1], [1, 1, 2, 6, 9, 6, 9, 2, 2, 9, 6, 9, 6, 2, 1, 1], [1, 1, 2, 6, 9, 6, 9, 2, 2, 9, 6, 9, 6, 2, 1, 1], [1, 1, 6, 2, 2, 2, 9, 9, 9, 9, 2, 2, 2, 6, 1, 1], [1, 6, 1, 1, 9, 9, 2, 6, 6, 2, 9, 9, 1, 1, 6, 1], [1, 1, 1, 1, 2, 9, 2, 9, 9, 2, 9, 2, 1, 1, 1, 1], [7, 2, 7, 7, 1, 1, 2, 6, 6, 2, 1, 1, 7, 7, 2, 7], [7, 2, 7, 7, 1, 1, 6, 2, 2, 6, 1, 1, 7, 7, 2, 7], [7, 7, 2, 2, 1, 6, 1, 1, 1, 1, 6, 1, 2, 2, 7, 7], [2, 7, 7, 7, 1, 1, 1, 1, 1, 1, 1, 1, 7, 7, 7, 2]]}, {"input": [[1, 6, 6, 4, 6, 7, 1, 6, 6, 1, 7, 6, 4, 6, 6, 1], [6, 1, 4, 1, 7, 6, 1, 1, 1, 1, 6, 7, 1, 4, 1, 6], [3, 3, 3, 6, 1, 1, 6, 7, 7, 6, 1, 1, 6, 4, 4, 6], [3, 3, 3, 1, 6, 1, 7, 1, 1, 7, 1, 6, 1, 6, 1, 4], [3, 3, 3, 6, 4, 4, 4, 8, 8, 4, 4, 4, 6, 1, 7, 6], [3, 3, 3, 1, 4, 4, 5, 8, 8, 5, 4, 4, 1, 1, 6, 7], [1, 1, 6, 7, 4, 5, 8, 5, 5, 8, 5, 4, 7, 6, 1, 1], [6, 1, 7, 1, 8, 8, 3, 3, 5, 5, 8, 8, 1, 7, 1, 6], [6, 1, 7, 1, 8, 8, 3, 3, 5, 5, 8, 8, 1, 7, 1, 6], [1, 1, 6, 7, 4, 5, 3, 3, 5, 8, 5, 4, 7, 6, 1, 1], [7, 6, 1, 1, 4, 4, 3, 3, 8, 5, 4, 4, 1, 1, 6, 7], [6, 7, 1, 6, 4, 4, 4, 8, 8, 4, 4, 4, 6, 1, 7, 6], [4, 1, 6, 1, 6, 1, 7, 1, 1, 7, 1, 6, 1, 6, 1, 4], [6, 4, 4, 6, 1, 1, 6, 7, 7, 6, 1, 1, 6, 4, 4, 6], [6, 1, 4, 1, 7, 6, 1, 1, 1, 1, 6, 7, 1, 4, 1, 6], [1, 6, 6, 4, 6, 7, 1, 6, 6, 1, 7, 6, 4, 6, 6, 1]], "output": [[1, 6, 6, 4, 6, 7, 1, 6, 6, 1, 7, 6, 4, 6, 6, 1], [6, 1, 4, 1, 7, 6, 1, 1, 1, 1, 6, 7, 1, 4, 1, 6], [6, 4, 4, 6, 1, 1, 6, 7, 7, 6, 1, 1, 6, 4, 4, 6], [4, 1, 6, 1, 6, 1, 7, 1, 1, 7, 1, 6, 1, 6, 1, 4], [6, 7, 1, 6, 4, 4, 4, 8, 8, 4, 4, 4, 6, 1, 7, 6], [7, 6, 1, 1, 4, 4, 5, 8, 8, 5, 4, 4, 1, 1, 6, 7], [1, 1, 6, 7, 4, 5, 8, 5, 5, 8, 5, 4, 7, 6, 1, 1], [6, 1, 7, 1, 8, 8, 5, 5, 5, 5, 8, 8, 1, 7, 1, 6], [6, 1, 7, 1, 8, 8, 5, 5, 5, 5, 8, 8, 1, 7, 1, 6], [1, 1, 6, 7, 4, 5, 8, 5, 5, 8, 5, 4, 7, 6, 1, 1], [7, 6, 1, 1, 4, 4, 5, 8, 8, 5, 4, 4, 1, 1, 6, 7], [6, 7, 1, 6, 4, 4, 4, 8, 8, 4, 4, 4, 6, 1, 7, 6], [4, 1, 6, 1, 6, 1, 7, 1, 1, 7, 1, 6, 1, 6, 1, 4], [6, 4, 4, 6, 1, 1, 6, 7, 7, 6, 1, 1, 6, 4, 4, 6], [6, 1, 4, 1, 7, 6, 1, 1, 1, 1, 6, 7, 1, 4, 1, 6], [1, 6, 6, 4, 6, 7, 1, 6, 6, 1, 7, 6, 4, 6, 6, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/9110e3c5.json b/data/arc-agi/evaluation/9110e3c5.json
deleted file mode 100644
index c805aab..0000000
--- a/data/arc-agi/evaluation/9110e3c5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 4, 1, 0, 0, 1, 6], [0, 0, 1, 0, 0, 0, 0], [1, 1, 0, 0, 1, 1, 0], [0, 1, 0, 0, 0, 1, 1], [0, 0, 1, 0, 0, 2, 0], [1, 0, 1, 0, 1, 0, 7], [1, 1, 1, 0, 4, 1, 0]], "output": [[0, 0, 8], [8, 8, 0], [0, 8, 0]]}, {"input": [[2, 0, 0, 2, 2, 0, 5], [0, 2, 2, 0, 0, 0, 2], [0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 9], [0, 9, 0, 0, 0, 0, 2], [0, 0, 2, 1, 0, 0, 8], [2, 0, 0, 2, 2, 0, 0]], "output": [[0, 0, 0], [8, 8, 8], [0, 0, 0]]}, {"input": [[0, 4, 0, 0, 4, 1, 3], [3, 3, 4, 3, 0, 3, 7], [3, 0, 0, 0, 1, 0, 3], [0, 0, 3, 0, 3, 0, 0], [3, 0, 0, 3, 3, 0, 3], [3, 0, 3, 0, 3, 0, 3], [3, 3, 3, 0, 4, 2, 3]], "output": [[0, 8, 8], [0, 8, 0], [0, 8, 0]]}, {"input": [[1, 0, 1, 0, 7, 0, 0], [1, 1, 9, 1, 0, 1, 0], [0, 0, 1, 1, 0, 2, 0], [0, 0, 0, 0, 3, 0, 1], [0, 4, 0, 1, 0, 0, 1], [0, 0, 1, 0, 2, 0, 8], [0, 0, 1, 0, 7, 3, 1]], "output": [[0, 0, 8], [8, 8, 0], [0, 8, 0]]}, {"input": [[0, 3, 0, 3, 5, 3, 0], [0, 0, 3, 3, 0, 0, 0], [8, 0, 0, 0, 0, 0, 3], [3, 4, 3, 9, 3, 0, 3], [0, 0, 9, 3, 1, 3, 3], [0, 3, 3, 3, 0, 3, 0], [0, 0, 0, 0, 0, 0, 3]], "output": [[0, 8, 8], [0, 8, 0], [0, 8, 0]]}, {"input": [[0, 0, 0, 2, 2, 0, 2], [0, 2, 2, 9, 2, 2, 0], [0, 5, 0, 2, 4, 6, 0], [2, 0, 0, 0, 0, 9, 2], [0, 0, 0, 2, 2, 0, 0], [8, 0, 2, 9, 0, 6, 3], [0, 2, 0, 2, 0, 2, 4]], "output": [[0, 0, 0], [8, 8, 8], [0, 0, 0]]}, {"input": [[0, 0, 2, 0, 1, 5, 3], [0, 0, 2, 9, 0, 2, 0], [2, 2, 2, 4, 2, 0, 0], [0, 2, 0, 2, 7, 2, 0], [2, 2, 0, 0, 2, 2, 6], [0, 2, 2, 0, 2, 0, 0], [5, 0, 4, 2, 0, 2, 2]], "output": [[0, 0, 0], [8, 8, 8], [0, 0, 0]]}], "test": [{"input": [[0, 0, 8, 1, 1, 0, 1], [5, 1, 1, 0, 1, 1, 0], [0, 1, 0, 1, 0, 0, 1], [1, 0, 2, 0, 0, 6, 0], [6, 0, 1, 1, 5, 0, 0], [0, 0, 3, 0, 0, 0, 5], [0, 1, 0, 0, 2, 0, 1]], "output": [[0, 0, 8], [8, 8, 0], [0, 8, 0]]}, {"input": [[3, 0, 3, 0, 0, 0, 3], [3, 0, 9, 5, 0, 0, 5], [0, 3, 0, 3, 0, 2, 9], [8, 3, 0, 3, 0, 0, 7], [0, 3, 5, 0, 0, 3, 3], [0, 0, 3, 3, 0, 0, 0], [0, 0, 3, 0, 4, 0, 0]], "output": [[0, 8, 8], [0, 8, 0], [0, 8, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/917bccba.json b/data/arc-agi/evaluation/917bccba.json
deleted file mode 100644
index 9101d43..0000000
--- a/data/arc-agi/evaluation/917bccba.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 2, 0, 3, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 3, 0, 0, 2, 0, 0, 0, 0], [3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3], [0, 0, 2, 0, 3, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [3, 3, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 0, 0, 8, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 8, 0, 0, 1, 0, 0, 0], [8, 8, 1, 8, 8, 8, 8, 8, 1, 8, 8, 8], [0, 0, 1, 0, 0, 8, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 8, 0, 0, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [8, 8, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 3, 0, 4, 0, 3, 0, 0, 0], [4, 4, 4, 4, 3, 4, 4, 4, 3, 4, 4, 4], [0, 0, 0, 0, 3, 0, 4, 0, 3, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [4, 4, 4, 4, 3, 3, 3, 3, 3, 4, 4, 4], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 7, 0, 0, 0, 6, 0, 0, 7, 0, 0], [0, 0, 7, 0, 0, 0, 6, 0, 0, 7, 0, 0], [6, 6, 7, 6, 6, 6, 6, 6, 6, 7, 6, 6], [0, 0, 7, 0, 0, 0, 6, 0, 0, 7, 0, 0], [0, 0, 7, 0, 0, 0, 6, 0, 0, 7, 0, 0], [0, 0, 7, 0, 0, 0, 6, 0, 0, 7, 0, 0], [0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 6, 6], [0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/929ab4e9.json b/data/arc-agi/evaluation/929ab4e9.json
deleted file mode 100644
index dba006d..0000000
--- a/data/arc-agi/evaluation/929ab4e9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[5, 8, 8, 6, 6, 1, 3, 6, 9, 6, 4, 4, 4, 4, 6, 9, 6, 3, 1, 6, 6, 8, 8, 5], [8, 1, 5, 8, 5, 5, 6, 6, 6, 3, 3, 6, 6, 3, 3, 6, 6, 6, 5, 5, 8, 5, 1, 8], [8, 5, 6, 5, 8, 5, 9, 6, 9, 5, 4, 4, 4, 4, 5, 9, 6, 9, 5, 8, 5, 6, 5, 8], [6, 8, 5, 1, 6, 8, 6, 3, 5, 9, 5, 4, 4, 5, 9, 5, 3, 6, 8, 6, 1, 5, 8, 6], [6, 5, 8, 6, 3, 1, 4, 3, 4, 5, 5, 6, 6, 5, 5, 4, 3, 4, 1, 3, 6, 8, 5, 6], [1, 5, 5, 8, 1, 6, 4, 6, 4, 4, 6, 3, 3, 6, 4, 4, 6, 4, 6, 1, 8, 5, 5, 1], [3, 6, 9, 6, 4, 4, 8, 5, 8, 3, 5, 6, 6, 5, 3, 8, 5, 8, 4, 4, 6, 9, 6, 3], [6, 6, 6, 3, 3, 6, 5, 5, 5, 8, 1, 5, 5, 1, 8, 5, 5, 5, 6, 3, 3, 6, 6, 6], [9, 6, 9, 5, 4, 4, 8, 5, 5, 8, 5, 6, 6, 5, 8, 5, 5, 8, 4, 4, 5, 9, 6, 9], [6, 3, 5, 9, 5, 4, 3, 8, 8, 1, 3, 1, 1, 3, 1, 8, 8, 3, 4, 5, 9, 5, 3, 6], [4, 3, 4, 5, 5, 6, 5, 2, 2, 2, 1, 8, 8, 1, 3, 2, 2, 2, 6, 5, 5, 4, 3, 4], [4, 6, 4, 4, 6, 3, 6, 2, 2, 2, 8, 8, 8, 8, 1, 2, 2, 2, 3, 6, 4, 4, 6, 4], [4, 6, 4, 4, 6, 3, 6, 2, 2, 2, 8, 8, 8, 8, 1, 2, 2, 2, 3, 6, 4, 4, 6, 4], [4, 3, 4, 5, 5, 6, 5, 2, 2, 2, 1, 8, 8, 1, 3, 2, 2, 2, 6, 5, 5, 4, 3, 4], [6, 3, 5, 9, 5, 4, 3, 2, 2, 2, 3, 1, 1, 3, 1, 2, 2, 2, 4, 5, 9, 5, 3, 6], [9, 6, 9, 5, 4, 4, 8, 2, 2, 2, 5, 6, 6, 5, 8, 5, 5, 8, 4, 4, 5, 9, 6, 9], [6, 6, 6, 3, 3, 6, 5, 5, 5, 8, 1, 5, 5, 1, 8, 5, 5, 5, 6, 3, 3, 6, 6, 6], [3, 6, 9, 6, 4, 4, 8, 5, 8, 3, 5, 6, 6, 5, 3, 8, 5, 8, 4, 4, 6, 9, 6, 3], [1, 5, 5, 8, 1, 6, 4, 6, 4, 4, 6, 3, 3, 6, 4, 4, 6, 4, 6, 1, 8, 5, 5, 1], [6, 5, 8, 6, 3, 1, 4, 3, 4, 5, 5, 6, 6, 5, 5, 4, 3, 4, 1, 3, 6, 8, 5, 6], [6, 8, 5, 1, 6, 8, 6, 3, 5, 9, 5, 4, 4, 5, 9, 5, 3, 6, 8, 6, 1, 5, 8, 6], [8, 5, 6, 5, 8, 5, 9, 6, 9, 5, 4, 4, 4, 4, 5, 9, 6, 9, 5, 8, 5, 6, 5, 8], [8, 1, 5, 8, 5, 5, 6, 6, 6, 3, 3, 6, 6, 3, 3, 6, 6, 6, 5, 5, 8, 5, 1, 8], [5, 8, 8, 6, 6, 1, 3, 6, 9, 6, 4, 4, 4, 4, 6, 9, 6, 3, 1, 6, 6, 8, 8, 5]], "output": [[5, 8, 8, 6, 6, 1, 3, 6, 9, 6, 4, 4, 4, 4, 6, 9, 6, 3, 1, 6, 6, 8, 8, 5], [8, 1, 5, 8, 5, 5, 6, 6, 6, 3, 3, 6, 6, 3, 3, 6, 6, 6, 5, 5, 8, 5, 1, 8], [8, 5, 6, 5, 8, 5, 9, 6, 9, 5, 4, 4, 4, 4, 5, 9, 6, 9, 5, 8, 5, 6, 5, 8], [6, 8, 5, 1, 6, 8, 6, 3, 5, 9, 5, 4, 4, 5, 9, 5, 3, 6, 8, 6, 1, 5, 8, 6], [6, 5, 8, 6, 3, 1, 4, 3, 4, 5, 5, 6, 6, 5, 5, 4, 3, 4, 1, 3, 6, 8, 5, 6], [1, 5, 5, 8, 1, 6, 4, 6, 4, 4, 6, 3, 3, 6, 4, 4, 6, 4, 6, 1, 8, 5, 5, 1], [3, 6, 9, 6, 4, 4, 8, 5, 8, 3, 5, 6, 6, 5, 3, 8, 5, 8, 4, 4, 6, 9, 6, 3], [6, 6, 6, 3, 3, 6, 5, 5, 5, 8, 1, 5, 5, 1, 8, 5, 5, 5, 6, 3, 3, 6, 6, 6], [9, 6, 9, 5, 4, 4, 8, 5, 5, 8, 5, 6, 6, 5, 8, 5, 5, 8, 4, 4, 5, 9, 6, 9], [6, 3, 5, 9, 5, 4, 3, 8, 8, 1, 3, 1, 1, 3, 1, 8, 8, 3, 4, 5, 9, 5, 3, 6], [4, 3, 4, 5, 5, 6, 5, 1, 5, 3, 1, 8, 8, 1, 3, 5, 1, 5, 6, 5, 5, 4, 3, 4], [4, 6, 4, 4, 6, 3, 6, 5, 6, 1, 8, 8, 8, 8, 1, 6, 5, 6, 3, 6, 4, 4, 6, 4], [4, 6, 4, 4, 6, 3, 6, 5, 6, 1, 8, 8, 8, 8, 1, 6, 5, 6, 3, 6, 4, 4, 6, 4], [4, 3, 4, 5, 5, 6, 5, 1, 5, 3, 1, 8, 8, 1, 3, 5, 1, 5, 6, 5, 5, 4, 3, 4], [6, 3, 5, 9, 5, 4, 3, 8, 8, 1, 3, 1, 1, 3, 1, 8, 8, 3, 4, 5, 9, 5, 3, 6], [9, 6, 9, 5, 4, 4, 8, 5, 5, 8, 5, 6, 6, 5, 8, 5, 5, 8, 4, 4, 5, 9, 6, 9], [6, 6, 6, 3, 3, 6, 5, 5, 5, 8, 1, 5, 5, 1, 8, 5, 5, 5, 6, 3, 3, 6, 6, 6], [3, 6, 9, 6, 4, 4, 8, 5, 8, 3, 5, 6, 6, 5, 3, 8, 5, 8, 4, 4, 6, 9, 6, 3], [1, 5, 5, 8, 1, 6, 4, 6, 4, 4, 6, 3, 3, 6, 4, 4, 6, 4, 6, 1, 8, 5, 5, 1], [6, 5, 8, 6, 3, 1, 4, 3, 4, 5, 5, 6, 6, 5, 5, 4, 3, 4, 1, 3, 6, 8, 5, 6], [6, 8, 5, 1, 6, 8, 6, 3, 5, 9, 5, 4, 4, 5, 9, 5, 3, 6, 8, 6, 1, 5, 8, 6], [8, 5, 6, 5, 8, 5, 9, 6, 9, 5, 4, 4, 4, 4, 5, 9, 6, 9, 5, 8, 5, 6, 5, 8], [8, 1, 5, 8, 5, 5, 6, 6, 6, 3, 3, 6, 6, 3, 3, 6, 6, 6, 5, 5, 8, 5, 1, 8], [5, 8, 8, 6, 6, 1, 3, 6, 9, 6, 4, 4, 4, 4, 6, 9, 6, 3, 1, 6, 6, 8, 8, 5]]}], "train": [{"input": [[6, 9, 6, 4, 4, 5, 4, 9, 9, 8, 7, 1, 1, 7, 8, 9, 9, 4, 5, 4, 4, 6, 9, 6], [9, 7, 6, 6, 7, 7, 9, 8, 9, 4, 9, 8, 8, 9, 4, 9, 8, 9, 7, 7, 6, 6, 7, 9], [6, 6, 9, 5, 4, 9, 9, 9, 4, 4, 9, 9, 9, 9, 4, 4, 9, 9, 9, 4, 5, 9, 6, 6], [4, 6, 5, 4, 5, 9, 8, 4, 4, 1, 4, 9, 9, 4, 1, 4, 4, 8, 9, 5, 4, 5, 6, 4], [4, 7, 4, 5, 7, 7, 7, 9, 9, 4, 8, 7, 7, 8, 4, 9, 9, 7, 7, 7, 5, 4, 7, 4], [5, 7, 9, 9, 7, 9, 1, 8, 9, 9, 7, 7, 7, 7, 9, 9, 8, 1, 9, 7, 9, 9, 7, 5], [4, 9, 9, 8, 7, 1, 1, 9, 9, 6, 7, 4, 4, 7, 6, 9, 9, 1, 1, 7, 8, 9, 9, 4], [9, 8, 9, 4, 9, 8, 9, 1, 6, 9, 7, 6, 6, 7, 9, 6, 1, 9, 8, 9, 4, 9, 8, 9], [9, 9, 4, 4, 9, 9, 9, 6, 1, 7, 7, 9, 9, 7, 7, 1, 6, 9, 9, 9, 4, 4, 9, 9], [8, 4, 4, 1, 4, 9, 6, 9, 7, 6, 9, 6, 6, 9, 6, 7, 9, 6, 9, 4, 1, 4, 4, 8], [7, 9, 9, 4, 8, 7, 7, 7, 7, 9, 6, 7, 7, 6, 9, 7, 7, 7, 7, 8, 4, 9, 9, 7], [1, 8, 9, 9, 7, 7, 4, 6, 9, 6, 7, 1, 1, 7, 6, 2, 2, 4, 7, 7, 9, 9, 8, 1], [1, 8, 9, 9, 7, 7, 4, 6, 9, 6, 7, 1, 1, 7, 6, 2, 2, 4, 2, 2, 2, 9, 8, 1], [7, 9, 9, 4, 8, 7, 7, 7, 7, 9, 6, 7, 7, 6, 9, 2, 2, 7, 2, 2, 2, 9, 9, 7], [8, 4, 4, 1, 4, 9, 6, 9, 7, 6, 9, 6, 6, 9, 2, 2, 2, 2, 2, 2, 2, 4, 4, 8], [9, 9, 4, 4, 9, 9, 9, 6, 1, 7, 7, 9, 9, 7, 2, 2, 2, 2, 2, 2, 2, 4, 9, 9], [9, 8, 9, 4, 9, 8, 9, 1, 6, 9, 7, 6, 6, 7, 9, 2, 2, 9, 8, 9, 4, 9, 8, 9], [4, 9, 9, 8, 7, 1, 1, 9, 9, 6, 7, 4, 4, 7, 6, 9, 9, 1, 1, 7, 8, 9, 9, 4], [5, 7, 9, 9, 7, 9, 1, 8, 9, 2, 2, 2, 2, 2, 2, 9, 8, 1, 9, 7, 9, 9, 7, 5], [4, 7, 4, 5, 7, 7, 7, 9, 9, 2, 2, 2, 2, 2, 2, 9, 9, 7, 7, 7, 5, 4, 7, 4], [4, 6, 5, 4, 5, 9, 8, 4, 4, 2, 2, 2, 2, 2, 2, 4, 4, 8, 9, 5, 4, 5, 6, 4], [6, 6, 9, 5, 4, 9, 9, 9, 4, 2, 2, 2, 2, 2, 2, 4, 9, 9, 9, 4, 5, 9, 6, 6], [9, 7, 6, 6, 7, 7, 9, 8, 9, 2, 2, 2, 2, 2, 2, 9, 8, 9, 7, 7, 6, 6, 7, 9], [6, 9, 6, 4, 4, 5, 4, 9, 9, 8, 7, 1, 1, 7, 8, 9, 9, 4, 5, 4, 4, 6, 9, 6]], "output": [[6, 9, 6, 4, 4, 5, 4, 9, 9, 8, 7, 1, 1, 7, 8, 9, 9, 4, 5, 4, 4, 6, 9, 6], [9, 7, 6, 6, 7, 7, 9, 8, 9, 4, 9, 8, 8, 9, 4, 9, 8, 9, 7, 7, 6, 6, 7, 9], [6, 6, 9, 5, 4, 9, 9, 9, 4, 4, 9, 9, 9, 9, 4, 4, 9, 9, 9, 4, 5, 9, 6, 6], [4, 6, 5, 4, 5, 9, 8, 4, 4, 1, 4, 9, 9, 4, 1, 4, 4, 8, 9, 5, 4, 5, 6, 4], [4, 7, 4, 5, 7, 7, 7, 9, 9, 4, 8, 7, 7, 8, 4, 9, 9, 7, 7, 7, 5, 4, 7, 4], [5, 7, 9, 9, 7, 9, 1, 8, 9, 9, 7, 7, 7, 7, 9, 9, 8, 1, 9, 7, 9, 9, 7, 5], [4, 9, 9, 8, 7, 1, 1, 9, 9, 6, 7, 4, 4, 7, 6, 9, 9, 1, 1, 7, 8, 9, 9, 4], [9, 8, 9, 4, 9, 8, 9, 1, 6, 9, 7, 6, 6, 7, 9, 6, 1, 9, 8, 9, 4, 9, 8, 9], [9, 9, 4, 4, 9, 9, 9, 6, 1, 7, 7, 9, 9, 7, 7, 1, 6, 9, 9, 9, 4, 4, 9, 9], [8, 4, 4, 1, 4, 9, 6, 9, 7, 6, 9, 6, 6, 9, 6, 7, 9, 6, 9, 4, 1, 4, 4, 8], [7, 9, 9, 4, 8, 7, 7, 7, 7, 9, 6, 7, 7, 6, 9, 7, 7, 7, 7, 8, 4, 9, 9, 7], [1, 8, 9, 9, 7, 7, 4, 6, 9, 6, 7, 1, 1, 7, 6, 9, 6, 4, 7, 7, 9, 9, 8, 1], [1, 8, 9, 9, 7, 7, 4, 6, 9, 6, 7, 1, 1, 7, 6, 9, 6, 4, 7, 7, 9, 9, 8, 1], [7, 9, 9, 4, 8, 7, 7, 7, 7, 9, 6, 7, 7, 6, 9, 7, 7, 7, 7, 8, 4, 9, 9, 7], [8, 4, 4, 1, 4, 9, 6, 9, 7, 6, 9, 6, 6, 9, 6, 7, 9, 6, 9, 4, 1, 4, 4, 8], [9, 9, 4, 4, 9, 9, 9, 6, 1, 7, 7, 9, 9, 7, 7, 1, 6, 9, 9, 9, 4, 4, 9, 9], [9, 8, 9, 4, 9, 8, 9, 1, 6, 9, 7, 6, 6, 7, 9, 6, 1, 9, 8, 9, 4, 9, 8, 9], [4, 9, 9, 8, 7, 1, 1, 9, 9, 6, 7, 4, 4, 7, 6, 9, 9, 1, 1, 7, 8, 9, 9, 4], [5, 7, 9, 9, 7, 9, 1, 8, 9, 9, 7, 7, 7, 7, 9, 9, 8, 1, 9, 7, 9, 9, 7, 5], [4, 7, 4, 5, 7, 7, 7, 9, 9, 4, 8, 7, 7, 8, 4, 9, 9, 7, 7, 7, 5, 4, 7, 4], [4, 6, 5, 4, 5, 9, 8, 4, 4, 1, 4, 9, 9, 4, 1, 4, 4, 8, 9, 5, 4, 5, 6, 4], [6, 6, 9, 5, 4, 9, 9, 9, 4, 4, 9, 9, 9, 9, 4, 4, 9, 9, 9, 4, 5, 9, 6, 6], [9, 7, 6, 6, 7, 7, 9, 8, 9, 4, 9, 8, 8, 9, 4, 9, 8, 9, 7, 7, 6, 6, 7, 9], [6, 9, 6, 4, 4, 5, 4, 9, 9, 8, 7, 1, 1, 7, 8, 9, 9, 4, 5, 4, 4, 6, 9, 6]]}, {"input": [[9, 5, 4, 1, 4, 6, 7, 1, 5, 7, 1, 7, 7, 1, 7, 5, 1, 7, 6, 4, 1, 4, 5, 9], [5, 4, 4, 4, 9, 9, 1, 7, 1, 6, 7, 5, 5, 7, 6, 1, 7, 1, 9, 9, 4, 4, 4, 5], [4, 4, 6, 5, 6, 4, 5, 1, 6, 7, 6, 4, 4, 6, 7, 6, 1, 5, 4, 6, 5, 6, 4, 4], [1, 4, 5, 1, 4, 4, 2, 2, 7, 5, 7, 6, 6, 7, 5, 7, 6, 7, 4, 4, 1, 5, 4, 1], [4, 9, 6, 4, 6, 6, 2, 2, 6, 7, 6, 6, 6, 6, 7, 6, 7, 1, 6, 6, 4, 6, 9, 4], [6, 9, 4, 4, 6, 4, 2, 2, 4, 6, 6, 1, 1, 6, 6, 4, 5, 7, 4, 6, 4, 4, 9, 6], [2, 2, 2, 2, 2, 7, 2, 2, 8, 5, 3, 6, 6, 3, 5, 8, 8, 5, 7, 1, 7, 5, 1, 7], [2, 2, 2, 2, 2, 5, 8, 6, 6, 3, 3, 8, 8, 3, 3, 6, 6, 8, 5, 7, 6, 1, 7, 1], [5, 1, 6, 7, 6, 4, 8, 6, 5, 5, 8, 6, 6, 8, 5, 5, 6, 8, 4, 6, 7, 6, 1, 5], [7, 6, 7, 5, 7, 6, 5, 3, 5, 5, 8, 8, 8, 8, 5, 5, 3, 5, 6, 7, 5, 7, 6, 7], [1, 7, 6, 7, 6, 6, 3, 3, 8, 8, 5, 5, 5, 5, 8, 8, 3, 3, 6, 6, 7, 6, 7, 1], [7, 5, 4, 6, 6, 1, 6, 8, 6, 8, 5, 8, 8, 5, 8, 6, 8, 6, 1, 6, 6, 4, 5, 7], [7, 5, 4, 6, 6, 1, 6, 8, 6, 8, 5, 8, 8, 5, 8, 6, 8, 6, 1, 6, 6, 4, 5, 7], [1, 7, 6, 7, 6, 6, 3, 3, 8, 8, 5, 5, 5, 5, 8, 8, 3, 3, 6, 6, 7, 6, 7, 1], [7, 6, 7, 5, 7, 6, 5, 3, 5, 5, 8, 8, 8, 8, 5, 5, 3, 5, 6, 7, 5, 7, 6, 7], [5, 1, 6, 7, 6, 4, 8, 6, 5, 5, 8, 6, 6, 8, 5, 5, 6, 8, 4, 6, 7, 6, 1, 5], [1, 7, 1, 6, 7, 5, 8, 6, 6, 3, 3, 8, 8, 3, 3, 6, 6, 8, 5, 7, 6, 1, 7, 1], [7, 1, 5, 7, 1, 7, 5, 8, 8, 5, 3, 6, 6, 3, 5, 8, 8, 5, 7, 1, 7, 5, 1, 7], [6, 9, 4, 4, 6, 4, 7, 5, 4, 6, 6, 1, 1, 6, 6, 4, 5, 7, 4, 6, 4, 4, 9, 6], [4, 9, 6, 4, 6, 6, 1, 7, 6, 7, 6, 6, 6, 6, 7, 6, 7, 1, 6, 6, 4, 6, 9, 4], [1, 4, 5, 1, 4, 4, 7, 6, 7, 5, 7, 6, 6, 7, 5, 7, 6, 7, 4, 4, 1, 5, 4, 1], [4, 4, 6, 5, 6, 4, 5, 1, 6, 7, 6, 4, 4, 6, 7, 6, 1, 5, 4, 6, 5, 6, 4, 4], [5, 4, 4, 4, 9, 9, 1, 7, 1, 6, 7, 5, 5, 7, 6, 1, 7, 1, 9, 9, 4, 4, 4, 5], [9, 5, 4, 1, 4, 6, 7, 1, 5, 7, 1, 7, 7, 1, 7, 5, 1, 7, 6, 4, 1, 4, 5, 9]], "output": [[9, 5, 4, 1, 4, 6, 7, 1, 5, 7, 1, 7, 7, 1, 7, 5, 1, 7, 6, 4, 1, 4, 5, 9], [5, 4, 4, 4, 9, 9, 1, 7, 1, 6, 7, 5, 5, 7, 6, 1, 7, 1, 9, 9, 4, 4, 4, 5], [4, 4, 6, 5, 6, 4, 5, 1, 6, 7, 6, 4, 4, 6, 7, 6, 1, 5, 4, 6, 5, 6, 4, 4], [1, 4, 5, 1, 4, 4, 7, 6, 7, 5, 7, 6, 6, 7, 5, 7, 6, 7, 4, 4, 1, 5, 4, 1], [4, 9, 6, 4, 6, 6, 1, 7, 6, 7, 6, 6, 6, 6, 7, 6, 7, 1, 6, 6, 4, 6, 9, 4], [6, 9, 4, 4, 6, 4, 7, 5, 4, 6, 6, 1, 1, 6, 6, 4, 5, 7, 4, 6, 4, 4, 9, 6], [7, 1, 5, 7, 1, 7, 5, 8, 8, 5, 3, 6, 6, 3, 5, 8, 8, 5, 7, 1, 7, 5, 1, 7], [1, 7, 1, 6, 7, 5, 8, 6, 6, 3, 3, 8, 8, 3, 3, 6, 6, 8, 5, 7, 6, 1, 7, 1], [5, 1, 6, 7, 6, 4, 8, 6, 5, 5, 8, 6, 6, 8, 5, 5, 6, 8, 4, 6, 7, 6, 1, 5], [7, 6, 7, 5, 7, 6, 5, 3, 5, 5, 8, 8, 8, 8, 5, 5, 3, 5, 6, 7, 5, 7, 6, 7], [1, 7, 6, 7, 6, 6, 3, 3, 8, 8, 5, 5, 5, 5, 8, 8, 3, 3, 6, 6, 7, 6, 7, 1], [7, 5, 4, 6, 6, 1, 6, 8, 6, 8, 5, 8, 8, 5, 8, 6, 8, 6, 1, 6, 6, 4, 5, 7], [7, 5, 4, 6, 6, 1, 6, 8, 6, 8, 5, 8, 8, 5, 8, 6, 8, 6, 1, 6, 6, 4, 5, 7], [1, 7, 6, 7, 6, 6, 3, 3, 8, 8, 5, 5, 5, 5, 8, 8, 3, 3, 6, 6, 7, 6, 7, 1], [7, 6, 7, 5, 7, 6, 5, 3, 5, 5, 8, 8, 8, 8, 5, 5, 3, 5, 6, 7, 5, 7, 6, 7], [5, 1, 6, 7, 6, 4, 8, 6, 5, 5, 8, 6, 6, 8, 5, 5, 6, 8, 4, 6, 7, 6, 1, 5], [1, 7, 1, 6, 7, 5, 8, 6, 6, 3, 3, 8, 8, 3, 3, 6, 6, 8, 5, 7, 6, 1, 7, 1], [7, 1, 5, 7, 1, 7, 5, 8, 8, 5, 3, 6, 6, 3, 5, 8, 8, 5, 7, 1, 7, 5, 1, 7], [6, 9, 4, 4, 6, 4, 7, 5, 4, 6, 6, 1, 1, 6, 6, 4, 5, 7, 4, 6, 4, 4, 9, 6], [4, 9, 6, 4, 6, 6, 1, 7, 6, 7, 6, 6, 6, 6, 7, 6, 7, 1, 6, 6, 4, 6, 9, 4], [1, 4, 5, 1, 4, 4, 7, 6, 7, 5, 7, 6, 6, 7, 5, 7, 6, 7, 4, 4, 1, 5, 4, 1], [4, 4, 6, 5, 6, 4, 5, 1, 6, 7, 6, 4, 4, 6, 7, 6, 1, 5, 4, 6, 5, 6, 4, 4], [5, 4, 4, 4, 9, 9, 1, 7, 1, 6, 7, 5, 5, 7, 6, 1, 7, 1, 9, 9, 4, 4, 4, 5], [9, 5, 4, 1, 4, 6, 7, 1, 5, 7, 1, 7, 7, 1, 7, 5, 1, 7, 6, 4, 1, 4, 5, 9]]}, {"input": [[7, 9, 5, 5, 3, 5, 6, 9, 9, 9, 5, 6, 6, 5, 9, 9, 9, 6, 5, 3, 5, 5, 9, 7], [9, 7, 5, 1, 5, 3, 9, 3, 8, 6, 6, 2, 2, 2, 6, 8, 3, 9, 3, 5, 1, 5, 7, 9], [5, 5, 1, 3, 9, 3, 9, 8, 9, 5, 3, 2, 2, 2, 5, 9, 8, 9, 3, 9, 3, 1, 5, 5], [5, 1, 3, 7, 9, 9, 9, 6, 5, 9, 6, 2, 2, 2, 9, 5, 6, 9, 9, 9, 7, 3, 1, 5], [2, 2, 2, 2, 2, 9, 5, 6, 3, 6, 3, 2, 2, 2, 6, 3, 6, 5, 9, 3, 9, 9, 5, 3], [2, 2, 2, 2, 2, 3, 6, 6, 3, 9, 8, 2, 2, 2, 9, 3, 6, 6, 3, 9, 9, 3, 3, 5], [2, 2, 2, 2, 2, 6, 9, 7, 9, 9, 4, 2, 2, 2, 9, 9, 7, 9, 6, 5, 9, 9, 9, 6], [2, 2, 2, 2, 2, 6, 7, 9, 9, 1, 1, 4, 4, 1, 1, 9, 9, 7, 6, 6, 6, 8, 3, 9], [2, 2, 2, 2, 2, 3, 9, 9, 1, 7, 4, 3, 3, 4, 7, 1, 9, 9, 3, 3, 5, 9, 8, 9], [2, 2, 2, 2, 2, 9, 9, 1, 7, 1, 9, 7, 7, 9, 1, 7, 2, 2, 2, 2, 9, 5, 6, 9], [5, 6, 3, 6, 3, 8, 4, 1, 4, 9, 3, 9, 9, 3, 9, 4, 2, 2, 2, 2, 6, 3, 6, 5], [6, 6, 3, 9, 8, 9, 4, 4, 3, 7, 9, 7, 7, 9, 7, 3, 2, 2, 2, 2, 9, 3, 6, 6], [6, 6, 3, 9, 8, 9, 4, 4, 3, 7, 9, 7, 7, 9, 7, 3, 2, 2, 2, 2, 9, 3, 6, 6], [5, 6, 3, 6, 3, 8, 2, 2, 2, 2, 2, 2, 9, 3, 9, 4, 2, 2, 2, 2, 6, 3, 6, 5], [9, 6, 5, 9, 6, 9, 2, 2, 2, 2, 2, 2, 7, 9, 1, 7, 2, 2, 2, 2, 9, 5, 6, 9], [9, 8, 9, 5, 3, 3, 2, 2, 2, 2, 2, 2, 3, 4, 7, 1, 9, 9, 3, 3, 5, 9, 8, 9], [9, 3, 8, 6, 6, 6, 2, 2, 2, 2, 2, 2, 4, 1, 1, 9, 9, 7, 6, 6, 6, 8, 3, 9], [6, 9, 9, 9, 5, 6, 9, 7, 9, 9, 4, 4, 4, 4, 9, 9, 7, 9, 6, 5, 9, 9, 9, 6], [5, 3, 3, 9, 9, 3, 6, 6, 3, 9, 8, 9, 9, 8, 9, 3, 6, 6, 3, 9, 9, 3, 3, 5], [3, 5, 9, 9, 3, 9, 5, 6, 3, 6, 3, 8, 8, 3, 6, 3, 6, 5, 9, 3, 9, 9, 5, 3], [5, 1, 3, 7, 9, 9, 9, 6, 5, 9, 6, 9, 9, 6, 9, 5, 6, 9, 9, 9, 7, 3, 1, 5], [5, 5, 1, 3, 9, 3, 9, 8, 9, 5, 3, 3, 3, 3, 5, 9, 8, 9, 3, 9, 3, 1, 5, 5], [9, 7, 5, 1, 5, 3, 9, 3, 8, 6, 6, 6, 6, 6, 6, 8, 3, 9, 3, 5, 1, 5, 7, 9], [7, 9, 5, 5, 3, 5, 6, 9, 9, 9, 5, 6, 6, 5, 9, 9, 9, 6, 5, 3, 5, 5, 9, 7]], "output": [[7, 9, 5, 5, 3, 5, 6, 9, 9, 9, 5, 6, 6, 5, 9, 9, 9, 6, 5, 3, 5, 5, 9, 7], [9, 7, 5, 1, 5, 3, 9, 3, 8, 6, 6, 6, 6, 6, 6, 8, 3, 9, 3, 5, 1, 5, 7, 9], [5, 5, 1, 3, 9, 3, 9, 8, 9, 5, 3, 3, 3, 3, 5, 9, 8, 9, 3, 9, 3, 1, 5, 5], [5, 1, 3, 7, 9, 9, 9, 6, 5, 9, 6, 9, 9, 6, 9, 5, 6, 9, 9, 9, 7, 3, 1, 5], [3, 5, 9, 9, 3, 9, 5, 6, 3, 6, 3, 8, 8, 3, 6, 3, 6, 5, 9, 3, 9, 9, 5, 3], [5, 3, 3, 9, 9, 3, 6, 6, 3, 9, 8, 9, 9, 8, 9, 3, 6, 6, 3, 9, 9, 3, 3, 5], [6, 9, 9, 9, 5, 6, 9, 7, 9, 9, 4, 4, 4, 4, 9, 9, 7, 9, 6, 5, 9, 9, 9, 6], [9, 3, 8, 6, 6, 6, 7, 9, 9, 1, 1, 4, 4, 1, 1, 9, 9, 7, 6, 6, 6, 8, 3, 9], [9, 8, 9, 5, 3, 3, 9, 9, 1, 7, 4, 3, 3, 4, 7, 1, 9, 9, 3, 3, 5, 9, 8, 9], [9, 6, 5, 9, 6, 9, 9, 1, 7, 1, 9, 7, 7, 9, 1, 7, 1, 9, 9, 6, 9, 5, 6, 9], [5, 6, 3, 6, 3, 8, 4, 1, 4, 9, 3, 9, 9, 3, 9, 4, 1, 4, 8, 3, 6, 3, 6, 5], [6, 6, 3, 9, 8, 9, 4, 4, 3, 7, 9, 7, 7, 9, 7, 3, 4, 4, 9, 8, 9, 3, 6, 6], [6, 6, 3, 9, 8, 9, 4, 4, 3, 7, 9, 7, 7, 9, 7, 3, 4, 4, 9, 8, 9, 3, 6, 6], [5, 6, 3, 6, 3, 8, 4, 1, 4, 9, 3, 9, 9, 3, 9, 4, 1, 4, 8, 3, 6, 3, 6, 5], [9, 6, 5, 9, 6, 9, 9, 1, 7, 1, 9, 7, 7, 9, 1, 7, 1, 9, 9, 6, 9, 5, 6, 9], [9, 8, 9, 5, 3, 3, 9, 9, 1, 7, 4, 3, 3, 4, 7, 1, 9, 9, 3, 3, 5, 9, 8, 9], [9, 3, 8, 6, 6, 6, 7, 9, 9, 1, 1, 4, 4, 1, 1, 9, 9, 7, 6, 6, 6, 8, 3, 9], [6, 9, 9, 9, 5, 6, 9, 7, 9, 9, 4, 4, 4, 4, 9, 9, 7, 9, 6, 5, 9, 9, 9, 6], [5, 3, 3, 9, 9, 3, 6, 6, 3, 9, 8, 9, 9, 8, 9, 3, 6, 6, 3, 9, 9, 3, 3, 5], [3, 5, 9, 9, 3, 9, 5, 6, 3, 6, 3, 8, 8, 3, 6, 3, 6, 5, 9, 3, 9, 9, 5, 3], [5, 1, 3, 7, 9, 9, 9, 6, 5, 9, 6, 9, 9, 6, 9, 5, 6, 9, 9, 9, 7, 3, 1, 5], [5, 5, 1, 3, 9, 3, 9, 8, 9, 5, 3, 3, 3, 3, 5, 9, 8, 9, 3, 9, 3, 1, 5, 5], [9, 7, 5, 1, 5, 3, 9, 3, 8, 6, 6, 6, 6, 6, 6, 8, 3, 9, 3, 5, 1, 5, 7, 9], [7, 9, 5, 5, 3, 5, 6, 9, 9, 9, 5, 6, 6, 5, 9, 9, 9, 6, 5, 3, 5, 5, 9, 7]]}, {"input": [[5, 9, 8, 6, 6, 5, 9, 5, 6, 6, 9, 9, 9, 9, 6, 6, 5, 9, 5, 6, 6, 8, 9, 5], [9, 5, 8, 5, 5, 5, 5, 1, 4, 6, 9, 6, 6, 9, 6, 4, 1, 5, 5, 5, 5, 8, 5, 9], [8, 8, 3, 3, 6, 8, 6, 4, 5, 9, 2, 2, 2, 2, 2, 5, 4, 6, 8, 6, 3, 3, 8, 8], [6, 5, 3, 3, 9, 6, 6, 6, 9, 5, 2, 2, 2, 2, 2, 9, 6, 6, 6, 9, 3, 3, 5, 6], [6, 5, 6, 9, 9, 9, 9, 9, 9, 5, 6, 6, 6, 6, 5, 9, 9, 9, 9, 9, 9, 6, 5, 6], [5, 5, 8, 6, 9, 9, 9, 6, 1, 9, 6, 6, 6, 6, 9, 1, 6, 9, 9, 9, 6, 8, 5, 5], [9, 5, 6, 6, 9, 9, 8, 7, 6, 6, 4, 7, 7, 4, 6, 6, 7, 8, 9, 9, 6, 6, 5, 9], [5, 1, 4, 6, 9, 6, 7, 4, 7, 4, 4, 8, 8, 4, 4, 7, 4, 7, 6, 9, 6, 4, 1, 5], [6, 4, 5, 9, 9, 1, 6, 7, 6, 8, 6, 8, 8, 6, 8, 6, 7, 6, 1, 9, 9, 5, 4, 6], [6, 6, 9, 5, 5, 9, 6, 4, 8, 6, 6, 6, 6, 6, 6, 8, 4, 6, 9, 5, 5, 9, 6, 6], [9, 9, 9, 5, 6, 6, 4, 4, 6, 6, 4, 6, 6, 2, 2, 2, 2, 2, 6, 6, 5, 9, 9, 9], [9, 6, 1, 9, 6, 6, 7, 8, 8, 6, 6, 1, 1, 2, 2, 2, 2, 2, 6, 6, 9, 1, 6, 9], [9, 6, 1, 9, 6, 6, 7, 8, 8, 6, 6, 1, 1, 2, 2, 2, 2, 2, 6, 6, 9, 1, 6, 9], [9, 9, 9, 5, 6, 6, 4, 4, 6, 6, 4, 6, 6, 2, 2, 2, 2, 2, 6, 6, 5, 9, 9, 9], [6, 6, 9, 5, 5, 9, 6, 4, 8, 6, 6, 6, 6, 2, 2, 2, 2, 2, 9, 5, 5, 9, 6, 6], [6, 4, 5, 9, 9, 1, 6, 7, 6, 8, 6, 8, 8, 6, 8, 6, 7, 6, 1, 9, 9, 5, 4, 6], [5, 1, 4, 6, 9, 6, 7, 4, 7, 4, 4, 8, 8, 4, 4, 7, 4, 7, 6, 9, 6, 4, 1, 5], [9, 5, 6, 6, 9, 9, 8, 7, 6, 6, 4, 7, 7, 4, 6, 6, 7, 8, 9, 9, 6, 6, 5, 9], [5, 5, 8, 6, 9, 9, 9, 6, 1, 9, 6, 6, 6, 6, 9, 1, 6, 9, 9, 9, 6, 8, 5, 5], [6, 5, 6, 9, 9, 9, 9, 9, 9, 5, 6, 6, 6, 6, 5, 9, 9, 9, 9, 9, 9, 6, 5, 6], [6, 5, 3, 3, 9, 6, 6, 6, 9, 5, 5, 9, 9, 5, 5, 9, 6, 6, 6, 9, 3, 3, 5, 6], [8, 8, 3, 3, 6, 8, 6, 4, 5, 9, 9, 1, 1, 9, 9, 5, 4, 6, 8, 6, 3, 3, 8, 8], [9, 5, 8, 5, 5, 5, 5, 1, 4, 6, 9, 6, 6, 9, 6, 4, 1, 5, 5, 5, 5, 8, 5, 9], [5, 9, 8, 6, 6, 5, 9, 5, 6, 6, 9, 9, 9, 9, 6, 6, 5, 9, 5, 6, 6, 8, 9, 5]], "output": [[5, 9, 8, 6, 6, 5, 9, 5, 6, 6, 9, 9, 9, 9, 6, 6, 5, 9, 5, 6, 6, 8, 9, 5], [9, 5, 8, 5, 5, 5, 5, 1, 4, 6, 9, 6, 6, 9, 6, 4, 1, 5, 5, 5, 5, 8, 5, 9], [8, 8, 3, 3, 6, 8, 6, 4, 5, 9, 9, 1, 1, 9, 9, 5, 4, 6, 8, 6, 3, 3, 8, 8], [6, 5, 3, 3, 9, 6, 6, 6, 9, 5, 5, 9, 9, 5, 5, 9, 6, 6, 6, 9, 3, 3, 5, 6], [6, 5, 6, 9, 9, 9, 9, 9, 9, 5, 6, 6, 6, 6, 5, 9, 9, 9, 9, 9, 9, 6, 5, 6], [5, 5, 8, 6, 9, 9, 9, 6, 1, 9, 6, 6, 6, 6, 9, 1, 6, 9, 9, 9, 6, 8, 5, 5], [9, 5, 6, 6, 9, 9, 8, 7, 6, 6, 4, 7, 7, 4, 6, 6, 7, 8, 9, 9, 6, 6, 5, 9], [5, 1, 4, 6, 9, 6, 7, 4, 7, 4, 4, 8, 8, 4, 4, 7, 4, 7, 6, 9, 6, 4, 1, 5], [6, 4, 5, 9, 9, 1, 6, 7, 6, 8, 6, 8, 8, 6, 8, 6, 7, 6, 1, 9, 9, 5, 4, 6], [6, 6, 9, 5, 5, 9, 6, 4, 8, 6, 6, 6, 6, 6, 6, 8, 4, 6, 9, 5, 5, 9, 6, 6], [9, 9, 9, 5, 6, 6, 4, 4, 6, 6, 4, 6, 6, 4, 6, 6, 4, 4, 6, 6, 5, 9, 9, 9], [9, 6, 1, 9, 6, 6, 7, 8, 8, 6, 6, 1, 1, 6, 6, 8, 8, 7, 6, 6, 9, 1, 6, 9], [9, 6, 1, 9, 6, 6, 7, 8, 8, 6, 6, 1, 1, 6, 6, 8, 8, 7, 6, 6, 9, 1, 6, 9], [9, 9, 9, 5, 6, 6, 4, 4, 6, 6, 4, 6, 6, 4, 6, 6, 4, 4, 6, 6, 5, 9, 9, 9], [6, 6, 9, 5, 5, 9, 6, 4, 8, 6, 6, 6, 6, 6, 6, 8, 4, 6, 9, 5, 5, 9, 6, 6], [6, 4, 5, 9, 9, 1, 6, 7, 6, 8, 6, 8, 8, 6, 8, 6, 7, 6, 1, 9, 9, 5, 4, 6], [5, 1, 4, 6, 9, 6, 7, 4, 7, 4, 4, 8, 8, 4, 4, 7, 4, 7, 6, 9, 6, 4, 1, 5], [9, 5, 6, 6, 9, 9, 8, 7, 6, 6, 4, 7, 7, 4, 6, 6, 7, 8, 9, 9, 6, 6, 5, 9], [5, 5, 8, 6, 9, 9, 9, 6, 1, 9, 6, 6, 6, 6, 9, 1, 6, 9, 9, 9, 6, 8, 5, 5], [6, 5, 6, 9, 9, 9, 9, 9, 9, 5, 6, 6, 6, 6, 5, 9, 9, 9, 9, 9, 9, 6, 5, 6], [6, 5, 3, 3, 9, 6, 6, 6, 9, 5, 5, 9, 9, 5, 5, 9, 6, 6, 6, 9, 3, 3, 5, 6], [8, 8, 3, 3, 6, 8, 6, 4, 5, 9, 9, 1, 1, 9, 9, 5, 4, 6, 8, 6, 3, 3, 8, 8], [9, 5, 8, 5, 5, 5, 5, 1, 4, 6, 9, 6, 6, 9, 6, 4, 1, 5, 5, 5, 5, 8, 5, 9], [5, 9, 8, 6, 6, 5, 9, 5, 6, 6, 9, 9, 9, 9, 6, 6, 5, 9, 5, 6, 6, 8, 9, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/92e50de0.json b/data/arc-agi/evaluation/92e50de0.json
deleted file mode 100644
index 1ebaefb..0000000
--- a/data/arc-agi/evaluation/92e50de0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 1, 3, 3, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 3, 3, 3, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 3, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0]], "output": [[0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 1, 3, 3, 0, 1, 0, 0, 0, 1, 3, 3, 0, 1, 0, 0, 0, 1, 3, 3, 0, 1, 0, 0, 0], [0, 0, 0, 1, 3, 3, 3, 1, 0, 0, 0, 1, 3, 3, 3, 1, 0, 0, 0, 1, 3, 3, 3, 1, 0, 0, 0], [0, 0, 0, 1, 0, 3, 0, 1, 0, 0, 0, 1, 0, 3, 0, 1, 0, 0, 0, 1, 0, 3, 0, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 1, 3, 3, 0, 1, 0, 0, 0, 1, 3, 3, 0, 1, 0, 0, 0, 1, 3, 3, 0, 1, 0, 0, 0], [0, 0, 0, 1, 3, 3, 3, 1, 0, 0, 0, 1, 3, 3, 3, 1, 0, 0, 0, 1, 3, 3, 3, 1, 0, 0, 0], [0, 0, 0, 1, 0, 3, 0, 1, 0, 0, 0, 1, 0, 3, 0, 1, 0, 0, 0, 1, 0, 3, 0, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 1, 3, 3, 0, 1, 0, 0, 0, 1, 3, 3, 0, 1, 0, 0, 0, 1, 3, 3, 0, 1, 0, 0, 0], [0, 0, 0, 1, 3, 3, 3, 1, 0, 0, 0, 1, 3, 3, 3, 1, 0, 0, 0, 1, 3, 3, 3, 1, 0, 0, 0], [0, 0, 0, 1, 0, 3, 0, 1, 0, 0, 0, 1, 0, 3, 0, 1, 0, 0, 0, 1, 0, 3, 0, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0]]}, {"input": [[0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 4, 0, 4, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0]], "output": [[0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 2, 0, 4, 0], [0, 0, 0, 2, 4, 0, 4, 2, 0, 0, 0, 2, 4, 0, 4, 2, 0, 0, 0, 2, 4, 0, 4], [0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 2, 0, 4, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 2, 0, 4, 0], [0, 0, 0, 2, 4, 0, 4, 2, 0, 0, 0, 2, 4, 0, 4, 2, 0, 0, 0, 2, 4, 0, 4], [0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 2, 0, 4, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 2, 0, 4, 0], [0, 0, 0, 2, 4, 0, 4, 2, 0, 0, 0, 2, 4, 0, 4, 2, 0, 0, 0, 2, 4, 0, 4], [0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 2, 0, 4, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0]]}, {"input": [[0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 2, 2, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 2, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 2, 2, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0]], "output": [[0, 0, 0, 8, 2, 2, 0, 8, 0, 0, 0, 8, 2, 2, 0, 8, 0, 0, 0, 8, 2, 2, 0, 8, 0], [0, 0, 0, 8, 0, 2, 0, 8, 0, 0, 0, 8, 0, 2, 0, 8, 0, 0, 0, 8, 0, 2, 0, 8, 0], [0, 0, 0, 8, 0, 2, 2, 8, 0, 0, 0, 8, 0, 2, 2, 8, 0, 0, 0, 8, 0, 2, 2, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 2, 2, 0, 8, 0, 0, 0, 8, 2, 2, 0, 8, 0, 0, 0, 8, 2, 2, 0, 8, 0], [0, 0, 0, 8, 0, 2, 0, 8, 0, 0, 0, 8, 0, 2, 0, 8, 0, 0, 0, 8, 0, 2, 0, 8, 0], [0, 0, 0, 8, 0, 2, 2, 8, 0, 0, 0, 8, 0, 2, 2, 8, 0, 0, 0, 8, 0, 2, 2, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 2, 2, 0, 8, 0, 0, 0, 8, 2, 2, 0, 8, 0, 0, 0, 8, 2, 2, 0, 8, 0], [0, 0, 0, 8, 0, 2, 0, 8, 0, 0, 0, 8, 0, 2, 0, 8, 0, 0, 0, 8, 0, 2, 0, 8, 0], [0, 0, 0, 8, 0, 2, 2, 8, 0, 0, 0, 8, 0, 2, 2, 8, 0, 0, 0, 8, 0, 2, 2, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 2, 2, 0, 8, 0, 0, 0, 8, 2, 2, 0, 8, 0, 0, 0, 8, 2, 2, 0, 8, 0]]}], "test": [{"input": [[0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 8, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 8, 8, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 8, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0]], "output": [[0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 8, 0, 3, 0, 0, 0, 3, 0, 8, 0, 3, 0, 0, 0, 3, 0, 8, 0, 3, 0, 0, 0, 3, 0, 8, 0, 3, 0], [8, 8, 0, 3, 0, 0, 0, 3, 8, 8, 0, 3, 0, 0, 0, 3, 8, 8, 0, 3, 0, 0, 0, 3, 8, 8, 0, 3, 0], [0, 0, 8, 3, 0, 0, 0, 3, 0, 0, 8, 3, 0, 0, 0, 3, 0, 0, 8, 3, 0, 0, 0, 3, 0, 0, 8, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 8, 0, 3, 0, 0, 0, 3, 0, 8, 0, 3, 0, 0, 0, 3, 0, 8, 0, 3, 0, 0, 0, 3, 0, 8, 0, 3, 0], [8, 8, 0, 3, 0, 0, 0, 3, 8, 8, 0, 3, 0, 0, 0, 3, 8, 8, 0, 3, 0, 0, 0, 3, 8, 8, 0, 3, 0], [0, 0, 8, 3, 0, 0, 0, 3, 0, 0, 8, 3, 0, 0, 0, 3, 0, 0, 8, 3, 0, 0, 0, 3, 0, 0, 8, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 8, 0, 3, 0, 0, 0, 3, 0, 8, 0, 3, 0, 0, 0, 3, 0, 8, 0, 3, 0, 0, 0, 3, 0, 8, 0, 3, 0], [8, 8, 0, 3, 0, 0, 0, 3, 8, 8, 0, 3, 0, 0, 0, 3, 8, 8, 0, 3, 0, 0, 0, 3, 8, 8, 0, 3, 0], [0, 0, 8, 3, 0, 0, 0, 3, 0, 0, 8, 3, 0, 0, 0, 3, 0, 0, 8, 3, 0, 0, 0, 3, 0, 0, 8, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 8, 0, 3, 0, 0, 0, 3, 0, 8, 0, 3, 0, 0, 0, 3, 0, 8, 0, 3, 0, 0, 0, 3, 0, 8, 0, 3, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/9356391f.json b/data/arc-agi/evaluation/9356391f.json
deleted file mode 100644
index 0479801..0000000
--- a/data/arc-agi/evaluation/9356391f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 2, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 2, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 3, 3, 3, 3, 3, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 3, 2, 2, 2, 3, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 3, 2, 1, 2, 3, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 3, 2, 2, 2, 3, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 3, 3, 3, 3, 3, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[2, 3, 3, 4, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 3, 3, 4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [8, 0, 4, 4, 4, 4, 4, 4, 4, 0, 8, 0, 0, 0, 0, 0], [8, 0, 4, 3, 3, 3, 3, 3, 4, 0, 8, 0, 0, 0, 0, 0], [8, 0, 4, 3, 3, 3, 3, 3, 4, 0, 8, 0, 0, 0, 0, 0], [8, 0, 4, 3, 3, 2, 3, 3, 4, 0, 8, 0, 0, 0, 0, 0], [8, 0, 4, 3, 3, 3, 3, 3, 4, 0, 8, 0, 0, 0, 0, 0], [8, 0, 4, 3, 3, 3, 3, 3, 4, 0, 8, 0, 0, 0, 0, 0], [8, 0, 4, 4, 4, 4, 4, 4, 4, 0, 8, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0]]}], "test": [{"input": [[3, 2, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 2, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0], [0, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 8, 1, 0], [0, 0, 0, 0, 0, 0, 1, 8, 0, 2, 2, 2, 0, 8, 1, 0], [0, 0, 0, 0, 0, 0, 1, 8, 0, 2, 3, 2, 0, 8, 1, 0], [0, 0, 0, 0, 0, 0, 1, 8, 0, 2, 2, 2, 0, 8, 1, 0], [0, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 8, 1, 0], [0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/93b4f4b3.json b/data/arc-agi/evaluation/93b4f4b3.json
deleted file mode 100644
index 0b7e4e3..0000000
--- a/data/arc-agi/evaluation/93b4f4b3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 1, 1, 0, 0, 2, 2, 0, 0], [1, 0, 0, 0, 0, 1, 0, 0, 2, 2, 0, 0], [1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 1, 0, 0, 3, 3, 0, 0], [1, 1, 0, 0, 1, 1, 0, 3, 3, 3, 3, 0], [1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 1, 1, 0, 6, 6, 6, 6, 0], [1, 1, 0, 0, 1, 1, 0, 0, 6, 6, 0, 0], [1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 1], [1, 1, 3, 3, 1, 1], [1, 3, 3, 3, 3, 1], [1, 1, 1, 1, 1, 1], [1, 6, 6, 6, 6, 1], [1, 1, 6, 6, 1, 1], [1, 1, 1, 1, 1, 1], [1, 1, 2, 2, 1, 1], [1, 1, 2, 2, 1, 1], [1, 1, 1, 1, 1, 1]]}, {"input": [[5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [5, 5, 0, 0, 0, 5, 0, 3, 0, 0, 3, 0], [5, 5, 5, 0, 0, 5, 0, 3, 0, 0, 3, 0], [5, 5, 5, 5, 0, 5, 0, 3, 3, 3, 3, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 5, 5, 0, 2, 2, 2, 0, 0], [5, 0, 0, 5, 5, 5, 0, 2, 2, 0, 0, 0], [5, 0, 5, 5, 5, 5, 0, 2, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [5, 0, 5, 5, 0, 5, 0, 0, 1, 1, 1, 0], [5, 0, 5, 5, 0, 5, 0, 0, 0, 1, 1, 0], [5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 1, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0]], "output": [[5, 5, 5, 5, 5, 5], [5, 5, 1, 1, 1, 5], [5, 5, 5, 1, 1, 5], [5, 5, 5, 5, 1, 5], [5, 5, 5, 5, 5, 5], [5, 2, 2, 2, 5, 5], [5, 2, 2, 5, 5, 5], [5, 2, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5], [5, 3, 5, 5, 3, 5], [5, 3, 5, 5, 3, 5], [5, 3, 3, 3, 3, 5], [5, 5, 5, 5, 5, 5]]}], "test": [{"input": [[8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [8, 0, 0, 0, 8, 0, 2, 2, 2, 0], [8, 8, 0, 8, 8, 0, 0, 0, 2, 0], [8, 0, 0, 0, 8, 0, 0, 0, 2, 0], [8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [8, 0, 0, 0, 8, 0, 4, 0, 4, 0], [8, 8, 8, 0, 8, 0, 4, 0, 4, 0], [8, 8, 8, 0, 8, 0, 4, 4, 4, 0], [8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [8, 0, 8, 0, 8, 0, 3, 3, 3, 0], [8, 0, 8, 0, 8, 0, 0, 3, 0, 0], [8, 0, 0, 0, 8, 0, 3, 3, 3, 0], [8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [8, 8, 0, 0, 8, 0, 0, 7, 7, 0], [8, 0, 0, 0, 8, 0, 7, 7, 7, 0], [8, 0, 0, 8, 8, 0, 7, 7, 0, 0], [8, 8, 8, 8, 8, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8], [8, 3, 3, 3, 8], [8, 8, 3, 8, 8], [8, 3, 3, 3, 8], [8, 8, 8, 8, 8], [8, 2, 2, 2, 8], [8, 8, 8, 2, 8], [8, 8, 8, 2, 8], [8, 8, 8, 8, 8], [8, 4, 8, 4, 8], [8, 4, 8, 4, 8], [8, 4, 4, 4, 8], [8, 8, 8, 8, 8], [8, 8, 7, 7, 8], [8, 7, 7, 7, 8], [8, 7, 7, 8, 8], [8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/93c31fbe.json b/data/arc-agi/evaluation/93c31fbe.json
deleted file mode 100644
index 8b15114..0000000
--- a/data/arc-agi/evaluation/93c31fbe.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0], [0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0], [0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 8, 8, 0], [0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 8, 1, 1, 0, 0, 0, 8, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 1, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 8, 8, 0], [0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 1, 0, 1, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 8, 1, 1, 0, 1, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 0, 0, 1, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 1, 0, 1, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 3, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 1, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 4, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 0, 0, 4, 0, 0], [0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 4, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 0, 0, 4, 0, 0], [0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 4, 4, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/94133066.json b/data/arc-agi/evaluation/94133066.json
deleted file mode 100644
index 79ef891..0000000
--- a/data/arc-agi/evaluation/94133066.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 2, 1, 1, 1, 1, 1, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 8, 8, 8, 1, 8, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 8, 8, 8, 8, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 8, 1, 1, 1, 8, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 3, 1, 1, 1, 1, 1, 4, 1], [1, 1, 1, 1, 1, 8, 1, 1, 1], [1, 1, 8, 8, 1, 1, 1, 1, 1], [1, 1, 1, 8, 1, 8, 8, 1, 1], [1, 1, 1, 8, 1, 8, 1, 1, 1], [1, 1, 1, 8, 8, 8, 1, 1, 1], [1, 1, 8, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 1, 1, 1, 1, 8, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 2, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 1, 1, 1, 1, 5, 1], [1, 1, 1, 1, 2, 1, 1, 1, 1], [1, 1, 1, 1, 2, 1, 1, 1, 1], [1, 1, 2, 2, 2, 2, 2, 1, 1], [1, 1, 1, 1, 1, 1, 2, 1, 1], [1, 1, 1, 1, 1, 1, 2, 1, 1], [1, 8, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 2, 1, 1, 1, 1, 1, 1, 3, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 1, 1, 1, 5, 1, 1, 5, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 5, 5, 1, 1, 5, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 5, 5, 1, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 4, 1], [1, 1, 1, 1, 1, 1, 1, 5, 1, 1], [1, 1, 1, 1, 1, 1, 1, 5, 1, 1], [1, 1, 1, 1, 1, 1, 1, 5, 1, 1], [1, 1, 1, 1, 1, 1, 1, 5, 1, 1], [1, 1, 1, 1, 1, 1, 1, 5, 1, 1], [1, 1, 1, 1, 5, 5, 1, 5, 1, 1], [1, 1, 5, 5, 1, 1, 5, 5, 1, 1], [1, 1, 1, 5, 1, 1, 5, 1, 1, 1], [1, 2, 1, 1, 1, 1, 1, 1, 3, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 1, 1, 1, 1, 1, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 3, 3, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 3, 3, 3, 3, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 3, 3, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1], [1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1], [1, 1, 3, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1], [1, 1, 1, 1, 3, 3, 3, 3, 3, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/94414823.json b/data/arc-agi/evaluation/94414823.json
deleted file mode 100644
index e4f6469..0000000
--- a/data/arc-agi/evaluation/94414823.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 4, 4, 8, 8, 5, 0, 0], [0, 0, 5, 4, 4, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 4, 4, 5, 0, 0], [0, 0, 5, 8, 8, 4, 4, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 7, 7, 6, 6, 5, 0, 0], [0, 0, 5, 7, 7, 6, 6, 5, 0, 0], [0, 0, 5, 6, 6, 7, 7, 5, 0, 0], [0, 0, 5, 6, 6, 7, 7, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 3, 3, 2, 2, 5, 0, 0], [0, 0, 5, 3, 3, 2, 2, 5, 0, 0], [0, 0, 5, 2, 2, 3, 3, 5, 0, 0], [0, 0, 5, 2, 2, 3, 3, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 9, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 1, 1, 9, 9, 5, 0, 0], [0, 0, 5, 1, 1, 9, 9, 5, 0, 0], [0, 0, 5, 9, 9, 1, 1, 5, 0, 0], [0, 0, 5, 9, 9, 1, 1, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 9, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/94be5b80.json b/data/arc-agi/evaluation/94be5b80.json
deleted file mode 100644
index dfae44b..0000000
--- a/data/arc-agi/evaluation/94be5b80.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 6, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 6, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 2, 1, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 2, 1, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 2, 1, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 1, 8, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 1, 8, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 1, 8, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/95a58926.json b/data/arc-agi/evaluation/95a58926.json
deleted file mode 100644
index a8de18b..0000000
--- a/data/arc-agi/evaluation/95a58926.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 2, 5, 0, 0, 2, 0, 5, 0, 0, 0], [2, 0, 0, 0, 5, 0, 2, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 2, 0, 2, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [2, 5, 5, 5, 5, 5, 5, 5, 2, 5, 5, 5, 5], [0, 2, 0, 0, 5, 0, 2, 0, 0, 5, 0, 0, 0], [0, 0, 2, 0, 5, 0, 0, 2, 0, 5, 0, 2, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2, 5, 5], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 2, 0, 0, 5, 0, 2, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 2], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 2, 0, 0]], "output": [[0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 2, 5, 5, 5, 5, 2, 5, 5, 5], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 2, 5, 5, 5, 5, 2, 5, 5, 5], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 2, 5, 5, 5, 5, 2, 5, 5, 5], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0]]}, {"input": [[0, 0, 3, 0, 0, 5, 3, 3, 0, 3, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 3, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 5, 0, 0, 0, 0, 3, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 3, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5], [3, 3, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 3, 0, 3, 3, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 3, 0], [3, 3, 0, 3, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 3, 0, 5, 0, 0, 0, 3, 0], [5, 5, 3, 5, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 3], [0, 0, 0, 3, 3, 5, 0, 3, 3, 0, 0, 5, 0, 0, 0, 3, 3], [0, 0, 0, 0, 0, 5, 0, 3, 0, 0, 0, 5, 0, 0, 0, 0, 3], [3, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 3, 0, 0, 0, 3, 0], [3, 0, 0, 0, 0, 5, 0, 0, 0, 0, 3, 5, 0, 0, 0, 3, 3], [3, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 5, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [3, 0, 0, 0, 0, 5, 0, 0, 0, 3, 0, 5, 0, 0, 0, 0, 0], [3, 0, 3, 0, 0, 5, 0, 0, 0, 0, 0, 5, 3, 0, 3, 0, 3], [3, 0, 0, 0, 0, 5, 3, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 4, 0, 0, 5, 0, 4, 0, 5], [0, 4, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 4, 4, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 4, 5, 0, 0, 0, 5, 0, 0, 4, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 4], [0, 0, 0, 5, 0, 4, 4, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 4, 0, 4, 4, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [4, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0, 5, 4, 0, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 4, 0, 5], [0, 0, 0, 5, 4, 0, 0, 5, 0, 0, 0, 5, 4, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 0, 5, 4, 0, 0, 5, 0, 0, 0, 5, 0, 0, 4, 5, 0, 0, 0, 5, 0, 0, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 5, 5, 5, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 4, 0, 4, 0, 0, 0, 5], [0, 0, 0, 5, 0, 4, 0, 5, 4, 0, 0, 4, 0, 0, 4, 5, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 0, 5, 0, 4, 0, 5, 4, 4, 0, 5, 0, 0, 0, 5, 0, 4, 0, 5, 0, 0, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 4, 0, 4, 0, 4, 4, 0, 0, 5, 0, 0, 0, 5]], "output": [[0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5], [5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 4], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5]]}], "test": [{"input": [[0, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 5, 0, 0, 1, 0, 0, 5, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [1, 0, 0, 0, 1, 5, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 1, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 1], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 1, 1, 5, 5, 5, 5, 5, 5, 1, 5, 5, 1, 5, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 1, 0, 1, 0, 0, 5, 0, 0, 1], [0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 1, 0], [0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 1, 0], [5, 5, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 5, 5, 5, 5, 5, 1, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 1, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 5, 1, 0, 1, 0, 0, 5, 0, 0, 0], [1, 5, 5, 5, 5, 5, 5, 5, 1, 5, 5, 5, 1, 5, 5, 5, 5, 1, 1, 5, 5, 5, 5, 5, 1, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 1], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 1, 5, 5, 5, 5, 5, 1, 5, 5, 5, 5, 5, 1, 5, 5, 5, 5, 5, 1, 5, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 1, 5, 5, 5, 5, 5, 1, 5, 5, 5, 5, 5, 1, 5, 5, 5, 5, 5, 1, 5, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 1, 5, 5, 5, 5, 5, 1, 5, 5, 5, 5, 5, 1, 5, 5, 5, 5, 5, 1, 5, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/963f59bc.json b/data/arc-agi/evaluation/963f59bc.json
deleted file mode 100644
index 98a63f4..0000000
--- a/data/arc-agi/evaluation/963f59bc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 1, 1, 1, 0, 3, 3, 3, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 1, 1, 1, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 6, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 6, 6], [0, 0, 1, 0, 0, 0, 0, 0, 0, 6, 0], [0, 1, 1, 1, 1, 0, 0, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/96a8c0cd.json b/data/arc-agi/evaluation/96a8c0cd.json
deleted file mode 100644
index 30ee6fe..0000000
--- a/data/arc-agi/evaluation/96a8c0cd.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0], [2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 1, 0], [2, 2, 2, 2, 2, 2, 3, 0, 2, 2, 2, 2, 2, 3, 0, 0, 2, 2, 2, 2, 1, 0], [0, 0, 0, 0, 0, 2, 3, 0, 2, 1, 0, 0, 2, 3, 0, 0, 2, 1, 0, 0, 1, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 1, 0, 0, 2, 2, 2, 2, 2, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [1, 1, 0, 0, 1, 1, 1, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 3, 3, 3, 0, 3, 3, 3, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 2, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 3, 3, 3, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 1, 1, 1, 0, 1, 1, 1, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 3, 3, 3, 0, 3, 3, 3, 2, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 3, 3, 3, 0, 2, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 3, 3, 3, 0, 3, 3, 3, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 3, 3, 3, 0, 0, 0, 0, 3, 3], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 2, 2, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 3, 0, 2, 1, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 3, 0, 2, 1, 0, 2, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 1, 0, 2, 2, 2, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 1, 0, 2, 2, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 3, 0, 0, 0, 2, 1, 0, 2, 2, 2, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 2, 3, 2, 2, 2, 2, 1, 0, 0, 0, 0, 0, 2, 3, 0, 0, 2, 2, 2, 2, 2, 3, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 1, 0, 0, 1, 0, 0, 3, 0, 0, 2, 3, 0, 0, 2, 1, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 2, 2, 2, 2, 2, 1, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/97239e3d.json b/data/arc-agi/evaluation/97239e3d.json
deleted file mode 100644
index 6513de7..0000000
--- a/data/arc-agi/evaluation/97239e3d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [2, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 2, 8, 8, 8, 0], [2, 8, 2, 8, 0, 8, 2, 8, 0, 8, 2, 8, 2, 8, 0, 8, 0], [2, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 2, 8, 8, 8, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [2, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 2, 8, 8, 8, 0], [2, 8, 2, 8, 0, 8, 2, 8, 0, 8, 2, 8, 2, 8, 0, 8, 0], [2, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 2, 8, 8, 8, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 6, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 1, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 8, 8, 8, 6, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 6], [0, 8, 0, 8, 6, 8, 6, 8, 0, 8, 6, 8, 0, 8, 6, 8, 6], [0, 8, 8, 8, 6, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 6], [0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 8, 8, 8, 0, 8, 8, 8, 1, 8, 8, 8, 0, 8, 8, 8, 0], [1, 8, 1, 8, 0, 8, 1, 8, 1, 8, 0, 8, 0, 8, 0, 8, 0], [1, 8, 8, 8, 0, 8, 8, 8, 1, 8, 8, 8, 0, 8, 8, 8, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 7, 8, 8, 8, 7], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 7, 8, 7, 8, 7], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 7, 8, 8, 8, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [3, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 3, 8, 8, 8, 0], [3, 8, 3, 8, 0, 8, 3, 8, 0, 8, 3, 8, 3, 8, 0, 8, 0], [3, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 3, 8, 8, 8, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 4, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 4, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 2, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 2, 8, 0, 8, 2, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 2, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 8, 8, 8, 4, 8, 8, 8, 0, 8, 8, 8, 4, 8, 8, 8, 0], [0, 8, 0, 8, 4, 8, 4, 8, 0, 8, 4, 8, 4, 8, 0, 8, 0], [0, 8, 8, 8, 4, 8, 8, 8, 0, 8, 8, 8, 4, 8, 8, 8, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 8, 8, 8, 4, 8, 8, 8, 0, 8, 8, 8, 4, 8, 8, 8, 0], [0, 8, 0, 8, 4, 8, 4, 8, 0, 8, 4, 8, 4, 8, 0, 8, 0], [0, 8, 8, 8, 4, 8, 8, 8, 0, 8, 8, 8, 4, 8, 8, 8, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 8, 8, 8, 2, 8, 8, 8, 0, 8, 8, 8, 2, 8, 8, 8, 0], [0, 8, 0, 8, 2, 8, 2, 8, 0, 8, 2, 8, 2, 8, 0, 8, 0], [0, 8, 8, 8, 2, 8, 8, 8, 0, 8, 8, 8, 2, 8, 8, 8, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/9772c176.json b/data/arc-agi/evaluation/9772c176.json
deleted file mode 100644
index 494a248..0000000
--- a/data/arc-agi/evaluation/9772c176.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 8, 8, 8, 8, 8, 8, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 8, 8, 8, 8, 8, 8, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 8, 8, 8, 8, 8, 8, 8, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 8, 8, 8, 8, 8, 8, 8, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 8, 8, 8, 8, 8, 8, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 0, 0, 0, 0, 0, 0], [4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 8, 8, 8, 8, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 8, 8, 8, 8, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/981571dc.json b/data/arc-agi/evaluation/981571dc.json
deleted file mode 100644
index be92dac..0000000
--- a/data/arc-agi/evaluation/981571dc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[1, 9, 3, 5, 9, 9, 3, 9, 4, 4, 2, 6, 3, 3, 3, 6, 6, 3, 3, 3, 6, 2, 4, 4, 9, 3, 9, 9, 5, 3], [9, 3, 5, 5, 9, 7, 3, 5, 4, 6, 2, 2, 3, 3, 3, 4, 4, 3, 3, 3, 2, 2, 6, 4, 5, 3, 7, 9, 5, 5], [3, 5, 5, 9, 3, 3, 9, 9, 2, 2, 2, 6, 3, 3, 3, 6, 6, 3, 3, 3, 6, 2, 2, 2, 9, 9, 3, 3, 9, 5], [5, 5, 9, 5, 9, 5, 9, 5, 6, 2, 6, 2, 6, 4, 6, 1, 1, 6, 4, 6, 2, 6, 2, 6, 5, 9, 5, 9, 5, 9], [9, 9, 3, 9, 1, 8, 8, 9, 3, 3, 3, 6, 4, 2, 1, 4, 4, 1, 2, 4, 6, 3, 3, 3, 9, 8, 8, 1, 9, 3], [9, 7, 3, 5, 8, 5, 8, 1, 3, 3, 3, 4, 2, 2, 2, 4, 4, 2, 2, 2, 4, 3, 3, 3, 1, 8, 5, 8, 5, 3], [3, 3, 9, 9, 8, 8, 5, 9, 3, 3, 3, 6, 1, 2, 2, 4, 4, 2, 2, 1, 6, 3, 3, 3, 9, 5, 8, 8, 9, 9], [9, 5, 9, 5, 9, 1, 9, 9, 6, 4, 6, 1, 4, 4, 4, 9, 9, 4, 4, 4, 1, 6, 4, 6, 9, 9, 1, 9, 5, 9], [4, 4, 2, 6, 3, 3, 3, 6, 7, 5, 5, 8, 3, 6, 6, 6, 6, 6, 6, 3, 8, 5, 5, 7, 6, 3, 3, 3, 6, 2], [4, 6, 2, 2, 3, 3, 3, 4, 5, 5, 5, 1, 6, 9, 4, 3, 3, 4, 9, 6, 1, 5, 5, 5, 4, 3, 3, 3, 2, 2], [2, 2, 2, 6, 3, 3, 3, 6, 5, 5, 7, 5, 6, 4, 4, 9, 9, 4, 4, 6, 5, 7, 5, 5, 6, 3, 3, 3, 6, 2], [6, 2, 6, 2, 6, 4, 6, 1, 8, 1, 5, 8, 6, 3, 9, 4, 4, 9, 3, 6, 8, 5, 1, 8, 1, 6, 4, 6, 2, 6], [3, 3, 3, 6, 4, 2, 1, 4, 3, 0, 0, 6, 1, 8, 2, 8, 8, 2, 8, 1, 6, 6, 6, 3, 4, 1, 2, 4, 6, 3], [3, 3, 3, 4, 2, 2, 2, 4, 6, 0, 0, 3, 8, 6, 2, 2, 2, 2, 6, 8, 3, 4, 9, 6, 4, 2, 2, 2, 4, 3], [3, 3, 3, 6, 1, 2, 2, 4, 6, 0, 0, 9, 2, 2, 2, 8, 8, 2, 2, 2, 9, 4, 4, 6, 4, 2, 2, 1, 6, 3], [6, 4, 6, 1, 4, 4, 4, 9, 6, 0, 0, 4, 8, 2, 8, 6, 6, 8, 2, 8, 4, 9, 3, 6, 9, 4, 4, 4, 1, 6], [6, 4, 6, 1, 4, 4, 4, 9, 6, 0, 0, 4, 8, 2, 8, 6, 6, 8, 2, 8, 4, 9, 3, 6, 9, 4, 4, 4, 1, 6], [3, 3, 3, 6, 1, 2, 2, 4, 6, 4, 4, 9, 2, 2, 2, 8, 8, 2, 2, 2, 9, 4, 4, 6, 4, 2, 2, 1, 6, 3], [3, 3, 3, 4, 2, 2, 2, 4, 6, 9, 4, 3, 8, 6, 2, 2, 2, 2, 6, 8, 3, 4, 9, 6, 4, 2, 2, 2, 4, 3], [3, 3, 3, 6, 4, 2, 1, 4, 3, 6, 6, 6, 1, 8, 2, 8, 8, 2, 8, 1, 6, 6, 6, 3, 4, 1, 2, 4, 6, 3], [6, 2, 6, 2, 6, 4, 6, 1, 8, 1, 5, 8, 6, 3, 9, 4, 4, 9, 3, 6, 8, 5, 1, 8, 1, 6, 4, 6, 2, 6], [2, 2, 2, 6, 3, 3, 3, 6, 5, 5, 7, 5, 6, 4, 4, 9, 9, 4, 4, 6, 5, 7, 5, 5, 6, 3, 3, 3, 6, 2], [4, 6, 2, 2, 3, 3, 3, 4, 5, 5, 5, 1, 6, 9, 4, 3, 3, 4, 9, 6, 1, 5, 5, 5, 4, 3, 3, 3, 2, 2], [4, 4, 2, 6, 3, 3, 3, 6, 7, 5, 5, 8, 3, 6, 6, 6, 6, 6, 6, 3, 8, 5, 5, 7, 6, 3, 3, 3, 6, 2], [9, 5, 9, 5, 9, 1, 9, 9, 6, 4, 6, 1, 4, 4, 4, 9, 9, 4, 4, 4, 1, 6, 4, 6, 9, 9, 1, 9, 5, 9], [3, 3, 9, 9, 8, 8, 5, 9, 3, 3, 3, 6, 1, 2, 2, 4, 4, 2, 2, 1, 6, 3, 3, 3, 9, 5, 8, 8, 9, 9], [9, 7, 3, 5, 8, 5, 8, 1, 3, 3, 3, 4, 2, 2, 2, 4, 4, 2, 2, 2, 4, 3, 3, 3, 1, 0, 0, 0, 0, 0], [9, 9, 3, 9, 1, 8, 8, 9, 3, 3, 3, 6, 4, 2, 1, 4, 4, 1, 2, 4, 6, 3, 3, 3, 9, 0, 0, 0, 0, 0], [5, 5, 9, 5, 9, 5, 9, 5, 6, 2, 6, 2, 6, 4, 6, 1, 1, 6, 4, 6, 2, 6, 2, 6, 5, 0, 0, 0, 0, 0], [3, 5, 5, 9, 3, 3, 9, 9, 2, 2, 2, 6, 3, 3, 3, 6, 6, 3, 3, 3, 6, 2, 2, 2, 9, 0, 0, 0, 0, 0]], "output": [[1, 9, 3, 5, 9, 9, 3, 9, 4, 4, 2, 6, 3, 3, 3, 6, 6, 3, 3, 3, 6, 2, 4, 4, 9, 3, 9, 9, 5, 3], [9, 3, 5, 5, 9, 7, 3, 5, 4, 6, 2, 2, 3, 3, 3, 4, 4, 3, 3, 3, 2, 2, 6, 4, 5, 3, 7, 9, 5, 5], [3, 5, 5, 9, 3, 3, 9, 9, 2, 2, 2, 6, 3, 3, 3, 6, 6, 3, 3, 3, 6, 2, 2, 2, 9, 9, 3, 3, 9, 5], [5, 5, 9, 5, 9, 5, 9, 5, 6, 2, 6, 2, 6, 4, 6, 1, 1, 6, 4, 6, 2, 6, 2, 6, 5, 9, 5, 9, 5, 9], [9, 9, 3, 9, 1, 8, 8, 9, 3, 3, 3, 6, 4, 2, 1, 4, 4, 1, 2, 4, 6, 3, 3, 3, 9, 8, 8, 1, 9, 3], [9, 7, 3, 5, 8, 5, 8, 1, 3, 3, 3, 4, 2, 2, 2, 4, 4, 2, 2, 2, 4, 3, 3, 3, 1, 8, 5, 8, 5, 3], [3, 3, 9, 9, 8, 8, 5, 9, 3, 3, 3, 6, 1, 2, 2, 4, 4, 2, 2, 1, 6, 3, 3, 3, 9, 5, 8, 8, 9, 9], [9, 5, 9, 5, 9, 1, 9, 9, 6, 4, 6, 1, 4, 4, 4, 9, 9, 4, 4, 4, 1, 6, 4, 6, 9, 9, 1, 9, 5, 9], [4, 4, 2, 6, 3, 3, 3, 6, 7, 5, 5, 8, 3, 6, 6, 6, 6, 6, 6, 3, 8, 5, 5, 7, 6, 3, 3, 3, 6, 2], [4, 6, 2, 2, 3, 3, 3, 4, 5, 5, 5, 1, 6, 9, 4, 3, 3, 4, 9, 6, 1, 5, 5, 5, 4, 3, 3, 3, 2, 2], [2, 2, 2, 6, 3, 3, 3, 6, 5, 5, 7, 5, 6, 4, 4, 9, 9, 4, 4, 6, 5, 7, 5, 5, 6, 3, 3, 3, 6, 2], [6, 2, 6, 2, 6, 4, 6, 1, 8, 1, 5, 8, 6, 3, 9, 4, 4, 9, 3, 6, 8, 5, 1, 8, 1, 6, 4, 6, 2, 6], [3, 3, 3, 6, 4, 2, 1, 4, 3, 6, 6, 6, 1, 8, 2, 8, 8, 2, 8, 1, 6, 6, 6, 3, 4, 1, 2, 4, 6, 3], [3, 3, 3, 4, 2, 2, 2, 4, 6, 9, 4, 3, 8, 6, 2, 2, 2, 2, 6, 8, 3, 4, 9, 6, 4, 2, 2, 2, 4, 3], [3, 3, 3, 6, 1, 2, 2, 4, 6, 4, 4, 9, 2, 2, 2, 8, 8, 2, 2, 2, 9, 4, 4, 6, 4, 2, 2, 1, 6, 3], [6, 4, 6, 1, 4, 4, 4, 9, 6, 3, 9, 4, 8, 2, 8, 6, 6, 8, 2, 8, 4, 9, 3, 6, 9, 4, 4, 4, 1, 6], [6, 4, 6, 1, 4, 4, 4, 9, 6, 3, 9, 4, 8, 2, 8, 6, 6, 8, 2, 8, 4, 9, 3, 6, 9, 4, 4, 4, 1, 6], [3, 3, 3, 6, 1, 2, 2, 4, 6, 4, 4, 9, 2, 2, 2, 8, 8, 2, 2, 2, 9, 4, 4, 6, 4, 2, 2, 1, 6, 3], [3, 3, 3, 4, 2, 2, 2, 4, 6, 9, 4, 3, 8, 6, 2, 2, 2, 2, 6, 8, 3, 4, 9, 6, 4, 2, 2, 2, 4, 3], [3, 3, 3, 6, 4, 2, 1, 4, 3, 6, 6, 6, 1, 8, 2, 8, 8, 2, 8, 1, 6, 6, 6, 3, 4, 1, 2, 4, 6, 3], [6, 2, 6, 2, 6, 4, 6, 1, 8, 1, 5, 8, 6, 3, 9, 4, 4, 9, 3, 6, 8, 5, 1, 8, 1, 6, 4, 6, 2, 6], [2, 2, 2, 6, 3, 3, 3, 6, 5, 5, 7, 5, 6, 4, 4, 9, 9, 4, 4, 6, 5, 7, 5, 5, 6, 3, 3, 3, 6, 2], [4, 6, 2, 2, 3, 3, 3, 4, 5, 5, 5, 1, 6, 9, 4, 3, 3, 4, 9, 6, 1, 5, 5, 5, 4, 3, 3, 3, 2, 2], [4, 4, 2, 6, 3, 3, 3, 6, 7, 5, 5, 8, 3, 6, 6, 6, 6, 6, 6, 3, 8, 5, 5, 7, 6, 3, 3, 3, 6, 2], [9, 5, 9, 5, 9, 1, 9, 9, 6, 4, 6, 1, 4, 4, 4, 9, 9, 4, 4, 4, 1, 6, 4, 6, 9, 9, 1, 9, 5, 9], [3, 3, 9, 9, 8, 8, 5, 9, 3, 3, 3, 6, 1, 2, 2, 4, 4, 2, 2, 1, 6, 3, 3, 3, 9, 5, 8, 8, 9, 9], [9, 7, 3, 5, 8, 5, 8, 1, 3, 3, 3, 4, 2, 2, 2, 4, 4, 2, 2, 2, 4, 3, 3, 3, 1, 8, 5, 8, 5, 3], [9, 9, 3, 9, 1, 8, 8, 9, 3, 3, 3, 6, 4, 2, 1, 4, 4, 1, 2, 4, 6, 3, 3, 3, 9, 8, 8, 1, 9, 3], [5, 5, 9, 5, 9, 5, 9, 5, 6, 2, 6, 2, 6, 4, 6, 1, 1, 6, 4, 6, 2, 6, 2, 6, 5, 9, 5, 9, 5, 9], [3, 5, 5, 9, 3, 3, 9, 9, 2, 2, 2, 6, 3, 3, 3, 6, 6, 3, 3, 3, 6, 2, 2, 2, 9, 9, 3, 3, 9, 5]]}], "train": [{"input": [[6, 7, 3, 7, 1, 7, 2, 2, 1, 7, 6, 5, 5, 7, 5, 7, 7, 5, 7, 5, 5, 6, 7, 1, 2, 2, 7, 1, 7, 3], [7, 6, 9, 9, 7, 7, 5, 5, 7, 6, 5, 1, 7, 7, 7, 7, 7, 7, 7, 7, 1, 5, 6, 7, 5, 5, 7, 7, 9, 9], [3, 9, 9, 7, 2, 5, 2, 7, 6, 5, 7, 6, 5, 7, 9, 9, 9, 9, 7, 5, 6, 7, 5, 6, 7, 2, 5, 2, 7, 9], [7, 9, 7, 9, 2, 5, 7, 7, 5, 1, 6, 6, 7, 7, 9, 4, 4, 9, 7, 7, 6, 6, 1, 5, 7, 7, 5, 2, 9, 7], [1, 7, 2, 2, 9, 9, 9, 6, 5, 7, 5, 7, 3, 3, 9, 9, 9, 9, 3, 3, 7, 5, 7, 5, 6, 9, 9, 9, 2, 2], [7, 0, 0, 0, 0, 0, 0, 5, 7, 7, 7, 7, 3, 6, 9, 6, 6, 9, 6, 3, 7, 7, 7, 7, 5, 9, 6, 9, 5, 5], [2, 0, 0, 0, 0, 0, 0, 9, 5, 7, 9, 9, 9, 9, 3, 6, 6, 3, 9, 9, 9, 9, 7, 5, 9, 9, 9, 9, 7, 2], [2, 0, 0, 0, 0, 0, 0, 7, 7, 7, 9, 4, 9, 6, 6, 3, 3, 6, 6, 9, 4, 9, 7, 7, 7, 9, 5, 6, 7, 7], [1, 0, 0, 0, 0, 0, 0, 7, 2, 6, 2, 5, 7, 7, 3, 7, 7, 3, 7, 7, 5, 2, 6, 2, 7, 5, 7, 5, 5, 6], [7, 0, 0, 0, 0, 0, 0, 7, 6, 6, 2, 4, 7, 3, 7, 7, 7, 7, 3, 7, 4, 2, 6, 6, 7, 7, 7, 7, 1, 5], [6, 0, 0, 0, 0, 0, 0, 9, 2, 2, 6, 2, 3, 7, 6, 7, 7, 6, 7, 3, 2, 6, 2, 2, 9, 9, 7, 5, 6, 7], [5, 0, 0, 0, 0, 0, 0, 4, 5, 4, 2, 5, 7, 7, 7, 6, 6, 7, 7, 7, 5, 2, 4, 5, 4, 9, 7, 7, 6, 6], [5, 7, 5, 7, 3, 3, 9, 9, 7, 7, 3, 7, 2, 5, 2, 1, 1, 2, 5, 2, 7, 3, 7, 0, 0, 0, 0, 3, 7, 5], [7, 7, 7, 7, 3, 6, 9, 6, 7, 3, 7, 7, 5, 5, 1, 1, 1, 1, 5, 5, 7, 7, 3, 0, 0, 0, 0, 3, 7, 7], [5, 7, 9, 9, 9, 9, 3, 6, 3, 7, 6, 7, 2, 1, 2, 5, 5, 2, 1, 2, 7, 6, 7, 0, 0, 0, 0, 9, 9, 9], [7, 7, 9, 4, 9, 6, 6, 3, 7, 7, 7, 6, 1, 1, 5, 2, 2, 5, 1, 1, 6, 7, 7, 0, 0, 0, 0, 9, 4, 9], [7, 7, 9, 4, 9, 6, 6, 3, 7, 7, 7, 6, 1, 1, 5, 2, 2, 5, 1, 1, 6, 7, 7, 7, 3, 6, 6, 9, 4, 9], [5, 7, 9, 9, 9, 9, 3, 6, 3, 7, 6, 7, 2, 1, 2, 5, 5, 2, 1, 2, 7, 6, 7, 3, 6, 3, 9, 9, 9, 9], [7, 7, 7, 7, 3, 6, 9, 6, 7, 3, 7, 7, 5, 5, 1, 1, 1, 1, 5, 5, 7, 7, 3, 7, 6, 9, 6, 3, 7, 7], [5, 7, 5, 7, 3, 3, 9, 9, 7, 7, 3, 7, 2, 5, 2, 1, 1, 2, 5, 2, 7, 3, 7, 7, 9, 9, 3, 3, 7, 5], [5, 1, 6, 6, 7, 7, 9, 4, 5, 4, 2, 5, 7, 7, 7, 6, 6, 7, 7, 7, 5, 2, 4, 5, 4, 9, 7, 7, 6, 6], [6, 5, 7, 6, 5, 7, 9, 9, 2, 2, 6, 2, 3, 7, 6, 7, 7, 6, 7, 3, 2, 6, 2, 2, 9, 9, 7, 5, 6, 7], [7, 6, 5, 1, 7, 7, 7, 7, 6, 6, 2, 4, 7, 3, 0, 0, 0, 0, 0, 0, 4, 2, 6, 6, 7, 7, 7, 7, 1, 5], [1, 7, 6, 5, 5, 7, 5, 7, 2, 6, 2, 5, 7, 7, 0, 0, 0, 0, 0, 0, 5, 2, 6, 2, 7, 5, 7, 5, 5, 6], [2, 5, 7, 7, 6, 5, 9, 7, 7, 7, 9, 4, 9, 6, 6, 3, 3, 6, 0, 0, 4, 9, 7, 7, 7, 9, 5, 6, 7, 7], [2, 5, 2, 7, 9, 9, 9, 9, 5, 7, 9, 9, 9, 9, 3, 6, 6, 3, 0, 0, 9, 9, 7, 5, 9, 9, 9, 9, 7, 2], [7, 7, 5, 5, 9, 6, 9, 5, 7, 7, 7, 7, 3, 6, 9, 6, 6, 9, 0, 0, 7, 7, 7, 7, 5, 9, 6, 9, 5, 5], [1, 7, 2, 2, 9, 9, 9, 6, 5, 7, 5, 7, 3, 3, 9, 9, 9, 9, 0, 0, 7, 5, 7, 5, 6, 9, 9, 9, 2, 2], [7, 9, 7, 9, 2, 5, 7, 7, 5, 1, 6, 6, 7, 7, 9, 4, 4, 9, 0, 0, 6, 6, 1, 5, 7, 7, 5, 2, 9, 7], [3, 9, 9, 7, 2, 5, 2, 7, 6, 5, 7, 6, 5, 7, 9, 9, 9, 9, 0, 0, 6, 7, 5, 6, 7, 2, 5, 2, 7, 9]], "output": [[6, 7, 3, 7, 1, 7, 2, 2, 1, 7, 6, 5, 5, 7, 5, 7, 7, 5, 7, 5, 5, 6, 7, 1, 2, 2, 7, 1, 7, 3], [7, 6, 9, 9, 7, 7, 5, 5, 7, 6, 5, 1, 7, 7, 7, 7, 7, 7, 7, 7, 1, 5, 6, 7, 5, 5, 7, 7, 9, 9], [3, 9, 9, 7, 2, 5, 2, 7, 6, 5, 7, 6, 5, 7, 9, 9, 9, 9, 7, 5, 6, 7, 5, 6, 7, 2, 5, 2, 7, 9], [7, 9, 7, 9, 2, 5, 7, 7, 5, 1, 6, 6, 7, 7, 9, 4, 4, 9, 7, 7, 6, 6, 1, 5, 7, 7, 5, 2, 9, 7], [1, 7, 2, 2, 9, 9, 9, 6, 5, 7, 5, 7, 3, 3, 9, 9, 9, 9, 3, 3, 7, 5, 7, 5, 6, 9, 9, 9, 2, 2], [7, 7, 5, 5, 9, 6, 9, 5, 7, 7, 7, 7, 3, 6, 9, 6, 6, 9, 6, 3, 7, 7, 7, 7, 5, 9, 6, 9, 5, 5], [2, 5, 2, 7, 9, 9, 9, 9, 5, 7, 9, 9, 9, 9, 3, 6, 6, 3, 9, 9, 9, 9, 7, 5, 9, 9, 9, 9, 7, 2], [2, 5, 7, 7, 6, 5, 9, 7, 7, 7, 9, 4, 9, 6, 6, 3, 3, 6, 6, 9, 4, 9, 7, 7, 7, 9, 5, 6, 7, 7], [1, 7, 6, 5, 5, 7, 5, 7, 2, 6, 2, 5, 7, 7, 3, 7, 7, 3, 7, 7, 5, 2, 6, 2, 7, 5, 7, 5, 5, 6], [7, 6, 5, 1, 7, 7, 7, 7, 6, 6, 2, 4, 7, 3, 7, 7, 7, 7, 3, 7, 4, 2, 6, 6, 7, 7, 7, 7, 1, 5], [6, 5, 7, 6, 5, 7, 9, 9, 2, 2, 6, 2, 3, 7, 6, 7, 7, 6, 7, 3, 2, 6, 2, 2, 9, 9, 7, 5, 6, 7], [5, 1, 6, 6, 7, 7, 9, 4, 5, 4, 2, 5, 7, 7, 7, 6, 6, 7, 7, 7, 5, 2, 4, 5, 4, 9, 7, 7, 6, 6], [5, 7, 5, 7, 3, 3, 9, 9, 7, 7, 3, 7, 2, 5, 2, 1, 1, 2, 5, 2, 7, 3, 7, 7, 9, 9, 3, 3, 7, 5], [7, 7, 7, 7, 3, 6, 9, 6, 7, 3, 7, 7, 5, 5, 1, 1, 1, 1, 5, 5, 7, 7, 3, 7, 6, 9, 6, 3, 7, 7], [5, 7, 9, 9, 9, 9, 3, 6, 3, 7, 6, 7, 2, 1, 2, 5, 5, 2, 1, 2, 7, 6, 7, 3, 6, 3, 9, 9, 9, 9], [7, 7, 9, 4, 9, 6, 6, 3, 7, 7, 7, 6, 1, 1, 5, 2, 2, 5, 1, 1, 6, 7, 7, 7, 3, 6, 6, 9, 4, 9], [7, 7, 9, 4, 9, 6, 6, 3, 7, 7, 7, 6, 1, 1, 5, 2, 2, 5, 1, 1, 6, 7, 7, 7, 3, 6, 6, 9, 4, 9], [5, 7, 9, 9, 9, 9, 3, 6, 3, 7, 6, 7, 2, 1, 2, 5, 5, 2, 1, 2, 7, 6, 7, 3, 6, 3, 9, 9, 9, 9], [7, 7, 7, 7, 3, 6, 9, 6, 7, 3, 7, 7, 5, 5, 1, 1, 1, 1, 5, 5, 7, 7, 3, 7, 6, 9, 6, 3, 7, 7], [5, 7, 5, 7, 3, 3, 9, 9, 7, 7, 3, 7, 2, 5, 2, 1, 1, 2, 5, 2, 7, 3, 7, 7, 9, 9, 3, 3, 7, 5], [5, 1, 6, 6, 7, 7, 9, 4, 5, 4, 2, 5, 7, 7, 7, 6, 6, 7, 7, 7, 5, 2, 4, 5, 4, 9, 7, 7, 6, 6], [6, 5, 7, 6, 5, 7, 9, 9, 2, 2, 6, 2, 3, 7, 6, 7, 7, 6, 7, 3, 2, 6, 2, 2, 9, 9, 7, 5, 6, 7], [7, 6, 5, 1, 7, 7, 7, 7, 6, 6, 2, 4, 7, 3, 7, 7, 7, 7, 3, 7, 4, 2, 6, 6, 7, 7, 7, 7, 1, 5], [1, 7, 6, 5, 5, 7, 5, 7, 2, 6, 2, 5, 7, 7, 3, 7, 7, 3, 7, 7, 5, 2, 6, 2, 7, 5, 7, 5, 5, 6], [2, 5, 7, 7, 6, 5, 9, 7, 7, 7, 9, 4, 9, 6, 6, 3, 3, 6, 6, 9, 4, 9, 7, 7, 7, 9, 5, 6, 7, 7], [2, 5, 2, 7, 9, 9, 9, 9, 5, 7, 9, 9, 9, 9, 3, 6, 6, 3, 9, 9, 9, 9, 7, 5, 9, 9, 9, 9, 7, 2], [7, 7, 5, 5, 9, 6, 9, 5, 7, 7, 7, 7, 3, 6, 9, 6, 6, 9, 6, 3, 7, 7, 7, 7, 5, 9, 6, 9, 5, 5], [1, 7, 2, 2, 9, 9, 9, 6, 5, 7, 5, 7, 3, 3, 9, 9, 9, 9, 3, 3, 7, 5, 7, 5, 6, 9, 9, 9, 2, 2], [7, 9, 7, 9, 2, 5, 7, 7, 5, 1, 6, 6, 7, 7, 9, 4, 4, 9, 7, 7, 6, 6, 1, 5, 7, 7, 5, 2, 9, 7], [3, 9, 9, 7, 2, 5, 2, 7, 6, 5, 7, 6, 5, 7, 9, 9, 9, 9, 7, 5, 6, 7, 5, 6, 7, 2, 5, 2, 7, 9]]}, {"input": [[9, 2, 9, 6, 2, 4, 1, 6, 8, 7, 7, 1, 5, 6, 7, 3, 3, 7, 6, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 9], [2, 9, 6, 6, 4, 4, 1, 1, 7, 8, 5, 5, 6, 6, 7, 6, 6, 7, 6, 6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 6], [9, 6, 6, 6, 1, 1, 4, 0, 0, 0, 0, 7, 7, 7, 3, 6, 6, 3, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 6], [6, 6, 6, 2, 6, 1, 6, 0, 0, 0, 0, 5, 3, 6, 6, 5, 5, 6, 6, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 6], [2, 4, 1, 6, 2, 1, 2, 0, 0, 0, 0, 3, 1, 8, 6, 1, 1, 6, 8, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 1, 2, 2, 0, 0, 0, 0, 6, 8, 8, 9, 8, 8, 9, 8, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 2, 2, 9, 9, 7, 7, 3, 6, 6, 9, 6, 9, 9, 6, 9, 6, 6, 3, 7, 7, 9, 9, 2, 2, 6, 4], [6, 1, 6, 2, 1, 2, 9, 2, 3, 6, 6, 5, 1, 8, 9, 8, 8, 9, 8, 1, 5, 6, 6, 3, 2, 9, 2, 1, 2, 6], [8, 7, 7, 1, 5, 6, 7, 3, 8, 5, 5, 8, 9, 6, 3, 3, 3, 3, 6, 9, 8, 5, 5, 8, 3, 7, 6, 5, 1, 7], [7, 8, 5, 5, 6, 6, 7, 6, 5, 8, 4, 3, 6, 9, 3, 6, 6, 3, 9, 6, 3, 4, 8, 5, 6, 7, 6, 6, 5, 5], [7, 5, 8, 7, 7, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 5, 8, 4, 5, 6, 3, 7, 7, 7, 8], [1, 5, 7, 5, 3, 0, 0, 0, 0, 0, 0, 0, 3, 6, 3, 1, 1, 3, 6, 3, 4, 5, 3, 8, 5, 6, 6, 3, 5, 7], [5, 6, 7, 3, 1, 0, 0, 0, 0, 0, 0, 0, 8, 8, 6, 8, 8, 6, 8, 8, 3, 3, 6, 9, 1, 6, 8, 1, 3, 7], [6, 6, 7, 6, 8, 0, 0, 0, 0, 0, 0, 0, 8, 1, 7, 8, 8, 7, 1, 8, 6, 3, 9, 6, 8, 9, 8, 8, 6, 7], [7, 7, 3, 6, 6, 0, 0, 0, 0, 0, 0, 0, 6, 7, 7, 7, 7, 7, 7, 6, 3, 3, 3, 3, 9, 6, 9, 6, 6, 3], [3, 6, 6, 5, 1, 0, 0, 0, 0, 0, 0, 0, 8, 8, 7, 8, 8, 7, 8, 8, 1, 3, 6, 3, 8, 9, 8, 1, 5, 6], [3, 6, 6, 5, 1, 8, 9, 8, 3, 6, 3, 1, 8, 8, 7, 8, 8, 7, 8, 8, 1, 3, 6, 3, 8, 9, 8, 1, 5, 6], [7, 7, 3, 6, 6, 9, 6, 9, 3, 3, 3, 3, 6, 7, 7, 7, 7, 7, 7, 6, 3, 3, 3, 3, 9, 6, 9, 6, 6, 3], [6, 6, 7, 6, 8, 8, 9, 8, 6, 9, 3, 6, 8, 1, 7, 8, 8, 7, 1, 8, 6, 3, 9, 6, 8, 9, 8, 8, 6, 7], [5, 6, 7, 3, 1, 8, 6, 1, 9, 6, 3, 3, 8, 8, 6, 8, 8, 6, 8, 8, 3, 3, 6, 9, 1, 6, 8, 1, 3, 7], [1, 5, 7, 5, 3, 6, 6, 5, 8, 3, 5, 4, 3, 6, 3, 1, 1, 3, 6, 3, 4, 5, 3, 8, 5, 6, 6, 3, 5, 7], [7, 5, 8, 7, 7, 7, 3, 6, 5, 4, 8, 5, 3, 3, 3, 3, 3, 3, 3, 3, 5, 8, 4, 5, 6, 3, 7, 7, 7, 8], [7, 8, 5, 5, 6, 6, 7, 6, 5, 8, 4, 3, 6, 9, 3, 6, 6, 3, 9, 6, 3, 4, 8, 5, 6, 7, 6, 6, 5, 5], [8, 7, 7, 1, 5, 6, 7, 3, 8, 5, 5, 8, 9, 6, 3, 3, 3, 3, 6, 9, 8, 5, 5, 8, 3, 7, 6, 5, 1, 7], [6, 1, 6, 2, 1, 2, 9, 2, 3, 6, 6, 5, 1, 8, 9, 8, 8, 9, 8, 1, 5, 6, 6, 3, 2, 9, 2, 1, 2, 6], [1, 1, 4, 6, 2, 2, 9, 9, 7, 7, 3, 6, 6, 9, 6, 9, 9, 6, 9, 6, 6, 3, 7, 7, 9, 9, 2, 2, 6, 4], [4, 4, 1, 1, 1, 2, 2, 2, 6, 6, 7, 6, 8, 8, 9, 8, 8, 9, 8, 8, 6, 7, 6, 6, 2, 2, 2, 1, 1, 1], [2, 4, 1, 6, 2, 1, 2, 1, 5, 6, 7, 3, 1, 8, 6, 1, 1, 6, 8, 1, 3, 7, 6, 5, 1, 2, 1, 2, 6, 1], [6, 6, 6, 2, 6, 1, 6, 2, 1, 5, 7, 5, 3, 6, 6, 5, 5, 6, 6, 3, 5, 7, 5, 1, 2, 6, 1, 6, 2, 6], [9, 6, 6, 6, 1, 1, 4, 6, 7, 5, 8, 7, 7, 7, 3, 6, 6, 3, 7, 7, 7, 8, 5, 7, 6, 4, 1, 1, 6, 6]], "output": [[9, 2, 9, 6, 2, 4, 1, 6, 8, 7, 7, 1, 5, 6, 7, 3, 3, 7, 6, 5, 1, 7, 7, 8, 6, 1, 4, 2, 6, 9], [2, 9, 6, 6, 4, 4, 1, 1, 7, 8, 5, 5, 6, 6, 7, 6, 6, 7, 6, 6, 5, 5, 8, 7, 1, 1, 4, 4, 6, 6], [9, 6, 6, 6, 1, 1, 4, 6, 7, 5, 8, 7, 7, 7, 3, 6, 6, 3, 7, 7, 7, 8, 5, 7, 6, 4, 1, 1, 6, 6], [6, 6, 6, 2, 6, 1, 6, 2, 1, 5, 7, 5, 3, 6, 6, 5, 5, 6, 6, 3, 5, 7, 5, 1, 2, 6, 1, 6, 2, 6], [2, 4, 1, 6, 2, 1, 2, 1, 5, 6, 7, 3, 1, 8, 6, 1, 1, 6, 8, 1, 3, 7, 6, 5, 1, 2, 1, 2, 6, 1], [4, 4, 1, 1, 1, 2, 2, 2, 6, 6, 7, 6, 8, 8, 9, 8, 8, 9, 8, 8, 6, 7, 6, 6, 2, 2, 2, 1, 1, 1], [1, 1, 4, 6, 2, 2, 9, 9, 7, 7, 3, 6, 6, 9, 6, 9, 9, 6, 9, 6, 6, 3, 7, 7, 9, 9, 2, 2, 6, 4], [6, 1, 6, 2, 1, 2, 9, 2, 3, 6, 6, 5, 1, 8, 9, 8, 8, 9, 8, 1, 5, 6, 6, 3, 2, 9, 2, 1, 2, 6], [8, 7, 7, 1, 5, 6, 7, 3, 8, 5, 5, 8, 9, 6, 3, 3, 3, 3, 6, 9, 8, 5, 5, 8, 3, 7, 6, 5, 1, 7], [7, 8, 5, 5, 6, 6, 7, 6, 5, 8, 4, 3, 6, 9, 3, 6, 6, 3, 9, 6, 3, 4, 8, 5, 6, 7, 6, 6, 5, 5], [7, 5, 8, 7, 7, 7, 3, 6, 5, 4, 8, 5, 3, 3, 3, 3, 3, 3, 3, 3, 5, 8, 4, 5, 6, 3, 7, 7, 7, 8], [1, 5, 7, 5, 3, 6, 6, 5, 8, 3, 5, 4, 3, 6, 3, 1, 1, 3, 6, 3, 4, 5, 3, 8, 5, 6, 6, 3, 5, 7], [5, 6, 7, 3, 1, 8, 6, 1, 9, 6, 3, 3, 8, 8, 6, 8, 8, 6, 8, 8, 3, 3, 6, 9, 1, 6, 8, 1, 3, 7], [6, 6, 7, 6, 8, 8, 9, 8, 6, 9, 3, 6, 8, 1, 7, 8, 8, 7, 1, 8, 6, 3, 9, 6, 8, 9, 8, 8, 6, 7], [7, 7, 3, 6, 6, 9, 6, 9, 3, 3, 3, 3, 6, 7, 7, 7, 7, 7, 7, 6, 3, 3, 3, 3, 9, 6, 9, 6, 6, 3], [3, 6, 6, 5, 1, 8, 9, 8, 3, 6, 3, 1, 8, 8, 7, 8, 8, 7, 8, 8, 1, 3, 6, 3, 8, 9, 8, 1, 5, 6], [3, 6, 6, 5, 1, 8, 9, 8, 3, 6, 3, 1, 8, 8, 7, 8, 8, 7, 8, 8, 1, 3, 6, 3, 8, 9, 8, 1, 5, 6], [7, 7, 3, 6, 6, 9, 6, 9, 3, 3, 3, 3, 6, 7, 7, 7, 7, 7, 7, 6, 3, 3, 3, 3, 9, 6, 9, 6, 6, 3], [6, 6, 7, 6, 8, 8, 9, 8, 6, 9, 3, 6, 8, 1, 7, 8, 8, 7, 1, 8, 6, 3, 9, 6, 8, 9, 8, 8, 6, 7], [5, 6, 7, 3, 1, 8, 6, 1, 9, 6, 3, 3, 8, 8, 6, 8, 8, 6, 8, 8, 3, 3, 6, 9, 1, 6, 8, 1, 3, 7], [1, 5, 7, 5, 3, 6, 6, 5, 8, 3, 5, 4, 3, 6, 3, 1, 1, 3, 6, 3, 4, 5, 3, 8, 5, 6, 6, 3, 5, 7], [7, 5, 8, 7, 7, 7, 3, 6, 5, 4, 8, 5, 3, 3, 3, 3, 3, 3, 3, 3, 5, 8, 4, 5, 6, 3, 7, 7, 7, 8], [7, 8, 5, 5, 6, 6, 7, 6, 5, 8, 4, 3, 6, 9, 3, 6, 6, 3, 9, 6, 3, 4, 8, 5, 6, 7, 6, 6, 5, 5], [8, 7, 7, 1, 5, 6, 7, 3, 8, 5, 5, 8, 9, 6, 3, 3, 3, 3, 6, 9, 8, 5, 5, 8, 3, 7, 6, 5, 1, 7], [6, 1, 6, 2, 1, 2, 9, 2, 3, 6, 6, 5, 1, 8, 9, 8, 8, 9, 8, 1, 5, 6, 6, 3, 2, 9, 2, 1, 2, 6], [1, 1, 4, 6, 2, 2, 9, 9, 7, 7, 3, 6, 6, 9, 6, 9, 9, 6, 9, 6, 6, 3, 7, 7, 9, 9, 2, 2, 6, 4], [4, 4, 1, 1, 1, 2, 2, 2, 6, 6, 7, 6, 8, 8, 9, 8, 8, 9, 8, 8, 6, 7, 6, 6, 2, 2, 2, 1, 1, 1], [2, 4, 1, 6, 2, 1, 2, 1, 5, 6, 7, 3, 1, 8, 6, 1, 1, 6, 8, 1, 3, 7, 6, 5, 1, 2, 1, 2, 6, 1], [6, 6, 6, 2, 6, 1, 6, 2, 1, 5, 7, 5, 3, 6, 6, 5, 5, 6, 6, 3, 5, 7, 5, 1, 2, 6, 1, 6, 2, 6], [9, 6, 6, 6, 1, 1, 4, 6, 7, 5, 8, 7, 7, 7, 3, 6, 6, 3, 7, 7, 7, 8, 5, 7, 6, 4, 1, 1, 6, 6]]}, {"input": [[2, 8, 2, 8, 6, 8, 1, 1, 4, 6, 6, 6, 2, 4, 2, 8, 8, 2, 4, 0, 0, 0, 0, 0, 0, 1, 8, 6, 8, 2], [8, 5, 5, 5, 8, 2, 1, 2, 6, 4, 4, 4, 4, 4, 4, 2, 2, 4, 4, 0, 0, 0, 0, 0, 0, 1, 2, 8, 5, 5], [2, 5, 4, 4, 1, 1, 8, 8, 6, 4, 1, 6, 2, 4, 4, 8, 8, 4, 4, 0, 0, 0, 0, 0, 0, 8, 1, 1, 4, 4], [8, 5, 4, 2, 1, 2, 8, 1, 6, 4, 6, 1, 8, 2, 8, 2, 2, 8, 2, 0, 0, 0, 0, 0, 0, 8, 2, 1, 2, 4], [6, 8, 1, 1, 3, 7, 6, 3, 2, 4, 2, 8, 9, 6, 3, 3, 3, 3, 6, 0, 0, 0, 0, 0, 0, 6, 7, 3, 1, 1], [8, 2, 1, 2, 7, 8, 3, 6, 4, 4, 4, 2, 6, 3, 1, 3, 3, 1, 3, 0, 0, 0, 0, 0, 0, 3, 8, 7, 2, 1], [1, 1, 8, 8, 6, 3, 3, 6, 2, 4, 4, 8, 3, 1, 1, 3, 3, 1, 1, 0, 0, 0, 0, 0, 0, 3, 3, 6, 8, 8], [1, 2, 8, 1, 3, 6, 6, 3, 8, 2, 8, 2, 3, 3, 3, 1, 1, 3, 3, 0, 0, 0, 2, 8, 3, 6, 6, 3, 1, 8], [4, 6, 6, 6, 2, 4, 2, 8, 4, 4, 3, 3, 1, 4, 1, 2, 2, 1, 4, 0, 0, 0, 4, 4, 8, 2, 4, 2, 6, 6], [6, 4, 4, 4, 4, 4, 4, 2, 4, 4, 2, 2, 4, 2, 8, 8, 8, 8, 2, 0, 0, 0, 4, 4, 2, 4, 4, 4, 4, 4], [6, 4, 1, 6, 2, 4, 4, 8, 3, 2, 2, 4, 1, 8, 1, 8, 8, 1, 8, 0, 0, 0, 2, 3, 8, 4, 4, 2, 6, 1], [6, 4, 6, 1, 8, 2, 8, 2, 3, 2, 4, 7, 2, 8, 8, 8, 8, 8, 8, 0, 0, 0, 2, 3, 2, 8, 2, 8, 1, 6], [2, 4, 2, 8, 9, 6, 3, 3, 1, 4, 1, 2, 9, 9, 3, 3, 3, 3, 9, 0, 0, 0, 4, 1, 3, 3, 6, 9, 8, 2], [4, 4, 4, 2, 6, 3, 1, 3, 4, 2, 8, 8, 9, 3, 8, 3, 3, 8, 3, 9, 8, 8, 2, 4, 3, 1, 3, 6, 2, 4], [2, 4, 4, 8, 3, 1, 1, 3, 1, 8, 1, 8, 3, 8, 2, 8, 8, 2, 8, 3, 8, 1, 8, 1, 3, 1, 1, 3, 8, 4], [8, 2, 8, 2, 3, 3, 3, 1, 2, 8, 8, 8, 3, 3, 8, 8, 8, 8, 3, 3, 8, 8, 8, 2, 1, 3, 3, 3, 2, 8], [8, 2, 8, 2, 3, 3, 3, 1, 2, 8, 8, 8, 3, 3, 8, 8, 8, 8, 3, 3, 8, 8, 8, 2, 1, 3, 3, 3, 2, 8], [2, 4, 4, 8, 3, 1, 1, 3, 1, 8, 1, 8, 3, 8, 2, 8, 8, 2, 8, 3, 8, 1, 8, 1, 3, 1, 1, 3, 8, 4], [4, 4, 4, 2, 6, 3, 1, 3, 4, 2, 8, 8, 9, 3, 8, 3, 3, 8, 3, 9, 8, 8, 2, 4, 3, 1, 3, 6, 2, 4], [2, 4, 2, 8, 9, 6, 3, 3, 1, 4, 1, 2, 9, 9, 3, 3, 3, 3, 9, 9, 2, 1, 4, 1, 3, 3, 6, 9, 8, 2], [6, 4, 6, 1, 8, 2, 8, 2, 3, 2, 4, 7, 2, 8, 8, 8, 8, 8, 8, 2, 7, 4, 2, 3, 2, 8, 2, 8, 1, 6], [6, 4, 1, 6, 2, 4, 4, 8, 3, 2, 2, 4, 1, 8, 1, 8, 8, 1, 8, 1, 4, 2, 2, 3, 8, 4, 4, 2, 6, 1], [6, 4, 4, 4, 4, 4, 4, 2, 4, 4, 2, 2, 4, 2, 8, 8, 8, 8, 2, 4, 2, 2, 4, 4, 2, 4, 4, 4, 4, 4], [4, 6, 6, 6, 2, 4, 2, 8, 4, 4, 3, 3, 1, 4, 1, 2, 2, 1, 4, 1, 3, 3, 4, 4, 8, 2, 4, 2, 6, 6], [1, 2, 8, 1, 3, 6, 6, 3, 8, 2, 8, 2, 3, 3, 3, 1, 1, 3, 3, 3, 2, 8, 2, 8, 3, 6, 6, 3, 1, 8], [1, 1, 8, 8, 6, 3, 3, 6, 2, 4, 4, 8, 3, 1, 1, 3, 3, 1, 1, 3, 0, 0, 0, 2, 6, 3, 3, 6, 8, 8], [8, 2, 1, 2, 7, 8, 3, 6, 4, 4, 4, 2, 6, 3, 1, 3, 3, 1, 3, 6, 0, 0, 0, 4, 6, 3, 0, 0, 2, 1], [6, 8, 1, 1, 3, 7, 6, 3, 2, 4, 2, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 6, 0, 0, 1, 1], [8, 5, 4, 2, 1, 2, 8, 1, 6, 4, 6, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 8, 2, 1, 2, 4], [2, 5, 4, 4, 1, 1, 8, 8, 6, 4, 1, 6, 2, 4, 4, 8, 8, 4, 4, 2, 0, 0, 0, 6, 8, 8, 1, 1, 4, 4]], "output": [[2, 8, 2, 8, 6, 8, 1, 1, 4, 6, 6, 6, 2, 4, 2, 8, 8, 2, 4, 2, 6, 6, 6, 4, 1, 1, 8, 6, 8, 2], [8, 5, 5, 5, 8, 2, 1, 2, 6, 4, 4, 4, 4, 4, 4, 2, 2, 4, 4, 4, 4, 4, 4, 6, 2, 1, 2, 8, 5, 5], [2, 5, 4, 4, 1, 1, 8, 8, 6, 4, 1, 6, 2, 4, 4, 8, 8, 4, 4, 2, 6, 1, 4, 6, 8, 8, 1, 1, 4, 4], [8, 5, 4, 2, 1, 2, 8, 1, 6, 4, 6, 1, 8, 2, 8, 2, 2, 8, 2, 8, 1, 6, 4, 6, 1, 8, 2, 1, 2, 4], [6, 8, 1, 1, 3, 7, 6, 3, 2, 4, 2, 8, 9, 6, 3, 3, 3, 3, 6, 9, 8, 2, 4, 2, 3, 6, 7, 3, 1, 1], [8, 2, 1, 2, 7, 8, 3, 6, 4, 4, 4, 2, 6, 3, 1, 3, 3, 1, 3, 6, 2, 4, 4, 4, 6, 3, 8, 7, 2, 1], [1, 1, 8, 8, 6, 3, 3, 6, 2, 4, 4, 8, 3, 1, 1, 3, 3, 1, 1, 3, 8, 4, 4, 2, 6, 3, 3, 6, 8, 8], [1, 2, 8, 1, 3, 6, 6, 3, 8, 2, 8, 2, 3, 3, 3, 1, 1, 3, 3, 3, 2, 8, 2, 8, 3, 6, 6, 3, 1, 8], [4, 6, 6, 6, 2, 4, 2, 8, 4, 4, 3, 3, 1, 4, 1, 2, 2, 1, 4, 1, 3, 3, 4, 4, 8, 2, 4, 2, 6, 6], [6, 4, 4, 4, 4, 4, 4, 2, 4, 4, 2, 2, 4, 2, 8, 8, 8, 8, 2, 4, 2, 2, 4, 4, 2, 4, 4, 4, 4, 4], [6, 4, 1, 6, 2, 4, 4, 8, 3, 2, 2, 4, 1, 8, 1, 8, 8, 1, 8, 1, 4, 2, 2, 3, 8, 4, 4, 2, 6, 1], [6, 4, 6, 1, 8, 2, 8, 2, 3, 2, 4, 7, 2, 8, 8, 8, 8, 8, 8, 2, 7, 4, 2, 3, 2, 8, 2, 8, 1, 6], [2, 4, 2, 8, 9, 6, 3, 3, 1, 4, 1, 2, 9, 9, 3, 3, 3, 3, 9, 9, 2, 1, 4, 1, 3, 3, 6, 9, 8, 2], [4, 4, 4, 2, 6, 3, 1, 3, 4, 2, 8, 8, 9, 3, 8, 3, 3, 8, 3, 9, 8, 8, 2, 4, 3, 1, 3, 6, 2, 4], [2, 4, 4, 8, 3, 1, 1, 3, 1, 8, 1, 8, 3, 8, 2, 8, 8, 2, 8, 3, 8, 1, 8, 1, 3, 1, 1, 3, 8, 4], [8, 2, 8, 2, 3, 3, 3, 1, 2, 8, 8, 8, 3, 3, 8, 8, 8, 8, 3, 3, 8, 8, 8, 2, 1, 3, 3, 3, 2, 8], [8, 2, 8, 2, 3, 3, 3, 1, 2, 8, 8, 8, 3, 3, 8, 8, 8, 8, 3, 3, 8, 8, 8, 2, 1, 3, 3, 3, 2, 8], [2, 4, 4, 8, 3, 1, 1, 3, 1, 8, 1, 8, 3, 8, 2, 8, 8, 2, 8, 3, 8, 1, 8, 1, 3, 1, 1, 3, 8, 4], [4, 4, 4, 2, 6, 3, 1, 3, 4, 2, 8, 8, 9, 3, 8, 3, 3, 8, 3, 9, 8, 8, 2, 4, 3, 1, 3, 6, 2, 4], [2, 4, 2, 8, 9, 6, 3, 3, 1, 4, 1, 2, 9, 9, 3, 3, 3, 3, 9, 9, 2, 1, 4, 1, 3, 3, 6, 9, 8, 2], [6, 4, 6, 1, 8, 2, 8, 2, 3, 2, 4, 7, 2, 8, 8, 8, 8, 8, 8, 2, 7, 4, 2, 3, 2, 8, 2, 8, 1, 6], [6, 4, 1, 6, 2, 4, 4, 8, 3, 2, 2, 4, 1, 8, 1, 8, 8, 1, 8, 1, 4, 2, 2, 3, 8, 4, 4, 2, 6, 1], [6, 4, 4, 4, 4, 4, 4, 2, 4, 4, 2, 2, 4, 2, 8, 8, 8, 8, 2, 4, 2, 2, 4, 4, 2, 4, 4, 4, 4, 4], [4, 6, 6, 6, 2, 4, 2, 8, 4, 4, 3, 3, 1, 4, 1, 2, 2, 1, 4, 1, 3, 3, 4, 4, 8, 2, 4, 2, 6, 6], [1, 2, 8, 1, 3, 6, 6, 3, 8, 2, 8, 2, 3, 3, 3, 1, 1, 3, 3, 3, 2, 8, 2, 8, 3, 6, 6, 3, 1, 8], [1, 1, 8, 8, 6, 3, 3, 6, 2, 4, 4, 8, 3, 1, 1, 3, 3, 1, 1, 3, 8, 4, 4, 2, 6, 3, 3, 6, 8, 8], [8, 2, 1, 2, 7, 8, 3, 6, 4, 4, 4, 2, 6, 3, 1, 3, 3, 1, 3, 6, 2, 4, 4, 4, 6, 3, 8, 7, 2, 1], [6, 8, 1, 1, 3, 7, 6, 3, 2, 4, 2, 8, 9, 6, 3, 3, 3, 3, 6, 9, 8, 2, 4, 2, 3, 6, 7, 3, 1, 1], [8, 5, 4, 2, 1, 2, 8, 1, 6, 4, 6, 1, 8, 2, 8, 2, 2, 8, 2, 8, 1, 6, 4, 6, 1, 8, 2, 1, 2, 4], [2, 5, 4, 4, 1, 1, 8, 8, 6, 4, 1, 6, 2, 4, 4, 8, 8, 4, 4, 2, 6, 1, 4, 6, 8, 8, 1, 1, 4, 4]]}, {"input": [[8, 8, 8, 4, 8, 8, 8, 6, 5, 0, 0, 0, 0, 9, 2, 5, 5, 2, 9, 5, 3, 6, 5, 5, 6, 8, 8, 8, 4, 8], [8, 3, 8, 4, 8, 8, 8, 8, 5, 0, 0, 0, 0, 9, 9, 5, 5, 9, 9, 9, 8, 5, 8, 5, 8, 8, 8, 8, 4, 8], [8, 8, 4, 8, 8, 8, 9, 8, 6, 5, 5, 5, 2, 9, 5, 9, 9, 5, 9, 2, 5, 5, 5, 6, 8, 9, 8, 8, 8, 4], [4, 4, 8, 8, 6, 8, 8, 5, 3, 8, 5, 5, 5, 5, 9, 8, 8, 9, 5, 5, 5, 5, 8, 3, 5, 8, 8, 6, 8, 8], [8, 8, 8, 6, 8, 4, 9, 1, 5, 9, 2, 5, 5, 9, 8, 9, 9, 8, 9, 5, 5, 2, 9, 5, 1, 9, 4, 8, 6, 8], [8, 8, 8, 8, 4, 1, 8, 1, 9, 9, 9, 5, 9, 2, 2, 9, 9, 2, 2, 9, 5, 9, 9, 9, 1, 8, 1, 4, 8, 8], [8, 8, 9, 8, 9, 8, 8, 9, 2, 9, 5, 9, 8, 0, 0, 0, 5, 8, 2, 8, 9, 5, 9, 2, 9, 8, 8, 9, 8, 9], [6, 8, 8, 5, 1, 1, 9, 8, 5, 5, 9, 8, 9, 0, 0, 0, 2, 5, 9, 9, 8, 9, 5, 5, 8, 9, 1, 1, 5, 8], [5, 5, 0, 0, 0, 0, 0, 0, 4, 9, 4, 4, 6, 0, 0, 0, 6, 4, 6, 6, 4, 4, 9, 4, 5, 2, 9, 5, 3, 6], [5, 8, 0, 0, 0, 0, 0, 0, 9, 6, 6, 4, 6, 0, 0, 0, 5, 7, 5, 6, 4, 6, 6, 9, 5, 9, 9, 9, 8, 5], [6, 5, 0, 0, 0, 0, 0, 0, 4, 6, 9, 4, 4, 0, 0, 0, 7, 6, 7, 4, 4, 9, 6, 4, 9, 5, 9, 2, 5, 5], [3, 8, 0, 0, 0, 0, 0, 0, 4, 4, 4, 1, 6, 0, 0, 0, 4, 7, 5, 6, 1, 4, 4, 4, 8, 9, 5, 5, 5, 5], [5, 9, 0, 0, 0, 0, 0, 0, 6, 6, 4, 6, 2, 0, 0, 0, 4, 4, 5, 2, 6, 4, 6, 6, 9, 8, 9, 5, 5, 2], [9, 9, 0, 0, 0, 0, 0, 0, 6, 5, 7, 5, 5, 0, 0, 0, 4, 2, 2, 5, 5, 7, 5, 6, 9, 2, 2, 9, 5, 9], [2, 9, 5, 9, 8, 2, 8, 5, 4, 7, 6, 7, 4, 2, 4, 4, 4, 4, 2, 4, 7, 6, 7, 4, 5, 8, 2, 8, 9, 5], [5, 5, 9, 8, 9, 9, 5, 2, 6, 5, 7, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 7, 5, 6, 2, 5, 9, 9, 8, 9], [5, 5, 9, 8, 9, 9, 5, 2, 6, 5, 7, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 7, 5, 6, 2, 5, 9, 9, 8, 9], [2, 9, 5, 9, 8, 2, 8, 5, 4, 7, 6, 7, 4, 2, 4, 4, 4, 4, 2, 4, 7, 6, 7, 4, 5, 8, 2, 8, 9, 5], [9, 9, 9, 5, 9, 2, 2, 9, 6, 5, 7, 5, 5, 2, 2, 4, 4, 2, 2, 5, 5, 7, 5, 6, 9, 2, 2, 9, 0, 0], [5, 9, 2, 5, 5, 9, 8, 9, 6, 6, 4, 6, 2, 5, 4, 4, 4, 4, 5, 2, 6, 4, 6, 6, 9, 8, 9, 5, 0, 0], [3, 8, 5, 5, 5, 5, 9, 8, 4, 4, 4, 1, 6, 5, 7, 4, 4, 7, 5, 6, 1, 4, 4, 4, 8, 9, 5, 5, 0, 0], [6, 5, 5, 5, 2, 9, 5, 9, 4, 6, 9, 4, 4, 7, 6, 7, 7, 6, 7, 4, 4, 9, 6, 4, 9, 5, 9, 2, 0, 0], [5, 8, 5, 8, 9, 9, 9, 5, 9, 6, 6, 4, 6, 5, 7, 5, 5, 7, 5, 6, 4, 6, 6, 9, 5, 9, 9, 9, 0, 0], [5, 5, 6, 3, 5, 9, 2, 5, 4, 9, 4, 4, 6, 6, 4, 6, 6, 4, 6, 6, 4, 4, 9, 4, 5, 2, 9, 5, 0, 0], [6, 8, 8, 5, 1, 1, 9, 8, 5, 5, 9, 8, 9, 9, 5, 2, 2, 5, 9, 9, 8, 9, 5, 5, 8, 9, 1, 1, 0, 0], [8, 8, 9, 8, 9, 8, 8, 9, 2, 9, 5, 9, 8, 2, 8, 5, 5, 8, 2, 8, 9, 5, 9, 2, 9, 8, 8, 9, 0, 0], [8, 8, 8, 8, 4, 1, 8, 1, 9, 9, 9, 5, 9, 2, 2, 9, 9, 2, 2, 9, 5, 9, 9, 9, 1, 8, 1, 4, 8, 8], [8, 8, 8, 6, 8, 4, 9, 1, 5, 9, 2, 5, 5, 9, 8, 9, 9, 8, 9, 5, 5, 2, 9, 5, 1, 9, 4, 8, 6, 8], [4, 4, 8, 8, 6, 8, 8, 5, 3, 8, 5, 5, 5, 5, 9, 8, 8, 9, 5, 5, 5, 5, 8, 3, 5, 8, 8, 6, 8, 8], [8, 8, 4, 8, 8, 8, 9, 8, 6, 5, 5, 5, 2, 9, 5, 9, 9, 5, 9, 2, 5, 5, 5, 6, 8, 9, 8, 8, 8, 4]], "output": [[8, 8, 8, 4, 8, 8, 8, 6, 5, 5, 6, 3, 5, 9, 2, 5, 5, 2, 9, 5, 3, 6, 5, 5, 6, 8, 8, 8, 4, 8], [8, 3, 8, 4, 8, 8, 8, 8, 5, 8, 5, 8, 9, 9, 9, 5, 5, 9, 9, 9, 8, 5, 8, 5, 8, 8, 8, 8, 4, 8], [8, 8, 4, 8, 8, 8, 9, 8, 6, 5, 5, 5, 2, 9, 5, 9, 9, 5, 9, 2, 5, 5, 5, 6, 8, 9, 8, 8, 8, 4], [4, 4, 8, 8, 6, 8, 8, 5, 3, 8, 5, 5, 5, 5, 9, 8, 8, 9, 5, 5, 5, 5, 8, 3, 5, 8, 8, 6, 8, 8], [8, 8, 8, 6, 8, 4, 9, 1, 5, 9, 2, 5, 5, 9, 8, 9, 9, 8, 9, 5, 5, 2, 9, 5, 1, 9, 4, 8, 6, 8], [8, 8, 8, 8, 4, 1, 8, 1, 9, 9, 9, 5, 9, 2, 2, 9, 9, 2, 2, 9, 5, 9, 9, 9, 1, 8, 1, 4, 8, 8], [8, 8, 9, 8, 9, 8, 8, 9, 2, 9, 5, 9, 8, 2, 8, 5, 5, 8, 2, 8, 9, 5, 9, 2, 9, 8, 8, 9, 8, 9], [6, 8, 8, 5, 1, 1, 9, 8, 5, 5, 9, 8, 9, 9, 5, 2, 2, 5, 9, 9, 8, 9, 5, 5, 8, 9, 1, 1, 5, 8], [5, 5, 6, 3, 5, 9, 2, 5, 4, 9, 4, 4, 6, 6, 4, 6, 6, 4, 6, 6, 4, 4, 9, 4, 5, 2, 9, 5, 3, 6], [5, 8, 5, 8, 9, 9, 9, 5, 9, 6, 6, 4, 6, 5, 7, 5, 5, 7, 5, 6, 4, 6, 6, 9, 5, 9, 9, 9, 8, 5], [6, 5, 5, 5, 2, 9, 5, 9, 4, 6, 9, 4, 4, 7, 6, 7, 7, 6, 7, 4, 4, 9, 6, 4, 9, 5, 9, 2, 5, 5], [3, 8, 5, 5, 5, 5, 9, 8, 4, 4, 4, 1, 6, 5, 7, 4, 4, 7, 5, 6, 1, 4, 4, 4, 8, 9, 5, 5, 5, 5], [5, 9, 2, 5, 5, 9, 8, 9, 6, 6, 4, 6, 2, 5, 4, 4, 4, 4, 5, 2, 6, 4, 6, 6, 9, 8, 9, 5, 5, 2], [9, 9, 9, 5, 9, 2, 2, 9, 6, 5, 7, 5, 5, 2, 2, 4, 4, 2, 2, 5, 5, 7, 5, 6, 9, 2, 2, 9, 5, 9], [2, 9, 5, 9, 8, 2, 8, 5, 4, 7, 6, 7, 4, 2, 4, 4, 4, 4, 2, 4, 7, 6, 7, 4, 5, 8, 2, 8, 9, 5], [5, 5, 9, 8, 9, 9, 5, 2, 6, 5, 7, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 7, 5, 6, 2, 5, 9, 9, 8, 9], [5, 5, 9, 8, 9, 9, 5, 2, 6, 5, 7, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 7, 5, 6, 2, 5, 9, 9, 8, 9], [2, 9, 5, 9, 8, 2, 8, 5, 4, 7, 6, 7, 4, 2, 4, 4, 4, 4, 2, 4, 7, 6, 7, 4, 5, 8, 2, 8, 9, 5], [9, 9, 9, 5, 9, 2, 2, 9, 6, 5, 7, 5, 5, 2, 2, 4, 4, 2, 2, 5, 5, 7, 5, 6, 9, 2, 2, 9, 5, 9], [5, 9, 2, 5, 5, 9, 8, 9, 6, 6, 4, 6, 2, 5, 4, 4, 4, 4, 5, 2, 6, 4, 6, 6, 9, 8, 9, 5, 5, 2], [3, 8, 5, 5, 5, 5, 9, 8, 4, 4, 4, 1, 6, 5, 7, 4, 4, 7, 5, 6, 1, 4, 4, 4, 8, 9, 5, 5, 5, 5], [6, 5, 5, 5, 2, 9, 5, 9, 4, 6, 9, 4, 4, 7, 6, 7, 7, 6, 7, 4, 4, 9, 6, 4, 9, 5, 9, 2, 5, 5], [5, 8, 5, 8, 9, 9, 9, 5, 9, 6, 6, 4, 6, 5, 7, 5, 5, 7, 5, 6, 4, 6, 6, 9, 5, 9, 9, 9, 8, 5], [5, 5, 6, 3, 5, 9, 2, 5, 4, 9, 4, 4, 6, 6, 4, 6, 6, 4, 6, 6, 4, 4, 9, 4, 5, 2, 9, 5, 3, 6], [6, 8, 8, 5, 1, 1, 9, 8, 5, 5, 9, 8, 9, 9, 5, 2, 2, 5, 9, 9, 8, 9, 5, 5, 8, 9, 1, 1, 5, 8], [8, 8, 9, 8, 9, 8, 8, 9, 2, 9, 5, 9, 8, 2, 8, 5, 5, 8, 2, 8, 9, 5, 9, 2, 9, 8, 8, 9, 8, 9], [8, 8, 8, 8, 4, 1, 8, 1, 9, 9, 9, 5, 9, 2, 2, 9, 9, 2, 2, 9, 5, 9, 9, 9, 1, 8, 1, 4, 8, 8], [8, 8, 8, 6, 8, 4, 9, 1, 5, 9, 2, 5, 5, 9, 8, 9, 9, 8, 9, 5, 5, 2, 9, 5, 1, 9, 4, 8, 6, 8], [4, 4, 8, 8, 6, 8, 8, 5, 3, 8, 5, 5, 5, 5, 9, 8, 8, 9, 5, 5, 5, 5, 8, 3, 5, 8, 8, 6, 8, 8], [8, 8, 4, 8, 8, 8, 9, 8, 6, 5, 5, 5, 2, 9, 5, 9, 9, 5, 9, 2, 5, 5, 5, 6, 8, 9, 8, 8, 8, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/992798f6.json b/data/arc-agi/evaluation/992798f6.json
deleted file mode 100644
index 4ebfddd..0000000
--- a/data/arc-agi/evaluation/992798f6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/99306f82.json b/data/arc-agi/evaluation/99306f82.json
deleted file mode 100644
index 54aea3f..0000000
--- a/data/arc-agi/evaluation/99306f82.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 1, 3, 3, 3, 3, 1, 0, 0], [0, 0, 1, 3, 2, 2, 3, 1, 0, 0], [0, 0, 1, 3, 2, 2, 3, 1, 0, 0], [0, 0, 1, 3, 3, 3, 3, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 1, 0, 0, 0], [0, 0, 0, 1, 2, 6, 6, 6, 6, 6, 2, 1, 0, 0, 0], [0, 0, 0, 1, 2, 6, 4, 4, 4, 6, 2, 1, 0, 0, 0], [0, 0, 0, 1, 2, 6, 4, 4, 4, 6, 2, 1, 0, 0, 0], [0, 0, 0, 1, 2, 6, 4, 4, 4, 6, 2, 1, 0, 0, 0], [0, 0, 0, 1, 2, 6, 6, 6, 6, 6, 2, 1, 0, 0, 0], [0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 8, 1, 0], [0, 0, 0, 0, 1, 8, 6, 6, 6, 6, 6, 6, 8, 1, 0], [0, 0, 0, 0, 1, 8, 6, 4, 4, 4, 4, 6, 8, 1, 0], [0, 0, 0, 0, 1, 8, 6, 4, 2, 2, 4, 6, 8, 1, 0], [0, 0, 0, 0, 1, 8, 6, 4, 2, 2, 4, 6, 8, 1, 0], [0, 0, 0, 0, 1, 8, 6, 4, 4, 4, 4, 6, 8, 1, 0], [0, 0, 0, 0, 1, 8, 6, 6, 6, 6, 6, 6, 8, 1, 0], [0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 8, 1, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 0], [0, 0, 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 1, 0], [0, 0, 0, 0, 0, 1, 2, 3, 9, 9, 9, 9, 9, 9, 9, 9, 3, 2, 1, 0], [0, 0, 0, 0, 0, 1, 2, 3, 9, 8, 8, 8, 8, 8, 8, 9, 3, 2, 1, 0], [0, 0, 0, 0, 0, 1, 2, 3, 9, 8, 7, 7, 7, 7, 8, 9, 3, 2, 1, 0], [0, 0, 0, 0, 0, 1, 2, 3, 9, 8, 7, 7, 7, 7, 8, 9, 3, 2, 1, 0], [0, 0, 0, 0, 0, 1, 2, 3, 9, 8, 7, 7, 7, 7, 8, 9, 3, 2, 1, 0], [0, 0, 0, 0, 0, 1, 2, 3, 9, 8, 8, 8, 8, 8, 8, 9, 3, 2, 1, 0], [0, 0, 0, 0, 0, 1, 2, 3, 9, 9, 9, 9, 9, 9, 9, 9, 3, 2, 1, 0], [0, 0, 0, 0, 0, 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 1, 0], [0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/9a4bb226.json b/data/arc-agi/evaluation/9a4bb226.json
deleted file mode 100644
index 0eba4d7..0000000
--- a/data/arc-agi/evaluation/9a4bb226.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 9, 9, 0, 0, 0, 7, 4, 4, 0, 0, 0, 0], [0, 0, 8, 8, 9, 0, 0, 0, 7, 4, 7, 0, 0, 0, 0], [0, 0, 8, 8, 9, 0, 0, 0, 7, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 2, 0, 0, 0, 0], [0, 0, 3, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 3, 3], [1, 2, 2], [1, 3, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 5, 5, 0, 0, 9, 9, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 7, 1, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 2, 0, 7, 1, 7, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 7, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 5, 5], [6, 8, 8], [6, 5, 5]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 7, 5, 0, 0, 0, 1, 6, 2, 0, 0, 0, 0], [0, 0, 5, 7, 7, 0, 0, 0, 6, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 3, 3, 0, 0, 0, 9, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 6, 2], [6, 1, 1], [2, 6, 1]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 6, 6, 0, 0, 0, 7, 1, 7, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 1, 7, 7, 0, 0, 0, 0], [0, 0, 6, 3, 6, 0, 0, 0, 7, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0], [0, 0, 9, 4, 4, 0, 0, 0, 5, 5, 8, 0, 0, 0, 0], [0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[9, 4, 4], [4, 4, 4], [2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/9b2a60aa.json b/data/arc-agi/evaluation/9b2a60aa.json
deleted file mode 100644
index 64cc7df..0000000
--- a/data/arc-agi/evaluation/9b2a60aa.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 8, 0, 0, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 8, 0, 0, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 8, 8, 8, 0, 0, 3, 3, 3, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 2, 0, 0, 0, 0, 8, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 2, 2, 2, 0, 0, 8, 8, 8, 0, 0, 3, 3, 3, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 0, 0, 0, 8, 0, 0, 8, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 0, 0, 0, 8, 0, 0, 8, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0], [3, 3, 3, 0, 0, 4, 4, 4, 0, 0, 0, 8, 8, 8, 0, 0, 8, 8, 8, 0, 2, 2, 2, 0], [3, 3, 0, 0, 0, 4, 4, 0, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/9b365c51.json b/data/arc-agi/evaluation/9b365c51.json
deleted file mode 100644
index b9b77ae..0000000
--- a/data/arc-agi/evaluation/9b365c51.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 4, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 3, 0, 2, 0, 0, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 0], [0, 4, 0, 3, 0, 2, 0, 0, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 0], [0, 4, 0, 3, 0, 2, 0, 0, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 4, 0, 3, 0, 2, 0, 0, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 4, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 4, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 4, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 3, 3, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 3, 3, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 1, 0, 6, 0, 7, 0, 8, 8, 8, 0, 0, 8, 8, 8], [0, 1, 0, 6, 0, 7, 0, 8, 8, 8, 0, 0, 8, 8, 8], [0, 1, 0, 6, 0, 7, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 1, 0, 6, 0, 7, 0, 0, 0, 0, 8, 8, 0, 0, 0], [0, 1, 0, 6, 0, 7, 0, 0, 0, 0, 8, 8, 0, 0, 0], [0, 1, 0, 6, 0, 7, 0, 0, 0, 0, 8, 8, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0]]}, {"input": [[0, 3, 0, 2, 0, 4, 0, 7, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0], [0, 3, 0, 2, 0, 4, 0, 7, 0, 8, 8, 8, 8, 0, 8, 8, 0, 0], [0, 3, 0, 2, 0, 4, 0, 7, 0, 0, 0, 8, 8, 0, 8, 8, 0, 0], [0, 3, 0, 2, 0, 4, 0, 7, 0, 0, 0, 8, 8, 0, 8, 8, 8, 8], [0, 3, 0, 2, 0, 4, 0, 7, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [0, 3, 0, 2, 0, 4, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 3, 0, 2, 0, 4, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 2, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 4, 4, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 1, 0, 3, 0, 2, 0, 4, 0, 6, 0, 7, 0, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 1, 0, 3, 0, 2, 0, 4, 0, 6, 0, 7, 0, 8, 8, 8, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 8, 8], [0, 1, 0, 3, 0, 2, 0, 4, 0, 6, 0, 7, 0, 8, 8, 8, 0, 0, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8], [0, 1, 0, 3, 0, 2, 0, 4, 0, 6, 0, 7, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 8], [0, 1, 0, 3, 0, 2, 0, 4, 0, 6, 0, 7, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 1, 0, 3, 0, 2, 0, 4, 0, 6, 0, 7, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 1, 0, 3, 0, 2, 0, 4, 0, 6, 0, 7, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 2, 2, 4, 4, 4, 0, 0, 0, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 2, 2, 0, 0, 0, 6, 6, 6, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 2, 0, 0, 0, 6, 6, 6, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 6, 6, 6, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/9b4c17c4.json b/data/arc-agi/evaluation/9b4c17c4.json
deleted file mode 100644
index 9c12796..0000000
--- a/data/arc-agi/evaluation/9b4c17c4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 8, 8, 2, 2, 8, 8], [1, 1, 1, 1, 1, 1, 1, 8, 8, 2, 2, 8, 8], [1, 1, 2, 2, 1, 1, 1, 8, 8, 2, 2, 8, 8], [1, 1, 2, 2, 1, 1, 1, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8], [1, 1, 2, 2, 2, 1, 1, 8, 8, 8, 8, 8, 8], [1, 1, 2, 2, 2, 1, 1, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 8, 2, 2, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 8, 2, 2, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8]], "output": [[1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 2, 2, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 2, 2, 8, 8, 8, 8], [1, 1, 1, 1, 1, 2, 2, 2, 2, 8, 8, 8, 8], [1, 1, 1, 1, 1, 2, 2, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 2, 2, 2, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 2, 2, 2, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 2, 2, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 2, 2, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8]]}, {"input": [[8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 2, 2, 8, 8, 1, 1, 1, 1, 2, 2, 1, 1], [8, 8, 2, 2, 8, 8, 1, 1, 1, 1, 2, 2, 1, 1], [8, 8, 2, 2, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 2, 2, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 1, 1, 2, 2, 2, 1, 1, 1], [8, 2, 2, 8, 8, 8, 1, 1, 2, 2, 2, 1, 1, 1], [8, 2, 2, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 2, 2, 1], [8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 2, 2], [2, 2, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 2, 2], [2, 2, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 2, 2, 2], [2, 2, 8, 8, 8, 8, 1, 1, 1, 1, 1, 2, 2, 2], [2, 2, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 2, 2], [8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 2, 2, 8, 8, 8, 8, 8, 8, 8], [8, 8, 2, 2, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 2, 2, 2, 8, 8, 8], [8, 8, 8, 8, 8, 2, 2, 2, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1], [1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2]]}], "test": [{"input": [[1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 8, 2, 8, 8, 8], [1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8], [1, 2, 2, 1, 1, 1, 8, 8, 2, 2, 8], [1, 2, 2, 1, 1, 1, 8, 8, 2, 2, 8], [1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8], [2, 2, 2, 2, 1, 1, 8, 8, 8, 8, 8], [2, 2, 2, 2, 1, 1, 8, 8, 2, 8, 8], [1, 1, 1, 1, 1, 1, 8, 8, 2, 8, 8], [1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8]], "output": [[1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 2, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8], [1, 1, 1, 1, 2, 2, 2, 2, 8, 8, 8], [1, 1, 1, 1, 2, 2, 2, 2, 8, 8, 8], [1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8], [1, 1, 2, 2, 2, 2, 8, 8, 8, 8, 8], [1, 1, 2, 2, 2, 2, 2, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 2, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 2, 2, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 2, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 2, 2, 8, 8, 8], [8, 8, 8, 8, 2, 2, 8, 8, 8], [8, 2, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 2, 2], [1, 1, 1, 1, 1, 1, 1, 1, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 8, 8, 8, 8, 8, 8, 8], [2, 2, 8, 8, 8, 8, 8, 8, 8], [2, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/9bebae7a.json b/data/arc-agi/evaluation/9bebae7a.json
deleted file mode 100644
index c059787..0000000
--- a/data/arc-agi/evaluation/9bebae7a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 4, 4, 4, 4, 4, 0, 0], [0, 0, 4, 4, 4, 4, 0, 4, 4, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0]], "output": [[0, 0, 0, 4, 4, 4, 4, 4, 0, 0], [0, 0, 4, 4, 4, 4, 0, 4, 4, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 0, 4, 4, 0], [0, 0, 0, 4, 4, 4, 4, 4, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 4, 4, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 4, 0], [0, 0, 0, 0, 4, 4, 0, 0, 4, 4], [0, 0, 0, 0, 4, 0, 4, 4, 0, 4], [0, 0, 0, 0, 0, 4, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/9c1e755f.json b/data/arc-agi/evaluation/9c1e755f.json
deleted file mode 100644
index f00974a..0000000
--- a/data/arc-agi/evaluation/9c1e755f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 6, 6, 6, 9, 9, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 6, 6, 6, 9, 9, 9, 0], [0, 0, 5, 6, 6, 6, 9, 9, 9, 0], [0, 0, 5, 6, 6, 6, 9, 9, 9, 0], [0, 0, 5, 6, 6, 6, 9, 9, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 4, 3, 3, 4, 4, 4, 0, 0, 0], [5, 7, 3, 7, 7, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 4, 3, 3, 4, 4, 4, 0, 0, 0], [5, 7, 3, 7, 7, 3, 3, 0, 0, 0], [5, 4, 3, 3, 4, 4, 4, 0, 0, 0], [5, 7, 3, 7, 7, 3, 3, 0, 0, 0], [5, 4, 3, 3, 4, 4, 4, 0, 0, 0], [5, 7, 3, 7, 7, 3, 3, 0, 0, 0], [5, 4, 3, 3, 4, 4, 4, 0, 0, 0], [5, 7, 3, 7, 7, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 5, 5, 5, 5], [5, 0, 0, 0, 0, 0, 3, 0, 0, 0], [5, 0, 0, 0, 0, 0, 3, 0, 0, 0], [5, 0, 0, 0, 0, 0, 7, 0, 0, 0], [5, 0, 0, 0, 0, 0, 3, 0, 0, 0], [5, 0, 0, 0, 0, 0, 7, 0, 0, 0], [5, 0, 0, 0, 0, 0, 7, 0, 0, 0], [5, 6, 3, 6, 3, 0, 0, 0, 0, 0], [5, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 5, 5, 5, 5], [5, 6, 3, 6, 3, 0, 3, 3, 3, 3], [5, 2, 2, 2, 2, 0, 3, 3, 3, 3], [5, 6, 3, 6, 3, 0, 7, 7, 7, 7], [5, 2, 2, 2, 2, 0, 3, 3, 3, 3], [5, 6, 3, 6, 3, 0, 7, 7, 7, 7], [5, 2, 2, 2, 2, 0, 7, 7, 7, 7], [5, 6, 3, 6, 3, 0, 0, 0, 0, 0], [5, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 0, 5, 0, 0, 0], [4, 0, 0, 0, 0, 0, 5, 0, 0, 0], [2, 0, 0, 0, 0, 0, 5, 0, 0, 0], [2, 0, 0, 0, 0, 0, 5, 0, 0, 0], [2, 0, 0, 0, 0, 0, 5, 0, 0, 0], [1, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 8, 6, 8], [0, 0, 0, 0, 0, 0, 5, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 0, 5, 8, 6, 8], [4, 4, 4, 4, 4, 0, 5, 3, 3, 3], [2, 2, 2, 2, 2, 0, 5, 8, 6, 8], [2, 2, 2, 2, 2, 0, 5, 3, 3, 3], [2, 2, 2, 2, 2, 0, 5, 8, 6, 8], [1, 1, 1, 1, 1, 0, 5, 3, 3, 3], [0, 0, 0, 0, 0, 0, 5, 8, 6, 8], [0, 0, 0, 0, 0, 0, 5, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/9c56f360.json b/data/arc-agi/evaluation/9c56f360.json
deleted file mode 100644
index 2659db1..0000000
--- a/data/arc-agi/evaluation/9c56f360.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8], [8, 0, 0, 0, 0, 8], [0, 0, 8, 0, 8, 0], [0, 0, 0, 0, 3, 3], [8, 0, 8, 0, 3, 3], [0, 8, 0, 8, 8, 0]], "output": [[0, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8], [8, 0, 0, 0, 0, 8], [0, 0, 8, 0, 8, 0], [3, 3, 0, 0, 0, 0], [8, 0, 8, 3, 3, 0], [0, 8, 0, 8, 8, 0]]}, {"input": [[0, 0, 0, 8, 0, 0, 8, 3], [0, 8, 0, 0, 8, 0, 0, 3], [8, 8, 0, 8, 0, 0, 8, 3], [8, 8, 0, 0, 0, 0, 0, 3], [0, 0, 0, 8, 8, 0, 0, 8], [8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0]], "output": [[0, 0, 0, 8, 0, 0, 8, 3], [0, 8, 0, 0, 8, 3, 0, 0], [8, 8, 0, 8, 0, 0, 8, 3], [8, 8, 3, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 8], [8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0]]}, {"input": [[0, 0, 0, 0, 8, 8, 8, 8], [0, 0, 0, 8, 0, 8, 3, 3], [8, 0, 0, 8, 0, 0, 3, 3], [8, 8, 0, 0, 0, 0, 3, 3], [8, 8, 0, 0, 8, 8, 0, 8], [0, 0, 0, 8, 0, 8, 0, 3], [0, 8, 0, 0, 0, 0, 0, 3], [0, 0, 0, 8, 8, 0, 8, 3], [8, 0, 0, 8, 8, 8, 0, 8]], "output": [[0, 0, 0, 0, 8, 8, 8, 8], [0, 0, 0, 8, 0, 8, 3, 3], [8, 0, 0, 8, 3, 3, 0, 0], [8, 8, 3, 3, 0, 0, 0, 0], [8, 8, 0, 0, 8, 8, 0, 8], [0, 0, 0, 8, 0, 8, 3, 0], [0, 8, 3, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 8, 3], [8, 0, 0, 8, 8, 8, 0, 8]]}], "test": [{"input": [[0, 8, 8, 8, 8, 8, 8, 0, 8], [8, 8, 8, 0, 0, 8, 8, 0, 8], [0, 8, 8, 0, 8, 8, 0, 0, 8], [0, 8, 0, 0, 0, 0, 0, 3, 3], [0, 8, 0, 8, 0, 0, 0, 3, 3], [8, 0, 0, 0, 0, 0, 0, 3, 3], [0, 0, 8, 0, 8, 8, 0, 3, 3], [0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 8, 8, 8, 0]], "output": [[0, 8, 8, 8, 8, 8, 8, 0, 8], [8, 8, 8, 0, 0, 8, 8, 0, 8], [0, 8, 8, 0, 8, 8, 0, 0, 8], [0, 8, 3, 3, 0, 0, 0, 0, 0], [0, 8, 0, 8, 3, 3, 0, 0, 0], [8, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 8, 8, 3, 3, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 8, 8, 8, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/9caba7c3.json b/data/arc-agi/evaluation/9caba7c3.json
deleted file mode 100644
index f972002..0000000
--- a/data/arc-agi/evaluation/9caba7c3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 5, 5, 5, 5, 5, 0, 0, 5, 5, 0, 5, 0, 0, 5, 5, 5, 0, 0], [0, 5, 0, 5, 5, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [5, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 5, 5, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 5, 0, 0, 5, 5, 0, 0], [5, 0, 0, 5, 5, 0, 5, 5, 5, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5, 5], [0, 5, 0, 5, 2, 5, 5, 5, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 2, 5, 5, 5, 0, 5, 5, 0, 0, 5, 0, 5, 0, 5], [0, 0, 5, 0, 5, 5, 0, 0, 5, 5, 0, 0, 5, 5, 0, 5, 5, 5, 5], [0, 5, 5, 5, 5, 5, 5, 0, 5, 0, 2, 5, 5, 0, 0, 5, 0, 5, 5], [0, 5, 5, 0, 0, 0, 0, 5, 5, 0, 2, 5, 5, 0, 5, 5, 5, 5, 0], [5, 5, 2, 2, 2, 5, 0, 0, 0, 0, 5, 2, 2, 5, 5, 5, 0, 0, 5], [5, 0, 5, 5, 2, 5, 5, 5, 0, 0, 0, 5, 5, 0, 5, 5, 5, 0, 5], [0, 0, 2, 5, 2, 5, 0, 5, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 5], [0, 5, 5, 5, 0, 0, 0, 5, 0, 5, 5, 0, 5, 5, 5, 5, 0, 5, 0], [5, 5, 5, 0, 5, 5, 0, 5, 5, 5, 5, 0, 0, 5, 2, 5, 0, 5, 5], [5, 5, 0, 5, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 5, 0, 5], [5, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 0, 5, 5, 5, 0, 0, 5, 5, 0, 0, 0, 0, 0, 5, 0]], "output": [[0, 5, 5, 5, 5, 5, 0, 0, 5, 5, 0, 5, 0, 0, 5, 5, 5, 0, 0], [0, 5, 0, 5, 5, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [5, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 5, 5, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 5, 0, 0, 5, 5, 0, 0], [5, 0, 0, 5, 5, 0, 5, 5, 5, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 5, 7, 7, 7, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5, 5], [0, 5, 0, 5, 2, 4, 7, 5, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0], [5, 5, 5, 5, 7, 2, 7, 5, 5, 0, 5, 5, 0, 0, 5, 0, 5, 0, 5], [0, 0, 5, 0, 5, 5, 0, 0, 5, 5, 0, 0, 5, 5, 0, 5, 5, 5, 5], [0, 5, 5, 5, 5, 5, 5, 0, 5, 0, 2, 7, 7, 0, 0, 5, 0, 5, 5], [0, 5, 5, 0, 0, 0, 0, 5, 5, 0, 2, 4, 7, 0, 5, 5, 5, 5, 0], [5, 5, 2, 2, 2, 5, 0, 0, 0, 0, 7, 2, 2, 5, 5, 5, 0, 0, 5], [5, 0, 7, 4, 2, 5, 5, 5, 0, 0, 0, 5, 5, 0, 5, 5, 5, 0, 5], [0, 0, 2, 7, 2, 5, 0, 5, 0, 0, 0, 0, 5, 7, 7, 7, 0, 0, 5], [0, 5, 5, 5, 0, 0, 0, 5, 0, 5, 5, 0, 5, 7, 4, 7, 0, 5, 0], [5, 5, 5, 0, 5, 5, 0, 5, 5, 5, 5, 0, 0, 7, 2, 7, 0, 5, 5], [5, 5, 0, 5, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 5, 0, 5], [5, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 0, 5, 5, 5, 0, 0, 5, 5, 0, 0, 0, 0, 0, 5, 0]]}, {"input": [[5, 5, 0, 5, 0, 5, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 5], [0, 0, 0, 5, 5, 5, 0, 5, 5, 0, 5, 2, 2, 5, 5, 5, 0, 0, 0], [0, 5, 5, 5, 5, 0, 5, 0, 5, 5, 5, 2, 5, 5, 0, 5, 0, 0, 0], [5, 0, 5, 2, 2, 5, 5, 0, 0, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5], [0, 5, 5, 5, 2, 5, 0, 0, 5, 5, 0, 0, 5, 0, 5, 0, 5, 0, 5], [0, 0, 2, 2, 2, 5, 5, 0, 5, 0, 5, 5, 0, 5, 0, 5, 0, 0, 5], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 5, 5, 5, 0], [5, 5, 5, 5, 0, 5, 5, 0, 0, 0, 5, 5, 0, 0, 0, 0, 5, 0, 5], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 5, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 5, 0, 5, 5, 5, 0, 5, 0, 0, 0, 0, 0, 2, 2, 5], [0, 5, 0, 0, 0, 5, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, 5, 5, 5], [5, 0, 0, 5, 5, 0, 5, 5, 5, 5, 5, 0, 5, 5, 0, 5, 5, 5, 2], [5, 0, 5, 0, 0, 0, 5, 5, 5, 0, 5, 0, 0, 5, 5, 5, 5, 5, 5], [0, 5, 0, 5, 0, 0, 0, 0, 5, 0, 5, 5, 0, 5, 0, 0, 5, 5, 5], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 2, 5, 2, 5, 5, 0, 0, 5, 0, 0, 0, 5, 5, 5, 0], [5, 5, 5, 0, 2, 2, 5, 5, 5, 0, 0, 0, 0, 5, 5, 0, 5, 5, 0], [0, 5, 0, 0, 5, 0, 0, 5, 0, 5, 0, 5, 0, 5, 5, 5, 0, 5, 0], [5, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, 5, 0, 5, 5, 5]], "output": [[5, 5, 0, 5, 0, 5, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 5], [0, 0, 0, 5, 5, 5, 0, 5, 5, 0, 5, 2, 2, 7, 5, 5, 0, 0, 0], [0, 5, 5, 5, 5, 0, 5, 0, 5, 5, 5, 2, 4, 7, 0, 5, 0, 0, 0], [5, 0, 7, 2, 2, 5, 5, 0, 0, 5, 5, 7, 7, 7, 5, 0, 5, 5, 5], [0, 5, 7, 4, 2, 5, 0, 0, 5, 5, 0, 0, 5, 0, 5, 0, 5, 0, 5], [0, 0, 2, 2, 2, 5, 5, 0, 5, 0, 5, 5, 0, 5, 0, 5, 0, 0, 5], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 5, 5, 5, 0], [5, 5, 5, 5, 0, 5, 5, 0, 0, 0, 5, 5, 0, 0, 0, 0, 5, 0, 5], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 5, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 5, 0, 5, 5, 5, 0, 5, 0, 0, 0, 0, 0, 2, 2, 7], [0, 5, 0, 0, 0, 5, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, 7, 4, 7], [5, 0, 0, 5, 5, 0, 5, 5, 5, 5, 5, 0, 5, 5, 0, 5, 7, 7, 2], [5, 0, 5, 0, 0, 0, 5, 5, 5, 0, 5, 0, 0, 5, 5, 5, 5, 5, 5], [0, 5, 0, 5, 0, 0, 0, 0, 5, 0, 5, 5, 0, 5, 0, 0, 5, 5, 5], [0, 0, 5, 5, 7, 7, 7, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 2, 4, 2, 5, 5, 0, 0, 5, 0, 0, 0, 5, 5, 5, 0], [5, 5, 5, 0, 2, 2, 7, 5, 5, 0, 0, 0, 0, 5, 5, 0, 5, 5, 0], [0, 5, 0, 0, 5, 0, 0, 5, 0, 5, 0, 5, 0, 5, 5, 5, 0, 5, 0], [5, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, 5, 0, 5, 5, 5]]}, {"input": [[0, 0, 5, 5, 5, 0, 5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 2, 5, 5, 5, 5, 5, 5, 0, 5, 0, 0, 0, 2, 2, 5, 5, 0], [5, 5, 5, 2, 5, 0, 5, 5, 5, 0, 5, 5, 0, 5, 2, 5, 2, 5, 5], [0, 0, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 0, 5, 5, 2, 5, 0, 0], [0, 5, 5, 5, 0, 5, 5, 0, 0, 5, 0, 5, 0, 0, 5, 5, 5, 5, 5], [5, 0, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 0, 0, 5, 5, 5], [5, 5, 0, 0, 0, 5, 0, 0, 5, 0, 5, 5, 0, 0, 5, 0, 0, 0, 0], [0, 5, 5, 0, 0, 5, 0, 5, 5, 5, 0, 0, 5, 5, 0, 0, 5, 5, 5], [5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 0, 0, 5, 5, 5], [5, 5, 5, 5, 0, 0, 0, 5, 5, 0, 0, 5, 5, 5, 0, 5, 5, 5, 5], [0, 5, 2, 2, 5, 5, 0, 0, 5, 0, 0, 5, 2, 5, 5, 5, 0, 5, 5], [5, 5, 5, 5, 5, 0, 0, 5, 0, 0, 0, 5, 5, 2, 5, 0, 0, 0, 5], [0, 5, 5, 5, 2, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 5, 5, 5, 0, 5, 5, 5, 0], [5, 0, 0, 5, 5, 0, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 0, 0, 0, 5, 5, 5, 0], [5, 5, 5, 5, 0, 5, 0, 5, 5, 5, 5, 5, 0, 5, 0, 5, 5, 5, 0], [5, 0, 5, 0, 5, 5, 0, 5, 5, 0, 0, 5, 0, 5, 5, 0, 0, 5, 5], [5, 0, 5, 0, 0, 0, 5, 0, 0, 5, 0, 5, 5, 5, 0, 0, 5, 5, 5]], "output": [[0, 0, 7, 7, 7, 0, 5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 2, 4, 7, 5, 5, 5, 5, 0, 5, 0, 0, 0, 2, 2, 7, 5, 0], [5, 5, 7, 2, 7, 0, 5, 5, 5, 0, 5, 5, 0, 5, 2, 4, 2, 5, 5], [0, 0, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 0, 5, 7, 2, 7, 0, 0], [0, 5, 5, 5, 0, 5, 5, 0, 0, 5, 0, 5, 0, 0, 5, 5, 5, 5, 5], [5, 0, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 0, 0, 5, 5, 5], [5, 5, 0, 0, 0, 5, 0, 0, 5, 0, 5, 5, 0, 0, 5, 0, 0, 0, 0], [0, 5, 5, 0, 0, 5, 0, 5, 5, 5, 0, 0, 5, 5, 0, 0, 5, 5, 5], [5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 0, 0, 5, 5, 5], [5, 5, 5, 5, 0, 0, 0, 5, 5, 0, 0, 5, 5, 5, 0, 5, 5, 5, 5], [0, 5, 2, 2, 7, 5, 0, 0, 5, 0, 0, 7, 2, 7, 5, 5, 0, 5, 5], [5, 5, 7, 4, 7, 0, 0, 5, 0, 0, 0, 7, 4, 2, 5, 0, 0, 0, 5], [0, 5, 7, 7, 2, 0, 0, 5, 5, 5, 5, 7, 7, 7, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 5, 5, 5, 0, 5, 5, 5, 0], [5, 0, 0, 5, 5, 0, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 0, 0, 0, 5, 5, 5, 0], [5, 5, 5, 5, 0, 5, 0, 5, 5, 5, 5, 5, 0, 5, 0, 5, 5, 5, 0], [5, 0, 5, 0, 5, 5, 0, 5, 5, 0, 0, 5, 0, 5, 5, 0, 0, 5, 5], [5, 0, 5, 0, 0, 0, 5, 0, 0, 5, 0, 5, 5, 5, 0, 0, 5, 5, 5]]}], "test": [{"input": [[5, 0, 5, 5, 0, 5, 5, 0, 0, 0, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 5, 5, 5, 0, 0, 0, 5, 0, 5, 5, 5, 5, 5, 0, 5, 5, 0, 5], [0, 0, 5, 0, 0, 0, 0, 5, 0, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5], [0, 5, 5, 0, 5, 0, 0, 0, 5, 5, 5, 0, 5, 2, 5, 5, 5, 0, 5], [5, 0, 0, 5, 0, 0, 5, 5, 5, 5, 5, 5, 0, 2, 2, 5, 5, 0, 0], [5, 5, 5, 0, 5, 5, 5, 5, 0, 0, 5, 0, 5, 0, 5, 0, 0, 5, 5], [5, 2, 5, 0, 5, 0, 5, 5, 5, 5, 0, 5, 5, 0, 5, 0, 5, 5, 5], [5, 5, 2, 5, 5, 0, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 0, 5, 5], [5, 5, 5, 0, 0, 5, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 5, 0, 0], [5, 5, 0, 5, 5, 0, 5, 0, 5, 0, 5, 0, 5, 5, 0, 5, 0, 5, 5], [5, 5, 5, 5, 5, 0, 5, 5, 0, 0, 5, 5, 5, 0, 5, 5, 5, 5, 5], [5, 5, 5, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 5], [5, 5, 0, 0, 5, 0, 5, 5, 5, 0, 5, 5, 0, 0, 5, 5, 5, 2, 5], [5, 5, 5, 5, 5, 2, 5, 5, 5, 5, 0, 5, 0, 0, 5, 0, 2, 5, 5], [5, 0, 5, 0, 5, 5, 2, 5, 0, 0, 5, 0, 0, 5, 0, 5, 5, 5, 5], [5, 5, 5, 5, 5, 2, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5], [0, 5, 5, 5, 5, 5, 0, 5, 0, 5, 0, 5, 5, 0, 5, 5, 5, 0, 5], [5, 5, 0, 5, 0, 0, 0, 0, 5, 0, 5, 5, 5, 0, 0, 0, 0, 5, 5], [5, 5, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5, 5]], "output": [[5, 0, 5, 5, 0, 5, 5, 0, 0, 0, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 5, 5, 5, 0, 0, 0, 5, 0, 5, 5, 5, 5, 5, 0, 5, 5, 0, 5], [0, 0, 5, 0, 0, 0, 0, 5, 0, 5, 5, 5, 0, 7, 7, 7, 5, 0, 5], [0, 5, 5, 0, 5, 0, 0, 0, 5, 5, 5, 0, 5, 2, 4, 7, 5, 0, 5], [5, 0, 0, 5, 0, 0, 5, 5, 5, 5, 5, 5, 0, 2, 2, 7, 5, 0, 0], [5, 5, 5, 0, 5, 5, 5, 5, 0, 0, 5, 0, 5, 0, 5, 0, 0, 5, 5], [7, 2, 7, 0, 5, 0, 5, 5, 5, 5, 0, 5, 5, 0, 5, 0, 5, 5, 5], [7, 4, 2, 5, 5, 0, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 0, 5, 5], [7, 7, 7, 0, 0, 5, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 5, 0, 0], [5, 5, 0, 5, 5, 0, 5, 0, 5, 0, 5, 0, 5, 5, 0, 5, 0, 5, 5], [5, 5, 5, 5, 5, 0, 5, 5, 0, 0, 5, 5, 5, 0, 5, 5, 5, 5, 5], [5, 5, 5, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 5], [5, 5, 0, 0, 5, 0, 5, 5, 5, 0, 5, 5, 0, 0, 5, 5, 7, 2, 7], [5, 5, 5, 5, 7, 2, 7, 5, 5, 5, 0, 5, 0, 0, 5, 0, 2, 4, 7], [5, 0, 5, 0, 7, 4, 2, 5, 0, 0, 5, 0, 0, 5, 0, 5, 7, 7, 7], [5, 5, 5, 5, 7, 2, 7, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5], [0, 5, 5, 5, 5, 5, 0, 5, 0, 5, 0, 5, 5, 0, 5, 5, 5, 0, 5], [5, 5, 0, 5, 0, 0, 0, 0, 5, 0, 5, 5, 5, 0, 0, 0, 0, 5, 5], [5, 5, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/9ddd00f0.json b/data/arc-agi/evaluation/9ddd00f0.json
deleted file mode 100644
index 9764180..0000000
--- a/data/arc-agi/evaluation/9ddd00f0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 2, 0, 2, 0, 2, 2, 0], [0, 0, 0, 0, 2, 2, 2, 0, 2, 2, 2], [0, 0, 0, 0, 2, 2, 2, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 2, 2, 2], [0, 0, 0, 0, 2, 2, 2, 0, 2, 2, 2], [0, 0, 0, 0, 2, 0, 2, 0, 2, 2, 0]], "output": [[0, 2, 2, 0, 2, 0, 2, 0, 2, 2, 0], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [0, 2, 2, 0, 2, 0, 2, 0, 2, 2, 0], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [0, 2, 2, 0, 2, 0, 2, 0, 2, 2, 0]]}, {"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [8, 8, 0, 8, 8], [0, 8, 0, 8, 0]], "output": [[0, 8, 0, 8, 0], [8, 8, 0, 8, 8], [0, 0, 0, 0, 0], [8, 8, 0, 8, 8], [0, 8, 0, 8, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0], [1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0], [1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0], [1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/9def23fe.json b/data/arc-agi/evaluation/9def23fe.json
deleted file mode 100644
index 0e18b64..0000000
--- a/data/arc-agi/evaluation/9def23fe.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train":[{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0],[0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0],[0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0],[0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0],[0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],"output":[[0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0],[2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0],[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],[2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0],[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],[2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0],[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],[0,0,2,0,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,0,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,0,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,8,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,0,2,0,2,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,0,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,0,2,8,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,0,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,0,2,0,2,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,0,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,0,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,0,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,3,0,0,0,3,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,2,2,2,2,2,0,0,0,3,0,0],[0,0,0,0,2,2,2,2,2,0,0,0,0,0,0],[0,3,0,0,2,2,2,2,2,0,0,0,0,0,0],[0,0,0,0,2,2,2,2,2,0,0,0,0,3,0],[0,0,0,0,2,2,2,2,2,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,3,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],"output":[[0,0,0,0,0,2,0,2,0,0,0,0,0,0,0],[0,0,0,0,3,2,0,2,3,0,0,0,0,0,0],[0,0,0,0,0,2,0,2,0,0,0,0,0,0,0],[0,0,0,0,0,2,3,2,0,0,0,0,0,0,0],[0,0,0,0,0,2,0,2,0,0,0,0,0,0,0],[2,2,2,2,2,2,2,2,2,0,0,0,3,0,0],[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],[0,3,0,0,2,2,2,2,2,2,2,2,2,2,2],[2,2,2,2,2,2,2,2,2,0,0,0,0,3,0],[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],[0,0,0,0,2,0,2,2,0,0,0,0,0,0,0],[0,0,0,0,2,0,2,2,0,0,0,0,0,0,0],[0,0,0,0,2,0,2,2,0,0,0,0,0,0,0],[0,0,0,0,2,0,2,2,3,0,0,0,0,0,0],[0,0,0,0,2,0,2,2,0,0,0,0,0,0,0],[0,0,0,0,2,0,2,2,0,0,0,0,0,0,0],[0,0,0,0,2,3,2,2,0,0,0,0,0,0,0],[0,0,0,0,2,0,2,2,0,0,0,0,0,0,0],[0,0,0,0,2,0,2,2,0,0,0,0,0,0,0],[0,0,0,0,2,0,2,2,0,0,0,0,0,0,0]]},{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,4,0,0,2,2,2,2,2,2,0,0,0,0,0,0],[0,0,0,0,0,2,2,2,2,2,2,0,0,0,0,0,0],[0,0,0,0,0,2,2,2,2,2,2,0,0,0,0,0,0],[0,4,0,0,0,2,2,2,2,2,2,0,0,0,0,0,0],[0,0,4,0,0,2,2,2,2,2,2,0,0,0,0,0,0],[0,0,0,0,0,2,2,2,2,2,2,0,0,0,4,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],"output":[[0,0,0,0,0,2,0,2,2,2,0,0,0,0,0,0,0],[0,0,0,0,0,2,4,2,2,2,4,0,0,0,0,0,0],[0,0,0,0,0,2,0,2,2,2,0,0,0,0,0,0,0],[0,0,0,0,0,2,0,2,2,2,0,0,0,0,0,0,0],[0,0,4,0,0,2,2,2,2,2,2,2,2,2,2,2,2],[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],[0,4,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2],[0,0,4,0,0,2,2,2,2,2,2,2,2,2,2,2,2],[2,2,2,2,2,2,2,2,2,2,2,0,0,0,4,0,0],[0,0,0,0,0,0,2,2,2,0,2,0,0,0,0,0,0],[0,0,0,0,0,0,2,2,2,0,2,0,0,0,0,0,0],[0,0,0,0,0,0,2,2,2,0,2,0,0,0,0,0,0],[0,0,0,0,0,4,2,2,2,0,2,0,0,0,0,0,0],[0,0,0,0,0,0,2,2,2,4,2,0,0,0,0,0,0],[0,0,0,0,0,0,2,2,2,0,2,0,0,0,0,0,0],[0,0,0,0,0,0,2,2,2,0,2,0,0,0,0,0,0],[0,0,0,0,0,0,2,2,2,0,2,0,0,0,0,0,0],[0,0,0,0,0,0,2,2,2,0,2,0,0,0,0,0,0],[0,0,0,0,0,0,2,2,2,0,2,0,0,0,0,0,0]]}],"test":[{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,1,0,0,2,2,2,2,2,2,2,0,0,0,0],[0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,0,0,0,1],[0,0,0,0,0,1,0,0,0,2,2,2,2,2,2,2,0,0,0,0],[0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,0,0,0,0],[0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,0,0,0,0],[0,1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,0,0,0,0],[0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,0,0,0,1],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0]],"output":[[0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,0,0,0,0],[0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,0,0,0,0],[0,0,0,0,0,0,1,0,0,2,2,2,2,2,2,2,2,2,2,2],[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1],[0,0,0,0,0,1,0,0,0,2,2,2,2,2,2,2,2,2,2,2],[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],[0,1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2],[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,1,2,2,2,0,2,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,1,0,0,0,0]]}],"name":"9def23fe"}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/9f27f097.json b/data/arc-agi/evaluation/9f27f097.json
deleted file mode 100644
index 6dae6d7..0000000
--- a/data/arc-agi/evaluation/9f27f097.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 1, 3, 3, 1, 2, 2, 2, 2, 2, 2, 2], [2, 1, 1, 3, 1, 2, 2, 2, 2, 2, 2, 2], [2, 1, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2], [2, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2], [2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2], [2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2], [2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 1, 3, 3, 1, 2, 2, 2, 2, 2, 2, 2], [2, 1, 1, 3, 1, 2, 2, 2, 2, 2, 2, 2], [2, 1, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2], [2, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 1, 3, 3, 1, 2, 2, 2, 2], [2, 2, 2, 2, 1, 3, 1, 1, 2, 2, 2, 2], [2, 2, 2, 2, 3, 3, 3, 1, 2, 2, 2, 2], [2, 2, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}, {"input": [[2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2], [2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2], [2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2], [2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2], [2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 4, 4, 4, 1, 4, 2, 2, 2, 2, 2, 2], [2, 4, 4, 1, 4, 4, 2, 2, 2, 2, 2, 2], [2, 4, 1, 4, 1, 1, 2, 2, 2, 2, 2, 2], [2, 4, 4, 1, 4, 1, 2, 2, 2, 2, 2, 2], [2, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]], "output": [[2, 2, 2, 2, 2, 4, 1, 4, 4, 4, 2, 2], [2, 2, 2, 2, 2, 4, 4, 1, 4, 4, 2, 2], [2, 2, 2, 2, 2, 1, 1, 4, 1, 4, 2, 2], [2, 2, 2, 2, 2, 1, 4, 1, 4, 4, 2, 2], [2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 4, 4, 4, 1, 4, 2, 2, 2, 2, 2, 2], [2, 4, 4, 1, 4, 4, 2, 2, 2, 2, 2, 2], [2, 4, 1, 4, 1, 1, 2, 2, 2, 2, 2, 2], [2, 4, 4, 1, 4, 1, 2, 2, 2, 2, 2, 2], [2, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1], [1, 3, 3, 3, 2, 3, 3, 1, 1, 1, 1, 1], [1, 2, 2, 2, 3, 2, 3, 1, 1, 1, 1, 1], [1, 3, 3, 3, 2, 3, 3, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1], [1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1], [1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1], [1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1], [1, 3, 3, 3, 2, 3, 3, 1, 1, 1, 1, 1], [1, 2, 2, 2, 3, 2, 3, 1, 1, 1, 1, 1], [1, 3, 3, 3, 2, 3, 3, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 3, 3, 3, 3, 3, 3, 1, 1, 1], [1, 1, 1, 3, 3, 2, 3, 3, 3, 1, 1, 1], [1, 1, 1, 3, 2, 3, 2, 2, 2, 1, 1, 1], [1, 1, 1, 3, 3, 2, 3, 3, 3, 1, 1, 1]]}], "test": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 1, 1, 1, 2, 8, 8, 8, 8, 8, 8, 8], [8, 1, 1, 2, 1, 8, 8, 8, 8, 8, 8, 8], [8, 1, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 1, 1, 1, 2, 8, 8, 8, 8, 8, 8, 8], [8, 1, 1, 2, 1, 8, 8, 8, 8, 8, 8, 8], [8, 1, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 2, 1, 1, 1, 8, 8, 8, 8, 8, 8], [8, 8, 1, 2, 1, 1, 8, 8, 8, 8, 8, 8], [8, 8, 2, 2, 2, 1, 8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/a04b2602.json b/data/arc-agi/evaluation/a04b2602.json
deleted file mode 100644
index 2dc32f4..0000000
--- a/data/arc-agi/evaluation/a04b2602.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 0, 0, 0, 0, 0], [2, 0, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 2, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 3, 3, 3, 3, 3, 3, 3, 3, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 3, 2, 3, 3, 3, 3, 3, 3, 3, 2, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 1, 2, 1, 3, 3, 1, 1, 1, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 1, 1, 1, 3, 3, 1, 2, 1, 3, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 1, 1, 1, 3, 1, 2, 1, 0, 0, 0, 0], [2, 0, 2, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 1, 2, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 1, 2, 1, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 1, 1, 1, 3, 3, 3, 3, 3, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 3, 1, 1, 1, 3, 3, 3, 1, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 2, 1, 1, 3, 3, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 2, 1, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 1, 1, 1, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 1, 2, 1, 3, 3, 3, 3, 3, 3, 2, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 3, 3], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 3], [0, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 3], [0, 0, 2, 3, 3, 3, 3, 3, 3, 2, 3, 0, 0, 0, 2, 3, 3, 2, 3, 3], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 3], [0, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 0, 2, 0, 0, 3, 3, 3, 3, 3], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 3], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 2], [0, 0, 3, 2, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 3], [0, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 0, 0, 2, 0, 2, 3, 3, 3, 3], [0, 0, 2, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2, 0, 0, 3, 3, 3, 3, 3], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3], [0, 2, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 3, 3], [0, 0, 3, 3, 3, 3, 1, 1, 1, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 3], [0, 1, 1, 1, 3, 3, 1, 2, 1, 1, 1, 0, 0, 0, 0, 3, 1, 1, 1, 3], [0, 1, 2, 1, 3, 3, 1, 1, 1, 2, 1, 0, 0, 0, 2, 3, 1, 2, 1, 3], [0, 1, 1, 1, 3, 3, 1, 1, 1, 1, 1, 0, 0, 0, 0, 3, 1, 1, 1, 3], [0, 0, 3, 3, 3, 3, 1, 2, 1, 3, 3, 0, 2, 0, 0, 3, 3, 3, 3, 3], [0, 0, 3, 3, 3, 3, 1, 1, 1, 3, 3, 0, 0, 0, 0, 3, 3, 3, 1, 1], [0, 0, 1, 1, 1, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 1, 2], [0, 0, 1, 2, 1, 3, 1, 1, 1, 3, 3, 0, 0, 0, 1, 1, 1, 3, 1, 1], [0, 1, 1, 1, 1, 3, 1, 2, 1, 3, 3, 0, 0, 2, 1, 2, 1, 3, 3, 3], [0, 1, 2, 1, 3, 3, 1, 1, 1, 3, 3, 0, 2, 0, 1, 1, 1, 3, 3, 3], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3], [0, 2, 0, 3, 3, 3, 3, 3, 1, 1, 1, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 1, 2, 1, 1, 1, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 1, 1, 1, 1, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 1, 2, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 1, 1, 1, 1, 2, 1, 3, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 2, 0, 0, 0, 0, 3, 3, 3, 3, 3, 2, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0, 3, 2, 2, 3, 3, 3, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 3, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 3, 3, 1, 2, 1, 0, 0, 0, 3, 3, 3, 3, 1, 2, 1, 0], [0, 3, 3, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0, 1, 2, 2, 1, 3, 3, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 2, 0, 0, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2], [0, 0, 0, 3, 3, 3, 3, 2, 3, 3, 3, 0, 2, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 2, 3, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 0, 0], [0, 0, 0, 3, 3, 2, 2, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 2, 3, 2, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 3, 2, 2, 3, 3, 3, 3, 3, 0, 0, 0, 2, 0]], "output": [[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 1, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 3, 3, 3, 1, 1, 1, 1, 2, 1, 0, 3, 1, 1, 2, 1, 1, 1, 3, 3, 3, 3, 3, 0, 2], [0, 0, 1, 1, 1, 3, 1, 2, 1, 1, 1, 1, 2, 3, 1, 2, 1, 1, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 1, 2, 1, 3, 1, 1, 1, 3, 3, 0, 0, 3, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 3, 3, 1, 2, 1, 3, 3, 3, 0, 0, 3, 1, 1, 1, 3, 3, 3, 3, 3, 3, 1, 1, 1, 0], [0, 0, 0, 3, 1, 1, 1, 1, 3, 3, 3, 0, 0, 3, 1, 2, 1, 3, 3, 3, 3, 3, 3, 1, 2, 1, 0], [0, 0, 0, 3, 1, 2, 2, 1, 3, 3, 3, 0, 0, 3, 1, 1, 1, 3, 3, 3, 3, 3, 3, 1, 1, 1, 0], [0, 0, 0, 3, 1, 1, 1, 1, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 1, 2, 1, 2, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 1, 2, 2, 1, 3, 3, 3, 3, 0, 0, 0, 2, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/a096bf4d.json b/data/arc-agi/evaluation/a096bf4d.json
deleted file mode 100644
index a18b977..0000000
--- a/data/arc-agi/evaluation/a096bf4d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 1, 1, 8, 1, 0, 1, 1, 4, 1, 0, 1, 1, 8, 1, 0, 1, 1, 8, 1, 0], [0, 1, 8, 2, 1, 0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0, 1, 8, 2, 1, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 1, 1, 8, 1, 0, 1, 1, 8, 1, 0, 1, 1, 8, 1, 0, 1, 1, 8, 1, 0], [0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 1, 1, 8, 1, 0, 1, 1, 8, 1, 0, 1, 1, 8, 1, 0, 1, 1, 8, 1, 0], [0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 1, 1, 8, 1, 0, 1, 1, 4, 1, 0, 1, 1, 8, 1, 0, 1, 1, 8, 1, 0], [0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 1, 1, 8, 1, 0, 1, 1, 4, 1, 0, 1, 1, 8, 1, 0, 1, 1, 8, 1, 0], [0, 1, 8, 2, 1, 0, 1, 8, 2, 1, 0, 1, 8, 2, 1, 0, 1, 8, 2, 1, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 1, 1, 8, 1, 0, 1, 1, 4, 1, 0, 1, 1, 8, 1, 0, 1, 1, 8, 1, 0], [0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 1, 1, 8, 1, 0, 1, 1, 4, 1, 0, 1, 1, 8, 1, 0, 1, 1, 8, 1, 0], [0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 1, 1, 8, 1, 0, 1, 1, 4, 1, 0, 1, 1, 8, 1, 0, 1, 1, 8, 1, 0], [0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0, 1, 8, 8, 1, 0], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 3, 3, 2, 0, 2, 6, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 1, 3, 2, 0, 2, 3, 3, 2, 0, 2, 1, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 1, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 3, 3, 2, 0, 2, 6, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 3, 8, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 8, 2, 0], [0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 3, 3, 2, 0, 2, 6, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 1, 3, 2, 0, 2, 1, 3, 2, 0, 2, 1, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 3, 3, 2, 0, 2, 6, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 1, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 3, 3, 2, 0, 2, 6, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 1, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 3, 3, 2, 0, 2, 6, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 3, 8, 2, 0, 2, 3, 8, 2, 0, 2, 3, 8, 2, 0, 2, 3, 8, 2, 0], [0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0, 2, 3, 3, 2, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 8, 4, 4, 8, 0, 8, 7, 4, 8, 0, 8, 4, 4, 8, 0], [0, 8, 4, 8, 8, 0, 8, 4, 8, 8, 0, 8, 4, 8, 8, 0], [0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 8, 4, 4, 8, 0, 8, 4, 4, 8, 0, 8, 4, 4, 8, 0], [0, 8, 3, 8, 8, 0, 8, 4, 8, 8, 0, 8, 3, 8, 8, 0], [0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 8, 4, 4, 8, 0, 8, 7, 4, 8, 0, 8, 4, 4, 8, 0], [0, 8, 4, 8, 8, 0, 8, 4, 8, 8, 0, 8, 4, 8, 8, 0], [0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 8, 4, 4, 8, 0, 8, 7, 4, 8, 0, 8, 4, 4, 8, 0], [0, 8, 4, 8, 8, 0, 8, 4, 8, 8, 0, 8, 4, 8, 8, 0], [0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 8, 4, 4, 8, 0, 8, 7, 4, 8, 0, 8, 4, 4, 8, 0], [0, 8, 3, 8, 8, 0, 8, 3, 8, 8, 0, 8, 3, 8, 8, 0], [0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 8, 4, 4, 8, 0, 8, 7, 4, 8, 0, 8, 4, 4, 8, 0], [0, 8, 4, 8, 8, 0, 8, 4, 8, 8, 0, 8, 4, 8, 8, 0], [0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 3, 5, 0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0], [0, 5, 5, 8, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0], [0, 5, 5, 2, 5, 0, 5, 5, 4, 5, 0, 5, 5, 2, 5, 0, 5, 5, 4, 5, 0, 5, 5, 2, 5, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0], [0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0], [0, 5, 5, 8, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0, 5, 5, 8, 5, 0, 5, 5, 2, 5, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 5, 6, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 3, 5, 0, 5, 6, 2, 5, 0, 5, 2, 3, 5, 0], [0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 3, 5, 0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0], [0, 5, 5, 8, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 3, 5, 0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0], [0, 5, 5, 8, 5, 0, 5, 5, 4, 5, 0, 5, 5, 4, 5, 0, 5, 5, 4, 5, 0, 5, 5, 2, 5, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 3, 5, 0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0], [0, 5, 5, 8, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 3, 5, 0, 5, 2, 2, 5, 0, 5, 2, 2, 5, 0], [0, 5, 5, 8, 5, 0, 5, 5, 8, 5, 0, 5, 5, 8, 5, 0, 5, 5, 8, 5, 0, 5, 5, 2, 5, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 5, 6, 2, 5, 0, 5, 6, 2, 5, 0, 5, 6, 3, 5, 0, 5, 6, 3, 5, 0, 5, 2, 3, 5, 0], [0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0, 5, 5, 2, 5, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/a3f84088.json b/data/arc-agi/evaluation/a3f84088.json
deleted file mode 100644
index bdd1783..0000000
--- a/data/arc-agi/evaluation/a3f84088.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 5, 2, 2, 2, 2, 2, 2, 2, 5, 0, 0, 0], [0, 5, 2, 5, 5, 5, 5, 5, 2, 5, 0, 0, 0], [0, 5, 2, 5, 0, 0, 0, 5, 2, 5, 0, 0, 0], [0, 5, 2, 5, 0, 0, 0, 5, 2, 5, 0, 0, 0], [0, 5, 2, 5, 0, 0, 0, 5, 2, 5, 0, 0, 0], [0, 5, 2, 5, 5, 5, 5, 5, 2, 5, 0, 0, 0], [0, 5, 2, 2, 2, 2, 2, 2, 2, 5, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[5, 5, 5, 5, 5, 5], [5, 0, 0, 0, 0, 5], [5, 0, 0, 0, 0, 5], [5, 0, 0, 0, 0, 5], [5, 0, 0, 0, 0, 5], [5, 5, 5, 5, 5, 5]], "output": [[5, 5, 5, 5, 5, 5], [5, 2, 2, 2, 2, 5], [5, 2, 5, 5, 2, 5], [5, 2, 5, 5, 2, 5], [5, 2, 2, 2, 2, 5], [5, 5, 5, 5, 5, 5]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 5, 0], [0, 0, 0, 5, 2, 5, 5, 5, 5, 5, 5, 5, 5, 2, 5, 0], [0, 0, 0, 5, 2, 5, 0, 0, 0, 0, 0, 0, 5, 2, 5, 0], [0, 0, 0, 5, 2, 5, 0, 5, 5, 5, 5, 0, 5, 2, 5, 0], [0, 0, 0, 5, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 5, 0], [0, 0, 0, 5, 2, 5, 0, 5, 2, 2, 5, 0, 5, 2, 5, 0], [0, 0, 0, 5, 2, 5, 0, 5, 5, 5, 5, 0, 5, 2, 5, 0], [0, 0, 0, 5, 2, 5, 0, 0, 0, 0, 0, 0, 5, 2, 5, 0], [0, 0, 0, 5, 2, 5, 5, 5, 5, 5, 5, 5, 5, 2, 5, 0], [0, 0, 0, 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 5, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 5, 0], [0, 5, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2, 5, 0], [0, 5, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 5, 0], [0, 5, 2, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 2, 5, 0], [0, 5, 2, 5, 0, 5, 2, 2, 2, 2, 2, 2, 2, 5, 0, 5, 2, 5, 0], [0, 5, 2, 5, 0, 5, 2, 5, 5, 5, 5, 5, 2, 5, 0, 5, 2, 5, 0], [0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 5, 2, 5, 0, 5, 2, 5, 0], [0, 5, 2, 5, 0, 5, 2, 5, 0, 5, 0, 5, 2, 5, 0, 5, 2, 5, 0], [0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 5, 2, 5, 0, 5, 2, 5, 0], [0, 5, 2, 5, 0, 5, 2, 5, 5, 5, 5, 5, 2, 5, 0, 5, 2, 5, 0], [0, 5, 2, 5, 0, 5, 2, 2, 2, 2, 2, 2, 2, 5, 0, 5, 2, 5, 0], [0, 5, 2, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 2, 5, 0], [0, 5, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 5, 0], [0, 5, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2, 5, 0], [0, 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 2, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 2, 5, 0, 5, 2, 2, 2, 2, 2, 2, 2, 5, 0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 2, 5, 0, 5, 2, 5, 5, 5, 5, 5, 2, 5, 0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 5, 2, 5, 0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 2, 5, 0, 5, 2, 5, 0, 5, 0, 5, 2, 5, 0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 5, 2, 5, 0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 2, 5, 0, 5, 2, 5, 5, 5, 5, 5, 2, 5, 0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 2, 5, 0, 5, 2, 2, 2, 2, 2, 2, 2, 5, 0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 2, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2, 5, 0, 0, 0, 0], [0, 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 5, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/a406ac07.json b/data/arc-agi/evaluation/a406ac07.json
deleted file mode 100644
index 958242f..0000000
--- a/data/arc-agi/evaluation/a406ac07.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [9, 9, 8, 8, 7, 7, 6, 6, 5, 5]], "output": [[9, 9, 0, 0, 0, 0, 0, 0, 0, 9], [9, 9, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 8, 8, 0, 0, 0, 0, 0, 8], [0, 0, 8, 8, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 7, 7, 0, 0, 0, 7], [0, 0, 0, 0, 7, 7, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 6, 6, 0, 6], [0, 0, 0, 0, 0, 0, 6, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [9, 9, 8, 8, 7, 7, 6, 6, 5, 5]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9], [5, 6, 6, 7, 7, 7, 8, 9, 9, 9]], "output": [[5, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 6, 6, 0, 0, 0, 0, 0, 0, 6], [0, 6, 6, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 7, 7, 7, 0, 0, 0, 7], [0, 0, 0, 7, 7, 7, 0, 0, 0, 7], [0, 0, 0, 7, 7, 7, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 8, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 9, 9, 9], [0, 0, 0, 0, 0, 0, 0, 9, 9, 9], [5, 6, 6, 7, 7, 7, 8, 9, 9, 9]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [8, 8, 4, 4, 4, 5, 5, 3, 3, 3]], "output": [[8, 8, 0, 0, 0, 0, 0, 0, 0, 8], [8, 8, 0, 0, 0, 0, 0, 0, 0, 8], [8, 8, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 4, 4, 4, 0, 0, 0, 0, 4], [0, 0, 4, 4, 4, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 5, 5, 0, 0, 5], [0, 0, 0, 0, 0, 5, 5, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [8, 8, 4, 4, 4, 5, 5, 3, 3, 3]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [3, 3, 4, 6, 6, 6, 9, 9, 7, 7]], "output": [[3, 3, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 4, 0, 0, 0, 0, 0, 0, 4], [0, 0, 4, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 6, 6, 6, 0, 0, 0, 6], [0, 0, 0, 6, 6, 6, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 9, 9, 0, 9], [0, 0, 0, 0, 0, 0, 0, 0, 7, 7], [3, 3, 4, 6, 6, 6, 9, 9, 7, 7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/a57f2f04.json b/data/arc-agi/evaluation/a57f2f04.json
deleted file mode 100644
index 5004ebd..0000000
--- a/data/arc-agi/evaluation/a57f2f04.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 2, 2, 2, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 0, 2, 2, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 2, 0, 2, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8], [8, 8, 0, 2, 2, 0, 2, 2, 8, 8, 8, 8, 8], [8, 8, 2, 0, 2, 2, 0, 2, 8, 8, 8, 8, 8], [8, 8, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8], [8, 8, 0, 2, 2, 0, 2, 2, 8, 8, 8, 8, 8], [8, 8, 2, 0, 2, 2, 0, 2, 8, 8, 8, 8, 8], [8, 8, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8], [8, 8, 0, 2, 2, 0, 2, 2, 8, 8, 8, 8, 8], [8, 8, 2, 0, 2, 2, 0, 2, 8, 8, 8, 8, 8], [8, 8, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8], [8, 8, 0, 2, 2, 0, 2, 2, 8, 8, 8, 8, 8], [8, 8, 2, 0, 2, 2, 0, 2, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 1, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 3, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 3, 0, 3, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 3, 3, 3, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 0, 1, 0, 1, 0, 1, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 0, 1, 0, 1, 0, 1, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 0, 1, 0, 1, 0, 1, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 0, 3, 0, 0, 3, 0, 0, 3, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 3, 0, 3, 3, 0, 3, 3, 0, 3, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 0, 3, 0, 0, 3, 0, 0, 3, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 3, 0, 3, 3, 0, 3, 3, 0, 3, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8], [8, 8, 8, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 8, 8, 8], [8, 8, 8, 4, 0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 4, 8, 8, 8], [8, 8, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8], [8, 8, 8, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 8, 8, 8], [8, 8, 8, 4, 0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 4, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}], "test": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 1, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 0, 0, 1, 0, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 0, 0, 1, 1, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 4, 0, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 3, 0, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 0, 3, 0, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 0, 0, 0, 3, 3, 0, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 1, 0, 0, 1, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 0, 1, 1, 0, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 1, 0, 1, 1, 0, 8, 8, 8, 8, 4, 0, 4, 0, 4, 0, 8, 8, 8], [8, 8, 8, 0, 1, 0, 0, 1, 0, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 8, 8, 8], [8, 8, 8, 1, 0, 1, 1, 0, 1, 8, 8, 8, 8, 4, 0, 4, 0, 4, 0, 8, 8, 8], [8, 8, 8, 1, 1, 0, 1, 1, 0, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 8, 8, 8], [8, 8, 8, 0, 1, 0, 0, 1, 0, 8, 8, 8, 8, 4, 0, 4, 0, 4, 0, 8, 8, 8], [8, 8, 8, 1, 0, 1, 1, 0, 1, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 8, 8, 8], [8, 8, 8, 1, 1, 0, 1, 1, 0, 8, 8, 8, 8, 4, 0, 4, 0, 4, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 0, 3, 3, 3, 0, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 3, 0, 3, 0, 3, 0, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 0, 3, 3, 3, 0, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 0, 3, 3, 3, 0, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 3, 0, 3, 0, 3, 0, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 0, 3, 3, 3, 0, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/a59b95c0.json b/data/arc-agi/evaluation/a59b95c0.json
deleted file mode 100644
index d091aeb..0000000
--- a/data/arc-agi/evaluation/a59b95c0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[9, 7, 9], [9, 6, 7], [7, 6, 6]], "output": [[9, 7, 9, 9, 7, 9, 9, 7, 9], [9, 6, 7, 9, 6, 7, 9, 6, 7], [7, 6, 6, 7, 6, 6, 7, 6, 6], [9, 7, 9, 9, 7, 9, 9, 7, 9], [9, 6, 7, 9, 6, 7, 9, 6, 7], [7, 6, 6, 7, 6, 6, 7, 6, 6], [9, 7, 9, 9, 7, 9, 9, 7, 9], [9, 6, 7, 9, 6, 7, 9, 6, 7], [7, 6, 6, 7, 6, 6, 7, 6, 6]]}, {"input": [[3, 4, 4], [3, 3, 3], [3, 4, 4]], "output": [[3, 4, 4, 3, 4, 4], [3, 3, 3, 3, 3, 3], [3, 4, 4, 3, 4, 4], [3, 4, 4, 3, 4, 4], [3, 3, 3, 3, 3, 3], [3, 4, 4, 3, 4, 4]]}, {"input": [[8, 2, 1], [1, 8, 3], [2, 1, 3]], "output": [[8, 2, 1, 8, 2, 1, 8, 2, 1, 8, 2, 1], [1, 8, 3, 1, 8, 3, 1, 8, 3, 1, 8, 3], [2, 1, 3, 2, 1, 3, 2, 1, 3, 2, 1, 3], [8, 2, 1, 8, 2, 1, 8, 2, 1, 8, 2, 1], [1, 8, 3, 1, 8, 3, 1, 8, 3, 1, 8, 3], [2, 1, 3, 2, 1, 3, 2, 1, 3, 2, 1, 3], [8, 2, 1, 8, 2, 1, 8, 2, 1, 8, 2, 1], [1, 8, 3, 1, 8, 3, 1, 8, 3, 1, 8, 3], [2, 1, 3, 2, 1, 3, 2, 1, 3, 2, 1, 3], [8, 2, 1, 8, 2, 1, 8, 2, 1, 8, 2, 1], [1, 8, 3, 1, 8, 3, 1, 8, 3, 1, 8, 3], [2, 1, 3, 2, 1, 3, 2, 1, 3, 2, 1, 3]]}, {"input": [[7, 7, 7], [7, 2, 2], [7, 7, 2]], "output": [[7, 7, 7, 7, 7, 7], [7, 2, 2, 7, 2, 2], [7, 7, 2, 7, 7, 2], [7, 7, 7, 7, 7, 7], [7, 2, 2, 7, 2, 2], [7, 7, 2, 7, 7, 2]]}, {"input": [[2, 3, 2], [3, 3, 2], [2, 2, 1]], "output": [[2, 3, 2, 2, 3, 2, 2, 3, 2], [3, 3, 2, 3, 3, 2, 3, 3, 2], [2, 2, 1, 2, 2, 1, 2, 2, 1], [2, 3, 2, 2, 3, 2, 2, 3, 2], [3, 3, 2, 3, 3, 2, 3, 3, 2], [2, 2, 1, 2, 2, 1, 2, 2, 1], [2, 3, 2, 2, 3, 2, 2, 3, 2], [3, 3, 2, 3, 3, 2, 3, 3, 2], [2, 2, 1, 2, 2, 1, 2, 2, 1]]}], "test": [{"input": [[4, 3, 2], [2, 1, 4], [3, 1, 2]], "output": [[4, 3, 2, 4, 3, 2, 4, 3, 2, 4, 3, 2], [2, 1, 4, 2, 1, 4, 2, 1, 4, 2, 1, 4], [3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2], [4, 3, 2, 4, 3, 2, 4, 3, 2, 4, 3, 2], [2, 1, 4, 2, 1, 4, 2, 1, 4, 2, 1, 4], [3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2], [4, 3, 2, 4, 3, 2, 4, 3, 2, 4, 3, 2], [2, 1, 4, 2, 1, 4, 2, 1, 4, 2, 1, 4], [3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2], [4, 3, 2, 4, 3, 2, 4, 3, 2, 4, 3, 2], [2, 1, 4, 2, 1, 4, 2, 1, 4, 2, 1, 4], [3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/a680ac02.json b/data/arc-agi/evaluation/a680ac02.json
deleted file mode 100644
index eb9ffd1..0000000
--- a/data/arc-agi/evaluation/a680ac02.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 2, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 2, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 4, 4, 4, 4], [2, 0, 0, 2, 4, 0, 0, 4], [2, 0, 0, 2, 4, 0, 0, 4], [2, 2, 2, 2, 4, 4, 4, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1], [1, 0, 0, 1], [1, 0, 0, 1], [1, 1, 1, 1], [2, 2, 2, 2], [2, 0, 0, 2], [2, 0, 0, 2], [2, 2, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 2, 2, 2, 2], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 2, 0, 0, 2], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 2, 0, 0, 2], [0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 4, 4, 4, 3, 3, 3, 3, 2, 2, 2, 2], [4, 0, 0, 4, 3, 0, 0, 3, 2, 0, 0, 2], [4, 0, 0, 4, 3, 0, 0, 3, 2, 0, 0, 2], [4, 4, 4, 4, 3, 3, 3, 3, 2, 2, 2, 2]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3], [3, 0, 0, 3], [3, 0, 0, 3], [3, 3, 3, 3], [2, 2, 2, 2], [2, 0, 0, 2], [2, 0, 0, 2], [2, 2, 2, 2], [1, 1, 1, 1], [1, 0, 0, 1], [1, 0, 0, 1], [1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/a8610ef7.json b/data/arc-agi/evaluation/a8610ef7.json
deleted file mode 100644
index 3de376f..0000000
--- a/data/arc-agi/evaluation/a8610ef7.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 0, 0, 0], [0, 0, 8, 8, 0, 8], [0, 8, 0, 0, 0, 0], [8, 8, 0, 0, 8, 8], [8, 0, 8, 8, 8, 8], [0, 0, 0, 0, 8, 8]], "output": [[5, 5, 5, 0, 0, 0], [0, 0, 2, 2, 0, 2], [0, 2, 0, 0, 0, 0], [5, 2, 0, 0, 5, 5], [5, 0, 2, 2, 5, 2], [0, 0, 0, 0, 5, 5]]}, {"input": [[8, 8, 0, 8, 8, 0], [8, 0, 8, 8, 8, 0], [0, 0, 8, 8, 8, 8], [0, 8, 0, 0, 8, 8], [8, 8, 0, 8, 0, 8], [8, 0, 0, 8, 0, 8]], "output": [[2, 5, 0, 2, 5, 0], [2, 0, 5, 2, 5, 0], [0, 0, 5, 5, 2, 2], [0, 5, 0, 0, 2, 2], [2, 5, 0, 2, 0, 5], [2, 0, 0, 2, 0, 5]]}, {"input": [[0, 8, 0, 8, 8, 8], [8, 8, 8, 8, 8, 0], [8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8], [8, 8, 0, 8, 8, 0], [8, 8, 0, 0, 0, 8]], "output": [[0, 2, 0, 5, 5, 2], [2, 2, 5, 2, 2, 0], [5, 0, 2, 0, 5, 0], [0, 5, 2, 5, 0, 5], [2, 2, 0, 2, 2, 0], [5, 2, 0, 0, 0, 2]]}, {"input": [[0, 8, 8, 0, 0, 8], [8, 8, 8, 0, 0, 0], [8, 8, 8, 0, 8, 0], [8, 0, 8, 8, 0, 8], [8, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 0]], "output": [[0, 2, 2, 0, 0, 5], [2, 2, 5, 0, 0, 0], [2, 5, 2, 0, 5, 0], [2, 0, 2, 5, 0, 5], [2, 2, 0, 0, 0, 0], [5, 2, 2, 5, 5, 0]]}], "test": [{"input": [[0, 0, 0, 8, 0, 8], [8, 8, 8, 0, 8, 8], [8, 8, 8, 8, 0, 8], [8, 0, 0, 0, 8, 8], [0, 8, 0, 0, 0, 8], [8, 8, 8, 0, 8, 8]], "output": [[0, 0, 0, 5, 0, 2], [5, 2, 5, 0, 5, 2], [2, 5, 5, 5, 0, 2], [2, 0, 0, 0, 5, 2], [0, 2, 0, 0, 0, 2], [5, 5, 5, 0, 5, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/a934301b.json b/data/arc-agi/evaluation/a934301b.json
deleted file mode 100644
index d454631..0000000
--- a/data/arc-agi/evaluation/a934301b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 8, 0, 1, 1, 1, 0, 0, 1, 8, 0, 0], [0, 0, 0, 0, 0, 1, 8, 1, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 1, 1, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 1, 1, 0, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 1], [0, 1, 1, 8, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1], [0, 8, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 1, 8, 1, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0], [1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0], [1, 8, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 8, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 1, 1, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 8, 0], [0, 0, 0, 1, 1, 8, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 8, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 8, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1]], "output": [[0, 0, 0, 0, 0, 1, 8, 1, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0], [1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0], [1, 8, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 8, 1, 0, 0], [1, 1, 1, 1, 0, 8, 1, 1, 8, 0, 0, 1, 8, 0, 0], [1, 8, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 1, 1, 8, 1, 0, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1], [0, 0, 1, 1, 8, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 8, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 8, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 8, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 8, 1, 8, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 8, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 1, 1], [1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1], [8, 1, 1, 0, 0, 0, 0, 0, 1, 8, 1, 8], [1, 1, 1, 0, 8, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 8, 1], [0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1], [0, 1, 1, 1, 1, 8, 1, 0, 1, 1, 1, 1], [0, 1, 8, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 8, 1], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/aa18de87.json b/data/arc-agi/evaluation/aa18de87.json
deleted file mode 100644
index 0d451c4..0000000
--- a/data/arc-agi/evaluation/aa18de87.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 0, 0], [0, 3, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 0, 0, 3, 0]], "output": [[0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 3, 2, 3, 0, 0, 0], [0, 3, 2, 2, 2, 3, 0, 0], [3, 2, 2, 2, 2, 2, 3, 0]]}, {"input": [[0, 4, 0, 0, 0, 4, 0, 0], [0, 0, 4, 0, 4, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0]], "output": [[0, 4, 2, 2, 2, 4, 0, 0], [0, 0, 4, 2, 4, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0]]}, {"input": [[0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [8, 0, 8, 0, 0, 0, 0, 0, 8, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8], [0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 2, 2, 2, 2, 2, 2, 2, 8, 0, 0], [8, 2, 8, 2, 2, 2, 2, 2, 8, 2, 8, 0], [0, 0, 0, 8, 2, 2, 2, 8, 2, 2, 2, 8], [0, 0, 0, 0, 8, 2, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0]]}, {"input": [[1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 1], [0, 0, 1, 0, 0, 0, 1, 0], [0, 0, 0, 1, 0, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0]], "output": [[1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 2, 2, 2, 2, 1], [0, 0, 1, 2, 2, 2, 1, 0], [0, 0, 0, 1, 2, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0]]}], "test": [{"input": [[0, 0, 6, 0, 0, 0, 0, 0, 6], [0, 6, 0, 6, 0, 0, 0, 6, 0], [6, 0, 0, 0, 6, 0, 6, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0]], "output": [[0, 0, 6, 2, 2, 2, 2, 2, 6], [0, 6, 2, 6, 2, 2, 2, 6, 0], [6, 2, 2, 2, 6, 2, 6, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/aa300dc3.json b/data/arc-agi/evaluation/aa300dc3.json
deleted file mode 100644
index ec59ac5..0000000
--- a/data/arc-agi/evaluation/aa300dc3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 0, 0, 0, 5, 5, 0, 0, 5, 5], [5, 5, 0, 0, 0, 5, 0, 0, 0, 5], [5, 5, 5, 0, 0, 0, 0, 0, 5, 5], [5, 5, 0, 0, 0, 0, 0, 0, 0, 5], [5, 0, 0, 0, 0, 0, 0, 0, 5, 5], [5, 5, 0, 0, 0, 5, 0, 0, 0, 5], [5, 0, 0, 5, 0, 5, 0, 0, 0, 5], [5, 5, 0, 5, 5, 5, 0, 5, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]], "output": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 8, 0, 0, 5, 5, 0, 0, 5, 5], [5, 5, 8, 0, 0, 5, 0, 0, 0, 5], [5, 5, 5, 8, 0, 0, 0, 0, 5, 5], [5, 5, 0, 0, 8, 0, 0, 0, 0, 5], [5, 0, 0, 0, 0, 8, 0, 0, 5, 5], [5, 5, 0, 0, 0, 5, 8, 0, 0, 5], [5, 0, 0, 5, 0, 5, 0, 8, 0, 5], [5, 5, 0, 5, 5, 5, 0, 5, 8, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]]}, {"input": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 0, 5, 0, 5, 0, 0, 5], [5, 5, 0, 0, 5, 0, 0, 0, 0, 5], [5, 0, 0, 0, 0, 0, 0, 0, 0, 5], [5, 5, 0, 0, 0, 0, 0, 0, 0, 5], [5, 5, 5, 0, 0, 0, 0, 0, 5, 5], [5, 0, 0, 0, 0, 0, 0, 0, 0, 5], [5, 0, 0, 0, 0, 0, 0, 5, 5, 5], [5, 5, 0, 5, 0, 0, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]], "output": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 0, 5, 0, 5, 0, 8, 5], [5, 5, 0, 0, 5, 0, 0, 8, 0, 5], [5, 0, 0, 0, 0, 0, 8, 0, 0, 5], [5, 5, 0, 0, 0, 8, 0, 0, 0, 5], [5, 5, 5, 0, 8, 0, 0, 0, 5, 5], [5, 0, 0, 8, 0, 0, 0, 0, 0, 5], [5, 0, 8, 0, 0, 0, 0, 5, 5, 5], [5, 5, 0, 5, 0, 0, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]]}, {"input": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 0, 0, 0, 0, 0, 5, 5, 5, 5], [5, 5, 0, 0, 0, 0, 5, 0, 0, 5], [5, 0, 0, 0, 0, 0, 0, 0, 0, 5], [5, 5, 0, 0, 0, 0, 0, 0, 0, 5], [5, 5, 0, 0, 0, 0, 0, 0, 5, 5], [5, 0, 0, 0, 0, 0, 0, 0, 0, 5], [5, 0, 0, 5, 5, 0, 0, 0, 0, 5], [5, 5, 5, 5, 5, 0, 5, 5, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]], "output": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 8, 0, 0, 0, 0, 5, 5, 5, 5], [5, 5, 8, 0, 0, 0, 5, 0, 0, 5], [5, 0, 0, 8, 0, 0, 0, 0, 0, 5], [5, 5, 0, 0, 8, 0, 0, 0, 0, 5], [5, 5, 0, 0, 0, 8, 0, 0, 5, 5], [5, 0, 0, 0, 0, 0, 8, 0, 0, 5], [5, 0, 0, 5, 5, 0, 0, 8, 0, 5], [5, 5, 5, 5, 5, 0, 5, 5, 8, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]]}, {"input": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 0, 0, 0, 5, 5, 5, 5], [5, 5, 5, 0, 0, 0, 0, 5, 5, 5], [5, 5, 0, 0, 0, 0, 0, 0, 0, 5], [5, 0, 0, 0, 0, 0, 0, 0, 5, 5], [5, 0, 0, 0, 0, 0, 0, 0, 0, 5], [5, 5, 5, 0, 5, 5, 0, 0, 0, 5], [5, 5, 0, 0, 5, 5, 0, 0, 5, 5], [5, 5, 5, 0, 5, 5, 5, 0, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]], "output": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 8, 0, 0, 5, 5, 5, 5], [5, 5, 5, 0, 8, 0, 0, 5, 5, 5], [5, 5, 0, 0, 0, 8, 0, 0, 0, 5], [5, 0, 0, 0, 0, 0, 8, 0, 5, 5], [5, 0, 0, 0, 0, 0, 0, 8, 0, 5], [5, 5, 5, 0, 5, 5, 0, 0, 8, 5], [5, 5, 0, 0, 5, 5, 0, 0, 5, 5], [5, 5, 5, 0, 5, 5, 5, 0, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]]}], "test": [{"input": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 0, 0, 0, 0, 0, 5, 5], [5, 5, 0, 0, 0, 0, 0, 0, 5, 5], [5, 5, 5, 0, 0, 0, 0, 0, 0, 5], [5, 0, 0, 0, 0, 0, 0, 5, 5, 5], [5, 0, 0, 0, 0, 0, 5, 5, 5, 5], [5, 0, 0, 0, 0, 0, 0, 0, 0, 5], [5, 0, 0, 5, 5, 0, 0, 5, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]], "output": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 0, 0, 0, 0, 8, 5, 5], [5, 5, 0, 0, 0, 0, 8, 0, 5, 5], [5, 5, 5, 0, 0, 8, 0, 0, 0, 5], [5, 0, 0, 0, 8, 0, 0, 5, 5, 5], [5, 0, 0, 8, 0, 0, 5, 5, 5, 5], [5, 0, 8, 0, 0, 0, 0, 0, 0, 5], [5, 8, 0, 5, 5, 0, 0, 5, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/aa4ec2a5.json b/data/arc-agi/evaluation/aa4ec2a5.json
deleted file mode 100644
index d324f67..0000000
--- a/data/arc-agi/evaluation/aa4ec2a5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 4, 4], [4, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 4, 4, 4, 1, 4, 4, 4, 4, 1, 1, 4, 4], [4, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 4, 4, 4, 4, 1, 1, 4, 4], [4, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 4, 4, 4, 4, 1, 1, 4, 4], [4, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 4, 4, 4, 4, 1, 1, 4, 4], [4, 1, 1, 1, 1, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4], [4, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 4, 4, 4, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 2, 4, 2, 8, 8, 8, 8, 8, 8, 8, 2, 4], [2, 1, 1, 1, 1, 1, 1, 1, 2, 2, 8, 2, 2, 2, 8, 6, 6, 6, 6, 8, 8, 2, 4], [2, 1, 1, 1, 1, 1, 1, 1, 2, 2, 8, 8, 8, 8, 8, 6, 6, 6, 6, 8, 8, 2, 4], [2, 1, 1, 1, 1, 1, 1, 1, 2, 2, 8, 8, 8, 8, 8, 6, 6, 6, 6, 8, 8, 2, 4], [2, 1, 1, 1, 1, 1, 1, 1, 2, 2, 8, 8, 8, 8, 8, 6, 6, 6, 6, 8, 8, 2, 4], [2, 1, 1, 1, 1, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2, 4], [2, 1, 1, 1, 1, 2, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4], [2, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 4, 2, 2, 2, 2, 2, 2, 2, 4, 4, 4, 4], [4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4], [4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4], [4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4], [4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4], [4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4], [4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4], [4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4], [4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4], [4, 4, 4, 2, 2, 2, 4, 4, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4], [4, 4, 2, 2, 1, 2, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 4, 4, 4, 4], [4, 4, 2, 1, 1, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]]}, {"input": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 4, 4], [4, 4, 4, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 1, 1, 1, 4, 4], [4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 1, 1, 1, 4, 4], [4, 4, 4, 1, 1, 1, 1, 4, 4, 1, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 1, 1, 1, 4, 4], [4, 4, 4, 1, 1, 1, 1, 4, 4, 1, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 4, 4], [4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 4, 4], [4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4], [4, 4, 2, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 2, 8, 8, 8, 8, 8, 8, 8, 2, 4], [4, 4, 2, 8, 8, 8, 8, 2, 2, 2, 2, 4, 4, 4, 4, 2, 8, 6, 6, 6, 8, 8, 8, 2, 4], [4, 4, 2, 8, 8, 8, 8, 8, 8, 8, 2, 4, 4, 4, 4, 2, 8, 6, 6, 6, 8, 8, 8, 2, 4], [4, 4, 2, 8, 8, 8, 8, 6, 6, 8, 2, 4, 4, 4, 4, 2, 8, 6, 6, 6, 8, 8, 8, 2, 4], [4, 4, 2, 8, 8, 8, 8, 6, 6, 8, 2, 4, 4, 4, 4, 2, 8, 8, 8, 8, 8, 8, 8, 2, 4], [4, 4, 2, 2, 2, 2, 8, 8, 8, 8, 2, 4, 4, 4, 4, 2, 8, 8, 8, 8, 8, 8, 8, 2, 4], [4, 4, 4, 4, 4, 2, 8, 8, 8, 8, 2, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4], [4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 1, 1, 1, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]]}, {"input": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 4, 4, 1, 1, 1, 1, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 2, 1, 1, 1, 2, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 2, 1, 1, 1, 2, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 2, 1, 1, 1, 2, 4, 4, 4, 4, 2, 2, 2, 4], [4, 4, 2, 2, 2, 2, 2, 4, 4, 4, 4, 2, 1, 2, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4], [4, 4, 4, 2, 8, 8, 8, 8, 8, 2, 2, 2, 4, 4, 4], [4, 4, 4, 2, 8, 6, 6, 8, 8, 8, 8, 2, 4, 4, 4], [4, 4, 4, 2, 8, 8, 8, 8, 8, 8, 8, 2, 4, 4, 4], [4, 4, 4, 2, 8, 8, 8, 8, 8, 8, 8, 2, 4, 4, 4], [4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]]}], "test": [{"input": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 1, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 2, 8, 8, 8, 8, 8, 6, 6, 6, 8, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 2, 2, 2, 8, 8, 8, 8, 8, 6, 6, 6, 8, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 8, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 4, 4], [4, 4, 4, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2, 4, 4, 4, 4, 2, 1, 1, 1, 1, 2, 4, 4, 4], [4, 4, 4, 2, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 4, 4, 4, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2], [4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2], [4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2], [4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 1, 1, 1, 2, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2], [4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 1, 1, 1, 2, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [4, 4, 4, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 4, 4], [4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 2, 8, 8, 8, 8, 2, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 8, 6, 6, 8, 2, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 8, 8, 8, 8, 2, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/aab50785.json b/data/arc-agi/evaluation/aab50785.json
deleted file mode 100644
index 8bb4441..0000000
--- a/data/arc-agi/evaluation/aab50785.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 2, 0, 0, 0, 0, 4, 5, 0, 0, 1, 0, 6, 5, 0, 0, 0], [9, 0, 4, 3, 0, 0, 9, 0, 4, 7, 9, 4, 6, 0, 2, 7, 0], [0, 7, 3, 0, 0, 0, 9, 0, 0, 9, 0, 0, 9, 9, 9, 5, 0], [0, 5, 5, 3, 0, 3, 0, 6, 0, 4, 7, 2, 3, 2, 0, 3, 0], [0, 8, 8, 0, 0, 0, 7, 0, 8, 8, 9, 0, 0, 6, 0, 0, 4], [0, 8, 8, 6, 4, 3, 1, 9, 8, 8, 0, 0, 0, 0, 0, 0, 7], [9, 0, 0, 9, 5, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1], [0, 2, 9, 9, 0, 0, 9, 0, 7, 1, 0, 0, 0, 9, 0, 0, 0], [0, 7, 0, 8, 8, 0, 4, 0, 6, 0, 8, 8, 9, 0, 0, 0, 0], [0, 2, 4, 8, 8, 0, 3, 0, 0, 6, 8, 8, 6, 5, 7, 9, 0], [0, 0, 9, 2, 0, 2, 0, 0, 0, 7, 9, 0, 0, 0, 5, 7, 1], [1, 0, 0, 3, 0, 1, 0, 4, 1, 4, 0, 0, 0, 0, 1, 0, 9], [1, 0, 6, 2, 1, 4, 6, 0, 0, 1, 9, 0, 3, 0, 1, 4, 0]], "output": [[0, 0, 0, 7, 0], [6, 4, 3, 1, 9], [0, 4, 0, 6, 0], [0, 3, 0, 0, 6]]}, {"input": [[0, 4, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 7, 9, 0, 7, 7, 0, 0, 1, 3, 0], [2, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 3, 5, 9, 1, 8, 8, 0, 2, 0], [0, 0, 0, 0, 8, 8, 1, 0, 0, 6, 8, 8, 3, 0, 0], [2, 0, 0, 0, 5, 0, 0, 0, 0, 0, 9, 2, 0, 0, 2], [0, 0, 9, 0, 4, 9, 9, 9, 0, 2, 9, 6, 1, 4, 0], [0, 0, 0, 0, 0, 0, 9, 4, 0, 0, 0, 0, 0, 0, 5], [1, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 5, 0, 6, 0], [2, 1, 0, 0, 6, 0, 6, 2, 7, 0, 4, 0, 0, 0, 7], [0, 9, 0, 0, 2, 0, 5, 0, 1, 0, 0, 0, 0, 5, 3], [4, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0]], "output": [[3, 5, 9, 1], [1, 0, 0, 6]]}, {"input": [[9, 0, 0, 5, 0, 0, 0, 0, 4, 4], [9, 4, 0, 0, 0, 0, 0, 0, 5, 0], [2, 2, 0, 6, 0, 0, 5, 0, 5, 3], [2, 9, 0, 2, 6, 4, 0, 1, 0, 0], [0, 0, 2, 9, 0, 4, 9, 1, 1, 3], [8, 8, 1, 0, 9, 7, 7, 0, 8, 8], [8, 8, 4, 0, 0, 5, 6, 4, 8, 8], [0, 5, 9, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 5, 0, 0, 3, 0], [0, 9, 0, 0, 0, 0, 0, 7, 0, 9], [0, 0, 5, 1, 7, 0, 0, 0, 9, 9], [0, 0, 9, 0, 0, 1, 0, 0, 0, 7]], "output": [[1, 0, 9, 7, 7, 0], [4, 0, 0, 5, 6, 4]]}, {"input": [[9, 2, 1, 5, 3, 4, 3, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 8, 8, 3, 0, 7, 0, 7, 8, 8, 4, 0, 7, 2, 0, 0, 0], [1, 8, 8, 0, 2, 0, 0, 6, 8, 8, 0, 0, 0, 0, 0, 7, 0], [1, 0, 0, 0, 0, 4, 1, 3, 9, 1, 0, 7, 5, 9, 4, 7, 0], [0, 0, 3, 2, 2, 0, 2, 6, 0, 4, 9, 2, 4, 0, 3, 0, 5], [0, 6, 8, 8, 3, 0, 1, 9, 2, 8, 8, 0, 3, 0, 4, 0, 0], [0, 0, 8, 8, 0, 7, 9, 2, 9, 8, 8, 0, 9, 3, 0, 0, 9], [0, 0, 0, 4, 0, 7, 5, 7, 5, 0, 1, 3, 0, 2, 0, 0, 0], [0, 0, 9, 9, 3, 6, 4, 0, 4, 7, 2, 0, 9, 0, 0, 9, 0], [9, 1, 9, 0, 0, 7, 1, 5, 7, 1, 0, 5, 0, 5, 9, 6, 9], [0, 0, 3, 7, 2, 0, 8, 8, 9, 0, 0, 0, 0, 8, 8, 1, 0], [6, 7, 0, 4, 0, 4, 8, 8, 0, 4, 0, 2, 0, 8, 8, 5, 0]], "output": [[3, 0, 7, 0, 7], [0, 2, 0, 0, 6], [3, 0, 1, 9, 2], [0, 7, 9, 2, 9], [9, 0, 0, 0, 0], [0, 4, 0, 2, 0]]}, {"input": [[0, 7, 2, 7, 0, 2, 0, 0, 0, 4, 0, 0, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 6, 0, 0, 2, 0, 0, 7, 3, 1], [0, 0, 8, 8, 6, 5, 2, 8, 8, 1, 0, 2, 4, 5, 0, 0], [0, 0, 8, 8, 0, 0, 2, 8, 8, 0, 0, 7, 1, 0, 0, 7], [0, 0, 0, 0, 4, 0, 0, 0, 9, 0, 7, 0, 0, 0, 0, 0], [8, 8, 1, 3, 0, 8, 8, 0, 0, 0, 0, 9, 0, 3, 0, 1], [8, 8, 0, 0, 9, 8, 8, 0, 0, 0, 0, 0, 3, 0, 9, 2], [0, 0, 7, 0, 0, 0, 0, 0, 0, 9, 3, 4, 0, 0, 0, 0], [4, 0, 0, 9, 0, 9, 0, 0, 7, 3, 0, 6, 0, 4, 0, 5], [6, 0, 0, 0, 4, 0, 0, 3, 0, 0, 2, 0, 5, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 1, 2, 0, 4, 0, 0, 0, 0], [4, 5, 0, 0, 6, 0, 4, 0, 0, 0, 0, 0, 5, 2, 0, 2], [0, 9, 0, 6, 0, 0, 0, 7, 2, 0, 9, 3, 0, 0, 0, 6]], "output": [[6, 5, 2], [0, 0, 2], [1, 3, 0], [0, 0, 9]]}], "test": [{"input": [[0, 0, 6, 9, 0, 0, 0, 9, 0, 0, 7, 0, 9, 0, 0, 9, 0], [0, 0, 0, 0, 0, 0, 0, 6, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 0, 9, 0, 0, 0, 0, 0, 2, 0, 1, 0, 5, 1], [2, 1, 0, 8, 8, 4, 1, 5, 0, 8, 8, 0, 1, 0, 4, 0, 0], [0, 7, 3, 8, 8, 0, 9, 0, 0, 8, 8, 0, 6, 0, 4, 7, 2], [2, 5, 0, 4, 0, 0, 0, 0, 7, 9, 0, 9, 5, 0, 4, 0, 1], [8, 8, 5, 9, 0, 4, 8, 8, 4, 0, 3, 7, 0, 0, 0, 0, 5], [8, 8, 7, 7, 0, 0, 8, 8, 6, 4, 7, 0, 6, 0, 0, 0, 4], [0, 6, 9, 0, 4, 0, 0, 3, 0, 9, 0, 3, 0, 0, 0, 3, 4], [0, 5, 2, 0, 0, 0, 0, 2, 9, 0, 0, 6, 0, 4, 5, 0, 0], [0, 7, 0, 3, 8, 8, 4, 5, 4, 3, 8, 8, 9, 5, 0, 3, 0], [0, 0, 0, 0, 8, 8, 0, 0, 7, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 3, 5, 0], [0, 9, 2, 0, 0, 0, 9, 8, 8, 0, 0, 6, 0, 8, 8, 0, 6], [0, 0, 0, 9, 0, 0, 0, 8, 8, 0, 7, 0, 4, 8, 8, 0, 0]], "output": [[4, 1, 5, 0], [0, 9, 0, 0], [5, 9, 0, 4], [7, 7, 0, 0], [4, 5, 4, 3], [0, 0, 7, 0], [0, 0, 6, 0], [0, 7, 0, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ac0c5833.json b/data/arc-agi/evaluation/ac0c5833.json
deleted file mode 100644
index 7258ea1..0000000
--- a/data/arc-agi/evaluation/ac0c5833.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train":[{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,4,0,2,2,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],"output":[[0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,2,2,0,4,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0],[0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,2,2,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,4,0,2,2,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0],[0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,2,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,4,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0],[0,0,0,0,2,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,2,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,2,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0],[0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4]],"output":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,2,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0],[0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,4,0,2,2,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0],[0,0,0,0,0,2,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,4,0,0,0,0,0,0,0],[0,0,0,0,0,0,4,0,4,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,2,2,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,4],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4]]},{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0],[0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0],[0,2,2,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],"output":[[0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,4,0,0,0,0,0,0,0],[0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0],[0,2,2,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,2,2,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,2,2,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]}],"test":[{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0],[0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0],[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,4,0,4,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,2,2,0,0,0],[0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],"output":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,2,2,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0],[0,0,0,0,0,4,0,4,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0],[0,0,0,2,2,0,0,4,0,0,0,0,0,0,2,2,0,0,4,0,0,0,0,0,0,0,0],[0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0],[0,0,0,0,0,2,2,2,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,2,0,2,0,0,0,2,0,2,0,0,0,0,0,0,0,0,4,0,0,2,2],[0,0,0,4,0,0,2,2,0,0,0,2,2,0,0,4,0,0,0,0,0,0,0,0,2,0,2],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2],[0,0,0,4,0,4,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0],[0,0,0,0,0,2,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,2,2,0,0,0],[0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]}],"name":"ac0c5833"}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ac2e8ecf.json b/data/arc-agi/evaluation/ac2e8ecf.json
deleted file mode 100644
index a35cbdc..0000000
--- a/data/arc-agi/evaluation/ac2e8ecf.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 1, 1, 1, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1], [0, 2, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0], [2, 2, 2, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 2, 2, 2], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 2, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 2, 2, 2], [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 2, 0, 2], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 2, 2, 2], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 8, 0, 0, 1, 0], [2, 2, 2, 0, 0, 0, 8, 8, 8, 8, 1, 1, 1], [0, 2, 0, 0, 0, 0, 0, 0, 8, 0, 0, 1, 0]]}, {"input": [[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 3, 3, 3, 0, 0, 8, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 8, 8, 8, 8, 0], [0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 8, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 2, 2, 2, 2, 0, 0, 0, 3, 3, 3, 8, 8, 8, 8, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 3, 0, 3, 8, 0, 0, 8, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 3, 3, 3, 8, 8, 8, 8, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 8, 0, 0], [3, 3, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 8, 8, 8, 8, 0], [0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 8, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 2, 2, 2, 2, 2], [0, 8, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0], [8, 8, 8, 3, 3, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1], [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 1, 1, 1, 1, 1], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 1], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 1, 0, 0, 0, 1], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1], [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ac3e2b04.json b/data/arc-agi/evaluation/ac3e2b04.json
deleted file mode 100644
index 0db3d3b..0000000
--- a/data/arc-agi/evaluation/ac3e2b04.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 3, 3, 3, 0, 0, 0], [2, 2, 2, 2, 3, 2, 3, 2, 2, 2], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 3, 3, 3, 0, 0, 0], [2, 2, 2, 2, 3, 2, 3, 2, 2, 2], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [2, 2, 2, 2, 1, 2, 1, 2, 2, 2], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 2, 0, 0], [0, 0, 3, 2, 3, 0, 0, 0, 0, 2, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 2, 0, 0, 0, 0, 3, 2, 3, 0], [0, 0, 0, 2, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0]], "output": [[0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 1, 1, 1, 0], [1, 1, 3, 2, 3, 1, 1, 1, 1, 2, 1, 1], [0, 0, 3, 3, 3, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 3, 3, 3, 0], [1, 1, 1, 2, 1, 1, 1, 1, 3, 2, 3, 1], [0, 0, 1, 1, 1, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0]]}, {"input": [[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [1, 1, 1, 3, 2, 3, 1, 1, 1, 1, 1, 1], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 3, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 3, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0]], "output": [[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 1, 1, 1, 0, 0], [2, 2, 2, 3, 2, 3, 2, 2, 2, 1, 2, 1, 2, 2], [0, 0, 0, 3, 3, 3, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0], [2, 2, 2, 1, 2, 1, 2, 2, 2, 1, 2, 1, 2, 2], [0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 3, 3, 3, 0, 0], [2, 2, 2, 1, 2, 1, 2, 2, 2, 3, 2, 3, 2, 2], [0, 0, 0, 1, 1, 1, 0, 0, 0, 3, 3, 3, 0, 0]]}], "test": [{"input": [[0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 3, 3, 3, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 3, 2, 3, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 3, 3, 3, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 3, 3, 3, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 3, 2, 3, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 3, 3, 3, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0]], "output": [[0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 3, 3, 3, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1], [1, 3, 2, 3, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1], [0, 3, 3, 3, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 3, 3, 3, 0, 0, 1, 1, 1], [1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 3, 2, 3, 1, 1, 1, 2, 1], [0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 3, 3, 3, 0, 0, 1, 1, 1], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ac605cbb.json b/data/arc-agi/evaluation/ac605cbb.json
deleted file mode 100644
index e866760..0000000
--- a/data/arc-agi/evaluation/ac605cbb.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 1, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 5, 5, 5, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 1, 0], [0, 0, 0, 3, 0, 0, 1, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 2, 5, 4, 5, 2, 0, 0, 0], [0, 0, 0, 4, 3, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 2, 5, 4, 5, 2, 0, 0, 0, 0, 0], [0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 6, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 5, 5, 5, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0], [0, 1, 5, 5, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 2, 5, 4, 5, 2, 0, 0, 0], [0, 0, 0, 0, 4, 6, 0, 0, 0, 3, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 5, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 5, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ad7e01d0.json b/data/arc-agi/evaluation/ad7e01d0.json
deleted file mode 100644
index 8ad20aa..0000000
--- a/data/arc-agi/evaluation/ad7e01d0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 0, 1], [5, 2, 0], [5, 5, 5]], "output": [[5, 0, 1, 0, 0, 0, 0, 0, 0], [5, 2, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 0, 0, 0, 0, 0, 0], [5, 0, 1, 0, 0, 0, 0, 0, 0], [5, 2, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 0, 0, 0, 0, 0, 0], [5, 0, 1, 5, 0, 1, 5, 0, 1], [5, 2, 0, 5, 2, 0, 5, 2, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5]]}, {"input": [[2, 5, 1], [0, 5, 0], [2, 5, 1]], "output": [[0, 0, 0, 2, 5, 1, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 2, 5, 1, 0, 0, 0], [0, 0, 0, 2, 5, 1, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 2, 5, 1, 0, 0, 0], [0, 0, 0, 2, 5, 1, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 2, 5, 1, 0, 0, 0]]}, {"input": [[0, 5, 0, 3], [5, 5, 2, 0], [0, 2, 5, 5], [3, 0, 5, 0]], "output": [[0, 0, 0, 0, 0, 5, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 3, 0, 5, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 2, 0, 5, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 5, 5, 0, 2, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 5, 0, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 3, 0, 5, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 2, 0, 5, 5, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 5, 0, 2, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 5, 0, 3, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 5, 0, 0, 0, 0, 0]]}, {"input": [[5, 5, 5, 5], [5, 2, 3, 5], [5, 3, 3, 5], [5, 5, 5, 5]], "output": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 2, 3, 5, 5, 2, 3, 5, 5, 2, 3, 5, 5, 2, 3, 5], [5, 3, 3, 5, 5, 3, 3, 5, 5, 3, 3, 5, 5, 3, 3, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5], [5, 2, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 3, 5], [5, 3, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 3, 5], [5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5], [5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5], [5, 2, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 3, 5], [5, 3, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 3, 5], [5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 2, 3, 5, 5, 2, 3, 5, 5, 2, 3, 5, 5, 2, 3, 5], [5, 3, 3, 5, 5, 3, 3, 5, 5, 3, 3, 5, 5, 3, 3, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]]}], "test": [{"input": [[1, 0, 5, 0, 1], [0, 2, 2, 2, 0], [5, 0, 5, 0, 5], [0, 2, 2, 2, 0], [1, 0, 5, 0, 1]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 5, 0, 1, 0, 0, 0, 0, 0, 1, 0, 5, 0, 1, 0, 0, 0, 0, 0, 1, 0, 5, 0, 1], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [5, 0, 5, 0, 5, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [1, 0, 5, 0, 1, 0, 0, 0, 0, 0, 1, 0, 5, 0, 1, 0, 0, 0, 0, 0, 1, 0, 5, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ae58858e.json b/data/arc-agi/evaluation/ae58858e.json
deleted file mode 100644
index ee702c1..0000000
--- a/data/arc-agi/evaluation/ae58858e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 2, 2, 0], [0, 2, 2, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0], [2, 0, 2, 2, 0, 0, 2, 2], [2, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 0, 0, 0, 6, 6, 0], [0, 6, 6, 0, 0, 6, 6, 0], [0, 0, 0, 0, 0, 0, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0], [2, 0, 6, 6, 0, 0, 2, 2], [2, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 2, 2, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 2, 2, 0, 0, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 2, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 6, 6, 0, 0, 0, 6, 6, 0, 0, 0, 0], [0, 6, 6, 6, 0, 0, 6, 6, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 2, 2, 0, 0, 0, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 6, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0]]}, {"input": [[2, 2, 0, 0, 0, 2], [2, 2, 0, 0, 0, 2], [0, 0, 0, 2, 0, 0], [0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 2], [0, 2, 2, 2, 0, 0]], "output": [[6, 6, 0, 0, 0, 2], [6, 6, 0, 0, 0, 2], [0, 0, 0, 2, 0, 0], [0, 2, 0, 0, 0, 0], [0, 0, 0, 6, 0, 2], [0, 6, 6, 6, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 6, 6, 0], [0, 0, 0, 0, 0, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 2, 2, 2, 0], [2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 2, 2, 0], [0, 2, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 2, 0, 0, 0, 2]], "output": [[0, 0, 0, 0, 2, 2, 2, 0], [6, 6, 0, 0, 0, 0, 0, 0], [0, 6, 6, 0, 0, 6, 6, 0], [0, 6, 0, 0, 0, 6, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 2, 0, 0, 0, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/aee291af.json b/data/arc-agi/evaluation/aee291af.json
deleted file mode 100644
index faa692b..0000000
--- a/data/arc-agi/evaluation/aee291af.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 8, 8, 8, 8, 1, 8, 1, 1, 8, 1, 1, 1, 1, 1, 1], [1, 8, 2, 2, 8, 1, 1, 1, 8, 8, 8, 8, 1, 1, 8, 1], [1, 8, 2, 8, 8, 8, 1, 1, 8, 2, 2, 8, 1, 1, 1, 1], [1, 8, 8, 8, 8, 1, 1, 1, 8, 2, 8, 8, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 1, 1, 8, 8, 8, 8, 8, 1, 1, 1], [1, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1], [1, 1, 8, 8, 8, 8, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 8, 2, 2, 8, 1, 1, 1, 1, 8, 1, 1, 8, 1, 1], [1, 1, 8, 2, 8, 8, 1, 1, 8, 8, 8, 8, 1, 1, 1, 1], [8, 1, 8, 8, 8, 8, 1, 1, 8, 2, 2, 8, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 2, 8, 1, 1, 8, 1], [1, 1, 1, 1, 1, 1, 8, 1, 8, 8, 8, 8, 1, 1, 1, 1], [1, 1, 8, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 8, 1, 1, 8, 8, 1], [1, 8, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 1]], "output": [[8, 8, 8, 8], [8, 2, 2, 8], [8, 8, 2, 8], [8, 8, 8, 8]]}, {"input": [[8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 8, 1, 8, 1, 1, 1], [1, 8, 8, 8, 8, 1, 8, 1, 1, 8, 8, 1, 1, 1, 1, 1], [1, 8, 2, 2, 8, 8, 1, 1, 8, 1, 1, 8, 8, 1, 1, 1], [1, 8, 2, 2, 8, 1, 1, 8, 1, 1, 1, 8, 1, 1, 8, 1], [1, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 8, 1], [1, 8, 1, 8, 1, 1, 1, 8, 1, 1, 8, 1, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 2, 2, 8], [1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 1, 1, 8, 2, 2, 8], [1, 8, 1, 1, 1, 8, 2, 8, 8, 1, 1, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 8, 8, 2, 8, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 1, 1, 8, 8, 8, 8], [1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 8, 2, 2, 8], [1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 8, 2, 2, 8], [1, 1, 8, 1, 1, 8, 1, 1, 1, 1, 8, 1, 8, 8, 8, 8]], "output": [[8, 8, 8, 8], [8, 2, 8, 8], [8, 8, 2, 8], [8, 8, 8, 8]]}, {"input": [[1, 8, 1, 8, 1, 1, 1, 8, 1, 1, 8, 1, 1, 1, 1, 8, 8, 1], [1, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 8, 1], [8, 8, 2, 8, 2, 8, 1, 1, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1], [1, 8, 8, 2, 8, 8, 8, 1, 1, 8, 2, 8, 2, 8, 8, 1, 1, 1], [8, 8, 2, 2, 8, 8, 1, 1, 1, 8, 8, 2, 8, 8, 1, 8, 1, 1], [1, 8, 8, 8, 8, 8, 1, 1, 1, 8, 2, 2, 8, 8, 8, 1, 1, 1], [1, 8, 1, 8, 1, 1, 8, 1, 1, 8, 8, 8, 8, 8, 8, 1, 8, 8], [8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1], [1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1], [8, 1, 1, 1, 1, 8, 8, 8, 8, 8, 1, 1, 1, 8, 1, 1, 1, 1], [8, 8, 1, 1, 1, 8, 2, 8, 2, 8, 1, 1, 8, 1, 1, 1, 1, 1], [1, 1, 8, 1, 1, 8, 8, 2, 8, 8, 1, 1, 1, 1, 1, 1, 1, 8], [1, 1, 1, 1, 1, 8, 8, 2, 2, 8, 1, 1, 8, 8, 1, 1, 8, 1], [1, 8, 1, 1, 1, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 8, 1], [1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1], [1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1], [1, 8, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[8, 8, 8, 8, 8], [8, 2, 8, 2, 8], [8, 8, 2, 8, 8], [8, 8, 2, 2, 8], [8, 8, 8, 8, 8]]}], "test": [{"input": [[1, 1, 1, 1, 8, 1, 1, 1, 1, 8, 1, 1, 1, 8, 8, 8, 8, 8], [1, 1, 1, 8, 1, 1, 8, 1, 1, 8, 1, 1, 8, 8, 2, 2, 8, 8], [1, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 8, 8, 8, 2, 8, 8, 8], [1, 1, 8, 2, 2, 8, 8, 1, 1, 1, 1, 1, 1, 8, 8, 8, 2, 8], [1, 1, 8, 2, 8, 8, 8, 1, 8, 1, 8, 1, 1, 8, 8, 8, 8, 8], [1, 8, 8, 8, 8, 2, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [8, 1, 8, 8, 8, 8, 8, 1, 1, 8, 1, 8, 1, 1, 1, 1, 1, 1], [1, 8, 1, 8, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 1, 8, 8, 1], [1, 1, 1, 1, 8, 1, 8, 1, 1, 8, 2, 2, 8, 8, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 8, 1, 1, 8, 2, 8, 8, 8, 8, 1, 1, 1], [8, 8, 8, 8, 8, 8, 1, 1, 1, 8, 8, 8, 2, 8, 1, 1, 1, 1], [8, 2, 2, 8, 8, 1, 1, 1, 1, 8, 8, 8, 8, 8, 1, 1, 1, 1], [8, 2, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 8, 2, 8, 1, 1, 1, 8, 8, 8, 8, 8, 1, 1, 1, 8, 1], [8, 8, 8, 8, 8, 1, 1, 1, 8, 8, 2, 2, 8, 1, 1, 1, 1, 8], [1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 2, 2, 8, 1, 1, 1, 8, 8], [8, 8, 1, 1, 1, 1, 1, 1, 8, 2, 8, 8, 8, 1, 1, 1, 1, 1], [8, 1, 8, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1]], "output": [[8, 8, 8, 8, 8], [8, 8, 2, 2, 8], [8, 8, 2, 2, 8], [8, 2, 8, 8, 8], [8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/af22c60d.json b/data/arc-agi/evaluation/af22c60d.json
deleted file mode 100644
index 624e64b..0000000
--- a/data/arc-agi/evaluation/af22c60d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[8, 8, 5, 9, 8, 9, 5, 8, 5, 6, 5, 5, 2, 2, 5, 6, 6, 5, 2, 2, 5, 5, 6, 5, 8, 5, 9, 8, 9, 5], [8, 9, 9, 8, 8, 9, 8, 5, 6, 6, 5, 6, 2, 5, 2, 6, 6, 2, 5, 2, 6, 5, 6, 6, 5, 8, 9, 8, 8, 9], [5, 9, 9, 9, 9, 9, 8, 5, 5, 5, 2, 5, 6, 2, 2, 2, 2, 2, 2, 6, 5, 2, 5, 5, 5, 8, 9, 9, 9, 9], [9, 8, 9, 9, 9, 8, 9, 8, 5, 6, 5, 6, 6, 2, 2, 2, 2, 2, 2, 6, 6, 5, 6, 5, 8, 9, 8, 9, 9, 9], [8, 8, 9, 9, 8, 8, 8, 9, 2, 2, 6, 6, 2, 5, 6, 2, 2, 6, 5, 2, 6, 6, 2, 2, 9, 8, 8, 8, 9, 9], [9, 9, 9, 8, 8, 5, 8, 9, 2, 5, 2, 2, 5, 2, 5, 6, 6, 5, 2, 5, 2, 2, 5, 2, 9, 8, 5, 8, 8, 9], [5, 8, 8, 9, 8, 8, 5, 5, 5, 2, 2, 2, 6, 5, 2, 6, 6, 2, 5, 6, 2, 2, 2, 5, 5, 5, 8, 8, 9, 8], [8, 5, 5, 8, 9, 9, 5, 9, 6, 6, 2, 2, 2, 6, 6, 6, 6, 6, 6, 2, 2, 2, 6, 6, 9, 5, 9, 9, 8, 5], [5, 6, 5, 5, 2, 2, 5, 6, 1, 7, 2, 2, 1, 1, 7, 2, 2, 7, 1, 1, 2, 2, 7, 1, 6, 5, 2, 2, 5, 5], [6, 6, 5, 6, 2, 5, 2, 6, 7, 1, 1, 7, 1, 1, 7, 2, 2, 7, 1, 1, 7, 1, 1, 7, 6, 2, 5, 2, 6, 5], [5, 5, 2, 5, 6, 2, 2, 2, 2, 1, 2, 7, 7, 1, 1, 7, 7, 1, 1, 7, 7, 2, 1, 2, 2, 2, 2, 6, 5, 2], [5, 6, 5, 6, 6, 2, 2, 2, 2, 7, 7, 7, 2, 7, 7, 2, 2, 7, 7, 2, 7, 7, 7, 2, 2, 2, 2, 6, 6, 5], [2, 2, 6, 6, 2, 5, 6, 2, 1, 1, 7, 2, 1, 7, 7, 7, 7, 7, 7, 1, 2, 7, 1, 1, 2, 6, 5, 2, 6, 6], [2, 5, 2, 2, 5, 2, 5, 6, 1, 1, 1, 7, 7, 1, 1, 2, 2, 1, 1, 7, 7, 1, 1, 1, 6, 5, 2, 5, 2, 2], [5, 2, 2, 2, 6, 5, 2, 6, 7, 7, 1, 7, 7, 1, 1, 2, 2, 1, 1, 7, 7, 1, 7, 7, 6, 2, 5, 6, 2, 2], [6, 6, 2, 2, 2, 6, 6, 6, 2, 2, 7, 2, 7, 2, 2, 1, 1, 2, 2, 7, 2, 7, 2, 2, 6, 6, 6, 2, 2, 2], [6, 6, 2, 2, 2, 6, 6, 6, 2, 2, 7, 2, 7, 2, 2, 1, 1, 2, 2, 7, 2, 7, 2, 2, 6, 6, 6, 2, 2, 2], [5, 2, 2, 2, 6, 5, 2, 6, 7, 7, 1, 7, 7, 1, 1, 2, 2, 1, 1, 7, 7, 1, 7, 7, 0, 0, 5, 6, 2, 2], [2, 5, 2, 2, 5, 2, 5, 6, 1, 1, 1, 7, 7, 1, 1, 2, 2, 1, 1, 7, 7, 1, 1, 1, 0, 0, 2, 5, 2, 2], [2, 2, 6, 6, 2, 5, 6, 2, 1, 1, 7, 2, 1, 7, 7, 7, 7, 7, 7, 1, 2, 7, 1, 1, 0, 0, 5, 2, 6, 6], [5, 6, 5, 6, 6, 2, 2, 2, 2, 7, 7, 7, 2, 7, 7, 2, 2, 7, 7, 2, 7, 7, 7, 2, 0, 0, 2, 6, 6, 5], [5, 5, 2, 5, 6, 2, 2, 2, 2, 1, 2, 7, 7, 1, 1, 7, 7, 1, 1, 7, 7, 2, 1, 2, 0, 0, 2, 6, 5, 2], [6, 6, 5, 6, 2, 5, 2, 6, 7, 1, 1, 7, 1, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 5, 2, 6, 5], [5, 6, 5, 5, 2, 2, 5, 6, 1, 7, 2, 2, 1, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 2, 5, 5], [8, 5, 5, 8, 9, 9, 5, 9, 6, 6, 2, 2, 2, 6, 6, 6, 6, 6, 6, 2, 2, 2, 6, 6, 0, 0, 9, 9, 8, 5], [5, 8, 8, 9, 8, 8, 5, 5, 5, 2, 2, 2, 6, 5, 2, 6, 6, 2, 5, 6, 2, 2, 2, 5, 5, 5, 8, 8, 9, 8], [9, 9, 9, 8, 8, 5, 8, 9, 2, 5, 2, 2, 5, 2, 5, 6, 6, 5, 2, 5, 2, 2, 5, 2, 9, 8, 5, 8, 8, 9], [8, 8, 9, 9, 8, 8, 8, 9, 2, 2, 6, 6, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 9, 8, 8, 8, 9, 9], [9, 8, 9, 9, 9, 8, 9, 8, 5, 6, 5, 6, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 8, 9, 8, 9, 9, 9], [5, 9, 9, 9, 9, 9, 8, 5, 5, 5, 2, 5, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 8, 9, 9, 9, 9]], "output": [[8, 8, 5, 9, 8, 9, 5, 8, 5, 6, 5, 5, 2, 2, 5, 6, 6, 5, 2, 2, 5, 5, 6, 5, 8, 5, 9, 8, 9, 5], [8, 9, 9, 8, 8, 9, 8, 5, 6, 6, 5, 6, 2, 5, 2, 6, 6, 2, 5, 2, 6, 5, 6, 6, 5, 8, 9, 8, 8, 9], [5, 9, 9, 9, 9, 9, 8, 5, 5, 5, 2, 5, 6, 2, 2, 2, 2, 2, 2, 6, 5, 2, 5, 5, 5, 8, 9, 9, 9, 9], [9, 8, 9, 9, 9, 8, 9, 8, 5, 6, 5, 6, 6, 2, 2, 2, 2, 2, 2, 6, 6, 5, 6, 5, 8, 9, 8, 9, 9, 9], [8, 8, 9, 9, 8, 8, 8, 9, 2, 2, 6, 6, 2, 5, 6, 2, 2, 6, 5, 2, 6, 6, 2, 2, 9, 8, 8, 8, 9, 9], [9, 9, 9, 8, 8, 5, 8, 9, 2, 5, 2, 2, 5, 2, 5, 6, 6, 5, 2, 5, 2, 2, 5, 2, 9, 8, 5, 8, 8, 9], [5, 8, 8, 9, 8, 8, 5, 5, 5, 2, 2, 2, 6, 5, 2, 6, 6, 2, 5, 6, 2, 2, 2, 5, 5, 5, 8, 8, 9, 8], [8, 5, 5, 8, 9, 9, 5, 9, 6, 6, 2, 2, 2, 6, 6, 6, 6, 6, 6, 2, 2, 2, 6, 6, 9, 5, 9, 9, 8, 5], [5, 6, 5, 5, 2, 2, 5, 6, 1, 7, 2, 2, 1, 1, 7, 2, 2, 7, 1, 1, 2, 2, 7, 1, 6, 5, 2, 2, 5, 5], [6, 6, 5, 6, 2, 5, 2, 6, 7, 1, 1, 7, 1, 1, 7, 2, 2, 7, 1, 1, 7, 1, 1, 7, 6, 2, 5, 2, 6, 5], [5, 5, 2, 5, 6, 2, 2, 2, 2, 1, 2, 7, 7, 1, 1, 7, 7, 1, 1, 7, 7, 2, 1, 2, 2, 2, 2, 6, 5, 2], [5, 6, 5, 6, 6, 2, 2, 2, 2, 7, 7, 7, 2, 7, 7, 2, 2, 7, 7, 2, 7, 7, 7, 2, 2, 2, 2, 6, 6, 5], [2, 2, 6, 6, 2, 5, 6, 2, 1, 1, 7, 2, 1, 7, 7, 7, 7, 7, 7, 1, 2, 7, 1, 1, 2, 6, 5, 2, 6, 6], [2, 5, 2, 2, 5, 2, 5, 6, 1, 1, 1, 7, 7, 1, 1, 2, 2, 1, 1, 7, 7, 1, 1, 1, 6, 5, 2, 5, 2, 2], [5, 2, 2, 2, 6, 5, 2, 6, 7, 7, 1, 7, 7, 1, 1, 2, 2, 1, 1, 7, 7, 1, 7, 7, 6, 2, 5, 6, 2, 2], [6, 6, 2, 2, 2, 6, 6, 6, 2, 2, 7, 2, 7, 2, 2, 1, 1, 2, 2, 7, 2, 7, 2, 2, 6, 6, 6, 2, 2, 2], [6, 6, 2, 2, 2, 6, 6, 6, 2, 2, 7, 2, 7, 2, 2, 1, 1, 2, 2, 7, 2, 7, 2, 2, 6, 6, 6, 2, 2, 2], [5, 2, 2, 2, 6, 5, 2, 6, 7, 7, 1, 7, 7, 1, 1, 2, 2, 1, 1, 7, 7, 1, 7, 7, 6, 2, 5, 6, 2, 2], [2, 5, 2, 2, 5, 2, 5, 6, 1, 1, 1, 7, 7, 1, 1, 2, 2, 1, 1, 7, 7, 1, 1, 1, 6, 5, 2, 5, 2, 2], [2, 2, 6, 6, 2, 5, 6, 2, 1, 1, 7, 2, 1, 7, 7, 7, 7, 7, 7, 1, 2, 7, 1, 1, 2, 6, 5, 2, 6, 6], [5, 6, 5, 6, 6, 2, 2, 2, 2, 7, 7, 7, 2, 7, 7, 2, 2, 7, 7, 2, 7, 7, 7, 2, 2, 2, 2, 6, 6, 5], [5, 5, 2, 5, 6, 2, 2, 2, 2, 1, 2, 7, 7, 1, 1, 7, 7, 1, 1, 7, 7, 2, 1, 2, 2, 2, 2, 6, 5, 2], [6, 6, 5, 6, 2, 5, 2, 6, 7, 1, 1, 7, 1, 1, 7, 2, 2, 7, 1, 1, 7, 1, 1, 7, 6, 2, 5, 2, 6, 5], [5, 6, 5, 5, 2, 2, 5, 6, 1, 7, 2, 2, 1, 1, 7, 2, 2, 7, 1, 1, 2, 2, 7, 1, 6, 5, 2, 2, 5, 5], [8, 5, 5, 8, 9, 9, 5, 9, 6, 6, 2, 2, 2, 6, 6, 6, 6, 6, 6, 2, 2, 2, 6, 6, 9, 5, 9, 9, 8, 5], [5, 8, 8, 9, 8, 8, 5, 5, 5, 2, 2, 2, 6, 5, 2, 6, 6, 2, 5, 6, 2, 2, 2, 5, 5, 5, 8, 8, 9, 8], [9, 9, 9, 8, 8, 5, 8, 9, 2, 5, 2, 2, 5, 2, 5, 6, 6, 5, 2, 5, 2, 2, 5, 2, 9, 8, 5, 8, 8, 9], [8, 8, 9, 9, 8, 8, 8, 9, 2, 2, 6, 6, 2, 5, 6, 2, 2, 6, 5, 2, 6, 6, 2, 2, 9, 8, 8, 8, 9, 9], [9, 8, 9, 9, 9, 8, 9, 8, 5, 6, 5, 6, 6, 2, 2, 2, 2, 2, 2, 6, 6, 5, 6, 5, 8, 9, 8, 9, 9, 9], [5, 9, 9, 9, 9, 9, 8, 5, 5, 5, 2, 5, 6, 2, 2, 2, 2, 2, 2, 6, 5, 2, 5, 5, 5, 8, 9, 9, 9, 9]]}], "train": [{"input": [[3, 9, 9, 9, 4, 4, 9, 4, 3, 4, 4, 4, 4, 2, 4, 4, 4, 4, 2, 4, 4, 4, 4, 3, 4, 9, 4, 4, 9, 9], [9, 9, 9, 4, 9, 3, 9, 3, 4, 4, 3, 2, 2, 3, 3, 2, 2, 3, 3, 2, 2, 3, 4, 4, 3, 9, 3, 9, 4, 9], [9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 3, 2, 2, 3, 4, 4, 4, 2, 3, 4, 4, 9, 3, 3, 4, 9], [9, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 2, 4, 3, 3, 4, 2, 4, 4, 4, 2, 4, 4, 3, 4, 3, 3, 4], [4, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 3, 3, 4, 4, 3, 3, 3, 4, 4, 2, 4, 3, 9, 4, 4, 3, 3], [4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 4, 4, 3, 3, 3, 2, 4, 3, 2, 9, 9, 4, 4, 4, 3], [9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 3, 4, 4, 4, 4, 3, 3, 4, 3, 3, 4, 9, 9, 9, 9, 3, 9], [4, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 4, 3, 3, 4, 4, 4, 3, 2, 2, 4, 9, 9, 9, 3, 4, 4], [3, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 2, 0, 0, 0, 0, 0, 0, 0, 3, 7, 3, 4, 4, 2, 4, 4, 4], [4, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 2, 0, 0, 0, 0, 0, 0, 0, 7, 2, 7, 2, 3, 3, 2, 2, 3], [4, 3, 2, 4, 4, 4, 3, 2, 3, 7, 3, 7, 2, 7, 7, 2, 2, 7, 7, 2, 7, 3, 0, 0, 2, 3, 4, 4, 4, 2], [4, 2, 4, 4, 4, 2, 4, 3, 7, 7, 7, 2, 2, 3, 3, 2, 2, 3, 3, 2, 2, 7, 0, 0, 3, 4, 2, 4, 4, 4], [4, 2, 4, 4, 3, 3, 3, 4, 7, 7, 2, 2, 3, 2, 7, 7, 7, 7, 2, 3, 2, 2, 0, 0, 4, 3, 3, 3, 4, 4], [2, 3, 4, 2, 3, 3, 3, 4, 2, 2, 7, 3, 2, 2, 7, 7, 7, 7, 2, 2, 3, 7, 0, 0, 4, 3, 3, 3, 2, 4], [4, 3, 3, 4, 3, 3, 4, 4, 2, 7, 7, 3, 7, 7, 2, 3, 3, 2, 7, 7, 3, 7, 0, 0, 4, 4, 3, 3, 4, 3], [4, 2, 2, 3, 4, 4, 4, 3, 3, 3, 2, 2, 7, 7, 3, 2, 2, 3, 7, 7, 2, 2, 3, 3, 3, 4, 4, 4, 3, 2], [4, 2, 2, 3, 4, 4, 4, 3, 3, 3, 2, 2, 7, 7, 3, 2, 2, 3, 7, 7, 2, 2, 3, 3, 3, 4, 4, 4, 3, 2], [4, 3, 3, 4, 3, 3, 4, 4, 2, 7, 7, 3, 7, 7, 2, 3, 3, 2, 7, 7, 3, 7, 7, 2, 4, 4, 3, 3, 4, 3], [2, 3, 4, 2, 3, 3, 3, 4, 2, 2, 7, 3, 2, 2, 7, 7, 7, 7, 2, 2, 3, 7, 2, 2, 4, 3, 3, 3, 2, 4], [4, 2, 4, 4, 3, 3, 3, 4, 7, 7, 2, 2, 3, 2, 7, 0, 0, 0, 0, 3, 2, 2, 7, 7, 4, 3, 3, 3, 4, 4], [4, 2, 4, 4, 4, 2, 4, 3, 7, 7, 7, 2, 2, 3, 3, 0, 0, 0, 0, 2, 2, 7, 7, 7, 3, 4, 2, 4, 4, 4], [4, 3, 2, 4, 4, 4, 3, 2, 3, 7, 3, 7, 2, 7, 7, 0, 0, 0, 0, 2, 7, 3, 7, 3, 2, 3, 4, 4, 4, 2], [4, 4, 3, 2, 2, 3, 3, 2, 7, 2, 7, 7, 7, 2, 7, 3, 3, 7, 2, 7, 7, 7, 2, 7, 2, 3, 3, 2, 2, 3], [3, 4, 4, 4, 4, 2, 4, 4, 3, 7, 3, 7, 7, 2, 2, 3, 3, 2, 2, 7, 7, 3, 7, 3, 4, 4, 2, 4, 4, 4], [4, 3, 4, 4, 3, 9, 9, 9, 4, 2, 2, 3, 4, 4, 4, 3, 3, 4, 4, 4, 3, 2, 2, 4, 9, 9, 9, 3, 4, 4], [9, 9, 9, 3, 9, 9, 9, 9, 4, 3, 3, 4, 3, 3, 4, 4, 4, 4, 3, 3, 4, 3, 3, 4, 9, 9, 9, 9, 3, 9], [4, 3, 3, 4, 4, 4, 9, 9, 2, 3, 4, 2, 3, 3, 3, 4, 4, 3, 3, 3, 2, 4, 3, 2, 9, 9, 4, 4, 4, 3], [4, 9, 3, 3, 4, 4, 9, 3, 4, 2, 4, 4, 3, 3, 3, 4, 4, 3, 3, 3, 4, 4, 2, 4, 3, 9, 4, 4, 3, 3], [9, 4, 4, 3, 3, 4, 3, 4, 4, 2, 4, 4, 4, 2, 4, 3, 3, 4, 2, 4, 4, 4, 2, 4, 4, 3, 4, 3, 3, 4], [9, 9, 9, 4, 3, 3, 9, 4, 4, 3, 2, 4, 4, 4, 3, 2, 2, 3, 4, 4, 4, 2, 3, 4, 4, 9, 3, 3, 4, 9]], "output": [[3, 9, 9, 9, 4, 4, 9, 4, 3, 4, 4, 4, 4, 2, 4, 4, 4, 4, 2, 4, 4, 4, 4, 3, 4, 9, 4, 4, 9, 9], [9, 9, 9, 4, 9, 3, 9, 3, 4, 4, 3, 2, 2, 3, 3, 2, 2, 3, 3, 2, 2, 3, 4, 4, 3, 9, 3, 9, 4, 9], [9, 9, 9, 4, 3, 3, 9, 4, 4, 3, 2, 4, 4, 4, 3, 2, 2, 3, 4, 4, 4, 2, 3, 4, 4, 9, 3, 3, 4, 9], [9, 4, 4, 3, 3, 4, 3, 4, 4, 2, 4, 4, 4, 2, 4, 3, 3, 4, 2, 4, 4, 4, 2, 4, 4, 3, 4, 3, 3, 4], [4, 9, 3, 3, 4, 4, 9, 3, 4, 2, 4, 4, 3, 3, 3, 4, 4, 3, 3, 3, 4, 4, 2, 4, 3, 9, 4, 4, 3, 3], [4, 3, 3, 4, 4, 4, 9, 9, 2, 3, 4, 2, 3, 3, 3, 4, 4, 3, 3, 3, 2, 4, 3, 2, 9, 9, 4, 4, 4, 3], [9, 9, 9, 3, 9, 9, 9, 9, 4, 3, 3, 4, 3, 3, 4, 4, 4, 4, 3, 3, 4, 3, 3, 4, 9, 9, 9, 9, 3, 9], [4, 3, 4, 4, 3, 9, 9, 9, 4, 2, 2, 3, 4, 4, 4, 3, 3, 4, 4, 4, 3, 2, 2, 4, 9, 9, 9, 3, 4, 4], [3, 4, 4, 4, 4, 2, 4, 4, 3, 7, 3, 7, 7, 2, 2, 3, 3, 2, 2, 7, 7, 3, 7, 3, 4, 4, 2, 4, 4, 4], [4, 4, 3, 2, 2, 3, 3, 2, 7, 2, 7, 7, 7, 2, 7, 3, 3, 7, 2, 7, 7, 7, 2, 7, 2, 3, 3, 2, 2, 3], [4, 3, 2, 4, 4, 4, 3, 2, 3, 7, 3, 7, 2, 7, 7, 2, 2, 7, 7, 2, 7, 3, 7, 3, 2, 3, 4, 4, 4, 2], [4, 2, 4, 4, 4, 2, 4, 3, 7, 7, 7, 2, 2, 3, 3, 2, 2, 3, 3, 2, 2, 7, 7, 7, 3, 4, 2, 4, 4, 4], [4, 2, 4, 4, 3, 3, 3, 4, 7, 7, 2, 2, 3, 2, 7, 7, 7, 7, 2, 3, 2, 2, 7, 7, 4, 3, 3, 3, 4, 4], [2, 3, 4, 2, 3, 3, 3, 4, 2, 2, 7, 3, 2, 2, 7, 7, 7, 7, 2, 2, 3, 7, 2, 2, 4, 3, 3, 3, 2, 4], [4, 3, 3, 4, 3, 3, 4, 4, 2, 7, 7, 3, 7, 7, 2, 3, 3, 2, 7, 7, 3, 7, 7, 2, 4, 4, 3, 3, 4, 3], [4, 2, 2, 3, 4, 4, 4, 3, 3, 3, 2, 2, 7, 7, 3, 2, 2, 3, 7, 7, 2, 2, 3, 3, 3, 4, 4, 4, 3, 2], [4, 2, 2, 3, 4, 4, 4, 3, 3, 3, 2, 2, 7, 7, 3, 2, 2, 3, 7, 7, 2, 2, 3, 3, 3, 4, 4, 4, 3, 2], [4, 3, 3, 4, 3, 3, 4, 4, 2, 7, 7, 3, 7, 7, 2, 3, 3, 2, 7, 7, 3, 7, 7, 2, 4, 4, 3, 3, 4, 3], [2, 3, 4, 2, 3, 3, 3, 4, 2, 2, 7, 3, 2, 2, 7, 7, 7, 7, 2, 2, 3, 7, 2, 2, 4, 3, 3, 3, 2, 4], [4, 2, 4, 4, 3, 3, 3, 4, 7, 7, 2, 2, 3, 2, 7, 7, 7, 7, 2, 3, 2, 2, 7, 7, 4, 3, 3, 3, 4, 4], [4, 2, 4, 4, 4, 2, 4, 3, 7, 7, 7, 2, 2, 3, 3, 2, 2, 3, 3, 2, 2, 7, 7, 7, 3, 4, 2, 4, 4, 4], [4, 3, 2, 4, 4, 4, 3, 2, 3, 7, 3, 7, 2, 7, 7, 2, 2, 7, 7, 2, 7, 3, 7, 3, 2, 3, 4, 4, 4, 2], [4, 4, 3, 2, 2, 3, 3, 2, 7, 2, 7, 7, 7, 2, 7, 3, 3, 7, 2, 7, 7, 7, 2, 7, 2, 3, 3, 2, 2, 3], [3, 4, 4, 4, 4, 2, 4, 4, 3, 7, 3, 7, 7, 2, 2, 3, 3, 2, 2, 7, 7, 3, 7, 3, 4, 4, 2, 4, 4, 4], [4, 3, 4, 4, 3, 9, 9, 9, 4, 2, 2, 3, 4, 4, 4, 3, 3, 4, 4, 4, 3, 2, 2, 4, 9, 9, 9, 3, 4, 4], [9, 9, 9, 3, 9, 9, 9, 9, 4, 3, 3, 4, 3, 3, 4, 4, 4, 4, 3, 3, 4, 3, 3, 4, 9, 9, 9, 9, 3, 9], [4, 3, 3, 4, 4, 4, 9, 9, 2, 3, 4, 2, 3, 3, 3, 4, 4, 3, 3, 3, 2, 4, 3, 2, 9, 9, 4, 4, 4, 3], [4, 9, 3, 3, 4, 4, 9, 3, 4, 2, 4, 4, 3, 3, 3, 4, 4, 3, 3, 3, 4, 4, 2, 4, 3, 9, 4, 4, 3, 3], [9, 4, 4, 3, 3, 4, 3, 4, 4, 2, 4, 4, 4, 2, 4, 3, 3, 4, 2, 4, 4, 4, 2, 4, 4, 3, 4, 3, 3, 4], [9, 9, 9, 4, 3, 3, 9, 4, 4, 3, 2, 4, 4, 4, 3, 2, 2, 3, 4, 4, 4, 2, 3, 4, 4, 9, 3, 3, 4, 9]]}, {"input": [[9, 4, 9, 9, 9, 9, 9, 4, 7, 8, 5, 8, 7, 8, 7, 5, 5, 7, 8, 7, 8, 5, 8, 7, 4, 9, 9, 9, 9, 9], [4, 6, 9, 4, 9, 9, 9, 9, 8, 5, 7, 8, 7, 8, 8, 5, 5, 8, 8, 7, 8, 7, 5, 8, 9, 9, 9, 9, 4, 9], [9, 9, 6, 9, 4, 9, 4, 4, 5, 7, 7, 7, 8, 5, 8, 5, 5, 8, 5, 8, 7, 7, 7, 5, 4, 4, 9, 4, 9, 6], [9, 4, 9, 4, 6, 6, 9, 9, 8, 8, 7, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 7, 8, 8, 9, 9, 6, 6, 4, 9], [9, 9, 4, 6, 6, 6, 4, 6, 7, 7, 8, 5, 8, 8, 8, 7, 7, 8, 8, 8, 5, 8, 7, 7, 6, 4, 6, 6, 6, 4], [9, 9, 9, 6, 6, 6, 9, 9, 8, 8, 5, 5, 8, 7, 8, 8, 8, 8, 7, 8, 5, 5, 8, 8, 9, 9, 6, 6, 6, 9], [9, 9, 4, 9, 4, 9, 4, 6, 7, 8, 8, 8, 8, 8, 5, 8, 8, 5, 8, 8, 8, 8, 8, 7, 6, 4, 9, 4, 9, 4], [4, 9, 4, 9, 6, 9, 6, 4, 5, 5, 5, 5, 7, 8, 8, 5, 5, 8, 8, 7, 0, 0, 0, 0, 4, 6, 9, 6, 9, 4], [7, 8, 5, 8, 7, 8, 7, 5, 7, 5, 8, 8, 7, 7, 7, 8, 8, 7, 7, 7, 0, 0, 0, 0, 5, 7, 8, 7, 8, 5], [8, 5, 7, 8, 7, 8, 8, 5, 5, 7, 8, 8, 5, 8, 5, 7, 7, 5, 8, 5, 0, 0, 0, 0, 5, 8, 8, 7, 8, 7], [5, 7, 7, 7, 8, 5, 8, 5, 8, 8, 8, 7, 5, 7, 7, 7, 7, 7, 7, 5, 0, 0, 0, 0, 5, 8, 5, 8, 7, 7], [8, 8, 7, 5, 5, 5, 8, 5, 8, 8, 7, 5, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 5, 8, 5, 5, 5, 7], [7, 7, 8, 5, 8, 8, 8, 7, 7, 5, 5, 7, 5, 7, 7, 7, 7, 7, 7, 5, 0, 0, 0, 0, 7, 8, 8, 8, 5, 8], [8, 8, 5, 5, 8, 7, 8, 8, 7, 8, 7, 7, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 8, 8, 7, 8, 5, 5], [7, 8, 8, 8, 8, 8, 5, 8, 7, 5, 7, 7, 7, 0, 0, 0, 0, 0, 0, 7, 7, 7, 5, 7, 8, 5, 8, 8, 8, 8], [5, 5, 5, 5, 7, 8, 8, 5, 8, 7, 7, 7, 7, 8, 7, 8, 8, 7, 8, 7, 7, 7, 7, 8, 5, 8, 8, 7, 5, 5], [5, 5, 5, 5, 7, 8, 8, 5, 8, 7, 7, 7, 7, 8, 7, 8, 8, 7, 8, 7, 7, 7, 7, 8, 5, 8, 8, 7, 5, 5], [7, 8, 8, 8, 8, 8, 5, 8, 7, 5, 7, 7, 7, 7, 8, 7, 7, 8, 7, 7, 7, 7, 5, 7, 8, 5, 8, 8, 8, 8], [8, 8, 5, 5, 8, 7, 8, 8, 7, 8, 7, 7, 7, 5, 7, 8, 8, 7, 5, 7, 7, 7, 8, 7, 8, 8, 7, 8, 5, 5], [7, 7, 8, 5, 8, 8, 8, 7, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 5, 7, 5, 5, 7, 7, 8, 8, 8, 5, 8], [8, 8, 7, 5, 5, 5, 8, 5, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 5, 7, 8, 8, 5, 8, 5, 5, 5, 7], [5, 7, 7, 7, 8, 5, 8, 5, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 5, 7, 8, 8, 8, 5, 8, 5, 8, 7, 7], [8, 5, 7, 8, 7, 8, 8, 5, 0, 0, 0, 0, 0, 0, 0, 7, 7, 5, 8, 5, 8, 8, 7, 5, 5, 8, 8, 7, 8, 7], [7, 8, 5, 8, 7, 8, 7, 5, 0, 0, 0, 0, 0, 0, 0, 8, 8, 7, 7, 7, 8, 8, 5, 7, 5, 7, 8, 7, 8, 5], [4, 9, 4, 9, 6, 9, 6, 4, 0, 0, 0, 0, 0, 0, 0, 5, 5, 8, 8, 7, 5, 5, 5, 5, 4, 6, 9, 6, 9, 4], [9, 9, 4, 9, 4, 9, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 7, 6, 4, 9, 4, 9, 4], [9, 9, 9, 6, 6, 6, 9, 9, 8, 8, 5, 5, 8, 0, 0, 0, 0, 0, 0, 8, 5, 5, 8, 8, 9, 9, 6, 6, 6, 9], [9, 9, 4, 6, 6, 6, 4, 6, 7, 7, 8, 5, 8, 0, 0, 0, 0, 0, 0, 8, 5, 8, 7, 7, 6, 4, 6, 6, 6, 4], [9, 4, 9, 4, 6, 6, 9, 9, 8, 8, 7, 5, 5, 0, 0, 0, 0, 0, 0, 5, 5, 7, 8, 8, 9, 9, 6, 6, 4, 9], [9, 9, 6, 9, 4, 9, 4, 4, 5, 7, 7, 7, 8, 0, 0, 0, 0, 0, 0, 8, 7, 7, 7, 5, 4, 4, 9, 4, 9, 6]], "output": [[9, 4, 9, 9, 9, 9, 9, 4, 7, 8, 5, 8, 7, 8, 7, 5, 5, 7, 8, 7, 8, 5, 8, 7, 4, 9, 9, 9, 9, 9], [4, 6, 9, 4, 9, 9, 9, 9, 8, 5, 7, 8, 7, 8, 8, 5, 5, 8, 8, 7, 8, 7, 5, 8, 9, 9, 9, 9, 4, 9], [9, 9, 6, 9, 4, 9, 4, 4, 5, 7, 7, 7, 8, 5, 8, 5, 5, 8, 5, 8, 7, 7, 7, 5, 4, 4, 9, 4, 9, 6], [9, 4, 9, 4, 6, 6, 9, 9, 8, 8, 7, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 7, 8, 8, 9, 9, 6, 6, 4, 9], [9, 9, 4, 6, 6, 6, 4, 6, 7, 7, 8, 5, 8, 8, 8, 7, 7, 8, 8, 8, 5, 8, 7, 7, 6, 4, 6, 6, 6, 4], [9, 9, 9, 6, 6, 6, 9, 9, 8, 8, 5, 5, 8, 7, 8, 8, 8, 8, 7, 8, 5, 5, 8, 8, 9, 9, 6, 6, 6, 9], [9, 9, 4, 9, 4, 9, 4, 6, 7, 8, 8, 8, 8, 8, 5, 8, 8, 5, 8, 8, 8, 8, 8, 7, 6, 4, 9, 4, 9, 4], [4, 9, 4, 9, 6, 9, 6, 4, 5, 5, 5, 5, 7, 8, 8, 5, 5, 8, 8, 7, 5, 5, 5, 5, 4, 6, 9, 6, 9, 4], [7, 8, 5, 8, 7, 8, 7, 5, 7, 5, 8, 8, 7, 7, 7, 8, 8, 7, 7, 7, 8, 8, 5, 7, 5, 7, 8, 7, 8, 5], [8, 5, 7, 8, 7, 8, 8, 5, 5, 7, 8, 8, 5, 8, 5, 7, 7, 5, 8, 5, 8, 8, 7, 5, 5, 8, 8, 7, 8, 7], [5, 7, 7, 7, 8, 5, 8, 5, 8, 8, 8, 7, 5, 7, 7, 7, 7, 7, 7, 5, 7, 8, 8, 8, 5, 8, 5, 8, 7, 7], [8, 8, 7, 5, 5, 5, 8, 5, 8, 8, 7, 5, 7, 7, 7, 7, 7, 7, 7, 7, 5, 7, 8, 8, 5, 8, 5, 5, 5, 7], [7, 7, 8, 5, 8, 8, 8, 7, 7, 5, 5, 7, 5, 7, 7, 7, 7, 7, 7, 5, 7, 5, 5, 7, 7, 8, 8, 8, 5, 8], [8, 8, 5, 5, 8, 7, 8, 8, 7, 8, 7, 7, 7, 5, 7, 8, 8, 7, 5, 7, 7, 7, 8, 7, 8, 8, 7, 8, 5, 5], [7, 8, 8, 8, 8, 8, 5, 8, 7, 5, 7, 7, 7, 7, 8, 7, 7, 8, 7, 7, 7, 7, 5, 7, 8, 5, 8, 8, 8, 8], [5, 5, 5, 5, 7, 8, 8, 5, 8, 7, 7, 7, 7, 8, 7, 8, 8, 7, 8, 7, 7, 7, 7, 8, 5, 8, 8, 7, 5, 5], [5, 5, 5, 5, 7, 8, 8, 5, 8, 7, 7, 7, 7, 8, 7, 8, 8, 7, 8, 7, 7, 7, 7, 8, 5, 8, 8, 7, 5, 5], [7, 8, 8, 8, 8, 8, 5, 8, 7, 5, 7, 7, 7, 7, 8, 7, 7, 8, 7, 7, 7, 7, 5, 7, 8, 5, 8, 8, 8, 8], [8, 8, 5, 5, 8, 7, 8, 8, 7, 8, 7, 7, 7, 5, 7, 8, 8, 7, 5, 7, 7, 7, 8, 7, 8, 8, 7, 8, 5, 5], [7, 7, 8, 5, 8, 8, 8, 7, 7, 5, 5, 7, 5, 7, 7, 7, 7, 7, 7, 5, 7, 5, 5, 7, 7, 8, 8, 8, 5, 8], [8, 8, 7, 5, 5, 5, 8, 5, 8, 8, 7, 5, 7, 7, 7, 7, 7, 7, 7, 7, 5, 7, 8, 8, 5, 8, 5, 5, 5, 7], [5, 7, 7, 7, 8, 5, 8, 5, 8, 8, 8, 7, 5, 7, 7, 7, 7, 7, 7, 5, 7, 8, 8, 8, 5, 8, 5, 8, 7, 7], [8, 5, 7, 8, 7, 8, 8, 5, 5, 7, 8, 8, 5, 8, 5, 7, 7, 5, 8, 5, 8, 8, 7, 5, 5, 8, 8, 7, 8, 7], [7, 8, 5, 8, 7, 8, 7, 5, 7, 5, 8, 8, 7, 7, 7, 8, 8, 7, 7, 7, 8, 8, 5, 7, 5, 7, 8, 7, 8, 5], [4, 9, 4, 9, 6, 9, 6, 4, 5, 5, 5, 5, 7, 8, 8, 5, 5, 8, 8, 7, 5, 5, 5, 5, 4, 6, 9, 6, 9, 4], [9, 9, 4, 9, 4, 9, 4, 6, 7, 8, 8, 8, 8, 8, 5, 8, 8, 5, 8, 8, 8, 8, 8, 7, 6, 4, 9, 4, 9, 4], [9, 9, 9, 6, 6, 6, 9, 9, 8, 8, 5, 5, 8, 7, 8, 8, 8, 8, 7, 8, 5, 5, 8, 8, 9, 9, 6, 6, 6, 9], [9, 9, 4, 6, 6, 6, 4, 6, 7, 7, 8, 5, 8, 8, 8, 7, 7, 8, 8, 8, 5, 8, 7, 7, 6, 4, 6, 6, 6, 4], [9, 4, 9, 4, 6, 6, 9, 9, 8, 8, 7, 5, 5, 5, 8, 5, 5, 8, 5, 5, 5, 7, 8, 8, 9, 9, 6, 6, 4, 9], [9, 9, 6, 9, 4, 9, 4, 4, 5, 7, 7, 7, 8, 5, 8, 5, 5, 8, 5, 8, 7, 7, 7, 5, 4, 4, 9, 4, 9, 6]]}, {"input": [[6, 4, 4, 6, 3, 6, 4, 4, 8, 6, 8, 6, 8, 8, 4, 8, 8, 4, 8, 8, 6, 8, 6, 8, 4, 4, 6, 3, 6, 4], [4, 6, 6, 6, 3, 4, 4, 3, 6, 4, 8, 8, 8, 4, 8, 8, 8, 8, 4, 8, 8, 8, 4, 6, 3, 4, 4, 3, 6, 6], [4, 6, 4, 6, 3, 4, 6, 4, 8, 8, 8, 4, 4, 4, 4, 6, 6, 4, 4, 4, 4, 8, 8, 8, 4, 6, 4, 3, 6, 4], [6, 6, 6, 4, 3, 3, 6, 6, 6, 8, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 8, 6, 6, 6, 3, 3, 4, 6], [3, 3, 3, 3, 6, 6, 4, 4, 8, 8, 4, 8, 6, 8, 8, 6, 6, 8, 8, 6, 8, 4, 8, 8, 4, 4, 6, 6, 3, 3], [0, 0, 0, 3, 6, 4, 6, 4, 8, 4, 4, 8, 8, 8, 8, 8, 0, 0, 8, 8, 8, 4, 4, 8, 4, 6, 4, 6, 3, 4], [0, 0, 0, 6, 4, 6, 4, 6, 4, 8, 4, 8, 8, 8, 8, 8, 0, 0, 8, 8, 8, 4, 8, 4, 6, 4, 6, 4, 6, 6], [0, 0, 0, 6, 4, 4, 6, 3, 8, 8, 6, 8, 6, 8, 8, 4, 0, 0, 8, 6, 8, 6, 8, 8, 3, 6, 4, 4, 6, 4], [8, 6, 8, 6, 8, 8, 4, 8, 1, 6, 6, 1, 5, 5, 6, 1, 0, 0, 5, 5, 1, 6, 6, 1, 8, 4, 8, 8, 6, 8], [6, 4, 8, 8, 8, 4, 8, 8, 6, 1, 6, 5, 1, 1, 5, 6, 0, 0, 1, 1, 5, 6, 1, 6, 8, 8, 4, 8, 8, 8], [8, 8, 8, 4, 4, 4, 4, 6, 6, 6, 5, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 5, 6, 6, 6, 4, 4, 4, 4, 8], [6, 8, 4, 8, 8, 8, 8, 8, 1, 5, 6, 5, 6, 1, 6, 1, 1, 6, 1, 6, 5, 6, 5, 1, 8, 8, 8, 8, 8, 4], [8, 8, 4, 8, 6, 8, 8, 6, 5, 1, 6, 6, 6, 6, 6, 5, 5, 6, 6, 6, 6, 6, 1, 5, 6, 8, 8, 6, 8, 4], [8, 4, 4, 8, 8, 8, 8, 8, 5, 1, 6, 1, 6, 1, 5, 6, 6, 5, 1, 6, 1, 6, 1, 5, 8, 8, 8, 8, 8, 4], [4, 8, 4, 8, 8, 8, 8, 8, 6, 5, 1, 6, 6, 5, 1, 6, 6, 1, 5, 6, 6, 1, 5, 6, 8, 8, 8, 8, 8, 4], [8, 8, 6, 8, 6, 8, 8, 4, 1, 6, 1, 1, 5, 6, 6, 1, 1, 6, 6, 5, 1, 1, 6, 1, 4, 8, 8, 6, 8, 6], [8, 8, 6, 8, 6, 8, 8, 4, 1, 6, 1, 1, 5, 6, 6, 1, 1, 6, 6, 5, 1, 1, 6, 1, 4, 8, 8, 6, 8, 6], [4, 8, 4, 8, 8, 8, 8, 8, 6, 5, 1, 6, 6, 5, 1, 6, 6, 1, 5, 6, 6, 1, 5, 6, 8, 8, 8, 8, 8, 4], [8, 4, 4, 8, 8, 8, 8, 8, 5, 1, 6, 1, 6, 1, 5, 6, 6, 5, 1, 6, 1, 6, 1, 5, 8, 8, 8, 8, 8, 4], [8, 8, 4, 8, 6, 8, 8, 6, 5, 1, 6, 6, 6, 6, 6, 5, 5, 6, 6, 6, 6, 6, 1, 5, 6, 8, 8, 6, 8, 4], [6, 8, 4, 8, 8, 8, 8, 8, 1, 5, 6, 5, 6, 1, 6, 1, 1, 6, 1, 6, 5, 6, 5, 1, 8, 8, 8, 8, 8, 4], [8, 8, 8, 4, 4, 4, 4, 6, 6, 6, 5, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 5, 6, 6, 6, 4, 4, 4, 4, 8], [6, 4, 8, 8, 8, 4, 8, 8, 6, 1, 6, 5, 1, 1, 5, 6, 6, 5, 1, 1, 5, 6, 1, 6, 8, 8, 4, 8, 8, 8], [8, 6, 8, 6, 8, 8, 4, 8, 1, 6, 6, 1, 5, 5, 6, 1, 1, 6, 5, 5, 1, 6, 6, 1, 8, 4, 8, 8, 6, 8], [4, 3, 4, 6, 4, 4, 6, 3, 8, 8, 6, 8, 6, 8, 8, 4, 4, 8, 8, 6, 8, 6, 8, 8, 3, 6, 0, 0, 0, 4], [4, 4, 6, 6, 4, 6, 4, 6, 4, 8, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 8, 4, 6, 4, 0, 0, 0, 6], [6, 4, 4, 3, 6, 4, 6, 4, 8, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 8, 4, 6, 0, 0, 0, 4], [3, 3, 3, 3, 6, 6, 4, 4, 8, 8, 4, 8, 6, 8, 8, 6, 6, 8, 8, 6, 8, 4, 8, 8, 4, 4, 0, 0, 0, 3], [6, 6, 6, 4, 3, 3, 6, 6, 6, 8, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 8, 6, 6, 6, 0, 0, 0, 6], [4, 6, 4, 6, 3, 4, 6, 4, 8, 8, 8, 4, 4, 4, 4, 6, 6, 4, 4, 4, 4, 8, 8, 8, 4, 6, 4, 3, 6, 4]], "output": [[6, 4, 4, 6, 3, 6, 4, 4, 8, 6, 8, 6, 8, 8, 4, 8, 8, 4, 8, 8, 6, 8, 6, 8, 4, 4, 6, 3, 6, 4], [4, 6, 6, 6, 3, 4, 4, 3, 6, 4, 8, 8, 8, 4, 8, 8, 8, 8, 4, 8, 8, 8, 4, 6, 3, 4, 4, 3, 6, 6], [4, 6, 4, 6, 3, 4, 6, 4, 8, 8, 8, 4, 4, 4, 4, 6, 6, 4, 4, 4, 4, 8, 8, 8, 4, 6, 4, 3, 6, 4], [6, 6, 6, 4, 3, 3, 6, 6, 6, 8, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 8, 6, 6, 6, 3, 3, 4, 6], [3, 3, 3, 3, 6, 6, 4, 4, 8, 8, 4, 8, 6, 8, 8, 6, 6, 8, 8, 6, 8, 4, 8, 8, 4, 4, 6, 6, 3, 3], [6, 4, 4, 3, 6, 4, 6, 4, 8, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 8, 4, 6, 4, 6, 3, 4], [4, 4, 6, 6, 4, 6, 4, 6, 4, 8, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 8, 4, 6, 4, 6, 4, 6, 6], [4, 3, 4, 6, 4, 4, 6, 3, 8, 8, 6, 8, 6, 8, 8, 4, 4, 8, 8, 6, 8, 6, 8, 8, 3, 6, 4, 4, 6, 4], [8, 6, 8, 6, 8, 8, 4, 8, 1, 6, 6, 1, 5, 5, 6, 1, 1, 6, 5, 5, 1, 6, 6, 1, 8, 4, 8, 8, 6, 8], [6, 4, 8, 8, 8, 4, 8, 8, 6, 1, 6, 5, 1, 1, 5, 6, 6, 5, 1, 1, 5, 6, 1, 6, 8, 8, 4, 8, 8, 8], [8, 8, 8, 4, 4, 4, 4, 6, 6, 6, 5, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 5, 6, 6, 6, 4, 4, 4, 4, 8], [6, 8, 4, 8, 8, 8, 8, 8, 1, 5, 6, 5, 6, 1, 6, 1, 1, 6, 1, 6, 5, 6, 5, 1, 8, 8, 8, 8, 8, 4], [8, 8, 4, 8, 6, 8, 8, 6, 5, 1, 6, 6, 6, 6, 6, 5, 5, 6, 6, 6, 6, 6, 1, 5, 6, 8, 8, 6, 8, 4], [8, 4, 4, 8, 8, 8, 8, 8, 5, 1, 6, 1, 6, 1, 5, 6, 6, 5, 1, 6, 1, 6, 1, 5, 8, 8, 8, 8, 8, 4], [4, 8, 4, 8, 8, 8, 8, 8, 6, 5, 1, 6, 6, 5, 1, 6, 6, 1, 5, 6, 6, 1, 5, 6, 8, 8, 8, 8, 8, 4], [8, 8, 6, 8, 6, 8, 8, 4, 1, 6, 1, 1, 5, 6, 6, 1, 1, 6, 6, 5, 1, 1, 6, 1, 4, 8, 8, 6, 8, 6], [8, 8, 6, 8, 6, 8, 8, 4, 1, 6, 1, 1, 5, 6, 6, 1, 1, 6, 6, 5, 1, 1, 6, 1, 4, 8, 8, 6, 8, 6], [4, 8, 4, 8, 8, 8, 8, 8, 6, 5, 1, 6, 6, 5, 1, 6, 6, 1, 5, 6, 6, 1, 5, 6, 8, 8, 8, 8, 8, 4], [8, 4, 4, 8, 8, 8, 8, 8, 5, 1, 6, 1, 6, 1, 5, 6, 6, 5, 1, 6, 1, 6, 1, 5, 8, 8, 8, 8, 8, 4], [8, 8, 4, 8, 6, 8, 8, 6, 5, 1, 6, 6, 6, 6, 6, 5, 5, 6, 6, 6, 6, 6, 1, 5, 6, 8, 8, 6, 8, 4], [6, 8, 4, 8, 8, 8, 8, 8, 1, 5, 6, 5, 6, 1, 6, 1, 1, 6, 1, 6, 5, 6, 5, 1, 8, 8, 8, 8, 8, 4], [8, 8, 8, 4, 4, 4, 4, 6, 6, 6, 5, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 5, 6, 6, 6, 4, 4, 4, 4, 8], [6, 4, 8, 8, 8, 4, 8, 8, 6, 1, 6, 5, 1, 1, 5, 6, 6, 5, 1, 1, 5, 6, 1, 6, 8, 8, 4, 8, 8, 8], [8, 6, 8, 6, 8, 8, 4, 8, 1, 6, 6, 1, 5, 5, 6, 1, 1, 6, 5, 5, 1, 6, 6, 1, 8, 4, 8, 8, 6, 8], [4, 3, 4, 6, 4, 4, 6, 3, 8, 8, 6, 8, 6, 8, 8, 4, 4, 8, 8, 6, 8, 6, 8, 8, 3, 6, 4, 4, 6, 4], [4, 4, 6, 6, 4, 6, 4, 6, 4, 8, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 8, 4, 6, 4, 6, 4, 6, 6], [6, 4, 4, 3, 6, 4, 6, 4, 8, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 8, 4, 6, 4, 6, 3, 4], [3, 3, 3, 3, 6, 6, 4, 4, 8, 8, 4, 8, 6, 8, 8, 6, 6, 8, 8, 6, 8, 4, 8, 8, 4, 4, 6, 6, 3, 3], [6, 6, 6, 4, 3, 3, 6, 6, 6, 8, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 8, 6, 6, 6, 3, 3, 4, 6], [4, 6, 4, 6, 3, 4, 6, 4, 8, 8, 8, 4, 4, 4, 4, 6, 6, 4, 4, 4, 4, 8, 8, 8, 4, 6, 4, 3, 6, 4]]}, {"input": [[8, 7, 8, 8, 7, 7, 8, 7, 9, 5, 5, 9, 9, 9, 5, 9, 9, 5, 9, 9, 9, 5, 5, 9, 7, 8, 7, 7, 8, 8], [7, 8, 8, 7, 7, 5, 7, 7, 5, 9, 9, 9, 5, 3, 9, 3, 3, 9, 3, 5, 9, 9, 9, 5, 7, 7, 5, 7, 7, 8], [8, 8, 5, 8, 7, 5, 7, 8, 5, 9, 3, 9, 3, 3, 9, 3, 3, 9, 3, 3, 9, 3, 9, 5, 8, 7, 5, 7, 8, 5], [8, 7, 8, 5, 7, 8, 8, 8, 9, 9, 9, 3, 5, 5, 9, 9, 9, 9, 5, 5, 3, 9, 9, 9, 8, 8, 8, 7, 5, 8], [7, 7, 7, 7, 5, 7, 8, 8, 9, 5, 3, 5, 3, 5, 9, 9, 9, 9, 5, 3, 5, 3, 5, 9, 8, 8, 7, 5, 7, 7], [7, 5, 5, 8, 7, 7, 8, 7, 9, 3, 3, 5, 5, 5, 3, 9, 9, 3, 5, 5, 5, 3, 3, 9, 7, 8, 7, 7, 8, 5], [8, 7, 7, 8, 8, 8, 8, 7, 5, 9, 9, 9, 9, 3, 9, 3, 3, 9, 3, 9, 9, 9, 9, 5, 7, 8, 8, 8, 8, 7], [7, 7, 8, 8, 8, 7, 7, 8, 9, 3, 3, 9, 9, 9, 3, 9, 9, 3, 9, 9, 9, 3, 3, 9, 8, 7, 7, 8, 8, 8], [9, 5, 5, 9, 9, 9, 5, 9, 3, 8, 8, 8, 8, 3, 7, 7, 7, 7, 3, 8, 8, 8, 8, 3, 9, 5, 9, 9, 9, 5], [5, 9, 9, 9, 5, 3, 9, 3, 8, 3, 8, 8, 7, 3, 8, 8, 8, 8, 3, 7, 8, 8, 3, 8, 3, 9, 3, 5, 9, 9], [5, 9, 3, 9, 3, 3, 9, 3, 8, 8, 7, 8, 7, 3, 7, 7, 7, 7, 3, 7, 8, 7, 8, 8, 3, 9, 3, 3, 9, 3], [9, 9, 9, 3, 5, 5, 9, 9, 8, 8, 8, 7, 8, 3, 3, 7, 7, 3, 3, 8, 7, 8, 8, 8, 9, 9, 5, 5, 3, 9], [9, 5, 3, 5, 3, 5, 9, 9, 8, 7, 7, 8, 3, 8, 8, 8, 8, 8, 8, 3, 8, 7, 7, 8, 9, 9, 5, 3, 5, 3], [9, 3, 3, 5, 5, 5, 3, 9, 3, 3, 3, 3, 8, 7, 3, 7, 7, 3, 7, 8, 3, 3, 3, 3, 9, 3, 5, 5, 5, 3], [5, 9, 9, 9, 9, 3, 9, 3, 7, 8, 7, 3, 8, 3, 8, 8, 8, 8, 3, 8, 3, 7, 8, 0, 0, 0, 0, 0, 9, 9], [9, 3, 3, 9, 9, 9, 3, 9, 7, 8, 7, 7, 8, 7, 8, 8, 8, 8, 7, 8, 7, 7, 8, 0, 0, 0, 0, 0, 9, 3], [9, 3, 3, 9, 9, 9, 3, 9, 7, 8, 7, 7, 8, 7, 8, 8, 8, 8, 7, 8, 7, 7, 8, 0, 0, 0, 0, 0, 9, 3], [5, 9, 9, 9, 9, 3, 9, 3, 7, 8, 7, 3, 8, 3, 8, 8, 8, 8, 3, 8, 3, 7, 8, 0, 0, 0, 0, 0, 9, 9], [9, 3, 3, 5, 5, 5, 3, 9, 3, 0, 0, 0, 0, 0, 3, 7, 7, 3, 7, 8, 3, 3, 3, 0, 0, 0, 0, 0, 5, 3], [9, 5, 3, 5, 3, 5, 9, 9, 8, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 3, 8, 7, 7, 0, 0, 0, 0, 0, 5, 3], [9, 9, 9, 3, 5, 5, 9, 9, 8, 8, 8, 7, 8, 3, 3, 7, 7, 3, 3, 8, 7, 8, 8, 0, 0, 0, 0, 0, 3, 9], [5, 9, 3, 9, 3, 3, 9, 3, 8, 8, 7, 8, 7, 3, 7, 7, 7, 7, 3, 7, 8, 7, 8, 8, 3, 9, 3, 3, 9, 3], [5, 9, 9, 9, 5, 3, 9, 3, 8, 3, 8, 8, 7, 0, 0, 8, 8, 8, 3, 7, 8, 8, 3, 8, 3, 9, 3, 5, 9, 9], [9, 5, 5, 9, 9, 9, 5, 9, 3, 8, 8, 8, 8, 0, 0, 7, 7, 7, 3, 8, 8, 8, 8, 3, 9, 5, 9, 9, 9, 5], [7, 7, 8, 8, 8, 7, 7, 8, 9, 3, 3, 9, 9, 0, 0, 9, 9, 3, 9, 9, 9, 3, 3, 9, 8, 7, 7, 8, 8, 8], [8, 7, 7, 8, 8, 8, 8, 7, 5, 9, 9, 9, 9, 0, 0, 3, 3, 9, 3, 9, 9, 9, 9, 5, 7, 8, 8, 8, 8, 7], [7, 5, 5, 8, 7, 7, 8, 7, 9, 3, 3, 5, 5, 0, 0, 9, 9, 3, 5, 5, 5, 3, 3, 9, 7, 8, 7, 7, 8, 5], [7, 7, 7, 7, 5, 7, 8, 8, 9, 5, 3, 5, 3, 0, 0, 9, 9, 9, 5, 3, 5, 3, 5, 9, 8, 8, 7, 5, 7, 7], [8, 7, 8, 5, 7, 8, 8, 8, 9, 9, 9, 3, 5, 0, 0, 9, 9, 9, 5, 5, 3, 9, 9, 9, 8, 8, 8, 7, 5, 8], [8, 8, 5, 8, 7, 5, 7, 8, 5, 9, 3, 9, 3, 3, 9, 3, 3, 9, 3, 3, 9, 3, 9, 5, 8, 7, 5, 7, 8, 5]], "output": [[8, 7, 8, 8, 7, 7, 8, 7, 9, 5, 5, 9, 9, 9, 5, 9, 9, 5, 9, 9, 9, 5, 5, 9, 7, 8, 7, 7, 8, 8], [7, 8, 8, 7, 7, 5, 7, 7, 5, 9, 9, 9, 5, 3, 9, 3, 3, 9, 3, 5, 9, 9, 9, 5, 7, 7, 5, 7, 7, 8], [8, 8, 5, 8, 7, 5, 7, 8, 5, 9, 3, 9, 3, 3, 9, 3, 3, 9, 3, 3, 9, 3, 9, 5, 8, 7, 5, 7, 8, 5], [8, 7, 8, 5, 7, 8, 8, 8, 9, 9, 9, 3, 5, 5, 9, 9, 9, 9, 5, 5, 3, 9, 9, 9, 8, 8, 8, 7, 5, 8], [7, 7, 7, 7, 5, 7, 8, 8, 9, 5, 3, 5, 3, 5, 9, 9, 9, 9, 5, 3, 5, 3, 5, 9, 8, 8, 7, 5, 7, 7], [7, 5, 5, 8, 7, 7, 8, 7, 9, 3, 3, 5, 5, 5, 3, 9, 9, 3, 5, 5, 5, 3, 3, 9, 7, 8, 7, 7, 8, 5], [8, 7, 7, 8, 8, 8, 8, 7, 5, 9, 9, 9, 9, 3, 9, 3, 3, 9, 3, 9, 9, 9, 9, 5, 7, 8, 8, 8, 8, 7], [7, 7, 8, 8, 8, 7, 7, 8, 9, 3, 3, 9, 9, 9, 3, 9, 9, 3, 9, 9, 9, 3, 3, 9, 8, 7, 7, 8, 8, 8], [9, 5, 5, 9, 9, 9, 5, 9, 3, 8, 8, 8, 8, 3, 7, 7, 7, 7, 3, 8, 8, 8, 8, 3, 9, 5, 9, 9, 9, 5], [5, 9, 9, 9, 5, 3, 9, 3, 8, 3, 8, 8, 7, 3, 8, 8, 8, 8, 3, 7, 8, 8, 3, 8, 3, 9, 3, 5, 9, 9], [5, 9, 3, 9, 3, 3, 9, 3, 8, 8, 7, 8, 7, 3, 7, 7, 7, 7, 3, 7, 8, 7, 8, 8, 3, 9, 3, 3, 9, 3], [9, 9, 9, 3, 5, 5, 9, 9, 8, 8, 8, 7, 8, 3, 3, 7, 7, 3, 3, 8, 7, 8, 8, 8, 9, 9, 5, 5, 3, 9], [9, 5, 3, 5, 3, 5, 9, 9, 8, 7, 7, 8, 3, 8, 8, 8, 8, 8, 8, 3, 8, 7, 7, 8, 9, 9, 5, 3, 5, 3], [9, 3, 3, 5, 5, 5, 3, 9, 3, 3, 3, 3, 8, 7, 3, 7, 7, 3, 7, 8, 3, 3, 3, 3, 9, 3, 5, 5, 5, 3], [5, 9, 9, 9, 9, 3, 9, 3, 7, 8, 7, 3, 8, 3, 8, 8, 8, 8, 3, 8, 3, 7, 8, 7, 3, 9, 3, 9, 9, 9], [9, 3, 3, 9, 9, 9, 3, 9, 7, 8, 7, 7, 8, 7, 8, 8, 8, 8, 7, 8, 7, 7, 8, 7, 9, 3, 9, 9, 9, 3], [9, 3, 3, 9, 9, 9, 3, 9, 7, 8, 7, 7, 8, 7, 8, 8, 8, 8, 7, 8, 7, 7, 8, 7, 9, 3, 9, 9, 9, 3], [5, 9, 9, 9, 9, 3, 9, 3, 7, 8, 7, 3, 8, 3, 8, 8, 8, 8, 3, 8, 3, 7, 8, 7, 3, 9, 3, 9, 9, 9], [9, 3, 3, 5, 5, 5, 3, 9, 3, 3, 3, 3, 8, 7, 3, 7, 7, 3, 7, 8, 3, 3, 3, 3, 9, 3, 5, 5, 5, 3], [9, 5, 3, 5, 3, 5, 9, 9, 8, 7, 7, 8, 3, 8, 8, 8, 8, 8, 8, 3, 8, 7, 7, 8, 9, 9, 5, 3, 5, 3], [9, 9, 9, 3, 5, 5, 9, 9, 8, 8, 8, 7, 8, 3, 3, 7, 7, 3, 3, 8, 7, 8, 8, 8, 9, 9, 5, 5, 3, 9], [5, 9, 3, 9, 3, 3, 9, 3, 8, 8, 7, 8, 7, 3, 7, 7, 7, 7, 3, 7, 8, 7, 8, 8, 3, 9, 3, 3, 9, 3], [5, 9, 9, 9, 5, 3, 9, 3, 8, 3, 8, 8, 7, 3, 8, 8, 8, 8, 3, 7, 8, 8, 3, 8, 3, 9, 3, 5, 9, 9], [9, 5, 5, 9, 9, 9, 5, 9, 3, 8, 8, 8, 8, 3, 7, 7, 7, 7, 3, 8, 8, 8, 8, 3, 9, 5, 9, 9, 9, 5], [7, 7, 8, 8, 8, 7, 7, 8, 9, 3, 3, 9, 9, 9, 3, 9, 9, 3, 9, 9, 9, 3, 3, 9, 8, 7, 7, 8, 8, 8], [8, 7, 7, 8, 8, 8, 8, 7, 5, 9, 9, 9, 9, 3, 9, 3, 3, 9, 3, 9, 9, 9, 9, 5, 7, 8, 8, 8, 8, 7], [7, 5, 5, 8, 7, 7, 8, 7, 9, 3, 3, 5, 5, 5, 3, 9, 9, 3, 5, 5, 5, 3, 3, 9, 7, 8, 7, 7, 8, 5], [7, 7, 7, 7, 5, 7, 8, 8, 9, 5, 3, 5, 3, 5, 9, 9, 9, 9, 5, 3, 5, 3, 5, 9, 8, 8, 7, 5, 7, 7], [8, 7, 8, 5, 7, 8, 8, 8, 9, 9, 9, 3, 5, 5, 9, 9, 9, 9, 5, 5, 3, 9, 9, 9, 8, 8, 8, 7, 5, 8], [8, 8, 5, 8, 7, 5, 7, 8, 5, 9, 3, 9, 3, 3, 9, 3, 3, 9, 3, 3, 9, 3, 9, 5, 8, 7, 5, 7, 8, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/af24b4cc.json b/data/arc-agi/evaluation/af24b4cc.json
deleted file mode 100644
index c1adab7..0000000
--- a/data/arc-agi/evaluation/af24b4cc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 6, 6, 0, 9, 7, 0], [0, 8, 3, 0, 6, 3, 0, 9, 7, 0], [0, 3, 8, 0, 3, 6, 0, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 2, 2, 0, 6, 1, 0], [0, 2, 3, 0, 5, 5, 0, 1, 1, 0], [0, 2, 3, 0, 5, 5, 0, 1, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 3, 6, 7, 0], [0, 3, 5, 1, 0], [0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 5, 5, 0, 4, 4, 0], [0, 1, 1, 0, 3, 3, 0, 4, 4, 0], [0, 3, 3, 0, 5, 5, 0, 4, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 7, 1, 0, 9, 9, 0], [0, 2, 2, 0, 7, 7, 0, 1, 9, 0], [0, 2, 2, 0, 7, 1, 0, 9, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 1, 5, 4, 0], [0, 2, 7, 9, 0], [0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 5, 0, 8, 4, 0, 7, 7, 0], [0, 5, 3, 0, 8, 8, 0, 7, 6, 0], [0, 3, 3, 0, 8, 4, 0, 6, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 2, 2, 0, 1, 3, 0], [0, 4, 3, 0, 2, 2, 0, 1, 1, 0], [0, 3, 3, 0, 1, 2, 0, 1, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 3, 8, 7, 0], [0, 3, 2, 1, 0], [0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 3, 3, 0, 4, 4, 0], [0, 3, 1, 0, 8, 3, 0, 4, 4, 0], [0, 1, 1, 0, 3, 8, 0, 8, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 3, 5, 0, 2, 2, 0], [0, 6, 6, 0, 5, 5, 0, 2, 2, 0], [0, 2, 2, 0, 5, 3, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 1, 3, 4, 0], [0, 2, 5, 2, 0], [0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/b0722778.json b/data/arc-agi/evaluation/b0722778.json
deleted file mode 100644
index 0a7d1c2..0000000
--- a/data/arc-agi/evaluation/b0722778.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 4, 0, 5, 8, 0, 0, 2, 4], [4, 4, 0, 8, 8, 0, 0, 2, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 0, 9, 5, 0, 0, 3, 3], [9, 9, 0, 9, 5, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 4, 0, 4, 4, 0, 0, 8, 3], [2, 4, 0, 2, 2, 0, 0, 8, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 0, 9, 9], [1, 2, 0, 2, 1, 0, 0, 7, 9]], "output": [[5, 8], [5, 8], [0, 0], [2, 3], [2, 3], [0, 0], [3, 3], [8, 8], [0, 0], [9, 9], [9, 7]]}, {"input": [[2, 4, 0, 4, 2, 0, 0, 8, 6], [4, 4, 0, 4, 4, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 2, 1, 0, 0, 5, 5], [2, 2, 0, 2, 1, 0, 0, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 7, 0, 8, 3, 0, 0, 3, 3], [3, 3, 0, 8, 8, 0, 0, 3, 7]], "output": [[6, 8], [8, 8], [0, 0], [4, 5], [4, 5], [0, 0], [8, 8], [8, 3]]}], "test": [{"input": [[1, 1, 0, 1, 1, 0, 0, 4, 4], [2, 1, 0, 1, 2, 0, 0, 3, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 5, 2, 0, 0, 3, 3], [5, 5, 0, 5, 2, 0, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 0, 6, 8, 0, 0, 7, 7], [8, 8, 0, 6, 8, 0, 0, 4, 4]], "output": [[4, 4], [4, 3], [0, 0], [1, 3], [1, 3], [0, 0], [7, 4], [7, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/b0f4d537.json b/data/arc-agi/evaluation/b0f4d537.json
deleted file mode 100644
index fb2dbce..0000000
--- a/data/arc-agi/evaluation/b0f4d537.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 1, 0, 5, 0, 0, 0, 0, 4, 0, 0], [3, 3, 3, 5, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 5, 4, 0, 0, 0, 4, 0, 4], [2, 1, 2, 5, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 4, 0, 0, 0, 4, 0, 4], [5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 0, 0, 0, 0, 4, 0, 0]], "output": [[0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0], [3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0], [2, 2, 2, 2, 1, 2, 2], [0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0]]}, {"input": [[0, 2, 0, 1, 0, 5, 0, 4, 0, 0, 0, 4, 0], [3, 3, 3, 3, 3, 5, 4, 4, 0, 0, 0, 4, 4], [0, 2, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 5, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 4, 4, 0, 0, 0, 4, 4], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 4, 0, 0, 0, 4, 0]], "output": [[0, 2, 0, 0, 0, 1, 0], [3, 3, 3, 3, 3, 3, 3], [0, 2, 0, 0, 0, 1, 0], [0, 2, 0, 0, 0, 1, 0], [0, 2, 0, 0, 0, 1, 0], [0, 2, 0, 0, 0, 1, 0], [3, 3, 3, 3, 3, 3, 3], [0, 2, 0, 0, 0, 1, 0], [0, 2, 0, 0, 0, 1, 0]]}, {"input": [[0, 1, 0, 1, 0, 5, 0, 0, 4, 0, 0, 4, 0], [2, 1, 2, 1, 2, 5, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0], [3, 1, 3, 1, 3, 5, 4, 0, 4, 0, 0, 4, 4], [0, 1, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 4, 0, 4, 0, 0, 4, 4], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 4, 0, 0, 4, 0]], "output": [[0, 0, 1, 0, 0, 1, 0], [0, 0, 1, 0, 0, 1, 0], [0, 0, 1, 0, 0, 1, 0], [2, 2, 1, 2, 2, 1, 2], [0, 0, 1, 0, 0, 1, 0], [0, 0, 1, 0, 0, 1, 0], [0, 0, 1, 0, 0, 1, 0], [3, 3, 1, 3, 3, 1, 3], [0, 0, 1, 0, 0, 1, 0], [0, 0, 1, 0, 0, 1, 0], [0, 0, 1, 0, 0, 1, 0]]}, {"input": [[0, 0, 4, 0, 4, 0, 0, 5, 0, 2, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 5, 1, 2, 1, 3, 1], [0, 0, 0, 0, 0, 0, 0, 5, 0, 2, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [4, 0, 4, 0, 4, 0, 4, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 4, 0, 4, 0, 0, 5, 5, 5, 5, 5, 5]], "output": [[0, 0, 2, 0, 3, 0, 0], [0, 0, 2, 0, 3, 0, 0], [0, 0, 2, 0, 3, 0, 0], [0, 0, 2, 0, 3, 0, 0], [1, 1, 2, 1, 3, 1, 1], [0, 0, 2, 0, 3, 0, 0], [0, 0, 2, 0, 3, 0, 0]]}], "test": [{"input": [[0, 4, 0, 4, 0, 4, 0, 5, 0, 2, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 5, 3, 2, 3, 3, 3, 2, 3], [0, 0, 0, 0, 0, 0, 0, 5, 0, 2, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 5, 1, 1, 1, 2, 1, 1, 1], [4, 4, 0, 4, 0, 4, 4, 5, 0, 2, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5], [4, 4, 0, 4, 0, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5], [0, 4, 0, 4, 0, 4, 0, 5, 5, 5, 5, 5, 5, 5, 5]], "output": [[0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0], [3, 2, 3, 3, 3, 2, 3], [0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0], [1, 1, 1, 2, 1, 1, 1], [0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/b15fca0b.json b/data/arc-agi/evaluation/b15fca0b.json
deleted file mode 100644
index 02f2308..0000000
--- a/data/arc-agi/evaluation/b15fca0b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 1, 1, 1, 2], [0, 1, 0, 1, 0], [0, 1, 0, 1, 0], [0, 1, 0, 1, 0], [0, 0, 0, 0, 0]], "output": [[2, 1, 1, 1, 2], [4, 1, 0, 1, 4], [4, 1, 0, 1, 4], [4, 1, 0, 1, 4], [4, 4, 4, 4, 4]]}, {"input": [[0, 0, 0, 1, 2], [0, 0, 0, 1, 0], [0, 1, 0, 1, 0], [0, 1, 0, 0, 0], [2, 1, 0, 0, 0]], "output": [[0, 0, 0, 1, 2], [4, 4, 4, 1, 4], [4, 1, 4, 1, 4], [4, 1, 4, 4, 4], [2, 1, 0, 0, 0]]}, {"input": [[2, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0]], "output": [[2, 4, 4, 4, 4, 0], [1, 1, 1, 1, 4, 0], [0, 0, 4, 4, 4, 0], [0, 0, 4, 1, 1, 1], [0, 0, 4, 4, 4, 2], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 2], [0, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0], [2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[4, 4, 4, 4, 4, 2], [4, 1, 1, 1, 1, 1], [4, 4, 4, 4, 4, 4], [1, 1, 1, 1, 1, 4], [2, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 1, 1, 0, 0, 0, 1, 2], [0, 0, 0, 1, 1, 0, 0, 0, 1, 0], [0, 0, 0, 1, 1, 0, 0, 0, 1, 0], [0, 0, 0, 1, 1, 0, 0, 0, 1, 0], [0, 1, 0, 1, 1, 0, 1, 0, 1, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [2, 1, 0, 0, 0, 0, 1, 0, 0, 0]], "output": [[0, 0, 0, 1, 1, 0, 0, 0, 1, 2], [0, 0, 0, 1, 1, 0, 0, 0, 1, 4], [0, 0, 0, 1, 1, 0, 0, 0, 1, 4], [4, 4, 4, 1, 1, 4, 4, 4, 1, 4], [4, 1, 4, 1, 1, 4, 1, 4, 1, 4], [4, 1, 4, 4, 4, 4, 1, 4, 4, 4], [4, 1, 0, 0, 0, 0, 1, 0, 0, 0], [4, 1, 0, 0, 0, 0, 1, 0, 0, 0], [4, 1, 0, 0, 0, 0, 1, 0, 0, 0], [2, 1, 0, 0, 0, 0, 1, 0, 0, 0]]}], "test": [{"input": [[2, 1, 0, 0, 0, 1, 0, 0, 0, 2], [0, 1, 0, 0, 0, 1, 0, 1, 0, 0], [0, 1, 0, 1, 0, 1, 0, 1, 0, 0], [0, 1, 0, 1, 0, 1, 0, 1, 0, 0], [0, 1, 0, 1, 0, 1, 0, 1, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 1, 0, 1, 0, 1, 0, 0], [0, 0, 0, 1, 0, 1, 0, 1, 0, 0], [0, 0, 0, 1, 0, 1, 0, 1, 0, 0], [0, 0, 0, 1, 0, 1, 0, 0, 0, 0]], "output": [[2, 1, 0, 0, 0, 1, 4, 4, 4, 2], [4, 1, 4, 4, 4, 1, 4, 1, 0, 0], [4, 1, 4, 1, 4, 1, 4, 1, 0, 0], [4, 1, 4, 1, 4, 1, 4, 1, 0, 0], [4, 1, 4, 1, 4, 1, 4, 1, 0, 0], [4, 4, 4, 1, 4, 4, 4, 1, 0, 0], [0, 0, 0, 1, 0, 1, 0, 1, 0, 0], [0, 0, 0, 1, 0, 1, 0, 1, 0, 0], [0, 0, 0, 1, 0, 1, 0, 1, 0, 0], [0, 0, 0, 1, 0, 1, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/b1fc8b8e.json b/data/arc-agi/evaluation/b1fc8b8e.json
deleted file mode 100644
index 0f09d88..0000000
--- a/data/arc-agi/evaluation/b1fc8b8e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 8, 0, 0], [0, 0, 8, 8, 8, 0], [0, 8, 0, 8, 8, 0], [8, 8, 8, 0, 0, 0], [0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 0, 8], [8, 8, 0, 8, 8], [0, 0, 0, 0, 0], [0, 8, 0, 0, 8], [8, 8, 0, 8, 8]]}, {"input": [[8, 8, 8, 8, 0, 0], [8, 8, 8, 8, 8, 8], [0, 8, 8, 0, 8, 8], [0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[8, 8, 0, 8, 8], [8, 8, 0, 8, 8], [0, 0, 0, 0, 0], [8, 8, 0, 8, 8], [8, 8, 0, 8, 8]]}, {"input": [[0, 0, 0, 8, 0, 0], [0, 8, 8, 8, 8, 0], [8, 8, 8, 8, 8, 0], [0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 0, 8], [8, 8, 0, 8, 8], [0, 0, 0, 0, 0], [0, 8, 0, 0, 8], [8, 8, 0, 8, 8]]}, {"input": [[0, 0, 8, 8, 0, 0], [8, 8, 8, 8, 0, 0], [8, 8, 8, 8, 8, 8], [0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[8, 8, 0, 8, 8], [8, 8, 0, 8, 8], [0, 0, 0, 0, 0], [8, 8, 0, 8, 8], [8, 8, 0, 8, 8]]}, {"input": [[0, 0, 0, 8, 0, 0], [0, 8, 8, 8, 0, 0], [8, 8, 8, 0, 8, 0], [0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 0, 8], [8, 8, 0, 8, 8], [0, 0, 0, 0, 0], [0, 8, 0, 0, 8], [8, 8, 0, 8, 8]]}], "test": [{"input": [[0, 0, 8, 8, 0, 0], [8, 8, 8, 8, 0, 0], [8, 8, 0, 8, 8, 0], [0, 8, 8, 8, 8, 0], [0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[8, 8, 0, 8, 8], [8, 8, 0, 8, 8], [0, 0, 0, 0, 0], [8, 8, 0, 8, 8], [8, 8, 0, 8, 8]]}, {"input": [[0, 8, 0, 8, 0, 0], [8, 8, 8, 8, 8, 0], [0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 0, 8], [8, 8, 0, 8, 8], [0, 0, 0, 0, 0], [0, 8, 0, 0, 8], [8, 8, 0, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/b20f7c8b.json b/data/arc-agi/evaluation/b20f7c8b.json
deleted file mode 100644
index 429e7bb..0000000
--- a/data/arc-agi/evaluation/b20f7c8b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 0, 0], [8, 6, 8, 6, 8, 8, 0, 0, 2, 1, 1, 2, 2, 0, 0, 2, 1, 1, 2, 2, 0, 0], [8, 6, 8, 6, 8, 8, 0, 0, 2, 1, 2, 1, 2, 0, 0, 2, 2, 1, 2, 2, 0, 0], [8, 8, 6, 8, 8, 8, 0, 0, 2, 1, 1, 2, 2, 0, 0, 2, 1, 2, 1, 2, 0, 0], [8, 8, 8, 8, 5, 8, 0, 0, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 0, 0], [8, 8, 5, 5, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 5, 8, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 0, 0], [8, 4, 8, 8, 8, 8, 0, 0, 2, 1, 1, 1, 2, 0, 0, 2, 2, 1, 2, 2, 0, 0], [8, 4, 4, 4, 8, 8, 0, 0, 2, 2, 1, 2, 2, 0, 0, 2, 1, 2, 1, 2, 0, 0], [8, 4, 8, 8, 8, 8, 0, 0, 2, 2, 1, 2, 2, 0, 0, 2, 1, 2, 1, 2, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 3, 8, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 3, 3, 3, 3, 3, 0, 0, 5, 5, 5, 5, 5, 0, 0], [8, 6, 8, 6, 8, 8, 0, 0, 3, 3, 3, 3, 3, 0, 0, 5, 5, 5, 5, 5, 0, 0], [8, 6, 8, 6, 8, 8, 0, 0, 3, 3, 3, 3, 3, 0, 0, 5, 5, 5, 5, 5, 0, 0], [8, 8, 6, 8, 8, 8, 0, 0, 3, 3, 3, 3, 3, 0, 0, 5, 5, 5, 5, 5, 0, 0], [8, 8, 8, 8, 5, 8, 0, 0, 3, 3, 3, 3, 3, 0, 0, 5, 5, 5, 5, 5, 0, 0], [8, 8, 5, 5, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 5, 8, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 4, 4, 4, 4, 4, 0, 0, 6, 6, 6, 6, 6, 0, 0], [8, 4, 8, 8, 8, 8, 0, 0, 4, 4, 4, 4, 4, 0, 0, 6, 6, 6, 6, 6, 0, 0], [8, 4, 4, 4, 8, 8, 0, 0, 4, 4, 4, 4, 4, 0, 0, 6, 6, 6, 6, 6, 0, 0], [8, 4, 8, 8, 8, 8, 0, 0, 4, 4, 4, 4, 4, 0, 0, 6, 6, 6, 6, 6, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 4, 4, 4, 4, 4, 0, 0, 6, 6, 6, 6, 6, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 3, 8, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2, 8, 8, 8, 8], [0, 2, 2, 2, 2, 2, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 8, 8, 2, 2, 8, 8], [0, 2, 2, 1, 2, 2, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 8, 2, 8, 8, 8, 8], [0, 2, 2, 1, 2, 2, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 2, 1, 2, 1, 2, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 8, 8, 3, 3, 3, 8], [0, 2, 2, 2, 2, 2, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 8, 8, 8, 3, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 3, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 2, 1, 2, 2, 2, 0, 0, 2, 1, 2, 1, 2, 0, 0, 0, 8, 4, 4, 4, 8, 8], [0, 2, 2, 1, 1, 2, 0, 0, 2, 1, 1, 2, 2, 0, 0, 0, 8, 8, 4, 8, 8, 8], [0, 2, 2, 1, 1, 2, 0, 0, 2, 1, 2, 1, 2, 0, 0, 0, 8, 4, 8, 4, 8, 8], [0, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 7, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 7, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 7, 8, 8]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2, 8, 8, 8, 8], [0, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 8, 8, 2, 2, 8, 8], [0, 2, 2, 2, 2, 2, 0, 0, 2, 1, 1, 1, 2, 0, 0, 0, 8, 2, 8, 8, 8, 8], [0, 2, 2, 2, 2, 2, 0, 0, 2, 2, 1, 2, 2, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 2, 2, 2, 2, 2, 0, 0, 2, 1, 2, 2, 2, 0, 0, 0, 8, 8, 3, 3, 3, 8], [0, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 8, 8, 8, 3, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 3, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 7, 7, 7, 7, 7, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 7, 7, 7, 7, 7, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 8, 4, 4, 4, 8, 8], [0, 7, 7, 7, 7, 7, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 8, 8, 4, 8, 8, 8], [0, 7, 7, 7, 7, 7, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 8, 4, 8, 4, 8, 8], [0, 7, 7, 7, 7, 7, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 7, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 7, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 7, 8, 8]]}, {"input": [[8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 1, 1, 8, 8, 8, 0, 0, 2, 2, 2, 2, 2, 0, 0, 1, 1, 1, 1, 1, 0, 0], [8, 1, 8, 1, 8, 8, 0, 0, 2, 1, 2, 2, 2, 0, 0, 1, 1, 1, 1, 1, 0, 0], [8, 8, 1, 1, 8, 8, 0, 0, 2, 1, 1, 1, 2, 0, 0, 1, 1, 1, 1, 1, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 2, 2, 2, 1, 2, 0, 0, 1, 1, 1, 1, 1, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 2, 2, 2, 2, 2, 0, 0, 1, 1, 1, 1, 1, 0, 0], [8, 3, 3, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 3, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 3, 3, 8, 8, 0, 0, 6, 6, 6, 6, 6, 0, 0, 2, 2, 2, 2, 2, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 6, 6, 6, 6, 6, 0, 0, 2, 2, 1, 2, 2, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 6, 6, 6, 6, 6, 0, 0, 2, 1, 1, 1, 2, 0, 0], [8, 6, 6, 6, 8, 8, 0, 0, 6, 6, 6, 6, 6, 0, 0, 2, 2, 1, 2, 2, 0, 0], [8, 8, 6, 8, 8, 8, 0, 0, 6, 6, 6, 6, 6, 0, 0, 2, 2, 2, 2, 2, 0, 0], [8, 6, 8, 6, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 4, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 4, 4, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 4, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 1, 1, 8, 8, 8, 0, 0, 3, 3, 3, 3, 3, 0, 0, 2, 2, 2, 2, 2, 0, 0], [8, 1, 8, 1, 8, 8, 0, 0, 3, 3, 3, 3, 3, 0, 0, 2, 1, 1, 2, 2, 0, 0], [8, 8, 1, 1, 8, 8, 0, 0, 3, 3, 3, 3, 3, 0, 0, 2, 1, 2, 1, 2, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 3, 3, 3, 3, 3, 0, 0, 2, 2, 1, 1, 2, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 3, 3, 3, 3, 3, 0, 0, 2, 2, 2, 2, 2, 0, 0], [8, 3, 3, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 3, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 3, 3, 8, 8, 0, 0, 2, 2, 2, 2, 2, 0, 0, 4, 4, 4, 4, 4, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 2, 1, 1, 1, 2, 0, 0, 4, 4, 4, 4, 4, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 2, 2, 1, 2, 2, 0, 0, 4, 4, 4, 4, 4, 0, 0], [8, 6, 6, 6, 8, 8, 0, 0, 2, 1, 2, 1, 2, 0, 0, 4, 4, 4, 4, 4, 0, 0], [8, 8, 6, 8, 8, 8, 0, 0, 2, 2, 2, 2, 2, 0, 0, 4, 4, 4, 4, 4, 0, 0], [8, 6, 8, 6, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 4, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 4, 4, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 4, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 2, 2, 2, 2, 2, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 8, 8, 3, 8, 3, 8], [0, 2, 1, 1, 1, 2, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 8, 8, 3, 3, 3, 8], [0, 2, 2, 1, 2, 2, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 8, 8, 3, 8, 3, 8], [0, 2, 1, 1, 1, 2, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 2, 2, 2, 2, 2, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 4, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 8, 4, 8, 8], [0, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 8, 4, 4, 8, 8, 8], [0, 2, 1, 1, 1, 2, 0, 0, 2, 1, 2, 1, 2, 0, 0, 0, 8, 8, 8, 8, 6, 8], [0, 2, 1, 2, 1, 2, 0, 0, 2, 1, 1, 2, 2, 0, 0, 0, 8, 8, 8, 6, 6, 6], [0, 2, 2, 1, 2, 2, 0, 0, 2, 1, 2, 1, 2, 0, 0, 0, 8, 8, 8, 8, 6, 8], [0, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 8, 5, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 5, 5, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 8, 5, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 3, 3, 3, 3, 3, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 8, 8, 3, 8, 3, 8], [0, 3, 3, 3, 3, 3, 0, 0, 2, 2, 1, 2, 2, 0, 0, 0, 8, 8, 3, 3, 3, 8], [0, 3, 3, 3, 3, 3, 0, 0, 2, 1, 1, 1, 2, 0, 0, 0, 8, 8, 3, 8, 3, 8], [0, 3, 3, 3, 3, 3, 0, 0, 2, 2, 1, 2, 2, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 3, 3, 3, 3, 3, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 4, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 8, 4, 8, 8], [0, 4, 4, 4, 4, 4, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 8, 4, 4, 8, 8, 8], [0, 4, 4, 4, 4, 4, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 8, 8, 8, 8, 6, 8], [0, 4, 4, 4, 4, 4, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 8, 8, 8, 6, 6, 6], [0, 4, 4, 4, 4, 4, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 8, 8, 8, 8, 6, 8], [0, 4, 4, 4, 4, 4, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 8, 5, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 5, 5, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5, 8, 5, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/b457fec5.json b/data/arc-agi/evaluation/b457fec5.json
deleted file mode 100644
index 1cea626..0000000
--- a/data/arc-agi/evaluation/b457fec5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 3, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 3, 8, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 8, 1, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 1, 2, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 2, 3, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 3, 8, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 8, 1, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 2, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 3, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 4, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 1, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 2, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 8, 2, 0], [0, 2, 8, 8, 8, 8, 0, 0, 0, 0, 0, 3, 3, 3, 3, 8, 2, 0], [0, 2, 8, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 8, 0, 0], [0, 2, 8, 3, 2, 2, 2, 2, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0], [0, 0, 8, 3, 2, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 8, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 8, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 3, 4, 2, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 3, 4, 2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 1, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 3, 1, 0], [0, 1, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 4, 3, 1, 0], [0, 1, 3, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 4, 3, 1, 0], [0, 1, 3, 4, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 4, 3, 0, 0], [0, 1, 3, 4, 2, 1, 1, 1, 1, 1, 0, 0, 0, 0, 2, 2, 2, 2, 2, 4, 0, 0, 0], [0, 0, 3, 4, 2, 1, 3, 3, 3, 3, 3, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 4, 2, 1, 3, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 1, 3, 4, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 3, 4, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 4, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 3, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 3, 4, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 3, 4, 2, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 4, 2, 1, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 2, 1, 3, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 1, 3, 4, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 3, 4, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 4, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/b4a43f3b.json b/data/arc-agi/evaluation/b4a43f3b.json
deleted file mode 100644
index 06bbd0f..0000000
--- a/data/arc-agi/evaluation/b4a43f3b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 3, 2, 2, 0, 0], [3, 3, 2, 2, 0, 0], [0, 0, 2, 2, 0, 0], [0, 0, 2, 2, 0, 0], [0, 0, 6, 6, 1, 1], [0, 0, 6, 6, 1, 1], [5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0], [0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 0, 3, 2, 0, 3, 2, 0, 3, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 6, 1, 0, 6, 1, 0, 6, 1, 0, 6, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[1, 1, 3, 3, 6, 6], [1, 1, 3, 3, 6, 6], [0, 0, 1, 1, 0, 0], [0, 0, 1, 1, 0, 0], [2, 2, 2, 2, 1, 1], [2, 2, 2, 2, 1, 1], [5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 3, 6, 1, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 3, 6, 1, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[1, 1, 0, 0, 1, 1], [1, 1, 0, 0, 1, 1], [0, 0, 2, 2, 0, 0], [0, 0, 2, 2, 0, 0], [3, 3, 2, 2, 0, 0], [3, 3, 2, 2, 0, 0], [5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0], [0, 2, 2, 2, 2, 0], [0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 3, 2, 0, 3, 2, 0, 3, 2, 0, 3, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[1, 1, 0, 0, 1, 1], [1, 1, 0, 0, 1, 1], [0, 0, 1, 1, 0, 0], [0, 0, 1, 1, 0, 0], [3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3], [5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0], [0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 1, 1, 0, 0], [0, 0, 1, 1, 0, 0], [3, 3, 0, 0, 3, 3], [3, 3, 0, 0, 3, 3], [0, 0, 2, 2, 0, 0], [0, 0, 2, 2, 0, 0], [5, 5, 5, 5, 5, 5], [2, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2], [0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0]], "output": [[0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 3, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0], [3, 0, 3, 3, 0, 3, 3, 0, 3, 3, 0, 3, 3, 0, 3, 3, 0, 3], [0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/b7999b51.json b/data/arc-agi/evaluation/b7999b51.json
deleted file mode 100644
index 0c78b26..0000000
--- a/data/arc-agi/evaluation/b7999b51.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 7, 1, 2], [8, 7, 1, 0], [8, 7, 1, 0], [8, 7, 0, 0], [8, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 1, 3], [2, 1, 0], [2, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 8, 3], [4, 8, 0], [4, 8, 0], [4, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 2, 2, 2, 3, 3, 3, 3, 3, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 2, 2, 2, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 3, 2, 1, 8], [6, 3, 2, 1, 0], [6, 3, 2, 0, 0], [6, 3, 0, 0, 0], [6, 3, 0, 0, 0], [6, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/b7cb93ac.json b/data/arc-agi/evaluation/b7cb93ac.json
deleted file mode 100644
index a1ebfd5..0000000
--- a/data/arc-agi/evaluation/b7cb93ac.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 1], [1, 1, 1, 1], [1, 8, 8, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 3, 3, 3], [2, 2, 2, 3], [2, 8, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 1, 2, 2], [1, 1, 1, 1], [8, 1, 2, 2]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8], [8, 3, 6, 8], [3, 3, 6, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/b7f8a4d8.json b/data/arc-agi/evaluation/b7f8a4d8.json
deleted file mode 100644
index dd9811b..0000000
--- a/data/arc-agi/evaluation/b7f8a4d8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 2, 4, 2, 0, 0, 2, 4, 2, 0, 0, 2, 3, 2, 0, 0, 2, 3, 2, 0, 0, 2, 4, 2, 0, 0, 2, 4], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 2, 4, 2, 0, 0, 2, 1, 2, 0, 0, 2, 4, 2, 0, 0, 2, 4, 2, 0, 0, 2, 1, 2, 0, 0, 2, 4], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 2, 4, 2, 0, 0, 2, 4, 2, 0, 0, 2, 3, 2, 0, 0, 2, 3, 2, 0, 0, 2, 4, 2, 0, 0, 2, 4], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 2, 4, 2, 0, 0, 2, 1, 2, 0, 0, 2, 4, 2, 0, 0, 2, 4, 2, 0, 0, 2, 1, 2, 0, 0, 2, 4], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 2, 4, 2, 0, 0, 2, 4, 2, 0, 0, 2, 4, 2, 0, 0, 2, 4, 2, 0, 0, 2, 4, 2, 0, 0, 2, 4]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 2, 4, 2, 0, 0, 2, 4, 2, 0, 0, 2, 3, 2, 3, 3, 2, 3, 2, 0, 0, 2, 4, 2, 0, 0, 2, 4], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 2, 4, 2, 0, 0, 2, 1, 2, 1, 1, 2, 4, 2, 1, 1, 2, 4, 2, 1, 1, 2, 1, 2, 0, 0, 2, 4], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 2, 4, 2, 0, 0, 2, 4, 2, 0, 0, 2, 3, 2, 3, 3, 2, 3, 2, 0, 0, 2, 4, 2, 0, 0, 2, 4], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 2, 4, 2, 0, 0, 2, 1, 2, 1, 1, 2, 4, 2, 1, 1, 2, 4, 2, 1, 1, 2, 1, 2, 0, 0, 2, 4], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2], [0, 2, 4, 2, 0, 0, 2, 4, 2, 0, 0, 2, 4, 2, 0, 0, 2, 4, 2, 0, 0, 2, 4, 2, 0, 0, 2, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 8, 8, 3, 0, 3, 2, 2, 3, 0, 3, 8, 8], [0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 8, 8, 3, 0, 3, 2, 2, 3, 0, 3, 8, 8], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2], [0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 3, 2, 2, 3, 0, 3, 4, 4, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 4, 4, 3, 0, 3, 2, 2], [0, 3, 2, 2, 3, 0, 3, 4, 4, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 4, 4, 3, 0, 3, 2, 2], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 8, 8, 3, 0, 3, 2, 2, 3, 0, 3, 8, 8], [0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 8, 8, 3, 0, 3, 2, 2, 3, 0, 3, 8, 8], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 3, 2, 2, 3, 0, 3, 4, 4, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 4, 4, 3, 0, 3, 2, 2], [0, 3, 2, 2, 3, 0, 3, 4, 4, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 4, 4, 3, 0, 3, 2, 2]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 8, 8, 3, 8, 3, 2, 2, 3, 8, 3, 8, 8], [0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 8, 8, 3, 8, 3, 2, 2, 3, 8, 3, 8, 8], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2], [0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 3, 2, 2, 3, 0, 3, 4, 4, 3, 4, 3, 2, 2, 3, 4, 3, 2, 2, 3, 4, 3, 4, 4, 3, 0, 3, 2, 2], [0, 3, 2, 2, 3, 0, 3, 4, 4, 3, 4, 3, 2, 2, 3, 4, 3, 2, 2, 3, 4, 3, 4, 4, 3, 0, 3, 2, 2], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 4, 4, 0, 0, 0, 8, 8], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 8, 8, 3, 8, 3, 2, 2, 3, 8, 3, 8, 8], [0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 2, 2, 3, 0, 3, 8, 8, 3, 8, 3, 2, 2, 3, 8, 3, 8, 8], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 3, 2, 2, 3, 0, 3, 4, 4, 3, 4, 3, 2, 2, 3, 4, 3, 2, 2, 3, 4, 3, 4, 4, 3, 0, 3, 2, 2], [0, 3, 2, 2, 3, 0, 3, 4, 4, 3, 4, 3, 2, 2, 3, 4, 3, 2, 2, 3, 4, 3, 4, 4, 3, 0, 3, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 1, 3, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 3, 1, 0, 0, 0, 1, 2, 1, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 1, 3, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 3, 1, 0, 0, 0, 1, 2, 1, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 1, 3, 1, 3, 3, 3, 1, 2, 1, 3, 3, 3, 1, 2, 1, 3, 3, 3, 1, 3, 1, 0, 0, 0, 1, 2, 1, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 1, 2, 1, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 1, 3, 1, 3, 3, 3, 1, 2, 1, 3, 3, 3, 1, 2, 1, 3, 3, 3, 1, 3, 1, 0, 0, 0, 1, 2, 1, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4], [0, 4, 3, 3, 3, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4, 3, 3, 3, 4, 0, 0, 4], [0, 4, 3, 3, 3, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4, 3, 3, 3, 4, 0, 0, 4], [0, 4, 3, 3, 3, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4, 3, 3, 3, 4, 0, 0, 4], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4], [0, 4, 2, 2, 2, 4, 0, 0, 4, 8, 8, 8, 4, 0, 0, 4, 8, 8, 8, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4], [0, 4, 2, 2, 2, 4, 0, 0, 4, 8, 8, 8, 4, 0, 0, 4, 8, 8, 8, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4], [0, 4, 2, 2, 2, 4, 0, 0, 4, 8, 8, 8, 4, 0, 0, 4, 8, 8, 8, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4], [0, 4, 3, 3, 3, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4, 3, 3, 3, 4, 0, 0, 4], [0, 4, 3, 3, 3, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4, 3, 3, 3, 4, 0, 0, 4], [0, 4, 3, 3, 3, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4, 3, 3, 3, 4, 0, 0, 4], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4], [0, 4, 2, 2, 2, 4, 0, 0, 4, 8, 8, 8, 4, 0, 0, 4, 8, 8, 8, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4], [0, 4, 2, 2, 2, 4, 0, 0, 4, 8, 8, 8, 4, 0, 0, 4, 8, 8, 8, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4], [0, 4, 2, 2, 2, 4, 0, 0, 4, 8, 8, 8, 4, 0, 0, 4, 8, 8, 8, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4], [0, 4, 3, 3, 3, 4, 3, 3, 4, 2, 2, 2, 4, 3, 3, 4, 2, 2, 2, 4, 3, 3, 4, 3, 3, 3, 4, 0, 0, 4], [0, 4, 3, 3, 3, 4, 3, 3, 4, 2, 2, 2, 4, 3, 3, 4, 2, 2, 2, 4, 3, 3, 4, 3, 3, 3, 4, 0, 0, 4], [0, 4, 3, 3, 3, 4, 3, 3, 4, 2, 2, 2, 4, 3, 3, 4, 2, 2, 2, 4, 3, 3, 4, 3, 3, 3, 4, 0, 0, 4], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4], [0, 4, 2, 2, 2, 4, 0, 0, 4, 8, 8, 8, 4, 8, 8, 4, 8, 8, 8, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4], [0, 4, 2, 2, 2, 4, 0, 0, 4, 8, 8, 8, 4, 8, 8, 4, 8, 8, 8, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4], [0, 4, 2, 2, 2, 4, 0, 0, 4, 8, 8, 8, 4, 8, 8, 4, 8, 8, 8, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4], [0, 0, 3, 3, 3, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4], [0, 4, 3, 3, 3, 4, 3, 3, 4, 2, 2, 2, 4, 3, 3, 4, 2, 2, 2, 4, 3, 3, 4, 3, 3, 3, 4, 0, 0, 4], [0, 4, 3, 3, 3, 4, 3, 3, 4, 2, 2, 2, 4, 3, 3, 4, 2, 2, 2, 4, 3, 3, 4, 3, 3, 3, 4, 0, 0, 4], [0, 4, 3, 3, 3, 4, 3, 3, 4, 2, 2, 2, 4, 3, 3, 4, 2, 2, 2, 4, 3, 3, 4, 3, 3, 3, 4, 0, 0, 4], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4], [0, 4, 2, 2, 2, 4, 0, 0, 4, 8, 8, 8, 4, 8, 8, 4, 8, 8, 8, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4], [0, 4, 2, 2, 2, 4, 0, 0, 4, 8, 8, 8, 4, 8, 8, 4, 8, 8, 8, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4], [0, 4, 2, 2, 2, 4, 0, 0, 4, 8, 8, 8, 4, 8, 8, 4, 8, 8, 8, 4, 0, 0, 4, 2, 2, 2, 4, 0, 0, 4], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/b7fb29bc.json b/data/arc-agi/evaluation/b7fb29bc.json
deleted file mode 100644
index fe12c8a..0000000
--- a/data/arc-agi/evaluation/b7fb29bc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 4, 4, 4, 4, 4, 4, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 2, 2, 2, 2, 2, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 2, 4, 4, 4, 2, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 2, 4, 3, 4, 2, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 2, 4, 4, 4, 2, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 2, 2, 2, 2, 2, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 4, 4, 4, 4, 4, 4, 3, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 4, 4, 4, 4, 4, 4, 4, 3, 0, 0, 0], [0, 0, 0, 3, 2, 2, 2, 2, 2, 2, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 4, 4, 4, 4, 2, 4, 3, 0, 0, 0], [0, 0, 0, 3, 2, 2, 2, 2, 4, 2, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 4, 4, 2, 4, 2, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 3, 4, 2, 4, 2, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 4, 4, 2, 4, 2, 4, 3, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 4, 2, 4, 2, 4, 3, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 2, 4, 2, 4, 4, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 2, 4, 2, 2, 2, 2, 3, 0, 0, 0], [0, 0, 0, 3, 4, 2, 4, 4, 4, 4, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 2, 2, 2, 2, 2, 2, 3, 0, 0, 0], [0, 0, 0, 3, 4, 4, 4, 4, 4, 4, 4, 3, 0, 0, 0], [0, 0, 0, 3, 2, 2, 2, 2, 2, 2, 2, 3, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 2, 2, 2, 4, 2, 4, 2, 3, 0, 0, 0], [0, 0, 0, 3, 4, 4, 2, 4, 2, 4, 2, 3, 0, 0, 0], [0, 0, 0, 3, 3, 4, 2, 4, 2, 4, 2, 3, 0, 0, 0], [0, 0, 0, 3, 4, 4, 2, 4, 2, 4, 2, 3, 0, 0, 0], [0, 0, 0, 3, 2, 2, 2, 4, 2, 4, 2, 3, 0, 0, 0], [0, 0, 0, 3, 4, 4, 4, 4, 2, 4, 2, 3, 0, 0, 0], [0, 0, 0, 3, 2, 2, 2, 2, 2, 4, 2, 3, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/b942fd60.json b/data/arc-agi/evaluation/b942fd60.json
deleted file mode 100644
index 9508ab6..0000000
--- a/data/arc-agi/evaluation/b942fd60.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 7, 0], [2, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 8, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 6, 0, 0, 0, 8], [0, 0, 6, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0]], "output": [[0, 0, 0, 0, 8, 2, 0, 0, 0, 0], [0, 0, 3, 0, 0, 2, 0, 0, 7, 0], [2, 2, 2, 2, 2, 2, 3, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 7, 2, 8, 0, 0, 6], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 7, 0, 0, 0, 6, 0, 0, 0, 8], [0, 0, 6, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 3, 7, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 7, 0, 0, 3], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 7, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 8, 3, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 3, 7, 0, 2, 0, 0, 0, 0], [0, 0, 8, 2, 2, 2, 2, 2, 7, 0, 0, 3], [2, 2, 2, 2, 2, 2, 6, 2, 2, 2, 2, 2], [0, 0, 2, 0, 2, 8, 0, 2, 2, 8, 0, 0], [2, 2, 2, 8, 2, 0, 0, 2, 2, 0, 0, 0], [0, 0, 2, 0, 2, 7, 0, 2, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 6, 0, 0], [0, 0, 7, 0, 2, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 7, 2, 2, 7, 0, 0], [0, 0, 0, 6, 2, 2, 2, 2, 2, 2, 2, 2], [0, 3, 0, 0, 2, 0, 0, 8, 3, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 3, 0, 0, 7], [0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8], [0, 0, 3, 0, 0, 0]], "output": [[0, 0, 3, 2, 0, 7], [0, 0, 0, 2, 0, 0], [2, 2, 2, 2, 3, 0], [0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 8], [0, 0, 3, 2, 0, 0]]}, {"input": [[0, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 7, 0, 0, 0, 0, 2, 0], [2, 2, 2, 2, 2, 2, 2, 3], [0, 2, 0, 0, 0, 0, 2, 0], [2, 2, 8, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 7, 0, 2, 0], [0, 2, 0, 0, 0, 0, 2, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 2, 0, 0], [2, 2, 2, 2, 8, 0], [0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0]]}, {"input": [[0, 0, 0, 7, 0, 0], [6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 0, 0]], "output": [[0, 2, 0, 7, 0, 0], [6, 2, 2, 2, 2, 2], [0, 2, 0, 2, 0, 0], [2, 2, 2, 2, 8, 0], [0, 2, 0, 2, 0, 0], [0, 2, 0, 2, 0, 8], [0, 2, 0, 2, 0, 0], [7, 2, 0, 2, 0, 0]]}], "test": [{"input": [[0, 0, 0, 8, 0, 0, 0, 0, 7, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 6, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 3, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 8, 0, 0, 0, 7, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 8, 0, 2, 0, 0, 7, 0, 0, 3], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 6, 0, 0, 2, 0, 6, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 6, 0, 2, 0, 7, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 6], [0, 0, 0, 3, 0, 2, 0, 8, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 6, 0, 0], [0, 0, 7, 2, 0, 2, 0, 0, 2, 0, 0, 3], [0, 0, 8, 2, 2, 2, 7, 0, 2, 6, 0, 0], [0, 0, 0, 2, 0, 3, 0, 0, 2, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/b9630600.json b/data/arc-agi/evaluation/b9630600.json
deleted file mode 100644
index e682d82..0000000
--- a/data/arc-agi/evaluation/b9630600.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 3, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 3, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 3, 0, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 3, 3, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 3, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 3, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 3, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 3, 3, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 3, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 3, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 3, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 3, 3, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 3, 3, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 3, 3, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 3, 3, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 3, 3, 0, 0, 0, 3, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 3, 3, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 3, 3, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ba9d41b8.json b/data/arc-agi/evaluation/ba9d41b8.json
deleted file mode 100644
index 54df01d..0000000
--- a/data/arc-agi/evaluation/ba9d41b8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 2, 0], [0, 0, 0, 0, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 2, 0], [0, 0, 0, 0, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 2, 0], [0, 0, 0, 0, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 8, 0], [0, 0, 0, 0, 8, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 8, 0], [0, 0, 0, 0, 8, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 8], [4, 0, 4, 0, 4, 0, 4, 4, 0, 0, 8, 0, 8, 0, 8, 8], [4, 4, 0, 4, 0, 4, 0, 4, 0, 0, 8, 8, 0, 8, 0, 8], [4, 0, 4, 0, 4, 0, 4, 4, 0, 0, 8, 0, 8, 0, 8, 8], [4, 4, 0, 4, 0, 4, 0, 4, 0, 0, 8, 8, 8, 8, 8, 8], [4, 0, 4, 0, 4, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 7, 7, 7, 7, 7, 7, 7, 7, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 7, 7, 7, 7, 7, 7, 7, 7, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 7, 7, 7, 7, 7, 7, 7, 7, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 7, 7, 7, 7, 7, 7, 7, 7, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 7, 7, 7, 7, 7, 7, 7, 7, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 7, 7, 7, 7, 7, 7, 7, 7, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 7, 7, 7, 7, 7, 7, 7, 7, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 4, 4, 4, 4, 4, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 4, 4, 4, 4, 4, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 4, 4, 4, 4, 4, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 4, 4, 4, 4, 4, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 4, 4, 4, 4, 4, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 4, 4, 4, 4, 4, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 8, 0, 8, 8, 0, 7, 7, 7, 7, 7, 7, 7, 7, 0], [0, 8, 8, 0, 8, 0, 8, 0, 8, 0, 7, 0, 7, 0, 7, 0, 7, 7, 0], [0, 8, 0, 8, 0, 8, 0, 8, 8, 0, 7, 7, 0, 7, 0, 7, 0, 7, 0], [0, 8, 8, 0, 8, 0, 8, 0, 8, 0, 7, 0, 7, 0, 7, 0, 7, 7, 0], [0, 8, 0, 8, 0, 8, 0, 8, 8, 0, 7, 7, 0, 7, 0, 7, 0, 7, 0], [0, 8, 8, 0, 8, 0, 8, 0, 8, 0, 7, 0, 7, 0, 7, 0, 7, 7, 0], [0, 8, 0, 8, 0, 8, 0, 8, 8, 0, 7, 7, 7, 7, 7, 7, 7, 7, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 4, 4, 4, 4, 4, 0], [0, 6, 0, 6, 0, 6, 0, 6, 0, 6, 0, 6, 0, 4, 0, 4, 0, 4, 0], [0, 6, 6, 0, 6, 0, 6, 0, 6, 0, 6, 6, 0, 4, 4, 0, 4, 4, 0], [0, 6, 0, 6, 0, 6, 0, 6, 0, 6, 0, 6, 0, 4, 0, 4, 0, 4, 0], [0, 6, 6, 0, 6, 0, 6, 0, 6, 0, 6, 6, 0, 4, 4, 0, 4, 4, 0], [0, 6, 0, 6, 0, 6, 0, 6, 0, 6, 0, 6, 0, 4, 4, 4, 4, 4, 0], [0, 6, 6, 0, 6, 0, 6, 0, 6, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/baf41dbf.json b/data/arc-agi/evaluation/baf41dbf.json
deleted file mode 100644
index 2b8d578..0000000
--- a/data/arc-agi/evaluation/baf41dbf.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 3, 0, 0, 3, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 3, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 3, 6, 0, 0, 0, 0, 0], [0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 3, 0, 3, 0, 0, 6, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 6, 0, 0, 3, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 6, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 6, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/bb52a14b.json b/data/arc-agi/evaluation/bb52a14b.json
deleted file mode 100644
index 26ac8f6..0000000
--- a/data/arc-agi/evaluation/bb52a14b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 8, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 1, 0, 0, 4, 8, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 8, 1, 0, 1], [0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [1, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 1, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 8, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 1, 0, 0, 4, 8, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 8, 1, 4, 1], [0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 4], [1, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 4, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 1, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8], [0, 0, 8, 0, 0, 0, 0, 0, 8, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 8, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 1, 1, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 1, 0, 0], [0, 0, 0, 4, 1, 4, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 0, 8, 0, 0, 0], [1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8], [0, 0, 8, 0, 0, 0, 0, 0, 8, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0, 8, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 8, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 4, 0, 0], [0, 0, 0, 8, 1, 1, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 1, 0, 0], [0, 0, 0, 4, 1, 4, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 4, 1, 0], [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 0, 8, 0, 0, 0], [1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 8, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [8, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 4, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 1, 0, 8], [0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 4, 4, 4, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 8, 1], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 8, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 8, 0], [4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [8, 4, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 4, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 1, 0, 8], [0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 4, 4, 4, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 8, 1], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 4, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 8, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 8, 0], [0, 0, 0, 1, 0, 0, 1, 8, 8, 1, 0, 0, 0, 0, 8, 8, 0, 0, 0, 1, 0, 0], [0, 0, 8, 0, 0, 8, 8, 0, 0, 0, 1, 8, 1, 0, 0, 8, 0, 0, 0, 1, 0, 0], [0, 8, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 8, 0, 0], [0, 1, 0, 0, 4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 4, 8, 8, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 1, 0, 8, 1, 0], [0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 8], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 8, 8, 8, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 1, 0, 0, 0, 0], [1, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 0], [0, 8, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 8, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 8, 0, 8, 1, 0, 1, 0, 0, 0]], "output": [[0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 8, 0], [0, 0, 0, 1, 0, 0, 1, 8, 8, 1, 0, 0, 0, 0, 8, 8, 0, 0, 0, 1, 0, 0], [0, 0, 8, 0, 0, 8, 8, 0, 0, 0, 1, 8, 1, 0, 0, 8, 0, 0, 0, 1, 0, 0], [0, 8, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 8, 0, 0], [0, 1, 0, 0, 4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 4, 8, 8, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 1, 0, 8, 1, 0], [0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 8], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 8, 8, 8, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 4, 0, 0, 1, 0, 0, 0, 0], [1, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 8, 0, 0, 0, 0, 4, 8, 4], [0, 8, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0, 4, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 4, 1, 4], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 8, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 8, 0, 8, 1, 0, 1, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/bbb1b8b6.json b/data/arc-agi/evaluation/bbb1b8b6.json
deleted file mode 100644
index b89ecd3..0000000
--- a/data/arc-agi/evaluation/bbb1b8b6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 1, 5, 2, 2, 2, 0], [1, 0, 0, 0, 5, 0, 2, 2, 2], [1, 1, 0, 0, 5, 0, 0, 2, 2], [1, 1, 1, 0, 5, 0, 0, 0, 2]], "output": [[2, 2, 2, 1], [1, 2, 2, 2], [1, 1, 2, 2], [1, 1, 1, 2]]}, {"input": [[0, 0, 0, 1, 5, 2, 2, 0, 0], [1, 0, 0, 0, 5, 2, 2, 0, 0], [1, 1, 0, 0, 5, 0, 2, 2, 0], [1, 1, 1, 0, 5, 0, 2, 2, 0]], "output": [[0, 0, 0, 1], [1, 0, 0, 0], [1, 1, 0, 0], [1, 1, 1, 0]]}, {"input": [[1, 1, 0, 0, 5, 0, 0, 3, 3], [1, 0, 0, 1, 5, 0, 3, 3, 0], [1, 0, 0, 1, 5, 0, 3, 3, 0], [1, 1, 0, 0, 5, 0, 0, 3, 3]], "output": [[1, 1, 3, 3], [1, 3, 3, 1], [1, 3, 3, 1], [1, 1, 3, 3]]}, {"input": [[1, 1, 1, 1, 5, 0, 0, 0, 0], [1, 0, 0, 1, 5, 0, 6, 6, 0], [1, 0, 0, 1, 5, 0, 6, 6, 0], [1, 1, 1, 1, 5, 0, 0, 0, 0]], "output": [[1, 1, 1, 1], [1, 6, 6, 1], [1, 6, 6, 1], [1, 1, 1, 1]]}, {"input": [[1, 1, 1, 1, 5, 2, 2, 0, 0], [1, 0, 0, 1, 5, 2, 2, 0, 0], [1, 0, 0, 1, 5, 0, 0, 0, 0], [1, 1, 1, 1, 5, 0, 0, 0, 0]], "output": [[1, 1, 1, 1], [1, 0, 0, 1], [1, 0, 0, 1], [1, 1, 1, 1]]}, {"input": [[1, 1, 1, 1, 5, 3, 3, 0, 0], [1, 0, 0, 1, 5, 3, 3, 0, 0], [1, 0, 0, 1, 5, 3, 0, 0, 0], [1, 0, 0, 1, 5, 0, 0, 0, 0]], "output": [[1, 1, 1, 1], [1, 0, 0, 1], [1, 0, 0, 1], [1, 0, 0, 1]]}, {"input": [[1, 1, 1, 1, 5, 0, 0, 0, 0], [1, 0, 0, 0, 5, 0, 7, 7, 7], [1, 0, 1, 1, 5, 0, 7, 0, 0], [1, 0, 1, 0, 5, 0, 7, 0, 7]], "output": [[1, 1, 1, 1], [1, 7, 7, 7], [1, 7, 1, 1], [1, 7, 1, 7]]}], "test": [{"input": [[1, 1, 0, 0, 5, 0, 0, 3, 3], [1, 0, 0, 1, 5, 0, 3, 3, 0], [0, 0, 0, 1, 5, 3, 3, 3, 0], [0, 1, 1, 1, 5, 3, 0, 0, 0]], "output": [[1, 1, 3, 3], [1, 3, 3, 1], [3, 3, 3, 1], [3, 1, 1, 1]]}, {"input": [[1, 1, 1, 1, 5, 2, 0, 0, 0], [0, 1, 1, 0, 5, 2, 2, 2, 2], [0, 1, 1, 0, 5, 2, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0]], "output": [[1, 1, 1, 1], [0, 1, 1, 0], [0, 1, 1, 0], [0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/bc4146bd.json b/data/arc-agi/evaluation/bc4146bd.json
deleted file mode 100644
index 9bb5be8..0000000
--- a/data/arc-agi/evaluation/bc4146bd.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[5, 5, 4, 4], [5, 5, 5, 2], [2, 5, 5, 5], [5, 5, 2, 4]], "output": [[5, 5, 4, 4, 4, 4, 5, 5, 5, 5, 4, 4, 4, 4, 5, 5, 5, 5, 4, 4], [5, 5, 5, 2, 2, 5, 5, 5, 5, 5, 5, 2, 2, 5, 5, 5, 5, 5, 5, 2], [2, 5, 5, 5, 5, 5, 5, 2, 2, 5, 5, 5, 5, 5, 5, 2, 2, 5, 5, 5], [5, 5, 2, 4, 4, 2, 5, 5, 5, 5, 2, 4, 4, 2, 5, 5, 5, 5, 2, 4]]}], "train": [{"input": [[2, 2, 2, 2], [8, 2, 2, 2], [2, 2, 8, 2], [8, 2, 8, 8]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [8, 2, 2, 2, 2, 2, 2, 8, 8, 2, 2, 2, 2, 2, 2, 8, 8, 2, 2, 2], [2, 2, 8, 2, 2, 8, 2, 2, 2, 2, 8, 2, 2, 8, 2, 2, 2, 2, 8, 2], [8, 2, 8, 8, 8, 8, 2, 8, 8, 2, 8, 8, 8, 8, 2, 8, 8, 2, 8, 8]]}, {"input": [[9, 5, 1, 5], [1, 5, 9, 1], [9, 1, 5, 5], [5, 5, 5, 1]], "output": [[9, 5, 1, 5, 5, 1, 5, 9, 9, 5, 1, 5, 5, 1, 5, 9, 9, 5, 1, 5], [1, 5, 9, 1, 1, 9, 5, 1, 1, 5, 9, 1, 1, 9, 5, 1, 1, 5, 9, 1], [9, 1, 5, 5, 5, 5, 1, 9, 9, 1, 5, 5, 5, 5, 1, 9, 9, 1, 5, 5], [5, 5, 5, 1, 1, 5, 5, 5, 5, 5, 5, 1, 1, 5, 5, 5, 5, 5, 5, 1]]}, {"input": [[5, 5, 2, 5], [2, 3, 3, 2], [5, 2, 5, 3], [3, 5, 3, 2]], "output": [[5, 5, 2, 5, 5, 2, 5, 5, 5, 5, 2, 5, 5, 2, 5, 5, 5, 5, 2, 5], [2, 3, 3, 2, 2, 3, 3, 2, 2, 3, 3, 2, 2, 3, 3, 2, 2, 3, 3, 2], [5, 2, 5, 3, 3, 5, 2, 5, 5, 2, 5, 3, 3, 5, 2, 5, 5, 2, 5, 3], [3, 5, 3, 2, 2, 3, 5, 3, 3, 5, 3, 2, 2, 3, 5, 3, 3, 5, 3, 2]]}, {"input": [[4, 1, 1, 4], [7, 7, 4, 7], [1, 4, 1, 1], [4, 1, 1, 1]], "output": [[4, 1, 1, 4, 4, 1, 1, 4, 4, 1, 1, 4, 4, 1, 1, 4, 4, 1, 1, 4], [7, 7, 4, 7, 7, 4, 7, 7, 7, 7, 4, 7, 7, 4, 7, 7, 7, 7, 4, 7], [1, 4, 1, 1, 1, 1, 4, 1, 1, 4, 1, 1, 1, 1, 4, 1, 1, 4, 1, 1], [4, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/bcb3040b.json b/data/arc-agi/evaluation/bcb3040b.json
deleted file mode 100644
index 8c786bc..0000000
--- a/data/arc-agi/evaluation/bcb3040b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0], [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1], [0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0], [1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1], [1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0], [0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0], [1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1], [0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1], [0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2]], "output": [[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 2, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0], [0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1], [0, 1, 1, 0, 3, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0], [0, 0, 0, 1, 1, 3, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1], [0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 1, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 2, 1, 0, 0, 0, 0, 1, 1, 0], [1, 0, 0, 0, 1, 0, 0, 1, 2, 1, 0, 1, 0, 0, 1, 1], [1, 1, 1, 1, 1, 1, 0, 0, 1, 2, 1, 1, 0, 1, 0, 0], [0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 2, 1, 0, 0, 0, 1], [0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 1, 0], [1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 3, 0, 1], [0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 2, 1], [0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2]]}, {"input": [[0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0], [0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0], [1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1], [1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0], [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [2, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 2], [0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], [1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0]], "output": [[0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0], [0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0], [1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1], [1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0], [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [2, 2, 3, 3, 3, 2, 2, 3, 2, 2, 3, 2], [0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], [1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0]]}, {"input": [[0, 1, 1, 1, 0, 0, 2, 0, 0, 1], [1, 0, 1, 0, 1, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 1, 0, 0, 0, 0, 1, 1, 1, 0], [1, 1, 1, 0, 0, 0, 1, 0, 0, 1], [1, 1, 1, 1, 1, 1, 0, 0, 1, 0], [0, 1, 1, 0, 1, 0, 1, 0, 1, 0], [1, 0, 0, 0, 1, 0, 1, 1, 0, 1], [0, 1, 1, 1, 1, 0, 0, 1, 1, 1], [0, 1, 0, 1, 0, 0, 2, 1, 1, 0]], "output": [[0, 1, 1, 1, 0, 0, 2, 0, 0, 1], [1, 0, 1, 0, 1, 1, 3, 0, 1, 1], [0, 0, 0, 0, 0, 0, 2, 0, 1, 0], [0, 1, 0, 0, 0, 0, 3, 1, 1, 0], [1, 1, 1, 0, 0, 0, 3, 0, 0, 1], [1, 1, 1, 1, 1, 1, 2, 0, 1, 0], [0, 1, 1, 0, 1, 0, 3, 0, 1, 0], [1, 0, 0, 0, 1, 0, 3, 1, 0, 1], [0, 1, 1, 1, 1, 0, 2, 1, 1, 1], [0, 1, 0, 1, 0, 0, 2, 1, 1, 0]]}], "test": [{"input": [[1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 2], [1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1], [0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1], [0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1], [1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0], [1, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], [0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1], [1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0], [1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0], [1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1], [2, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0]], "output": [[1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 2], [1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3, 1], [0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 2, 0, 0], [1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 3, 0, 0, 1], [0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 2, 0, 1, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 3, 0, 1, 0, 1, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 1, 0, 1, 0, 1], [1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 3, 0, 0, 1, 1, 1, 1, 1], [0, 0, 1, 1, 1, 1, 1, 0, 0, 2, 1, 0, 1, 1, 1, 1, 0, 0], [1, 1, 1, 0, 1, 0, 0, 0, 2, 1, 0, 1, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], [0, 0, 1, 1, 1, 0, 3, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 0, 3, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1], [1, 1, 0, 0, 3, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [1, 0, 0, 3, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0], [1, 1, 3, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0], [1, 3, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1], [2, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/bd14c3bf.json b/data/arc-agi/evaluation/bd14c3bf.json
deleted file mode 100644
index f10a890..0000000
--- a/data/arc-agi/evaluation/bd14c3bf.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 1], [2, 2, 2, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 1, 0, 1], [2, 2, 2, 0, 0, 0, 0, 0, 2, 0, 2, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 1, 0, 1], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]], "output": [[2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 1, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 2, 0, 0, 2, 0, 1, 1, 1, 1], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]]}, {"input": [[2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], [2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0]], "output": [[2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], [2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 2, 0, 0, 0, 1, 1, 1, 0, 0, 0, 2, 2, 2, 0], [0, 2, 2, 2, 2, 0, 0, 0, 1, 0, 1, 0, 0, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0]]}], "test": [{"input": [[2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 2, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0], [2, 2, 2, 2, 2, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0], [0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0], [0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 2, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0], [2, 2, 2, 2, 2, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 2, 2, 2, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 1, 0, 1, 0, 2, 0, 0, 0, 2, 0, 0], [0, 2, 0, 2, 0, 2, 0, 0, 1, 0, 1, 0, 2, 2, 2, 2, 2, 0, 0], [0, 2, 0, 2, 0, 2, 0, 0, 1, 1, 1, 0, 2, 0, 0, 0, 2, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/be03b35f.json b/data/arc-agi/evaluation/be03b35f.json
deleted file mode 100644
index 919a8ec..0000000
--- a/data/arc-agi/evaluation/be03b35f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 0, 1, 1], [1, 0, 0, 0, 1], [0, 0, 0, 0, 0], [0, 1, 0, 2, 2], [1, 1, 0, 2, 2]], "output": [[1, 0], [1, 1]]}, {"input": [[1, 0, 0, 1, 1], [1, 1, 0, 1, 0], [0, 0, 0, 0, 0], [1, 1, 0, 2, 2], [0, 1, 0, 2, 2]], "output": [[0, 1], [1, 1]]}, {"input": [[1, 1, 0, 0, 1], [0, 0, 0, 0, 1], [0, 0, 0, 0, 0], [0, 0, 0, 2, 2], [1, 1, 0, 2, 2]], "output": [[1, 0], [1, 0]]}], "test": [{"input": [[1, 1, 0, 0, 1], [0, 1, 0, 1, 1], [0, 0, 0, 0, 0], [1, 0, 0, 2, 2], [1, 1, 0, 2, 2]], "output": [[1, 1], [1, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/bf32578f.json b/data/arc-agi/evaluation/bf32578f.json
deleted file mode 100644
index 3b5c2e0..0000000
--- a/data/arc-agi/evaluation/bf32578f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0], [0, 0, 0, 7, 7, 7, 7, 0, 0, 0], [0, 0, 0, 7, 7, 7, 7, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[8, 8, 8, 0, 0, 0], [8, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0], [0, 6, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0], [0, 6, 6, 6, 6, 0], [0, 0, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/bf699163.json b/data/arc-agi/evaluation/bf699163.json
deleted file mode 100644
index ab31f21..0000000
--- a/data/arc-agi/evaluation/bf699163.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 8, 8, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 8, 5, 8, 5, 5, 5, 5, 5, 5, 5, 2, 2, 2, 5, 5], [5, 8, 8, 8, 5, 5, 5, 5, 5, 5, 5, 2, 5, 2, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2, 2, 2, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 3, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 3, 3, 3, 5, 7, 7, 7, 7, 5, 5, 7, 7], [5, 5, 5, 5, 5, 5, 5, 5, 7, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 1, 1, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 7, 5, 1, 5, 1, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 7, 5, 1, 1, 1, 5, 5, 5], [5, 6, 6, 6, 5, 5, 5, 5, 7, 5, 5, 5, 5, 5, 5, 5], [5, 6, 5, 6, 5, 5, 5, 5, 7, 5, 5, 5, 5, 5, 5, 5], [5, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 7, 5, 5, 5, 5, 5, 5, 5]], "output": [[1, 1, 1], [1, 5, 1], [1, 1, 1]]}, {"input": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 1, 1, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 1, 5, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 1, 1, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 3, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 3, 3, 3, 5, 5, 5, 5, 2, 2, 2, 5], [5, 7, 7, 7, 5, 7, 7, 7, 5, 5, 5, 5, 5, 5, 2, 5, 2, 5], [5, 7, 5, 5, 5, 5, 5, 7, 5, 5, 5, 5, 5, 5, 2, 2, 2, 5], [5, 7, 5, 4, 4, 4, 5, 7, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 4, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 7, 5, 4, 4, 4, 5, 7, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 7, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 7, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 7, 5, 5, 5, 5, 5, 7, 5, 5, 5, 8, 8, 8, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 7, 5, 5, 5, 8, 5, 8, 5, 5, 5, 5], [5, 7, 5, 5, 5, 5, 5, 7, 5, 5, 5, 8, 8, 8, 5, 5, 5, 5]], "output": [[4, 4, 4], [4, 5, 4], [4, 4, 4]]}], "test": [{"input": [[5, 5, 5, 5, 5, 5, 5, 5, 7, 5, 2, 2, 2, 5], [5, 5, 6, 6, 6, 5, 5, 5, 7, 5, 2, 5, 2, 5], [5, 5, 6, 5, 6, 5, 5, 5, 7, 5, 2, 2, 2, 5], [5, 5, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 7, 7, 5, 5, 7, 7], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 8, 8, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 8, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 8, 8, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 1, 1, 1, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 1, 5, 1, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 1, 1, 1, 5, 5, 5, 5, 5, 5, 5, 5]], "output": [[2, 2, 2], [2, 5, 2], [2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/bf89d739.json b/data/arc-agi/evaluation/bf89d739.json
deleted file mode 100644
index 0c28795..0000000
--- a/data/arc-agi/evaluation/bf89d739.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 2, 3, 3, 3, 3, 3, 3, 3, 2], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 2, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 2, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 2, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 2, 3, 3, 3, 3, 2, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/c074846d.json b/data/arc-agi/evaluation/c074846d.json
deleted file mode 100644
index 3c2963b..0000000
--- a/data/arc-agi/evaluation/c074846d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0], [0, 3, 3, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 2, 0, 0], [0, 3, 3, 3, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 5, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0], [0, 5, 2], [0, 0, 0]], "output": [[0, 0, 0], [0, 5, 3], [0, 2, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 2, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 5, 0, 0], [0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 3, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 5, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/c1990cce.json b/data/arc-agi/evaluation/c1990cce.json
deleted file mode 100644
index 12589f1..0000000
--- a/data/arc-agi/evaluation/c1990cce.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 1, 0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0], [0, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0], [2, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2], [0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0]]}, {"input": [[0, 0, 2, 0, 0]], "output": [[0, 0, 2, 0, 0], [0, 2, 0, 2, 0], [2, 0, 0, 0, 2], [0, 1, 0, 0, 0], [0, 0, 1, 0, 0]]}, {"input": [[0, 0, 0, 2, 0, 0, 0]], "output": [[0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0], [0, 2, 0, 0, 0, 2, 0], [2, 0, 1, 0, 0, 0, 2], [0, 0, 0, 1, 0, 0, 0], [1, 0, 0, 0, 1, 0, 0], [0, 1, 0, 0, 0, 1, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0], [0, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0], [2, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2], [0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1], [0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/c3202e5a.json b/data/arc-agi/evaluation/c3202e5a.json
deleted file mode 100644
index 004bde6..0000000
--- a/data/arc-agi/evaluation/c3202e5a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 8, 9, 2, 0, 0, 0, 8, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 8, 4, 0, 0, 2, 0, 8, 6, 0, 3, 0, 0, 8, 9, 0, 0, 0, 5], [9, 6, 0, 0, 0, 8, 0, 0, 1, 0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 0, 0, 4, 0], [7, 7, 0, 0, 5, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 1, 8, 0, 0, 2, 9, 0], [0, 0, 0, 3, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 1, 4, 2, 8, 0, 3, 0, 0, 0, 8, 0, 2, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 2, 0, 9, 0, 8, 0, 3, 0, 4, 0, 8, 0, 0, 0, 0, 2, 8, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 8, 0, 0, 5, 0, 0, 8, 0, 0, 0, 2, 2, 8, 0, 0, 0, 8, 3], [0, 0, 6, 0, 0, 8, 9, 1, 0, 7, 0, 8, 0, 2, 0, 2, 2, 8, 0, 0, 0, 7, 0], [0, 5, 0, 0, 9, 8, 0, 0, 0, 4, 0, 8, 0, 0, 0, 2, 0, 8, 8, 0, 0, 5, 3], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 1, 0, 7, 0, 8, 0, 0, 2, 3, 9, 8, 4, 0, 0, 9, 0, 8, 0, 0, 0, 4, 0], [0, 6, 0, 4, 0, 8, 0, 1, 9, 0, 8, 8, 0, 0, 0, 0, 0, 8, 0, 8, 2, 0, 0], [3, 2, 0, 9, 4, 8, 0, 0, 0, 6, 0, 8, 0, 3, 8, 0, 0, 8, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 1, 0, 0, 8, 0, 0, 0, 9, 0], [0, 0, 2, 0, 0, 8, 3, 4, 0, 0, 0, 8, 9, 0, 0, 0, 0, 8, 8, 0, 0, 0, 3], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 4, 0, 8, 2, 9, 0, 6, 0, 8, 0, 0, 0, 2, 0, 8, 0, 0, 0, 3, 0], [0, 6, 1, 0, 0, 8, 3, 0, 0, 0, 0, 8, 0, 2, 1, 0, 0, 8, 0, 0, 9, 0, 0], [0, 0, 0, 5, 5, 8, 0, 0, 0, 2, 5, 8, 0, 0, 0, 0, 1, 8, 5, 0, 3, 0, 6], [0, 0, 0, 9, 0, 8, 1, 0, 0, 8, 0, 8, 2, 0, 7, 0, 0, 8, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 8, 6, 0, 0, 8, 0, 8, 8, 0, 0, 0, 2, 8, 0, 0, 0, 4, 7]], "output": [[0, 2, 0, 0, 0], [0, 0, 0, 0, 2], [0, 0, 0, 2, 2], [0, 2, 0, 2, 2], [0, 0, 0, 2, 0]]}, {"input": [[0, 7, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 7, 6, 0, 3, 0, 2, 6, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 3, 5, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 6, 0, 9, 3, 2, 0, 0, 0, 0, 3, 0, 2, 0, 0, 0], [3, 6, 0, 8, 0, 3, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 3, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 3, 0, 0, 7, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [2, 0, 0, 8, 0, 3, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 8, 0], [0, 0, 6, 0, 3, 3, 0, 0, 6, 0, 0, 3, 4, 0, 0, 0, 0, 3, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 3, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 4, 3, 0, 0, 3, 0, 0, 9, 0, 2, 3, 0, 0, 3, 0, 3, 3, 0, 2, 0, 0, 0], [8, 0, 1, 5, 0, 3, 0, 5, 0, 0, 2, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 3, 0, 2, 0, 4, 0, 3, 0, 5, 0, 1, 0, 3, 0, 0, 0, 0, 9], [0, 0, 0, 9, 0, 3, 0, 6, 0, 1, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1], [0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 3, 0, 0, 6, 0, 0], [0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 3], [6, 0, 0, 0, 0, 3, 0, 0, 0, 0, 9, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 3, 0, 7, 0, 0, 7, 3, 0, 0, 0, 0, 0, 3, 0, 0, 9, 0, 5], [0, 0, 0, 0, 0, 3, 0, 0, 0, 7, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 4, 8, 0, 3, 0, 0, 0, 7, 0, 3, 0, 0, 7, 0, 0, 3, 0, 0, 7, 1, 0], [0, 8, 0, 0, 0, 3, 0, 0, 7, 0, 0, 3, 2, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0], [0, 5, 0, 0, 0, 3, 0, 0, 0, 0, 7, 3, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0]], "output": [[0, 7, 0, 0, 7], [0, 0, 0, 7, 0], [0, 0, 0, 7, 0], [0, 0, 7, 0, 0], [0, 0, 0, 0, 7]]}, {"input": [[0, 0, 0, 5, 5, 0, 0, 5, 0, 1, 0, 5, 0, 0, 4, 5, 0, 0, 0, 5, 6, 0, 0], [1, 9, 0, 5, 0, 6, 4, 5, 0, 0, 4, 5, 4, 4, 0, 5, 0, 0, 1, 5, 0, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 4, 0, 5, 0, 4, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 8, 5, 0, 0, 4, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 4, 0], [0, 5, 0, 5, 0, 3, 9, 5, 0, 1, 0, 5, 0, 1, 0, 5, 0, 1, 0, 5, 0, 1, 0], [1, 0, 0, 5, 0, 0, 7, 5, 0, 0, 0, 5, 0, 0, 3, 5, 0, 6, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 8, 0, 4, 5, 0, 9, 0, 5, 0, 7, 5, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 4, 5, 0, 0, 0, 5, 0, 0, 8, 5, 0, 0, 6, 5, 0, 6, 0, 5, 4, 0, 6], [0, 1, 0, 5, 2, 0, 0, 5, 7, 0, 0, 5, 0, 2, 0, 5, 0, 7, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 5, 0, 4, 5, 4, 0, 0, 5, 0, 0, 0], [0, 3, 8, 5, 0, 3, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 4, 0, 8], [0, 0, 0, 5, 8, 0, 0, 5, 1, 0, 3, 5, 0, 7, 0, 5, 0, 8, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 7, 0, 5, 0, 0, 0, 5, 0, 2, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 2], [0, 3, 0, 5, 2, 6, 1, 5, 0, 8, 0, 5, 2, 0, 9, 5, 0, 7, 0, 5, 0, 0, 7], [0, 0, 0, 5, 8, 0, 0, 5, 0, 0, 0, 5, 0, 8, 0, 5, 0, 0, 4, 5, 2, 0, 4], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 7, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 3, 0, 5, 0, 0, 8, 5, 0, 0, 0], [0, 0, 1, 5, 0, 4, 0, 5, 3, 0, 3, 5, 0, 0, 0, 5, 3, 0, 0, 5, 0, 3, 0], [0, 0, 2, 5, 0, 0, 3, 5, 4, 0, 0, 5, 0, 8, 0, 5, 0, 0, 0, 5, 8, 0, 0]], "output": [[0, 0, 4], [4, 4, 0], [0, 4, 0]]}], "test": [{"input": [[4, 3, 0, 0, 0, 2, 0, 0, 0, 8, 3, 2, 1, 0, 0, 0, 0, 2, 0, 8, 0, 0, 0, 2, 8, 0, 0, 0, 0], [6, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 7, 4, 0, 2, 0, 7, 4, 0, 4, 2, 0, 9, 0, 5, 0], [0, 0, 0, 0, 0, 2, 0, 9, 1, 0, 5, 2, 0, 6, 6, 0, 0, 2, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 2, 0, 0, 8, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 3, 0, 2, 4, 0, 1, 0, 0], [0, 0, 0, 0, 0, 2, 4, 0, 0, 9, 0, 2, 0, 9, 0, 2, 5, 2, 0, 0, 3, 7, 0, 2, 0, 0, 0, 4, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [6, 0, 0, 0, 0, 2, 6, 0, 5, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 6, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 2, 0, 0, 3, 0, 0, 2, 9, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 7, 0, 0], [7, 0, 8, 3, 0, 2, 0, 0, 4, 4, 6, 2, 0, 0, 9, 7, 7, 2, 2, 0, 9, 0, 0, 2, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 2, 0, 0, 4, 0, 0, 2, 0, 0, 5, 0, 0], [0, 0, 3, 0, 3, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 5, 5, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 6, 4, 0, 2, 0, 0, 8, 0, 8, 2, 0, 0, 0, 0, 0, 2, 0, 0, 8, 0, 6, 2, 0, 0, 0, 0, 0], [0, 3, 0, 0, 7, 2, 0, 0, 0, 0, 0, 2, 1, 0, 0, 1, 6, 2, 0, 0, 0, 0, 0, 2, 0, 4, 0, 0, 3], [0, 0, 0, 0, 0, 2, 8, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0, 2, 0, 9, 0, 0, 0, 2, 0, 2, 0, 8, 0], [0, 0, 5, 0, 0, 2, 0, 0, 8, 8, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 8, 2, 0, 0, 2, 0, 0, 2, 1, 0, 0, 0, 0, 2, 0, 0, 0, 8, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 6, 2, 0, 0, 0, 7, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0], [8, 0, 0, 0, 0, 2, 0, 3, 2, 0, 0, 2, 0, 0, 0, 0, 3, 2, 7, 0, 0, 0, 7, 2, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 4, 6, 0, 6, 1, 2, 0, 8, 2, 0, 8, 2, 0, 0, 0, 8, 0, 2, 0, 5, 0, 6, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 2, 5, 3, 4, 0, 0, 2, 0, 0, 0, 0, 0], [3, 0, 3, 0, 1, 2, 0, 0, 6, 0, 0, 2, 0, 0, 1, 4, 0, 2, 0, 0, 3, 8, 0, 2, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 4, 0, 0, 2, 6, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 2, 4, 0, 3, 0, 8, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 5], [0, 4, 0, 0, 0, 2, 0, 2, 1, 0, 0, 2, 3, 0, 0, 4, 0, 2, 0, 0, 0, 0, 8, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 9, 0, 2, 0, 0, 0, 6, 5, 2, 0, 5, 0, 0, 0, 2, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 6, 0, 6, 0, 2, 0, 0, 0, 1, 9, 2, 7, 0, 5, 7, 3, 2, 0, 0, 1, 0, 0]], "output": [[0, 0, 8, 0, 8], [0, 0, 0, 0, 0], [8, 0, 0, 0, 0], [0, 0, 8, 8, 0], [0, 0, 0, 0, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/c35c1b4c.json b/data/arc-agi/evaluation/c35c1b4c.json
deleted file mode 100644
index 72fe8a3..0000000
--- a/data/arc-agi/evaluation/c35c1b4c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train":[{"input":[[6,6,8,8,8,0,8,0,6,0],[0,8,0,0,6,6,6,6,8,0],[6,6,0,1,1,1,1,0,6,6],[0,0,1,1,1,1,1,1,0,0],[8,1,1,1,1,1,1,1,0,0],[6,1,1,1,1,1,1,1,6,0],[6,1,1,1,1,1,1,1,6,8],[0,8,1,1,1,8,6,8,0,0],[6,8,6,0,6,0,8,0,6,8],[8,6,0,6,0,6,6,8,0,8]],"output":[[6,6,8,8,8,0,8,0,6,0],[0,8,0,0,6,6,6,6,8,0],[6,6,0,1,1,1,1,0,6,6],[0,0,1,1,1,1,1,1,0,0],[8,1,1,1,1,1,1,1,1,0],[6,1,1,1,1,1,1,1,1,0],[6,1,1,1,1,1,1,1,1,8],[0,8,1,1,1,1,1,1,0,0],[6,8,6,0,6,0,8,0,6,8],[8,6,0,6,0,6,6,8,0,8]]},{"input":[[9,0,0,0,0,7,7,0,9,0],[0,0,9,0,0,0,9,9,9,0],[7,7,0,3,3,3,3,7,9,7],[0,3,7,3,3,3,3,9,3,7],[0,3,9,3,3,0,0,0,3,9],[9,3,3,3,3,0,0,9,3,0],[3,3,3,3,3,9,0,0,3,7],[3,3,3,3,3,0,9,9,3,0],[0,9,0,3,3,3,9,9,9,9],[7,9,7,9,0,0,7,7,0,0]],"output":[[9,0,0,0,0,7,7,0,9,0],[0,0,9,0,0,0,9,9,9,0],[7,7,0,3,3,3,3,7,9,7],[0,3,7,3,3,3,3,9,3,7],[0,3,9,3,3,3,3,0,3,9],[9,3,3,3,3,3,3,3,3,0],[3,3,3,3,3,3,3,3,3,3],[3,3,3,3,3,3,3,3,3,3],[0,9,0,3,3,3,3,9,9,9],[7,9,7,9,0,0,7,7,0,0]]},{"input":[[1,1,0,1,1,0,0,0,4,1],[4,4,0,4,2,2,1,4,4,4],[4,0,2,2,2,2,2,2,1,0],[0,4,2,2,2,0,0,1,1,0],[0,0,1,2,2,2,1,0,1,0],[0,4,0,2,2,0,2,0,0,0],[2,2,2,2,2,2,2,2,2,2],[4,1,4,1,2,2,4,4,1,4],[0,4,4,4,2,1,1,4,4,1],[4,0,4,4,0,4,1,1,4,0]],"output":[[1,1,0,1,1,0,0,0,4,1],[4,4,0,4,2,2,1,4,4,4],[4,0,2,2,2,2,2,2,1,0],[0,4,2,2,2,2,2,2,1,0],[0,0,1,2,2,2,2,0,1,0],[0,4,0,2,2,2,2,0,0,0],[2,2,2,2,2,2,2,2,2,2],[4,1,4,1,2,2,4,4,1,4],[0,4,4,4,2,2,1,4,4,1],[4,0,4,4,0,4,1,1,4,0]]}],"test":[{"input":[[0,0,6,6,6,6,0,6,6,0],[2,6,0,6,9,0,6,0,2,6],[2,6,6,9,9,9,9,0,6,6],[2,0,0,9,9,0,9,6,0,2],[9,9,9,9,9,9,6,0,0,0],[9,9,9,9,9,9,9,9,0,0],[0,0,9,9,9,9,6,6,0,0],[2,9,9,9,9,9,9,6,2,6],[0,0,2,9,0,6,9,0,2,6],[6,0,0,2,0,6,0,6,6,2]],"output":[[0,0,6,6,6,6,0,6,6,0],[2,6,0,6,9,9,6,0,2,6],[2,6,6,9,9,9,9,0,6,6],[2,0,0,9,9,9,9,6,0,2],[9,9,9,9,9,9,9,9,9,9],[9,9,9,9,9,9,9,9,9,9],[0,0,9,9,9,9,9,9,0,0],[2,9,9,9,9,9,9,9,9,6],[0,0,2,9,0,6,9,0,2,6],[6,0,0,2,0,6,0,6,6,2]]}],"name":"c35c1b4c"}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/c48954c1.json b/data/arc-agi/evaluation/c48954c1.json
deleted file mode 100644
index 4a008e6..0000000
--- a/data/arc-agi/evaluation/c48954c1.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[8, 8, 6], [6, 3, 6], [6, 8, 8]], "output": [[8, 8, 6, 6, 8, 8, 8, 8, 6], [6, 3, 6, 6, 3, 6, 6, 3, 6], [6, 8, 8, 8, 8, 6, 6, 8, 8], [6, 8, 8, 8, 8, 6, 6, 8, 8], [6, 3, 6, 6, 3, 6, 6, 3, 6], [8, 8, 6, 6, 8, 8, 8, 8, 6], [8, 8, 6, 6, 8, 8, 8, 8, 6], [6, 3, 6, 6, 3, 6, 6, 3, 6], [6, 8, 8, 8, 8, 6, 6, 8, 8]]}], "train": [{"input": [[7, 6, 7], [2, 7, 6], [1, 2, 7]], "output": [[7, 2, 1, 1, 2, 7, 7, 2, 1], [6, 7, 2, 2, 7, 6, 6, 7, 2], [7, 6, 7, 7, 6, 7, 7, 6, 7], [7, 6, 7, 7, 6, 7, 7, 6, 7], [6, 7, 2, 2, 7, 6, 6, 7, 2], [7, 2, 1, 1, 2, 7, 7, 2, 1], [7, 2, 1, 1, 2, 7, 7, 2, 1], [6, 7, 2, 2, 7, 6, 6, 7, 2], [7, 6, 7, 7, 6, 7, 7, 6, 7]]}, {"input": [[6, 1, 7], [1, 6, 7], [4, 7, 4]], "output": [[4, 7, 4, 4, 7, 4, 4, 7, 4], [7, 6, 1, 1, 6, 7, 7, 6, 1], [7, 1, 6, 6, 1, 7, 7, 1, 6], [7, 1, 6, 6, 1, 7, 7, 1, 6], [7, 6, 1, 1, 6, 7, 7, 6, 1], [4, 7, 4, 4, 7, 4, 4, 7, 4], [4, 7, 4, 4, 7, 4, 4, 7, 4], [7, 6, 1, 1, 6, 7, 7, 6, 1], [7, 1, 6, 6, 1, 7, 7, 1, 6]]}, {"input": [[1, 9, 4], [9, 1, 6], [6, 9, 4]], "output": [[4, 9, 6, 6, 9, 4, 4, 9, 6], [6, 1, 9, 9, 1, 6, 6, 1, 9], [4, 9, 1, 1, 9, 4, 4, 9, 1], [4, 9, 1, 1, 9, 4, 4, 9, 1], [6, 1, 9, 9, 1, 6, 6, 1, 9], [4, 9, 6, 6, 9, 4, 4, 9, 6], [4, 9, 6, 6, 9, 4, 4, 9, 6], [6, 1, 9, 9, 1, 6, 6, 1, 9], [4, 9, 1, 1, 9, 4, 4, 9, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/c62e2108.json b/data/arc-agi/evaluation/c62e2108.json
deleted file mode 100644
index fe4475b..0000000
--- a/data/arc-agi/evaluation/c62e2108.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 2, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0], [0, 0, 2, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 8, 8, 0, 0, 8, 8, 0, 0, 8, 8, 0, 0, 8, 8, 0, 0], [8, 0, 0, 8, 8, 0, 0, 8, 8, 0, 0, 8, 8, 0, 0, 8, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 0, 0, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 0, 0, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 4, 4, 0, 0, 4, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 4, 4, 0, 0, 4, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/c64f1187.json b/data/arc-agi/evaluation/c64f1187.json
deleted file mode 100644
index 027d2de..0000000
--- a/data/arc-agi/evaluation/c64f1187.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 2, 0, 5, 5, 0, 5, 5, 0, 5, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 3, 0, 5, 2, 0, 5, 3, 0, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 3, 0, 5, 5, 0, 5, 5, 0, 5, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 0, 0, 0, 0, 0, 0, 0, 4, 4], [2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 0, 2, 2, 0, 3, 3, 0, 0, 0], [0, 3, 0, 2, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 8, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 0], [0, 0, 5, 3, 0, 5, 3, 0, 5, 7, 0, 5, 5, 0, 5, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 0], [0, 0, 5, 2, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 0], [0, 0, 5, 2, 0, 5, 2, 0, 5, 3, 0, 5, 3, 0, 5, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 0, 3, 3, 0, 7, 7, 0, 0, 0, 0, 2, 2], [0, 3, 0, 0, 3, 0, 7, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 2, 2, 0, 3, 3, 0, 3, 3, 0, 7, 7], [2, 2, 0, 2, 2, 0, 0, 3, 0, 0, 3, 0, 7, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 2, 0, 0, 0, 8, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 5, 2, 0, 5, 2, 0, 5, 2, 0, 5, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 5, 3, 0, 5, 3, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 5, 4, 0, 5, 3, 0, 5, 5, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 5, 4, 0, 5, 5, 0, 5, 5, 0, 5, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 0, 2, 2, 0, 2, 2, 0, 8, 8], [2, 0, 0, 2, 0, 0, 2, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 3, 3, 0, 0, 0, 0, 0, 0], [4, 4, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 8, 8], [4, 4, 0, 0, 0, 0, 0, 0, 0, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/c658a4bd.json b/data/arc-agi/evaluation/c658a4bd.json
deleted file mode 100644
index 40ca1eb..0000000
--- a/data/arc-agi/evaluation/c658a4bd.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 3, 3, 3, 3, 0], [8, 0, 0, 0, 0, 8, 0, 0, 3, 0, 0, 3, 0], [8, 0, 0, 0, 0, 8, 0, 0, 3, 0, 0, 3, 0], [8, 0, 0, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0], [8, 0, 0, 2, 0, 8, 0, 0, 0, 0, 2, 0, 0], [8, 8, 8, 2, 8, 8, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0], [4, 4, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0], [4, 4, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2], [2, 8, 8, 8, 8, 8, 8, 2], [2, 8, 3, 3, 3, 3, 8, 2], [2, 8, 3, 4, 4, 3, 8, 2], [2, 8, 3, 4, 4, 3, 8, 2], [2, 8, 3, 3, 3, 3, 8, 2], [2, 8, 8, 8, 8, 8, 8, 2], [2, 2, 2, 2, 2, 2, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 4, 0, 0, 0, 4, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 1, 0, 1, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 8, 0, 0, 0, 3, 0, 8, 0, 0, 0, 0, 0, 3, 0, 0], [0, 8, 0, 0, 0, 3, 0, 8, 0, 0, 0, 0, 0, 3, 0, 0], [0, 8, 0, 0, 0, 3, 0, 8, 0, 0, 0, 0, 0, 3, 0, 0], [0, 8, 8, 8, 8, 3, 8, 8, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 8, 8, 8, 8, 8, 8, 8, 3], [3, 8, 4, 4, 4, 4, 4, 8, 3], [3, 8, 4, 1, 1, 1, 4, 8, 3], [3, 8, 4, 1, 2, 1, 4, 8, 3], [3, 8, 4, 1, 1, 1, 4, 8, 3], [3, 8, 4, 4, 4, 4, 4, 8, 3], [3, 8, 8, 8, 8, 8, 8, 8, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 2, 2, 0, 0], [0, 0, 6, 0, 8, 8, 8, 8, 8, 8, 0, 6, 0, 0, 0, 2, 2, 0, 0], [0, 0, 6, 0, 8, 0, 0, 0, 0, 8, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 8, 3, 3, 3, 3, 8, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 8, 3, 0, 0, 0, 8, 0, 6, 3, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 8, 3, 0, 0, 0, 8, 0, 6, 3, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 8, 8, 8, 8, 8, 8, 0, 6, 3, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 3, 0, 0, 0, 0, 0, 6, 3, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 3, 6, 6, 6, 6, 6, 6, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 3, 3, 3, 3, 3, 3, 3, 3, 6], [6, 3, 8, 8, 8, 8, 8, 8, 3, 6], [6, 3, 8, 4, 4, 4, 4, 8, 3, 6], [6, 3, 8, 4, 2, 2, 4, 8, 3, 6], [6, 3, 8, 4, 2, 2, 4, 8, 3, 6], [6, 3, 8, 4, 4, 4, 4, 8, 3, 6], [6, 3, 8, 8, 8, 8, 8, 8, 3, 6], [6, 3, 3, 3, 3, 3, 3, 3, 3, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/c663677b.json b/data/arc-agi/evaluation/c663677b.json
deleted file mode 100644
index 2573174..0000000
--- a/data/arc-agi/evaluation/c663677b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3], [4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6], [3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9], [2, 7, 3, 8, 4, 0, 0, 0, 0, 7, 3, 8, 4, 9, 5, 1, 2, 7, 3, 8, 4, 9, 5, 1, 2, 7, 3], [4, 7, 1, 4, 1, 0, 0, 0, 0, 7, 1, 4, 1, 4, 7, 1, 4, 7, 1, 4, 1, 4, 7, 1, 4, 7, 1], [3, 8, 4, 9, 4, 0, 0, 0, 0, 8, 4, 9, 4, 9, 5, 1, 3, 8, 4, 9, 4, 9, 5, 1, 3, 8, 4], [2, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, 5, 7, 5, 3, 1, 2, 9, 7, 5, 7, 5, 3, 1, 2, 9, 7], [1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1], [5, 0, 0, 0, 0, 0, 2, 1, 5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3, 2, 4, 3, 2, 1, 0, 0, 3], [4, 0, 0, 0, 0, 0, 9, 1, 4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6, 7, 7, 8, 9, 1, 0, 0, 6], [3, 0, 0, 0, 0, 0, 7, 1, 3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9, 3, 1, 4, 7, 1, 0, 0, 9], [2, 0, 0, 0, 0, 0, 5, 1, 2, 7, 3, 8, 4, 0, 0, 0, 0, 0, 0, 8, 4, 9, 5, 1, 2, 7, 3], [4, 7, 1, 4, 1, 4, 7, 1, 4, 7, 1, 4, 1, 0, 0, 0, 0, 0, 0, 4, 1, 4, 7, 1, 4, 7, 1], [3, 8, 4, 9, 4, 9, 5, 1, 3, 8, 4, 9, 4, 9, 5, 1, 3, 8, 4, 9, 4, 9, 5, 1, 3, 8, 4], [2, 9, 7, 5, 7, 5, 3, 1, 2, 9, 7, 5, 7, 5, 3, 1, 2, 9, 7, 5, 7, 5, 3, 1, 2, 9, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3], [4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6], [3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9], [2, 7, 3, 8, 4, 9, 5, 1, 2, 7, 3, 8, 4, 9, 5, 1, 2, 7, 3, 8, 4, 9, 0, 0, 0, 0, 3], [4, 7, 1, 4, 1, 4, 7, 1, 4, 7, 1, 4, 1, 4, 7, 1, 4, 7, 1, 4, 1, 4, 0, 0, 0, 0, 1], [3, 8, 4, 9, 4, 9, 5, 1, 3, 8, 4, 9, 4, 9, 5, 1, 3, 8, 4, 9, 4, 9, 0, 0, 0, 0, 4], [2, 9, 7, 5, 7, 5, 3, 1, 2, 9, 7, 5, 7, 5, 3, 1, 2, 9, 7, 5, 7, 5, 0, 0, 0, 0, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3], [4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6], [3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9]], "output": [[5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3], [4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6], [3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9], [2, 7, 3, 8, 4, 9, 5, 1, 2, 7, 3, 8, 4, 9, 5, 1, 2, 7, 3, 8, 4, 9, 5, 1, 2, 7, 3], [4, 7, 1, 4, 1, 4, 7, 1, 4, 7, 1, 4, 1, 4, 7, 1, 4, 7, 1, 4, 1, 4, 7, 1, 4, 7, 1], [3, 8, 4, 9, 4, 9, 5, 1, 3, 8, 4, 9, 4, 9, 5, 1, 3, 8, 4, 9, 4, 9, 5, 1, 3, 8, 4], [2, 9, 7, 5, 7, 5, 3, 1, 2, 9, 7, 5, 7, 5, 3, 1, 2, 9, 7, 5, 7, 5, 3, 1, 2, 9, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3], [4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6], [3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9], [2, 7, 3, 8, 4, 9, 5, 1, 2, 7, 3, 8, 4, 9, 5, 1, 2, 7, 3, 8, 4, 9, 5, 1, 2, 7, 3], [4, 7, 1, 4, 1, 4, 7, 1, 4, 7, 1, 4, 1, 4, 7, 1, 4, 7, 1, 4, 1, 4, 7, 1, 4, 7, 1], [3, 8, 4, 9, 4, 9, 5, 1, 3, 8, 4, 9, 4, 9, 5, 1, 3, 8, 4, 9, 4, 9, 5, 1, 3, 8, 4], [2, 9, 7, 5, 7, 5, 3, 1, 2, 9, 7, 5, 7, 5, 3, 1, 2, 9, 7, 5, 7, 5, 3, 1, 2, 9, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3], [4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6], [3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9], [2, 7, 3, 8, 4, 9, 5, 1, 2, 7, 3, 8, 4, 9, 5, 1, 2, 7, 3, 8, 4, 9, 5, 1, 2, 7, 3], [4, 7, 1, 4, 1, 4, 7, 1, 4, 7, 1, 4, 1, 4, 7, 1, 4, 7, 1, 4, 1, 4, 7, 1, 4, 7, 1], [3, 8, 4, 9, 4, 9, 5, 1, 3, 8, 4, 9, 4, 9, 5, 1, 3, 8, 4, 9, 4, 9, 5, 1, 3, 8, 4], [2, 9, 7, 5, 7, 5, 3, 1, 2, 9, 7, 5, 7, 5, 3, 1, 2, 9, 7, 5, 7, 5, 3, 1, 2, 9, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3, 2, 4, 3, 2, 1, 5, 4, 3], [4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6, 7, 7, 8, 9, 1, 4, 5, 6], [3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9, 3, 1, 4, 7, 1, 3, 6, 9]]}], "train": [{"input": [[5, 1, 3, 0, 0, 0, 0, 0, 0, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3], [1, 5, 3, 0, 0, 0, 0, 0, 0, 5, 3, 1, 1, 5, 3, 1, 1, 0, 0, 0, 0, 0, 3, 1, 1, 5, 3], [3, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3, 1, 1, 1, 1, 3, 0, 0, 0, 0, 0, 1, 1, 3, 3, 3], [5, 1, 3, 0, 0, 0, 0, 0, 0, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3], [1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 5, 1, 3, 1, 3, 5, 1, 3, 5, 1, 3, 1, 3, 5, 1, 3, 5, 1, 3, 1, 3, 5, 1, 3, 5, 1], [5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3], [1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3], [3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3], [5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 0, 0, 0, 0, 0, 5, 1, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1], [3, 5, 1, 3, 1, 3, 5, 1, 3, 5, 1, 3, 1, 3, 5, 1, 3, 5, 1, 0, 0, 0, 0, 0, 3, 5, 1], [5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1, 0, 0, 0, 0, 0, 5, 3, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1], [5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3], [1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3], [3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3], [0, 0, 0, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 3, 1, 3, 5, 1, 3, 5, 1, 3, 1, 3, 5, 1, 3, 5, 1, 3, 1, 3, 5, 1, 3, 5, 1], [5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3], [1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3], [3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3]], "output": [[5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3], [1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3], [3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3], [5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 5, 1, 3, 1, 3, 5, 1, 3, 5, 1, 3, 1, 3, 5, 1, 3, 5, 1, 3, 1, 3, 5, 1, 3, 5, 1], [5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3], [1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3], [3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3], [5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 5, 1, 3, 1, 3, 5, 1, 3, 5, 1, 3, 1, 3, 5, 1, 3, 5, 1, 3, 1, 3, 5, 1, 3, 5, 1], [5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3], [1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3], [3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3], [5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 5, 1, 3, 1, 3, 5, 1, 3, 5, 1, 3, 1, 3, 5, 1, 3, 5, 1, 3, 1, 3, 5, 1, 3, 5, 1], [5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1, 5, 1, 5, 3, 1, 5, 3, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3, 5, 1, 3, 5, 1, 5, 1, 3], [1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3, 1, 1, 5, 3], [3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3, 3, 1, 1, 1, 1, 3, 3, 3]]}, {"input": [[3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4], [7, 6, 5, 4, 4, 3, 2, 1, 0, 0, 0, 0, 0, 0, 2, 1, 7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5], [4, 5, 6, 7, 5, 6, 7, 1, 0, 0, 0, 0, 0, 0, 7, 1, 4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6], [1, 4, 7, 3, 6, 2, 5, 1, 0, 0, 0, 0, 0, 0, 5, 1, 1, 4, 7, 3, 6, 2, 5, 1, 1, 4, 7], [3, 4, 5, 6, 5, 6, 7, 1, 0, 0, 0, 0, 0, 0, 7, 1, 3, 4, 5, 6, 5, 6, 7, 1, 3, 4, 5], [7, 3, 6, 2, 6, 2, 5, 1, 7, 3, 6, 2, 6, 2, 5, 1, 7, 3, 6, 2, 6, 2, 5, 1, 7, 3, 6], [4, 2, 7, 5, 7, 5, 3, 1, 4, 0, 0, 0, 0, 5, 3, 1, 4, 2, 7, 5, 7, 5, 3, 1, 4, 2, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4], [7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5], [4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6], [1, 4, 7, 3, 6, 2, 5, 1, 1, 4, 7, 3, 6, 2, 5, 1, 1, 4, 7, 3, 6, 2, 5, 1, 1, 4, 7], [3, 4, 5, 6, 5, 6, 7, 1, 3, 4, 5, 6, 5, 6, 7, 1, 3, 4, 5, 6, 5, 6, 7, 1, 3, 4, 5], [7, 3, 6, 2, 6, 2, 5, 1, 7, 3, 6, 2, 6, 2, 5, 1, 7, 3, 6, 2, 6, 0, 0, 0, 0, 3, 6], [4, 2, 7, 5, 7, 5, 3, 1, 4, 2, 7, 5, 7, 5, 3, 1, 4, 2, 7, 5, 7, 0, 0, 0, 0, 2, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1], [3, 7, 0, 0, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 0, 0, 0, 0, 7, 4], [7, 6, 0, 0, 4, 3, 2, 1, 7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5, 4, 4, 0, 0, 0, 0, 6, 5], [4, 5, 0, 0, 5, 6, 7, 1, 4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6], [1, 4, 0, 0, 6, 2, 5, 1, 1, 4, 7, 3, 6, 2, 5, 1, 1, 4, 7, 3, 6, 2, 5, 1, 1, 4, 7], [3, 4, 5, 6, 5, 6, 7, 1, 3, 4, 5, 6, 5, 6, 7, 1, 3, 4, 5, 6, 5, 6, 7, 1, 3, 4, 5], [7, 3, 6, 2, 6, 2, 5, 1, 7, 3, 6, 2, 6, 2, 5, 1, 7, 3, 6, 0, 0, 0, 0, 0, 0, 3, 6], [4, 2, 7, 5, 7, 5, 3, 1, 4, 2, 7, 5, 7, 5, 3, 1, 4, 2, 7, 0, 0, 0, 0, 0, 0, 2, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1], [3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 0, 0, 0, 0, 0, 0, 7, 4], [7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5], [4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6]], "output": [[3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4], [7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5], [4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6], [1, 4, 7, 3, 6, 2, 5, 1, 1, 4, 7, 3, 6, 2, 5, 1, 1, 4, 7, 3, 6, 2, 5, 1, 1, 4, 7], [3, 4, 5, 6, 5, 6, 7, 1, 3, 4, 5, 6, 5, 6, 7, 1, 3, 4, 5, 6, 5, 6, 7, 1, 3, 4, 5], [7, 3, 6, 2, 6, 2, 5, 1, 7, 3, 6, 2, 6, 2, 5, 1, 7, 3, 6, 2, 6, 2, 5, 1, 7, 3, 6], [4, 2, 7, 5, 7, 5, 3, 1, 4, 2, 7, 5, 7, 5, 3, 1, 4, 2, 7, 5, 7, 5, 3, 1, 4, 2, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4], [7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5], [4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6], [1, 4, 7, 3, 6, 2, 5, 1, 1, 4, 7, 3, 6, 2, 5, 1, 1, 4, 7, 3, 6, 2, 5, 1, 1, 4, 7], [3, 4, 5, 6, 5, 6, 7, 1, 3, 4, 5, 6, 5, 6, 7, 1, 3, 4, 5, 6, 5, 6, 7, 1, 3, 4, 5], [7, 3, 6, 2, 6, 2, 5, 1, 7, 3, 6, 2, 6, 2, 5, 1, 7, 3, 6, 2, 6, 2, 5, 1, 7, 3, 6], [4, 2, 7, 5, 7, 5, 3, 1, 4, 2, 7, 5, 7, 5, 3, 1, 4, 2, 7, 5, 7, 5, 3, 1, 4, 2, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4], [7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5], [4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6], [1, 4, 7, 3, 6, 2, 5, 1, 1, 4, 7, 3, 6, 2, 5, 1, 1, 4, 7, 3, 6, 2, 5, 1, 1, 4, 7], [3, 4, 5, 6, 5, 6, 7, 1, 3, 4, 5, 6, 5, 6, 7, 1, 3, 4, 5, 6, 5, 6, 7, 1, 3, 4, 5], [7, 3, 6, 2, 6, 2, 5, 1, 7, 3, 6, 2, 6, 2, 5, 1, 7, 3, 6, 2, 6, 2, 5, 1, 7, 3, 6], [4, 2, 7, 5, 7, 5, 3, 1, 4, 2, 7, 5, 7, 5, 3, 1, 4, 2, 7, 5, 7, 5, 3, 1, 4, 2, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4, 1, 3, 7, 4], [7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5, 4, 4, 3, 2, 1, 7, 6, 5], [4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6, 7, 5, 6, 7, 1, 4, 5, 6]]}, {"input": [[3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3], [5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5], [7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3], [5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5], [3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 0, 0, 0, 7, 5, 3, 1, 3, 1, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1], [7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 0, 0, 0, 3, 5, 7, 1, 7, 1, 3], [5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 0, 0, 0, 5, 1, 5, 1, 5, 1, 5], [7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3], [5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5], [3, 1, 7, 5, 7, 5, 3, 0, 0, 0, 0, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 1, 7, 5, 7, 5, 3, 0, 0, 0, 0, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3], [0, 0, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 0, 0, 0, 5, 1, 5], [0, 0, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 0, 0, 0, 7, 1, 3], [0, 0, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 0, 0, 0, 5, 1, 5], [0, 0, 7, 5, 7, 5, 3, 1, 3, 1, 0, 0, 7, 5, 3, 1, 3, 1, 7, 5, 7, 0, 0, 0, 3, 1, 7], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1], [3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 0, 0, 0, 3, 1, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3]], "output": [[3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3], [5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5], [7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3], [5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5], [3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3], [5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5], [7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3], [5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5], [3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3], [5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5], [7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3], [5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5], [3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7, 5, 7, 5, 3, 1, 3, 1, 7], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3, 5, 3, 5, 7, 1, 7, 1, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/c6e1b8da.json b/data/arc-agi/evaluation/c6e1b8da.json
deleted file mode 100644
index 24aa1dd..0000000
--- a/data/arc-agi/evaluation/c6e1b8da.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 0, 0, 0], [0, 3, 8, 8, 8, 8, 8, 8, 8, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 0, 0, 0], [0, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 8, 8, 8, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 8, 8, 8, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 8, 8, 8, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/c7d4e6ad.json b/data/arc-agi/evaluation/c7d4e6ad.json
deleted file mode 100644
index 72c2053..0000000
--- a/data/arc-agi/evaluation/c7d4e6ad.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 5, 0, 0, 0, 0], [8, 0, 0, 0, 0, 5, 0, 0, 0, 0], [8, 0, 0, 5, 5, 5, 0, 0, 0, 0], [2, 0, 0, 5, 0, 0, 0, 0, 0, 0], [2, 0, 0, 5, 0, 0, 0, 0, 0, 0], [2, 0, 0, 5, 5, 5, 5, 0, 0, 0], [2, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 0, 0, 8, 8, 8, 0, 0, 0, 0], [2, 0, 0, 2, 0, 0, 0, 0, 0, 0], [2, 0, 0, 2, 0, 0, 0, 0, 0, 0], [2, 0, 0, 2, 2, 2, 2, 0, 0, 0], [2, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [9, 0, 0, 0, 0, 5, 0, 0, 0, 0], [9, 0, 0, 0, 0, 5, 0, 0, 0, 0], [6, 0, 0, 0, 5, 5, 0, 0, 0, 0], [6, 0, 0, 5, 5, 5, 0, 0, 0, 0], [6, 0, 0, 5, 0, 5, 0, 0, 0, 0], [4, 0, 0, 0, 0, 5, 0, 0, 0, 0], [4, 0, 0, 0, 0, 5, 0, 0, 0, 0], [4, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [9, 0, 0, 0, 0, 9, 0, 0, 0, 0], [9, 0, 0, 0, 0, 9, 0, 0, 0, 0], [6, 0, 0, 0, 6, 6, 0, 0, 0, 0], [6, 0, 0, 6, 6, 6, 0, 0, 0, 0], [6, 0, 0, 6, 0, 6, 0, 0, 0, 0], [4, 0, 0, 0, 0, 4, 0, 0, 0, 0], [4, 0, 0, 0, 0, 4, 0, 0, 0, 0], [4, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 5, 5, 0, 5, 0, 0], [2, 0, 0, 5, 5, 5, 5, 5, 0, 0], [3, 0, 0, 5, 0, 0, 0, 0, 0, 0], [3, 0, 0, 5, 5, 5, 0, 0, 0, 0], [3, 0, 0, 0, 0, 5, 0, 0, 0, 0], [4, 0, 0, 5, 5, 5, 5, 0, 0, 0], [7, 0, 0, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 2, 2, 0, 2, 0, 0], [2, 0, 0, 2, 2, 2, 2, 2, 0, 0], [3, 0, 0, 3, 0, 0, 0, 0, 0, 0], [3, 0, 0, 3, 3, 3, 0, 0, 0, 0], [3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [4, 0, 0, 4, 4, 4, 4, 0, 0, 0], [7, 0, 0, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/c87289bb.json b/data/arc-agi/evaluation/c87289bb.json
deleted file mode 100644
index c2cf6b0..0000000
--- a/data/arc-agi/evaluation/c87289bb.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 8, 0, 0, 0, 8, 0, 0, 0, 8], [0, 8, 0, 0, 0, 8, 0, 0, 0, 8], [0, 8, 0, 0, 0, 8, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 0, 0, 8, 0, 0, 0, 8], [0, 8, 0, 0, 0, 8, 0, 0, 0, 8], [0, 8, 0, 0, 0, 8, 0, 0, 0, 8], [0, 8, 0, 0, 0, 8, 8, 8, 0, 8], [0, 8, 0, 0, 2, 2, 2, 8, 0, 8], [0, 8, 0, 0, 0, 0, 0, 8, 0, 8], [0, 8, 0, 0, 0, 0, 0, 8, 0, 8], [0, 8, 0, 0, 0, 0, 0, 8, 0, 8], [0, 8, 0, 0, 0, 0, 0, 8, 0, 8]]}, {"input": [[0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8], [0, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8], [0, 8, 0, 8, 8, 2, 2, 2, 8, 8, 0, 8], [0, 8, 0, 8, 8, 0, 0, 0, 8, 8, 0, 8], [0, 8, 0, 8, 8, 0, 0, 0, 8, 8, 0, 8], [0, 8, 0, 8, 8, 0, 0, 0, 8, 8, 0, 8], [0, 8, 0, 8, 8, 0, 0, 0, 8, 8, 0, 8]]}, {"input": [[0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 8, 0], [0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 8, 0], [0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 8, 0], [0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 8, 0], [0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 8, 0], [0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 8, 0], [0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 8, 0], [8, 8, 0, 0, 8, 8, 0, 8, 8, 0, 8, 0], [8, 2, 2, 0, 8, 2, 2, 2, 8, 0, 8, 0], [8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0], [8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0], [8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0], [8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0]]}, {"input": [[8, 0, 8, 0, 0, 0, 8, 0, 0, 8, 0, 8], [8, 0, 8, 0, 0, 0, 8, 0, 0, 8, 0, 8], [8, 0, 8, 0, 0, 0, 8, 0, 0, 8, 0, 8], [8, 0, 8, 0, 0, 0, 8, 0, 0, 8, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 0, 8, 0, 0, 0, 8, 0, 0, 8, 0, 8], [8, 0, 8, 0, 0, 0, 8, 0, 0, 8, 0, 8], [8, 0, 8, 0, 0, 0, 8, 0, 0, 8, 0, 8], [8, 0, 8, 0, 0, 0, 8, 0, 0, 8, 0, 8], [8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 0, 8], [8, 8, 2, 2, 0, 2, 2, 2, 8, 8, 0, 8], [8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 0, 8], [8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 0, 8], [8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 0, 8], [8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 0, 8]]}], "test": [{"input": [[0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0], [0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0], [0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0], [0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0], [0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0], [0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0], [0, 8, 0, 8, 8, 0, 0, 8, 0, 8, 8, 0, 0, 8, 8], [0, 8, 0, 8, 2, 2, 0, 8, 0, 8, 2, 2, 2, 2, 8], [0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 8], [0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 8], [0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 8], [0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 8], [0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/c8b7cc0f.json b/data/arc-agi/evaluation/c8b7cc0f.json
deleted file mode 100644
index caa3cbf..0000000
--- a/data/arc-agi/evaluation/c8b7cc0f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 4, 0], [0, 0, 4, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 4], [1, 0, 0, 0, 4, 1, 0], [1, 4, 0, 4, 0, 1, 0], [1, 1, 1, 1, 1, 1, 0]], "output": [[4, 4, 4], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 1, 1, 1, 1, 1, 1], [0, 0, 0, 1, 6, 0, 6, 0, 1], [0, 0, 0, 1, 0, 6, 0, 0, 1], [0, 0, 0, 1, 0, 0, 0, 6, 1], [0, 6, 0, 1, 6, 0, 0, 0, 1], [0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 6, 6], [6, 6, 0], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 3, 0, 0, 0], [3, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 1, 0, 0, 3, 1, 0, 0], [0, 0, 1, 0, 0, 0, 1, 3, 0], [0, 0, 1, 0, 0, 3, 1, 0, 0], [0, 0, 1, 3, 0, 0, 1, 0, 0], [0, 3, 1, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 3, 0, 1, 3, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0]], "output": [[3, 3, 3], [3, 0, 0], [0, 0, 0]]}], "test": [{"input": [[2, 0, 0, 0, 0, 0, 2, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0], [1, 0, 2, 0, 0, 0, 1, 0, 0], [1, 0, 0, 0, 2, 0, 1, 2, 0], [1, 0, 0, 0, 0, 2, 1, 0, 0], [1, 2, 0, 0, 0, 0, 1, 0, 2], [1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0]], "output": [[2, 2, 2], [2, 0, 0], [0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/c92b942c.json b/data/arc-agi/evaluation/c92b942c.json
deleted file mode 100644
index 3610169..0000000
--- a/data/arc-agi/evaluation/c92b942c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0], [0, 6, 0], [0, 0, 0]], "output": [[3, 0, 0, 3, 0, 0, 3, 0, 0], [1, 6, 1, 1, 6, 1, 1, 6, 1], [0, 0, 3, 0, 0, 3, 0, 0, 3], [3, 0, 0, 3, 0, 0, 3, 0, 0], [1, 6, 1, 1, 6, 1, 1, 6, 1], [0, 0, 3, 0, 0, 3, 0, 0, 3], [3, 0, 0, 3, 0, 0, 3, 0, 0], [1, 6, 1, 1, 6, 1, 1, 6, 1], [0, 0, 3, 0, 0, 3, 0, 0, 3]]}, {"input": [[0, 0, 5, 0], [0, 0, 0, 0]], "output": [[1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3], [1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3], [1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 4, 0]], "output": [[0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [1, 1, 4, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 4, 1, 1, 1], [0, 0, 0, 3, 0, 3, 0, 0, 0, 3, 0, 3, 0, 0, 0, 3, 0, 0], [4, 1, 1, 1, 4, 1, 4, 1, 1, 1, 4, 1, 4, 1, 1, 1, 4, 1], [0, 3, 0, 0, 0, 3, 0, 3, 0, 0, 0, 3, 0, 3, 0, 0, 0, 3], [1, 1, 4, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 4, 1, 1, 1], [0, 0, 0, 3, 0, 3, 0, 0, 0, 3, 0, 3, 0, 0, 0, 3, 0, 0], [4, 1, 1, 1, 4, 1, 4, 1, 1, 1, 4, 1, 4, 1, 1, 1, 4, 1], [0, 3, 0, 0, 0, 3, 0, 3, 0, 0, 0, 3, 0, 3, 0, 0, 0, 3], [1, 1, 4, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 4, 1, 1, 1], [0, 0, 0, 3, 0, 3, 0, 0, 0, 3, 0, 3, 0, 0, 0, 3, 0, 0], [4, 1, 1, 1, 4, 1, 4, 1, 1, 1, 4, 1, 4, 1, 1, 1, 4, 1]]}, {"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 2, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0], [1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1], [0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0], [1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1], [0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0], [1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1], [0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[2, 0, 0], [0, 0, 0], [0, 0, 0]], "output": [[2, 1, 1, 2, 1, 1, 2, 1, 1], [0, 3, 0, 0, 3, 0, 0, 3, 0], [0, 0, 3, 0, 0, 3, 0, 0, 0], [2, 1, 1, 2, 1, 1, 2, 1, 1], [0, 3, 0, 0, 3, 0, 0, 3, 0], [0, 0, 3, 0, 0, 3, 0, 0, 0], [2, 1, 1, 2, 1, 1, 2, 1, 1], [0, 3, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/c97c0139.json b/data/arc-agi/evaluation/c97c0139.json
deleted file mode 100644
index 7d91787..0000000
--- a/data/arc-agi/evaluation/c97c0139.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 2, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 2, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 8, 8, 2, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 2, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 2, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ca8de6ea.json b/data/arc-agi/evaluation/ca8de6ea.json
deleted file mode 100644
index 07171c0..0000000
--- a/data/arc-agi/evaluation/ca8de6ea.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 0, 0, 0, 9], [0, 5, 0, 8, 0], [0, 0, 7, 0, 0], [0, 8, 0, 5, 0], [9, 0, 0, 0, 1]], "output": [[1, 5, 9], [8, 7, 8], [9, 5, 1]]}, {"input": [[6, 0, 0, 0, 7], [0, 2, 0, 4, 0], [0, 0, 3, 0, 0], [0, 4, 0, 2, 0], [7, 0, 0, 0, 6]], "output": [[6, 2, 7], [4, 3, 4], [7, 2, 6]]}, {"input": [[2, 0, 0, 0, 1], [0, 3, 0, 6, 0], [0, 0, 4, 0, 0], [0, 6, 0, 3, 0], [1, 0, 0, 0, 2]], "output": [[2, 3, 1], [6, 4, 6], [1, 3, 2]]}], "test": [{"input": [[7, 0, 0, 0, 5], [0, 6, 0, 4, 0], [0, 0, 2, 0, 0], [0, 4, 0, 6, 0], [5, 0, 0, 0, 7]], "output": [[7, 6, 5], [4, 2, 4], [5, 6, 7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ca8f78db.json b/data/arc-agi/evaluation/ca8f78db.json
deleted file mode 100644
index 0edd387..0000000
--- a/data/arc-agi/evaluation/ca8f78db.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 0, 0, 0, 0, 0, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 0, 0, 0, 0, 0, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 0, 0, 0, 0, 0, 0, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 0, 0, 0, 0, 0, 0, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 0, 0, 0, 0, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 0, 0, 0, 0, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8]]}], "train": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 0, 0, 0, 0, 3, 1, 4, 2, 5, 3, 1, 4, 2, 0, 0, 0, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 0, 0, 0, 0, 3, 1, 4, 2, 5, 3, 1, 4, 2, 0, 0, 0, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 0, 0, 0, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 0, 0, 0, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 0, 0, 0, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 0, 0, 0, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 0, 0, 0, 0, 0, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 0, 0, 0, 0, 0, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 0, 0, 0, 0, 0, 0, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 0, 0, 0, 0, 0, 0, 4], [1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 0, 0, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1], [1, 4, 0, 0, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 4, 1, 4], [1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 0, 0, 0, 0, 0, 0, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 0, 0, 0, 0, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 0, 0, 0, 0, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 0, 0, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 0, 0, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 0, 0, 7, 3, 6, 2, 0, 0, 0, 0, 0, 0, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 0, 0, 0, 0, 0, 0, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 0, 0, 0, 0, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 0, 0, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/cad67732.json b/data/arc-agi/evaluation/cad67732.json
deleted file mode 100644
index 5d29b78..0000000
--- a/data/arc-agi/evaluation/cad67732.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 1, 0, 0, 0, 0], [1, 3, 2, 0, 0, 0], [0, 2, 3, 1, 0, 0], [0, 0, 1, 4, 1, 0], [0, 0, 0, 1, 3, 2], [0, 0, 0, 0, 2, 3]], "output": [[4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 3, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 3, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 3, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3]]}, {"input": [[2, 5, 0, 0, 0], [5, 2, 0, 0, 0], [0, 0, 2, 5, 0], [0, 0, 5, 2, 0], [0, 0, 0, 0, 2]], "output": [[2, 5, 0, 0, 0, 0, 0, 0, 0, 0], [5, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 5, 0, 0, 0, 0, 0, 0], [0, 0, 5, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 5], [0, 0, 0, 0, 0, 0, 0, 0, 5, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 6, 6], [0, 0, 0, 0, 0, 0, 0, 4, 8, 6], [0, 0, 0, 0, 0, 0, 6, 6, 4, 0], [0, 0, 0, 0, 0, 4, 8, 6, 0, 0], [0, 0, 0, 0, 6, 6, 4, 0, 0, 0], [0, 0, 0, 4, 8, 6, 0, 0, 0, 0], [0, 0, 6, 6, 4, 0, 0, 0, 0, 0], [0, 4, 8, 6, 0, 0, 0, 0, 0, 0], [6, 6, 4, 0, 0, 0, 0, 0, 0, 0], [8, 6, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/cb227835.json b/data/arc-agi/evaluation/cb227835.json
deleted file mode 100644
index 6c1ccfd..0000000
--- a/data/arc-agi/evaluation/cb227835.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 8, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 8, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ccd554ac.json b/data/arc-agi/evaluation/ccd554ac.json
deleted file mode 100644
index 6007d3b..0000000
--- a/data/arc-agi/evaluation/ccd554ac.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 0, 2], [0, 2, 0], [2, 2, 2]], "output": [[2, 0, 2, 2, 0, 2, 2, 0, 2], [0, 2, 0, 0, 2, 0, 0, 2, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 2, 2, 0, 2, 2, 0, 2], [0, 2, 0, 0, 2, 0, 0, 2, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 2, 2, 0, 2, 2, 0, 2], [0, 2, 0, 0, 2, 0, 0, 2, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2]]}, {"input": [[1, 0], [1, 1]], "output": [[1, 0, 1, 0], [1, 1, 1, 1], [1, 0, 1, 0], [1, 1, 1, 1]]}, {"input": [[0, 3], [3, 0]], "output": [[0, 3, 0, 3], [3, 0, 3, 0], [0, 3, 0, 3], [3, 0, 3, 0]]}, {"input": [[0, 0, 8], [8, 8, 8], [8, 0, 0]], "output": [[0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 8, 0, 0, 8, 0, 0]]}, {"input": [[0, 0, 2, 0], [2, 0, 2, 0], [0, 2, 0, 2], [2, 2, 2, 0]], "output": [[0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0], [2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0], [2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0], [2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0], [2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0]]}, {"input": [[0, 7, 0, 0], [7, 7, 7, 7], [0, 7, 0, 0], [0, 7, 0, 7]], "output": [[0, 7, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 7, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0], [0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 0, 7], [0, 7, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 7, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0], [0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 0, 7], [0, 7, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 7, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0], [0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 0, 7], [0, 7, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 7, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0], [0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 0, 7]]}], "test": [{"input": [[0, 8, 8, 0, 0], [8, 8, 8, 8, 8], [0, 8, 8, 0, 0], [8, 8, 8, 8, 8], [0, 8, 8, 0, 8]], "output": [[0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8], [0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8], [0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8], [0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8], [0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/cd3c21df.json b/data/arc-agi/evaluation/cd3c21df.json
deleted file mode 100644
index 730c0bf..0000000
--- a/data/arc-agi/evaluation/cd3c21df.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 4, 0, 2, 0], [0, 0, 5, 0, 0, 0, 0, 4, 0, 2, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0]], "output": [[2], [2], [2], [2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 2, 0, 0, 0, 0, 6, 6, 6, 0], [0, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 2, 0, 0], [6, 6, 6, 0, 0, 0, 0, 0, 2, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[7, 7], [7, 7]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 1, 2], [1, 1, 1]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 8, 4, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 8], [8, 8], [8, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ce039d91.json b/data/arc-agi/evaluation/ce039d91.json
deleted file mode 100644
index e6ad690..0000000
--- a/data/arc-agi/evaluation/ce039d91.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 5, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 5, 5, 5, 0, 0, 0], [0, 5, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 5, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 1, 1, 5, 0, 0, 0], [0, 5, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 5, 5], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 5, 0, 5, 5, 5, 0, 0, 0], [0, 5, 0, 0, 5, 5, 0, 0, 5, 0], [5, 0, 0, 0, 5, 5, 0, 0, 0, 5]], "output": [[0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 1, 5], [0, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 5, 0, 1, 1, 5, 0, 0, 0], [0, 1, 0, 0, 1, 1, 0, 0, 1, 0], [1, 0, 0, 0, 1, 1, 0, 0, 0, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 5, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 5, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 5, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [5, 0, 0, 0, 5, 5, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 5]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 1, 1, 0, 0, 1, 0], [0, 0, 0, 1, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 5, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [1, 0, 0, 0, 1, 1, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 5]]}], "test": [{"input": [[0, 5, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 5, 5, 5, 5, 0, 5, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 0, 0, 0]], "output": [[0, 1, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 1, 0, 1, 1, 1, 1, 0, 1, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 5, 0, 0], [0, 0, 5, 1, 1, 1, 1, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ce8d95cc.json b/data/arc-agi/evaluation/ce8d95cc.json
deleted file mode 100644
index b25f45e..0000000
--- a/data/arc-agi/evaluation/ce8d95cc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 8, 0, 0, 0, 0, 6, 0, 0], [3, 3, 3, 8, 3, 3, 3, 3, 6, 3, 3], [0, 0, 0, 8, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 6, 0, 0], [5, 5, 5, 8, 5, 5, 5, 5, 6, 5, 5], [0, 0, 0, 8, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 6, 0, 0]], "output": [[0, 8, 0, 6, 0], [3, 8, 3, 6, 3], [0, 8, 0, 6, 0], [5, 8, 5, 6, 5], [0, 8, 0, 6, 0]]}, {"input": [[0, 0, 1, 0, 0, 8, 0, 3, 0, 0, 0], [0, 0, 1, 0, 0, 8, 0, 3, 0, 0, 0], [0, 0, 1, 0, 0, 8, 0, 3, 0, 0, 0], [2, 2, 1, 2, 2, 8, 2, 3, 2, 2, 2], [0, 0, 1, 0, 0, 8, 0, 3, 0, 0, 0], [0, 0, 1, 0, 0, 8, 0, 3, 0, 0, 0], [0, 0, 1, 0, 0, 8, 0, 3, 0, 0, 0], [0, 0, 1, 0, 0, 8, 0, 3, 0, 0, 0], [0, 0, 1, 0, 0, 8, 0, 3, 0, 0, 0], [5, 5, 1, 5, 5, 8, 5, 3, 5, 5, 5], [0, 0, 1, 0, 0, 8, 0, 3, 0, 0, 0], [0, 0, 1, 0, 0, 8, 0, 3, 0, 0, 0]], "output": [[0, 1, 0, 8, 0, 3, 0], [2, 1, 2, 8, 2, 3, 2], [0, 1, 0, 8, 0, 3, 0], [5, 1, 5, 8, 5, 3, 5], [0, 1, 0, 8, 0, 3, 0]]}, {"input": [[0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [3, 3, 4, 3, 3, 3, 3, 3, 3], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0]], "output": [[0, 4, 0], [3, 4, 3], [0, 4, 0], [8, 8, 8], [0, 4, 0]]}, {"input": [[0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0], [7, 7, 3, 7, 7, 7, 7, 1, 7, 7, 7], [0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2], [0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0]], "output": [[0, 3, 0, 1, 0], [7, 3, 7, 1, 7], [0, 3, 0, 1, 0], [2, 2, 2, 1, 2], [0, 3, 0, 1, 0], [8, 8, 8, 8, 8], [0, 3, 0, 1, 0]]}], "test": [{"input": [[0, 0, 3, 0, 0, 2, 0, 7, 0, 0, 4, 0, 0], [0, 0, 3, 0, 0, 2, 0, 7, 0, 0, 4, 0, 0], [0, 0, 3, 0, 0, 2, 0, 7, 0, 0, 4, 0, 0], [6, 6, 6, 6, 6, 2, 6, 7, 6, 6, 4, 6, 6], [0, 0, 3, 0, 0, 2, 0, 7, 0, 0, 4, 0, 0], [0, 0, 3, 0, 0, 2, 0, 7, 0, 0, 4, 0, 0], [1, 1, 1, 1, 1, 2, 1, 7, 1, 1, 4, 1, 1], [0, 0, 3, 0, 0, 2, 0, 7, 0, 0, 4, 0, 0], [0, 0, 3, 0, 0, 2, 0, 7, 0, 0, 4, 0, 0], [8, 8, 8, 8, 8, 8, 8, 7, 8, 8, 4, 8, 8], [0, 0, 3, 0, 0, 2, 0, 7, 0, 0, 4, 0, 0], [0, 0, 3, 0, 0, 2, 0, 7, 0, 0, 4, 0, 0]], "output": [[0, 3, 0, 2, 0, 7, 0, 4, 0], [6, 6, 6, 2, 6, 7, 6, 4, 6], [0, 3, 0, 2, 0, 7, 0, 4, 0], [1, 1, 1, 2, 1, 7, 1, 4, 1], [0, 3, 0, 2, 0, 7, 0, 4, 0], [8, 8, 8, 8, 8, 7, 8, 4, 8], [0, 3, 0, 2, 0, 7, 0, 4, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/cf133acc.json b/data/arc-agi/evaluation/cf133acc.json
deleted file mode 100644
index d1d07df..0000000
--- a/data/arc-agi/evaluation/cf133acc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 2, 2, 2, 2, 3, 0, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 6, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 0, 4, 4, 4, 7, 7, 0, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 3, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 4, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 7, 7, 7, 7, 7, 7, 7, 7], [0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 7, 7, 7, 7, 7], [8, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 6, 0, 6, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [9, 0, 9, 9, 9, 9, 5, 5, 5, 0, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7], [8, 8, 8, 8, 8, 8, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 3, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 9, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 9, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [9, 9, 9, 9, 9, 9, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 9, 9, 0, 9, 9, 9, 9, 9, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 0, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 3, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 0, 9, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9], [0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 6, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/cfb2ce5a.json b/data/arc-agi/evaluation/cfb2ce5a.json
deleted file mode 100644
index 7df17ba..0000000
--- a/data/arc-agi/evaluation/cfb2ce5a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 1, 2, 1, 0, 0, 0, 8, 0], [0, 1, 1, 2, 1, 0, 0, 0, 0, 0], [0, 2, 2, 2, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 3, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 1, 2, 1, 3, 8, 3, 8, 0], [0, 1, 1, 2, 1, 3, 8, 3, 3, 0], [0, 2, 2, 2, 1, 3, 8, 8, 8, 0], [0, 1, 1, 1, 1, 3, 3, 3, 3, 0], [0, 7, 7, 7, 7, 0, 0, 0, 0, 0], [0, 4, 4, 4, 7, 0, 5, 5, 5, 0], [0, 7, 7, 4, 7, 0, 5, 0, 0, 0], [0, 4, 7, 4, 7, 0, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 9, 0, 0, 0, 0], [0, 3, 3, 8, 8, 7, 0, 0, 0, 0], [0, 3, 8, 3, 8, 0, 0, 0, 0, 0], [0, 3, 8, 8, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 5, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 9, 9, 9, 9, 0], [0, 3, 3, 8, 8, 7, 7, 9, 9, 0], [0, 3, 8, 3, 8, 7, 9, 7, 9, 0], [0, 3, 8, 8, 3, 9, 7, 7, 9, 0], [0, 4, 1, 1, 4, 2, 5, 5, 2, 0], [0, 4, 1, 4, 1, 5, 2, 5, 2, 0], [0, 4, 4, 1, 1, 5, 5, 2, 2, 0], [0, 4, 4, 4, 4, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 2, 8, 8, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 6, 0, 0, 0, 0], [0, 8, 2, 8, 8, 0, 0, 0, 0, 0], [0, 8, 2, 8, 8, 0, 1, 0, 0, 0], [0, 0, 5, 4, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 2, 8, 8, 1, 1, 6, 1, 0], [0, 2, 2, 2, 2, 6, 6, 6, 6, 0], [0, 8, 2, 8, 8, 1, 1, 6, 1, 0], [0, 8, 2, 8, 8, 1, 1, 6, 1, 0], [0, 4, 5, 4, 4, 3, 3, 1, 3, 0], [0, 4, 5, 4, 4, 3, 3, 1, 3, 0], [0, 5, 5, 5, 5, 1, 1, 1, 1, 0], [0, 4, 5, 4, 4, 3, 3, 1, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 1, 1, 8, 0, 0, 0, 0], [0, 4, 1, 1, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 4, 0, 0, 0, 0, 0], [0, 1, 1, 4, 4, 5, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 1, 1, 8, 8, 5, 5, 0], [0, 4, 1, 1, 1, 8, 8, 8, 5, 0], [0, 1, 1, 1, 4, 5, 8, 8, 8, 0], [0, 1, 1, 4, 4, 5, 5, 8, 8, 0], [0, 7, 7, 6, 6, 0, 0, 3, 3, 0], [0, 7, 7, 7, 6, 0, 3, 3, 3, 0], [0, 6, 7, 7, 7, 3, 3, 3, 0, 0], [0, 6, 6, 7, 7, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/d017b73f.json b/data/arc-agi/evaluation/d017b73f.json
deleted file mode 100644
index 742a029..0000000
--- a/data/arc-agi/evaluation/d017b73f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 2, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 1, 1, 0, 2, 2, 2], [0, 0, 0, 0, 1, 0, 0, 0, 0]], "output": [[0, 2, 1, 1, 0, 0, 0], [2, 2, 0, 1, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 3, 3, 0, 0, 1, 0, 2, 2], [2, 2, 0, 0, 0, 0, 1, 1, 0, 0, 2], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 1, 2, 2], [0, 2, 3, 3, 1, 1, 0, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [2, 2, 2, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 6, 6, 6]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 8, 6, 6, 6], [0, 0, 2, 8, 8, 8, 0, 0, 0]]}, {"input": [[0, 1, 1, 0, 0, 0, 0, 0, 2, 2, 0], [1, 1, 0, 0, 2, 2, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]], "output": [[0, 1, 1, 2, 2, 0, 2, 2], [1, 1, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 2, 0, 1, 1, 0, 0, 3, 0, 5, 5], [2, 2, 0, 0, 1, 0, 3, 3, 0, 0, 5], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 1, 1, 0, 0, 0, 0], [2, 2, 0, 1, 0, 3, 5, 5], [0, 0, 0, 1, 3, 3, 0, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/d19f7514.json b/data/arc-agi/evaluation/d19f7514.json
deleted file mode 100644
index 1a26dc0..0000000
--- a/data/arc-agi/evaluation/d19f7514.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[3, 3, 0, 3], [0, 3, 0, 3], [0, 0, 0, 3], [3, 3, 0, 3], [3, 0, 3, 3], [0, 3, 3, 3], [0, 0, 0, 0], [5, 0, 0, 5], [0, 0, 5, 0], [5, 0, 0, 5], [5, 5, 5, 5], [5, 5, 0, 0]], "output": [[4, 4, 0, 4], [4, 4, 0, 4], [0, 0, 4, 4], [4, 4, 0, 4], [4, 4, 4, 4], [4, 4, 4, 4]]}], "train": [{"input": [[0, 3, 3, 3], [0, 3, 0, 3], [0, 0, 0, 0], [3, 0, 3, 3], [3, 0, 0, 0], [0, 3, 0, 3], [0, 5, 0, 5], [0, 0, 0, 0], [0, 0, 0, 0], [5, 0, 5, 0], [5, 0, 0, 0], [5, 5, 0, 5]], "output": [[0, 4, 4, 4], [0, 4, 0, 4], [0, 0, 0, 0], [4, 0, 4, 4], [4, 0, 0, 0], [4, 4, 0, 4]]}, {"input": [[3, 3, 0, 3], [3, 0, 3, 3], [0, 3, 0, 0], [0, 0, 3, 0], [3, 0, 3, 0], [0, 0, 0, 3], [5, 0, 0, 0], [0, 5, 5, 5], [5, 0, 0, 5], [0, 5, 5, 5], [5, 5, 5, 0], [5, 0, 0, 0]], "output": [[4, 4, 0, 4], [4, 4, 4, 4], [4, 4, 0, 4], [0, 4, 4, 4], [4, 4, 4, 0], [4, 0, 0, 4]]}, {"input": [[3, 3, 0, 0], [3, 0, 0, 0], [0, 0, 0, 3], [0, 0, 3, 3], [3, 0, 0, 0], [3, 3, 3, 3], [0, 5, 0, 0], [5, 5, 0, 0], [5, 0, 5, 0], [5, 5, 5, 5], [5, 5, 5, 0], [5, 0, 5, 0]], "output": [[4, 4, 0, 0], [4, 4, 0, 0], [4, 0, 4, 4], [4, 4, 4, 4], [4, 4, 4, 0], [4, 4, 4, 4]]}, {"input": [[3, 3, 0, 0], [0, 3, 3, 3], [3, 3, 0, 3], [0, 3, 3, 0], [3, 0, 3, 0], [3, 0, 0, 0], [0, 5, 5, 5], [5, 5, 5, 5], [5, 5, 5, 0], [5, 5, 5, 5], [5, 0, 0, 0], [0, 5, 5, 0]], "output": [[4, 4, 4, 4], [4, 4, 4, 4], [4, 4, 4, 4], [4, 4, 4, 4], [4, 0, 4, 0], [4, 4, 4, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/d282b262.json b/data/arc-agi/evaluation/d282b262.json
deleted file mode 100644
index 2a7f570..0000000
--- a/data/arc-agi/evaluation/d282b262.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 1, 2, 0, 0, 1, 4, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0], [0, 7, 6, 7, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0], [0, 6, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 1, 4, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6, 7, 1, 4, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 1, 0, 0, 0, 5, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 9, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 5, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 9, 4, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 9, 0, 0, 0, 0, 0, 3, 7, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 8, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 6, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 8, 6, 0, 0, 0, 8, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 9, 3, 7, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 6, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 6, 8, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 6, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 8, 6, 0, 2, 5, 2, 5, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 2, 5, 2, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 5, 2, 5, 2, 0, 0, 0], [0, 0, 2, 1, 0, 0, 0, 5, 2, 5, 2, 5, 0, 0, 0], [0, 0, 1, 2, 0, 0, 0, 2, 5, 2, 5, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 3, 0, 0, 0, 0, 8, 4, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 8, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 4, 8, 0, 0, 0, 0, 0], [0, 0, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 6, 8, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 6, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 8, 6, 2, 5, 2, 5, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 5, 2, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 2, 5, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 5, 2, 5, 2, 5], [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 5, 2, 5, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 8, 4, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/d2acf2cb.json b/data/arc-agi/evaluation/d2acf2cb.json
deleted file mode 100644
index 60acea5..0000000
--- a/data/arc-agi/evaluation/d2acf2cb.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 6, 0, 0, 0, 6, 6, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 6, 6, 6, 6, 0, 0, 0, 0], [6, 6, 0, 0, 0, 6, 6, 0, 0], [0, 6, 6, 6, 0, 0, 6, 0, 6], [4, 0, 0, 6, 6, 6, 6, 0, 4], [0, 6, 6, 6, 0, 6, 6, 0, 0]], "output": [[0, 6, 0, 0, 0, 6, 6, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 6, 6, 6, 6, 0, 0, 0, 0], [6, 6, 0, 0, 0, 6, 6, 0, 0], [0, 6, 6, 6, 0, 0, 6, 0, 6], [4, 8, 8, 7, 7, 7, 7, 8, 4], [0, 6, 6, 6, 0, 6, 6, 0, 0]]}, {"input": [[0, 6, 0, 6, 6, 0, 6, 0, 6], [4, 7, 8, 7, 8, 8, 8, 8, 4], [0, 6, 6, 6, 6, 6, 6, 6, 0], [0, 0, 6, 0, 6, 6, 0, 0, 6], [4, 8, 7, 7, 7, 7, 8, 8, 4], [0, 0, 0, 0, 6, 0, 0, 0, 6], [6, 0, 6, 0, 6, 0, 0, 6, 0], [4, 7, 8, 8, 7, 8, 7, 7, 4], [6, 6, 0, 6, 0, 6, 6, 0, 0]], "output": [[0, 6, 0, 6, 6, 0, 6, 0, 6], [4, 6, 0, 6, 0, 0, 0, 0, 4], [0, 6, 6, 6, 6, 6, 6, 6, 0], [0, 0, 6, 0, 6, 6, 0, 0, 6], [4, 0, 6, 6, 6, 6, 0, 0, 4], [0, 0, 0, 0, 6, 0, 0, 0, 6], [6, 0, 6, 0, 6, 0, 0, 6, 0], [4, 6, 0, 0, 6, 0, 6, 6, 4], [6, 6, 0, 6, 0, 6, 6, 0, 0]]}, {"input": [[6, 0, 6, 4, 6, 0, 0, 4, 6], [6, 0, 6, 0, 0, 6, 0, 0, 6], [0, 6, 6, 0, 0, 0, 0, 6, 0], [6, 6, 6, 0, 0, 0, 0, 6, 6], [6, 0, 0, 6, 6, 0, 0, 0, 6], [6, 6, 6, 4, 0, 6, 6, 4, 0]], "output": [[6, 0, 6, 4, 6, 0, 0, 4, 6], [6, 0, 6, 8, 0, 6, 0, 8, 6], [0, 6, 6, 8, 0, 0, 0, 7, 0], [6, 6, 6, 8, 0, 0, 0, 7, 6], [6, 0, 0, 7, 6, 0, 0, 8, 6], [6, 6, 6, 4, 0, 6, 6, 4, 0]]}], "test": [{"input": [[0, 4, 6, 6, 0, 4, 6, 4, 0], [0, 6, 0, 0, 0, 6, 6, 6, 0], [0, 0, 0, 6, 0, 0, 6, 6, 6], [6, 6, 6, 0, 0, 0, 6, 0, 0], [0, 6, 0, 6, 0, 0, 6, 0, 0], [0, 6, 6, 0, 6, 6, 0, 6, 6], [6, 6, 6, 6, 0, 6, 0, 6, 6], [0, 6, 0, 6, 6, 6, 6, 6, 6], [6, 0, 0, 0, 6, 0, 0, 6, 0], [0, 4, 0, 0, 6, 4, 6, 4, 0]], "output": [[0, 4, 6, 6, 0, 4, 6, 4, 0], [0, 7, 0, 0, 0, 7, 6, 7, 0], [0, 8, 0, 6, 0, 8, 6, 7, 6], [6, 7, 6, 0, 0, 8, 6, 8, 0], [0, 7, 0, 6, 0, 8, 6, 8, 0], [0, 7, 6, 0, 6, 7, 0, 7, 6], [6, 7, 6, 6, 0, 7, 0, 7, 6], [0, 7, 0, 6, 6, 7, 6, 7, 6], [6, 8, 0, 0, 6, 8, 0, 7, 0], [0, 4, 0, 0, 6, 4, 6, 4, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/d304284e.json b/data/arc-agi/evaluation/d304284e.json
deleted file mode 100644
index 3d4f6d8..0000000
--- a/data/arc-agi/evaluation/d304284e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 7, 0, 7, 0, 7, 0, 6, 0, 6, 0, 7, 0, 7, 0, 7, 0, 7, 0, 6, 0, 6], [0, 0, 0, 0, 0, 7, 0, 7, 0, 7, 0, 7, 0, 6, 0, 6, 0, 7, 0, 7, 0, 7, 0, 7, 0, 6, 0, 6], [0, 0, 0, 0, 0, 7, 7, 7, 0, 7, 7, 7, 0, 6, 6, 6, 0, 7, 7, 7, 0, 7, 7, 7, 0, 6, 6, 6], [0, 0, 0, 0, 0, 7, 0, 7, 0, 7, 0, 7, 0, 6, 0, 6, 0, 7, 0, 7, 0, 7, 0, 7, 0, 6, 0, 6], [0, 0, 0, 0, 0, 7, 0, 7, 0, 7, 0, 7, 0, 6, 0, 6, 0, 7, 0, 7, 0, 7, 0, 7, 0, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 7, 0, 7, 7, 7, 0, 6, 6, 6, 0, 7, 7, 7, 0, 7, 7, 7, 0, 6, 6, 6, 0, 7], [0, 0, 0, 7, 0, 7, 0, 7, 0, 7, 0, 6, 0, 6, 0, 7, 0, 7, 0, 7, 0, 7, 0, 6, 0, 6, 0, 7], [0, 0, 0, 7, 7, 7, 0, 7, 7, 7, 0, 6, 6, 6, 0, 7, 7, 7, 0, 7, 7, 7, 0, 6, 6, 6, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 7], [0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 7], [0, 0, 7, 0, 7, 0, 7, 0, 7, 0, 6, 0, 6, 0, 7, 0, 7, 0, 7, 0, 7, 0, 6, 0, 6, 0, 7, 0], [0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 7], [0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 6, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/d37a1ef5.json b/data/arc-agi/evaluation/d37a1ef5.json
deleted file mode 100644
index 22a5434..0000000
--- a/data/arc-agi/evaluation/d37a1ef5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 2, 0, 5, 0, 0, 5, 0, 2, 0, 0], [0, 2, 0, 0, 0, 5, 0, 0, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 5, 0, 0, 5, 2, 2, 0, 0], [0, 2, 2, 0, 0, 5, 0, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 2, 0, 5, 0, 0, 0, 0, 2, 0, 0], [0, 2, 0, 0, 5, 0, 0, 0, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 5, 0, 2, 2, 2, 2, 0, 0], [0, 2, 2, 0, 5, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 5, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0], [0, 2, 0, 0, 5, 0, 0, 5, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 2, 2, 2, 5, 0, 0, 0, 2, 2, 2, 0], [0, 2, 2, 2, 0, 0, 5, 0, 2, 2, 2, 0], [0, 2, 2, 2, 5, 0, 0, 5, 2, 2, 2, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 5, 0, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 5, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 5, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 5, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 2, 2, 5, 0, 0, 0, 2, 2, 2, 0], [0, 0, 2, 2, 0, 0, 0, 5, 2, 2, 2, 0], [0, 0, 2, 2, 0, 0, 5, 0, 2, 2, 2, 0], [0, 0, 2, 2, 0, 5, 0, 0, 2, 2, 2, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/d47aa2ff.json b/data/arc-agi/evaluation/d47aa2ff.json
deleted file mode 100644
index ab8de3a..0000000
--- a/data/arc-agi/evaluation/d47aa2ff.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 5, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 6, 0, 0, 5, 0, 3, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 3, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 9, 0, 0, 0, 8, 0, 0, 0, 0, 5, 0, 9, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 8, 0, 0, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 9, 0, 0, 1, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 5, 0, 3, 0, 0, 0, 0, 3, 0, 0, 3], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 6, 0, 0, 5, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 1, 0, 0, 3], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 9, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 9, 0, 0, 5, 0, 0, 0, 4, 0, 0, 0, 9, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 9, 0, 0, 7, 0, 0, 0, 5, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 4, 0, 0, 5, 0, 0, 0, 0, 7, 0, 0, 4, 0, 0], [0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 9, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 9, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 9, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 4, 0, 0], [0, 9, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/d492a647.json b/data/arc-agi/evaluation/d492a647.json
deleted file mode 100644
index d630350..0000000
--- a/data/arc-agi/evaluation/d492a647.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 0, 5, 0, 5, 5, 5, 5, 5, 5, 5, 0, 5, 0, 5, 5], [0, 5, 5, 0, 5, 5, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5], [5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0], [5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 5, 0], [5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0], [5, 5, 5, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 5, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5], [0, 5, 5, 5, 0, 5, 5, 5, 5, 5, 0, 5, 0, 5, 0, 0], [5, 5, 5, 5, 0, 5, 0, 5, 0, 0, 0, 5, 0, 5, 0, 0], [0, 5, 5, 0, 0, 5, 0, 5, 0, 0, 0, 0, 5, 5, 0, 5], [5, 5, 0, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5]], "output": [[5, 0, 5, 0, 5, 5, 5, 5, 5, 5, 5, 0, 5, 0, 5, 5], [0, 5, 5, 3, 5, 5, 5, 3, 5, 3, 0, 5, 0, 3, 5, 5], [5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0], [5, 5, 0, 3, 0, 3, 0, 3, 0, 3, 0, 5, 0, 5, 5, 3], [5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0], [5, 5, 5, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 5, 0, 3], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 5, 0], [0, 5, 5, 3, 0, 3, 0, 3, 0, 3, 0, 3, 5, 5, 5, 5], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5], [0, 5, 5, 5, 0, 5, 5, 5, 5, 5, 0, 5, 0, 5, 0, 3], [5, 5, 5, 5, 0, 5, 0, 5, 0, 0, 0, 5, 0, 5, 0, 0], [0, 5, 5, 3, 0, 5, 0, 5, 0, 3, 0, 3, 5, 5, 0, 5], [5, 5, 0, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5]]}, {"input": [[0, 0, 5, 0, 5, 5, 5, 0, 5, 0, 5, 5, 5], [5, 5, 0, 5, 0, 0, 5, 5, 0, 5, 5, 5, 5], [5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 0, 0, 1, 0, 0, 0, 0, 0, 5, 5], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [0, 0, 5, 5, 0, 5, 0, 5, 0, 5, 5, 5, 5], [5, 5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 0, 5, 0, 5, 5, 5, 5, 0, 5, 0, 5]], "output": [[0, 1, 5, 1, 5, 5, 5, 1, 5, 1, 5, 5, 5], [5, 5, 0, 5, 0, 0, 5, 5, 0, 5, 5, 5, 5], [5, 1, 5, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 1, 0, 1, 0, 1, 0, 1, 0, 5, 5], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [0, 5, 5, 1, 0, 1, 0, 1, 0, 1, 0, 1, 5], [5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [5, 5, 5, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [0, 1, 5, 5, 0, 5, 0, 5, 0, 5, 5, 5, 5], [5, 5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 0, 5, 0, 5, 5, 5, 5, 1, 5, 1, 5]]}], "test": [{"input": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 0, 0, 5, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [5, 5, 5, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 5], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [0, 0, 5, 5, 5, 5, 0, 5, 0, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 0, 0, 0, 0, 0, 5, 5, 0, 5, 5, 0, 5, 5, 5], [0, 0, 5, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, 5, 0, 0, 5]], "output": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 0, 0, 5, 0], [2, 5, 5, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 5, 5], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [5, 0, 5, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [2, 5, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 5, 2], [5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [5, 5, 5, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 5, 5], [5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [5, 5, 5, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 5], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [5, 5, 5, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 5, 5], [0, 0, 5, 5, 5, 5, 0, 5, 0, 5, 5, 5, 5, 5, 5, 5, 0], [2, 5, 5, 0, 2, 0, 2, 0, 5, 5, 2, 5, 5, 0, 5, 5, 5], [0, 0, 5, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, 5, 0, 0, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/d4b1c2b1.json b/data/arc-agi/evaluation/d4b1c2b1.json
deleted file mode 100644
index e539479..0000000
--- a/data/arc-agi/evaluation/d4b1c2b1.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1], [6, 6, 6], [6, 1, 6]], "output": [[1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1], [6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6], [6, 6, 1, 1, 6, 6], [6, 6, 1, 1, 6, 6]]}, {"input": [[4, 4, 7], [8, 7, 7], [8, 8, 4]], "output": [[4, 4, 4, 4, 4, 4, 7, 7, 7], [4, 4, 4, 4, 4, 4, 7, 7, 7], [4, 4, 4, 4, 4, 4, 7, 7, 7], [8, 8, 8, 7, 7, 7, 7, 7, 7], [8, 8, 8, 7, 7, 7, 7, 7, 7], [8, 8, 8, 7, 7, 7, 7, 7, 7], [8, 8, 8, 8, 8, 8, 4, 4, 4], [8, 8, 8, 8, 8, 8, 4, 4, 4], [8, 8, 8, 8, 8, 8, 4, 4, 4]]}, {"input": [[4, 2, 8], [2, 2, 5], [8, 5, 4]], "output": [[4, 4, 4, 4, 2, 2, 2, 2, 8, 8, 8, 8], [4, 4, 4, 4, 2, 2, 2, 2, 8, 8, 8, 8], [4, 4, 4, 4, 2, 2, 2, 2, 8, 8, 8, 8], [4, 4, 4, 4, 2, 2, 2, 2, 8, 8, 8, 8], [2, 2, 2, 2, 2, 2, 2, 2, 5, 5, 5, 5], [2, 2, 2, 2, 2, 2, 2, 2, 5, 5, 5, 5], [2, 2, 2, 2, 2, 2, 2, 2, 5, 5, 5, 5], [2, 2, 2, 2, 2, 2, 2, 2, 5, 5, 5, 5], [8, 8, 8, 8, 5, 5, 5, 5, 4, 4, 4, 4], [8, 8, 8, 8, 5, 5, 5, 5, 4, 4, 4, 4], [8, 8, 8, 8, 5, 5, 5, 5, 4, 4, 4, 4], [8, 8, 8, 8, 5, 5, 5, 5, 4, 4, 4, 4]]}, {"input": [[8, 8, 8], [8, 8, 8], [8, 8, 8]], "output": [[8, 8, 8], [8, 8, 8], [8, 8, 8]]}, {"input": [[3, 3, 3], [3, 3, 3], [3, 3, 3]], "output": [[3, 3, 3], [3, 3, 3], [3, 3, 3]]}, {"input": [[3, 6, 6], [3, 6, 6], [3, 3, 3]], "output": [[3, 3, 6, 6, 6, 6], [3, 3, 6, 6, 6, 6], [3, 3, 6, 6, 6, 6], [3, 3, 6, 6, 6, 6], [3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3]]}, {"input": [[2, 2, 4], [4, 4, 4], [2, 4, 2]], "output": [[2, 2, 2, 2, 4, 4], [2, 2, 2, 2, 4, 4], [4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4], [2, 2, 4, 4, 2, 2], [2, 2, 4, 4, 2, 2]]}], "test": [{"input": [[7, 1, 7], [3, 3, 6], [8, 8, 6]], "output": [[7, 7, 7, 7, 7, 1, 1, 1, 1, 1, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 1, 1, 1, 1, 1, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 1, 1, 1, 1, 1, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 1, 1, 1, 1, 1, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 1, 1, 1, 1, 1, 7, 7, 7, 7, 7], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 6, 6, 6, 6], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 6, 6, 6, 6], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 6, 6, 6, 6], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 6, 6, 6, 6], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 6, 6, 6, 6], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 6, 6], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 6, 6], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 6, 6], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 6, 6], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 6, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/d4c90558.json b/data/arc-agi/evaluation/d4c90558.json
deleted file mode 100644
index 79c9702..0000000
--- a/data/arc-agi/evaluation/d4c90558.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 5, 0, 0, 8, 8, 8, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 8, 0, 0, 5, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 1, 0, 5, 0, 0, 1, 0, 0, 0], [0, 8, 0, 5, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 5, 0, 8, 8, 8, 0, 0, 0, 0, 1, 0, 0, 5, 0, 1, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 7, 7, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 7, 7, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 7, 7, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 0], [7, 7, 7, 7, 7, 7, 7, 7]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 5, 0, 5, 0, 0, 0, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 5, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 5, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 0], [6, 6, 6, 6]]}, {"input": [[0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 8, 8, 8, 8, 8, 0, 0], [0, 0, 3, 0, 0, 5, 0, 0, 0, 0, 3, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 3, 5, 0, 5, 0, 0, 0, 0, 3, 0, 0, 8, 5, 0, 0, 8, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 3, 0, 0, 8, 0, 5, 0, 8, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 2, 0, 0, 0, 0, 5, 0, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4], [0, 2, 0, 5, 0, 0, 0, 0, 2, 0, 0, 4, 0, 5, 0, 5, 0, 0, 0, 4], [0, 2, 0, 5, 0, 5, 0, 0, 2, 0, 0, 4, 0, 0, 0, 0, 5, 0, 5, 4], [0, 2, 0, 0, 0, 0, 0, 5, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4, 0, 0, 5, 0, 5, 0, 0, 4], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 0, 0, 0, 0], [3, 3, 3, 3, 0, 0], [2, 2, 2, 2, 2, 0], [4, 4, 4, 4, 4, 4]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 0, 0, 0, 0, 5, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 5, 0, 5, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 0, 0, 0, 0, 5, 0, 6, 6, 6, 6, 0, 8, 8, 8, 8, 8, 8, 8, 8], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 8, 0, 0, 0, 0, 0, 0, 8], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 8, 0, 0, 0, 5, 5, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 5, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 5, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 5, 0, 0, 8], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 8, 0, 0, 0, 0, 0, 5, 8], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 8, 0, 5, 0, 5, 0, 0, 8], [0, 0, 2, 2, 0, 0, 0, 0, 0, 2, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8], [0, 0, 2, 2, 0, 5, 0, 0, 5, 2, 2, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 2, 2, 0, 0, 0, 0, 0, 2, 2, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 2, 2, 0, 0, 0, 5, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 0, 0, 0, 0, 0], [6, 6, 6, 6, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/d56f2372.json b/data/arc-agi/evaluation/d56f2372.json
deleted file mode 100644
index 0a278a5..0000000
--- a/data/arc-agi/evaluation/d56f2372.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0], [0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1], [0, 0, 0, 0, 7, 7, 0, 7, 7, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 8, 0], [0, 0, 8, 0, 0], [0, 8, 8, 8, 0], [8, 8, 0, 8, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 3, 0, 3, 0, 0], [4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0], [0, 1, 1, 0, 1, 1, 0], [1, 1, 0, 0, 0, 1, 1], [0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 1, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 6, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 3, 3, 0, 3, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 6, 0, 6, 6], [0, 6, 6, 6, 0], [0, 6, 0, 6, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 8, 8, 0], [0, 0, 0, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0], [0, 0, 0, 4, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 2, 0, 2, 0, 2, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/d5c634a2.json b/data/arc-agi/evaluation/d5c634a2.json
deleted file mode 100644
index 2d19f36..0000000
--- a/data/arc-agi/evaluation/d5c634a2.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 0, 3, 1, 0, 1], [0, 0, 0, 0, 0, 0], [3, 0, 0, 1, 0, 1]]}, {"input": [[2, 2, 2, 0], [0, 2, 0, 0], [0, 0, 0, 0], [0, 2, 0, 0], [2, 2, 2, 0]], "output": [[3, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[2, 2, 2, 0, 0], [0, 2, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 2, 2, 2], [0, 2, 0, 2, 0], [2, 2, 2, 0, 0]], "output": [[3, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0]]}, {"input": [[0, 2, 0, 0, 2, 2, 2], [2, 2, 2, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2], [0, 0, 2, 0, 0, 2, 0], [0, 2, 2, 2, 0, 0, 0]], "output": [[3, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0], [3, 0, 0, 1, 0, 0]]}, {"input": [[0, 2, 2, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0], [2, 2, 2, 0, 2, 2, 2], [0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0]], "output": [[3, 0, 0, 1, 0, 1], [0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0], [0, 0, 0, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0], [0, 2, 2, 2, 0, 2, 0], [0, 0, 0, 0, 2, 2, 2]], "output": [[3, 0, 3, 1, 0, 0], [0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0]]}, {"input": [[0, 2, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 2, 0], [0, 0, 0, 0, 2, 2, 2], [0, 0, 2, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2], [0, 2, 0, 0, 0, 2, 0], [2, 2, 2, 0, 0, 0, 0]], "output": [[3, 0, 3, 1, 0, 0], [0, 0, 0, 0, 0, 0], [3, 0, 3, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 2, 2, 2], [0, 2, 0, 0, 0, 0, 0, 2, 0], [2, 2, 2, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 2, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0]], "output": [[3, 0, 3, 1, 0, 1], [0, 0, 0, 0, 0, 0], [3, 0, 0, 1, 0, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 0, 0, 1, 0, 1], [0, 0, 0, 0, 0, 0], [3, 0, 0, 1, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/d931c21c.json b/data/arc-agi/evaluation/d931c21c.json
deleted file mode 100644
index e2e9a9b..0000000
--- a/data/arc-agi/evaluation/d931c21c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 1, 1, 1, 0, 0], [0, 1, 1, 1, 0, 1, 0, 0], [0, 1, 0, 0, 0, 1, 0, 0], [0, 1, 0, 0, 0, 1, 0, 0], [0, 1, 0, 0, 0, 1, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 1, 1, 1, 2, 0], [2, 1, 1, 1, 3, 1, 2, 0], [2, 1, 3, 3, 3, 1, 2, 0], [2, 1, 3, 0, 3, 1, 2, 0], [2, 1, 3, 3, 3, 1, 2, 0], [2, 1, 1, 1, 1, 1, 2, 0], [2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 1, 1, 1, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 1, 1, 1, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], [0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 2, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0, 0], [0, 0, 2, 1, 3, 3, 3, 3, 1, 2, 2, 2, 2, 0], [0, 0, 2, 1, 3, 0, 0, 3, 1, 1, 1, 1, 2, 0], [0, 0, 2, 1, 3, 0, 0, 3, 3, 3, 3, 1, 2, 0], [0, 0, 2, 1, 3, 3, 3, 3, 3, 0, 3, 1, 2, 0], [0, 0, 2, 1, 1, 1, 1, 1, 3, 0, 3, 1, 2, 0], [0, 0, 2, 2, 2, 2, 2, 1, 3, 3, 3, 1, 2, 0], [0, 0, 0, 0, 0, 0, 2, 1, 1, 1, 1, 1, 2, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 1, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 3, 1, 2], [0, 0, 0, 1, 0, 1, 1, 1, 0, 2, 1, 1, 1, 2], [0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 2, 2, 2, 2], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 1, 3, 3, 3, 3, 3, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 1, 3, 3, 3, 0, 3, 1, 2, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 2, 1, 1, 1, 3, 0, 3, 1, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], [0, 0, 2, 2, 2, 1, 3, 3, 3, 1, 2, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 2, 1, 1, 1, 1, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 1, 1, 1, 1, 2, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 2, 1, 1, 3, 3, 1, 2, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 2, 1, 3, 3, 3, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 1, 1, 1, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 3, 3, 3, 1], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 2, 2, 1, 3, 0, 3, 1], [0, 0, 0, 0, 2, 1, 1, 1, 1, 1, 2, 2, 2, 0, 0, 0, 0, 2, 1, 1, 1, 2, 0, 2, 1, 1, 3, 0, 3, 1], [0, 0, 0, 0, 2, 1, 3, 3, 3, 1, 1, 1, 2, 0, 0, 0, 0, 2, 1, 3, 1, 2, 0, 2, 1, 3, 3, 3, 3, 1], [0, 0, 0, 0, 2, 1, 3, 0, 3, 3, 3, 1, 2, 0, 0, 0, 0, 2, 1, 3, 1, 2, 0, 2, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 2, 1, 3, 3, 3, 3, 3, 1, 2, 0, 0, 0, 0, 2, 1, 1, 1, 2, 0, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 1, 1, 1, 1, 3, 3, 1, 2, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 1, 3, 3, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 1, 1, 1, 1, 1, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 1, 3, 3, 3, 1, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 2, 1, 1, 3, 3, 1, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 3, 3, 1, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 1, 1, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/d94c3b52.json b/data/arc-agi/evaluation/d94c3b52.json
deleted file mode 100644
index 4de5f0b..0000000
--- a/data/arc-agi/evaluation/d94c3b52.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 1, 0, 0, 8, 8, 8, 0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 1, 1, 0, 8, 0, 8, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0], [0, 1, 0, 1, 0, 0, 1, 0, 0, 8, 8, 8, 0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0], [0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0], [0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0], [0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0], [0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0], [0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 1, 0, 0, 8, 8, 8, 0, 7, 0, 7, 0, 8, 8, 8, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 1, 1, 0, 8, 0, 8, 0, 0, 7, 0, 0, 8, 0, 8, 0, 1, 1, 1, 0], [0, 1, 0, 1, 0, 0, 1, 0, 0, 8, 8, 8, 0, 7, 0, 7, 0, 8, 8, 8, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 8, 8, 8, 0, 0, 7, 0, 0, 1, 0, 1, 0], [0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 8, 0, 8, 0, 7, 7, 7, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 8, 8, 8, 0, 0, 7, 0, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 8, 8, 8, 0, 0, 7, 0, 0, 7, 0, 7, 0, 7, 0, 7, 0, 8, 8, 8, 0], [0, 1, 1, 1, 0, 8, 0, 8, 0, 7, 7, 7, 0, 0, 7, 0, 0, 7, 7, 7, 0, 8, 0, 8, 0], [0, 1, 0, 1, 0, 8, 8, 8, 0, 0, 7, 0, 0, 7, 0, 7, 0, 7, 0, 7, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 8, 8, 8, 0, 1, 0, 1, 0], [0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 8, 0, 8, 0, 0, 1, 0, 0], [0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 8, 8, 8, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 8, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0], [0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 8, 8, 8, 0, 0, 1, 0, 0, 1, 0, 1, 0], [0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 8, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0], [0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0], [0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0], [0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 8, 0, 0, 7, 7, 7, 0, 0, 8, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0], [0, 1, 1, 1, 0, 8, 8, 8, 0, 7, 7, 7, 0, 8, 8, 8, 0, 0, 1, 0, 0, 1, 0, 1, 0], [0, 1, 0, 1, 0, 0, 8, 0, 0, 7, 7, 7, 0, 0, 8, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 7, 0, 7, 0, 0, 0, 0, 0, 7, 7, 7, 0, 1, 0, 1, 0, 1, 1, 1, 0], [0, 1, 1, 1, 0, 7, 7, 7, 0, 0, 1, 0, 0, 7, 7, 7, 0, 1, 1, 1, 0, 1, 1, 1, 0], [0, 1, 1, 1, 0, 7, 0, 7, 0, 0, 0, 0, 0, 7, 7, 7, 0, 1, 0, 1, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 8, 8, 8, 0, 0, 7, 0, 0, 0, 7, 0, 0, 8, 8, 8, 0, 0, 1, 0, 0, 0, 1, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 8, 0, 0, 7, 7, 7, 0, 7, 0, 7, 0, 7, 7, 7, 0, 0, 8, 0, 0], [0, 0, 1, 0, 0, 8, 8, 8, 0, 0, 7, 0, 0, 7, 7, 7, 0, 7, 7, 7, 0, 8, 8, 8, 0], [0, 1, 1, 1, 0, 0, 8, 0, 0, 7, 7, 7, 0, 7, 0, 7, 0, 7, 7, 7, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0], [0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0], [0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0], [0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0], [0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 8, 8, 8, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0], [0, 1, 1, 1, 0, 8, 0, 8, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0], [0, 0, 1, 1, 0, 8, 0, 8, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0], [0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0], [0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 8, 8, 8, 0, 0, 1, 0, 0], [0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 8, 0, 8, 0, 1, 1, 1, 0], [0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 8, 0, 8, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 7, 0, 7, 0, 1, 1, 0, 0], [0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 7, 0, 0, 1, 1, 1, 0], [0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 7, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 8, 8, 8, 0, 0, 7, 0, 0, 7, 0, 0, 0, 8, 8, 8, 0, 0, 1, 0, 0], [0, 1, 1, 1, 0, 8, 0, 8, 0, 7, 7, 7, 0, 7, 7, 7, 0, 8, 0, 8, 0, 1, 1, 1, 0], [0, 0, 1, 1, 0, 8, 0, 8, 0, 0, 7, 0, 0, 0, 0, 7, 0, 8, 0, 8, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0], [0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0], [0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 8, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], [0, 1, 0, 1, 0, 8, 8, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0], [0, 1, 1, 1, 0, 0, 0, 8, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0], [0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0], [0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0], [0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 8, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 8, 0, 0], [0, 1, 0, 1, 0, 8, 8, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 7, 7, 7, 0, 8, 8, 0, 0], [0, 1, 1, 1, 0, 0, 0, 8, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 7, 7, 7, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 7, 7, 7, 0], [0, 0, 1, 0, 0, 0, 7, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 7, 0, 7, 0], [0, 0, 1, 1, 0, 7, 7, 7, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 7, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 7, 7, 7, 0, 8, 8, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 7, 0, 0], [0, 1, 1, 1, 0, 0, 7, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 8, 0, 0, 7, 7, 7, 0, 0, 7, 0, 0, 7, 7, 0, 0, 0, 8, 0, 0], [0, 1, 1, 1, 0, 8, 8, 0, 0, 7, 0, 7, 0, 7, 7, 7, 0, 0, 7, 0, 0, 8, 8, 0, 0], [0, 0, 1, 0, 0, 0, 0, 8, 0, 7, 7, 7, 0, 0, 7, 0, 0, 0, 7, 7, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/da2b0fe3.json b/data/arc-agi/evaluation/da2b0fe3.json
deleted file mode 100644
index 66f5fa7..0000000
--- a/data/arc-agi/evaluation/da2b0fe3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 0, 1, 1, 0, 0, 0], [0, 1, 1, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 1, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 1, 0, 1, 1, 0, 0, 0], [0, 1, 1, 0, 0, 0, 1, 1, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 1, 1, 0, 1, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 0, 5, 5, 0, 0, 0], [0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 5, 5, 5, 0, 5, 5, 0, 0, 0], [0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 5, 5, 5, 0, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 5, 5, 5, 3, 5, 5, 0, 0, 0], [0, 5, 0, 0, 3, 0, 5, 0, 0, 0], [0, 5, 5, 5, 3, 5, 5, 0, 0, 0], [0, 5, 0, 0, 3, 0, 5, 0, 0, 0], [0, 5, 5, 5, 3, 5, 5, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 6, 0, 0, 0, 0], [0, 0, 6, 6, 0, 6, 6, 0, 0, 0], [0, 0, 6, 6, 0, 6, 6, 0, 0, 0], [0, 0, 0, 6, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 6, 3, 6, 0, 0, 0, 0], [0, 0, 6, 6, 3, 6, 6, 0, 0, 0], [0, 0, 6, 6, 3, 6, 6, 0, 0, 0], [0, 0, 0, 6, 3, 6, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/da515329.json b/data/arc-agi/evaluation/da515329.json
deleted file mode 100644
index b3251c0..0000000
--- a/data/arc-agi/evaluation/da515329.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [8, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0], [8, 0, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 8, 0], [8, 0, 8, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 8, 0], [8, 0, 8, 0, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 8, 0, 8, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 0, 0, 8, 0, 8, 8, 8, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 8, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 0, 8, 0, 0, 8, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 0, 0, 0, 0, 8, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 8, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 0, 0, 0, 8, 8, 8, 0, 8, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 8, 0, 8, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 8, 0, 0, 8, 0, 8, 0, 8, 0], [8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 8, 0, 8, 0, 8, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 0, 0, 8, 0, 8, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 8, 0, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8], [0, 8, 0, 8, 0, 8, 8, 8, 8, 8, 0, 8], [0, 8, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8], [0, 8, 0, 8, 8, 0, 8, 8, 0, 8, 0, 8], [0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8], [0, 8, 8, 8, 8, 8, 0, 8, 0, 8, 0, 8], [0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [8, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 0], [8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 0, 8, 8, 8, 8, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 8, 0, 8, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 8, 8, 8, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8], [8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [8, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0], [0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0], [8, 8, 8, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 0], [8, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 8, 0], [8, 0, 8, 8, 8, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 8, 8, 0, 8, 0, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 0, 8, 8, 8, 0, 8, 0, 8, 8, 8, 8, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 8, 8, 8, 8, 8, 0, 8, 0, 8, 8, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 0, 8, 0, 8, 8, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0, 8, 0, 8, 8, 8, 0, 8, 0, 8, 0, 8, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0], [8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 0, 8, 8, 8, 0, 8, 0, 8, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0], [8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 0, 8, 8, 8, 0, 8, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 8, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/dc2aa30b.json b/data/arc-agi/evaluation/dc2aa30b.json
deleted file mode 100644
index f95179a..0000000
--- a/data/arc-agi/evaluation/dc2aa30b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 1, 0, 2, 2, 2, 0, 1, 2, 1], [1, 2, 2, 0, 2, 2, 2, 0, 1, 1, 2], [2, 2, 2, 0, 1, 2, 2, 0, 2, 1, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 1, 0, 2, 1, 2, 0, 2, 2, 2], [1, 2, 2, 0, 1, 2, 1, 0, 2, 2, 2], [2, 1, 2, 0, 2, 2, 1, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1], [1, 2, 1, 0, 1, 1, 1, 0, 2, 1, 1], [1, 2, 1, 0, 1, 2, 1, 0, 1, 1, 2]], "output": [[2, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1], [1, 2, 1, 0, 2, 1, 1, 0, 1, 1, 1], [1, 2, 1, 0, 1, 1, 2, 0, 1, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 1, 0, 2, 1, 2, 0, 1, 2, 1], [1, 2, 2, 0, 1, 2, 1, 0, 1, 1, 2], [2, 1, 2, 0, 2, 2, 1, 0, 2, 1, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 1], [2, 2, 2, 0, 2, 2, 2, 0, 1, 2, 2], [2, 2, 2, 0, 1, 2, 2, 0, 2, 2, 2]]}, {"input": [[1, 1, 2, 0, 2, 1, 2, 0, 2, 1, 1], [2, 1, 2, 0, 2, 1, 2, 0, 1, 1, 1], [1, 2, 2, 0, 1, 2, 2, 0, 1, 1, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 1, 0, 1, 1, 1, 0, 2, 2, 2], [2, 1, 1, 0, 1, 1, 1, 0, 2, 1, 2], [1, 2, 2, 0, 1, 2, 1, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 2, 0, 1, 2, 1, 0, 1, 1, 1], [2, 2, 1, 0, 2, 1, 1, 0, 1, 1, 1], [2, 2, 2, 0, 1, 2, 1, 0, 1, 1, 1]], "output": [[2, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1], [1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1], [1, 1, 2, 0, 1, 2, 1, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 2, 0, 1, 2, 1, 0, 1, 2, 1], [2, 1, 2, 0, 2, 1, 1, 0, 2, 1, 1], [1, 2, 2, 0, 1, 2, 2, 0, 1, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 1, 2, 2, 0, 2, 1, 2], [2, 1, 2, 0, 2, 2, 1, 0, 2, 1, 2], [2, 2, 2, 0, 2, 2, 2, 0, 1, 2, 2]]}, {"input": [[2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 1], [2, 2, 1, 0, 2, 2, 2, 0, 1, 2, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 1, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1], [1, 2, 1, 0, 1, 1, 1, 0, 2, 1, 1], [2, 1, 2, 0, 1, 1, 1, 0, 1, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 1, 1, 0, 1, 2, 1, 0, 2, 1, 1], [1, 2, 1, 0, 1, 2, 1, 0, 1, 1, 1], [2, 1, 1, 0, 2, 2, 2, 0, 1, 1, 1]], "output": [[1, 1, 1, 0, 2, 1, 1, 0, 1, 1, 1], [2, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1], [1, 2, 1, 0, 1, 1, 1, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 1, 0, 2, 1, 1, 0, 2, 1, 1], [1, 2, 1, 0, 1, 2, 1, 0, 1, 2, 1], [2, 2, 2, 0, 2, 1, 2, 0, 2, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 1], [2, 2, 2, 0, 2, 2, 1, 0, 1, 2, 2], [2, 2, 2, 0, 2, 2, 2, 0, 2, 1, 2]]}], "test": [{"input": [[2, 2, 2, 0, 2, 1, 2, 0, 2, 2, 1], [1, 2, 2, 0, 1, 2, 2, 0, 1, 2, 1], [2, 1, 2, 0, 2, 1, 2, 0, 2, 1, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 2, 0, 1, 1, 1, 0, 1, 1, 1], [1, 2, 1, 0, 1, 1, 1, 0, 1, 1, 2], [1, 2, 1, 0, 1, 1, 1, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 1, 1, 0, 2, 1, 1, 0, 2, 2, 2], [1, 1, 1, 0, 1, 2, 1, 0, 2, 2, 2], [1, 1, 2, 0, 1, 2, 2, 0, 2, 2, 2]], "output": [[2, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1], [1, 1, 1, 0, 1, 1, 2, 0, 1, 1, 1], [1, 1, 2, 0, 1, 1, 1, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 1, 0, 2, 1, 1, 0, 1, 1, 2], [1, 2, 1, 0, 1, 2, 1, 0, 1, 2, 1], [2, 1, 2, 0, 1, 2, 2, 0, 1, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 2, 2, 2, 0, 2, 1, 2], [2, 2, 2, 0, 1, 2, 2, 0, 1, 2, 2], [2, 2, 2, 0, 2, 1, 2, 0, 2, 1, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/dc2e9a9d.json b/data/arc-agi/evaluation/dc2e9a9d.json
deleted file mode 100644
index a6fb7b8..0000000
--- a/data/arc-agi/evaluation/dc2e9a9d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 3, 0, 1, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 1, 1, 1], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 3, 0, 3, 0, 1, 0, 1], [0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 0, 1, 1, 1], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 3, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 1, 0, 1, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 3, 3, 0, 3, 0, 1, 0, 1, 1, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 1, 0, 1, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 1, 1, 1, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 3, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/dd2401ed.json b/data/arc-agi/evaluation/dd2401ed.json
deleted file mode 100644
index 7eb7661..0000000
--- a/data/arc-agi/evaluation/dd2401ed.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 2, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 1, 0, 5, 2, 0, 0, 0, 2, 0, 0, 0, 0], [0, 1, 0, 0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 2, 0], [0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 2, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 5, 2, 0, 0, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 5, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, 2, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 0, 0, 0], [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 2], [0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 5, 0, 0, 0]]}, {"input": [[0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 5, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 5, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 5, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 5, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0], [0, 0, 0, 5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 2, 0, 5, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 5, 0, 2, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 5, 2, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0], [1, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2], [0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 1, 5, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [1, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2]], "output": [[0, 0, 0, 1, 0, 5, 0, 2, 0, 0, 2, 0, 0, 2, 0], [1, 0, 0, 0, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 2, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 1, 0, 0, 0, 5, 0, 0, 2, 0, 0, 0, 2, 0, 0], [1, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 2, 0, 0, 0, 2, 0, 0, 0, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/de493100.json b/data/arc-agi/evaluation/de493100.json
deleted file mode 100644
index eaf67e0..0000000
--- a/data/arc-agi/evaluation/de493100.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[2, 2, 1, 6, 9, 9, 9, 9, 4, 4, 5, 1, 4, 4, 5, 5, 5, 5, 4, 4, 1, 5, 4, 4, 9, 9, 9, 9, 6, 1], [1, 1, 6, 3, 9, 9, 1, 9, 5, 3, 1, 5, 1, 4, 3, 5, 5, 3, 4, 1, 5, 1, 3, 5, 9, 1, 9, 9, 3, 6], [2, 6, 1, 2, 9, 1, 9, 9, 5, 4, 3, 4, 5, 3, 4, 1, 1, 4, 3, 5, 4, 3, 4, 5, 9, 9, 1, 9, 2, 1], [6, 3, 1, 2, 9, 9, 9, 9, 4, 5, 5, 4, 5, 5, 4, 4, 4, 4, 5, 5, 4, 5, 5, 4, 9, 9, 9, 9, 2, 1], [8, 8, 8, 8, 2, 2, 3, 6, 4, 1, 5, 5, 8, 4, 4, 4, 4, 4, 4, 8, 5, 5, 1, 4, 6, 3, 2, 2, 8, 8], [8, 8, 5, 8, 1, 1, 6, 1, 4, 4, 3, 5, 9, 3, 4, 4, 4, 4, 3, 9, 5, 3, 4, 4, 1, 6, 1, 1, 8, 5], [8, 5, 8, 8, 3, 6, 1, 2, 5, 3, 4, 4, 4, 9, 3, 4, 4, 3, 9, 4, 4, 4, 3, 5, 2, 1, 6, 3, 8, 8], [8, 8, 8, 8, 6, 2, 1, 2, 5, 5, 1, 4, 9, 4, 9, 8, 8, 9, 4, 9, 4, 1, 5, 5, 2, 1, 2, 6, 8, 8], [4, 5, 5, 4, 4, 4, 5, 5, 1, 9, 1, 9, 8, 6, 8, 6, 6, 8, 6, 8, 9, 1, 9, 1, 5, 5, 4, 4, 4, 5], [4, 3, 4, 5, 1, 4, 3, 5, 8, 3, 9, 9, 6, 8, 8, 8, 8, 8, 8, 6, 9, 9, 3, 8, 5, 3, 4, 1, 5, 4], [5, 1, 3, 5, 5, 3, 4, 1, 9, 9, 3, 9, 8, 8, 8, 6, 6, 8, 8, 8, 9, 3, 9, 9, 1, 4, 3, 5, 5, 3], [1, 5, 4, 4, 5, 5, 4, 4, 9, 3, 8, 1, 6, 8, 6, 8, 8, 6, 8, 6, 1, 8, 3, 9, 4, 4, 5, 5, 4, 4], [4, 1, 5, 5, 8, 9, 4, 9, 9, 9, 8, 8, 1, 9, 9, 9, 9, 9, 9, 1, 8, 8, 9, 9, 9, 4, 9, 8, 5, 5], [4, 4, 3, 5, 4, 3, 9, 4, 9, 9, 2, 8, 8, 3, 9, 1, 1, 9, 3, 8, 8, 2, 9, 9, 4, 9, 3, 4, 5, 3], [5, 3, 4, 4, 4, 4, 3, 9, 8, 2, 9, 9, 3, 9, 3, 9, 9, 3, 9, 3, 9, 9, 2, 8, 9, 3, 4, 4, 4, 4], [5, 5, 1, 4, 4, 4, 4, 8, 8, 8, 9, 9, 9, 9, 8, 1, 1, 8, 9, 9, 9, 9, 8, 8, 8, 4, 4, 4, 4, 1], [5, 5, 1, 4, 4, 4, 4, 8, 8, 8, 9, 9, 9, 9, 8, 1, 1, 8, 9, 7, 7, 9, 8, 8, 8, 4, 4, 4, 4, 1], [5, 3, 4, 4, 4, 4, 3, 9, 8, 2, 9, 9, 3, 9, 3, 9, 9, 3, 9, 7, 7, 9, 2, 8, 9, 3, 4, 4, 4, 4], [4, 4, 3, 5, 4, 3, 9, 4, 9, 9, 2, 8, 8, 3, 9, 1, 1, 9, 3, 7, 7, 2, 9, 9, 4, 9, 3, 4, 5, 3], [4, 1, 5, 5, 8, 9, 4, 9, 9, 9, 8, 8, 1, 9, 9, 9, 9, 9, 9, 7, 7, 8, 9, 9, 9, 4, 9, 8, 5, 5], [1, 5, 4, 4, 5, 5, 4, 4, 9, 3, 8, 1, 6, 8, 6, 8, 8, 6, 8, 7, 7, 8, 3, 9, 4, 4, 5, 5, 4, 4], [5, 1, 3, 5, 5, 3, 4, 1, 9, 9, 3, 9, 8, 8, 8, 6, 6, 8, 8, 7, 7, 3, 9, 9, 1, 4, 3, 5, 5, 3], [4, 3, 4, 5, 1, 4, 3, 5, 8, 3, 9, 9, 6, 8, 8, 8, 8, 8, 8, 7, 7, 9, 3, 8, 5, 3, 4, 1, 5, 4], [4, 5, 5, 4, 4, 4, 5, 5, 1, 9, 1, 9, 8, 6, 8, 6, 6, 8, 6, 7, 7, 1, 9, 1, 5, 5, 4, 4, 4, 5], [8, 8, 8, 8, 6, 2, 1, 2, 5, 5, 1, 4, 9, 4, 9, 8, 8, 9, 4, 7, 7, 1, 5, 5, 2, 1, 2, 6, 8, 8], [8, 5, 8, 8, 3, 6, 1, 2, 5, 3, 4, 4, 4, 9, 3, 4, 4, 3, 9, 7, 7, 4, 3, 5, 2, 1, 6, 3, 8, 8], [8, 8, 5, 8, 1, 1, 6, 1, 4, 4, 3, 5, 9, 3, 4, 4, 4, 4, 3, 9, 5, 3, 4, 4, 1, 6, 1, 1, 8, 5], [8, 8, 8, 8, 2, 2, 3, 6, 4, 1, 5, 5, 8, 4, 4, 4, 4, 4, 4, 8, 5, 5, 1, 4, 6, 3, 2, 2, 8, 8], [6, 3, 1, 2, 9, 9, 9, 9, 4, 5, 5, 4, 5, 5, 4, 4, 4, 4, 5, 5, 4, 5, 5, 4, 9, 9, 9, 9, 2, 1], [2, 6, 1, 2, 9, 1, 9, 9, 5, 4, 3, 4, 5, 3, 4, 1, 1, 4, 3, 5, 4, 3, 4, 5, 9, 9, 1, 9, 2, 1]], "output": [[9, 9], [3, 9], [8, 8], [1, 8], [6, 1], [8, 9], [6, 9], [8, 9], [9, 4], [4, 4]]}], "train": [{"input": [[2, 9, 2, 9, 6, 4, 6, 2, 1, 2, 6, 6, 1, 1, 9, 4, 4, 9, 1, 1, 6, 6, 2, 1, 2, 6, 4, 6, 9, 2], [5, 5, 9, 5, 4, 6, 6, 6, 3, 6, 6, 6, 1, 1, 9, 9, 9, 9, 1, 1, 6, 6, 6, 3, 6, 6, 6, 4, 5, 9], [9, 9, 5, 9, 6, 6, 6, 4, 3, 2, 6, 2, 9, 9, 8, 4, 4, 8, 9, 9, 2, 6, 2, 3, 4, 6, 6, 6, 9, 5], [9, 9, 5, 2, 2, 6, 4, 6, 2, 3, 3, 1, 4, 9, 9, 8, 8, 9, 9, 4, 1, 3, 3, 2, 6, 4, 6, 2, 2, 5], [9, 8, 1, 8, 2, 9, 5, 9, 1, 1, 9, 4, 6, 6, 6, 6, 6, 6, 6, 6, 4, 9, 1, 1, 9, 5, 9, 2, 8, 1], [8, 9, 1, 1, 5, 5, 9, 2, 1, 1, 9, 9, 9, 9, 6, 6, 6, 6, 9, 9, 9, 9, 1, 1, 2, 9, 5, 5, 1, 1], [1, 1, 9, 8, 9, 9, 5, 9, 9, 9, 8, 9, 9, 1, 9, 6, 6, 9, 1, 9, 9, 8, 9, 9, 9, 5, 9, 9, 8, 9], [8, 1, 8, 9, 9, 9, 5, 2, 4, 9, 4, 8, 1, 9, 9, 6, 6, 9, 9, 1, 8, 4, 9, 4, 2, 5, 9, 9, 9, 8], [1, 3, 3, 2, 1, 1, 9, 4, 9, 9, 3, 4, 8, 8, 3, 8, 8, 3, 8, 8, 4, 3, 9, 9, 4, 9, 1, 1, 2, 3], [2, 6, 2, 3, 1, 1, 9, 9, 4, 4, 4, 8, 8, 8, 6, 3, 3, 6, 8, 8, 8, 4, 4, 4, 9, 9, 1, 1, 3, 2], [6, 6, 6, 3, 9, 9, 8, 4, 8, 9, 4, 9, 3, 6, 8, 8, 8, 8, 6, 3, 9, 4, 9, 8, 4, 8, 9, 9, 3, 6], [6, 6, 2, 1, 4, 9, 9, 8, 9, 3, 4, 9, 8, 3, 8, 8, 8, 8, 3, 8, 9, 4, 3, 9, 8, 9, 9, 4, 1, 2], [1, 1, 9, 4, 6, 9, 9, 1, 9, 9, 4, 1, 9, 9, 8, 4, 4, 8, 9, 9, 1, 4, 9, 9, 1, 9, 9, 6, 4, 9], [1, 1, 9, 9, 6, 9, 1, 9, 9, 9, 1, 4, 4, 4, 4, 3, 3, 4, 4, 4, 4, 1, 9, 9, 9, 1, 9, 6, 9, 9], [9, 9, 8, 9, 6, 6, 9, 9, 4, 1, 9, 9, 3, 9, 4, 9, 9, 4, 9, 3, 9, 9, 1, 4, 9, 9, 6, 6, 9, 8], [4, 9, 4, 8, 6, 6, 6, 6, 1, 4, 9, 9, 9, 8, 4, 9, 9, 4, 8, 9, 9, 9, 4, 1, 6, 6, 6, 6, 8, 4], [4, 9, 4, 8, 6, 6, 6, 6, 1, 4, 9, 9, 9, 8, 4, 9, 9, 4, 8, 9, 9, 9, 4, 1, 6, 6, 6, 6, 8, 4], [9, 9, 8, 9, 6, 6, 9, 9, 4, 1, 9, 9, 3, 9, 4, 9, 9, 4, 9, 3, 9, 9, 1, 4, 9, 9, 6, 6, 9, 8], [1, 1, 9, 9, 6, 9, 1, 9, 9, 9, 1, 4, 4, 4, 4, 3, 3, 4, 4, 4, 4, 1, 9, 9, 9, 1, 9, 6, 9, 9], [1, 1, 9, 4, 6, 9, 9, 1, 9, 9, 4, 1, 9, 9, 8, 4, 4, 8, 9, 9, 1, 4, 9, 9, 1, 9, 9, 6, 4, 9], [6, 6, 2, 1, 4, 9, 9, 8, 9, 3, 4, 9, 8, 3, 8, 8, 8, 8, 3, 8, 9, 7, 7, 7, 7, 7, 7, 7, 7, 2], [6, 6, 6, 3, 9, 9, 8, 4, 8, 9, 4, 9, 3, 6, 8, 8, 8, 8, 6, 3, 9, 7, 7, 7, 7, 7, 7, 7, 7, 6], [2, 6, 2, 3, 1, 1, 9, 9, 4, 4, 4, 8, 8, 8, 6, 3, 3, 6, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 2], [1, 3, 3, 2, 1, 1, 9, 4, 9, 9, 3, 4, 8, 8, 3, 8, 8, 3, 8, 8, 4, 7, 7, 7, 7, 7, 7, 7, 7, 3], [8, 1, 8, 9, 9, 9, 5, 2, 4, 9, 4, 8, 1, 9, 9, 6, 6, 9, 9, 1, 8, 7, 7, 7, 7, 7, 7, 7, 7, 8], [1, 1, 9, 8, 9, 9, 5, 9, 9, 9, 8, 9, 9, 1, 9, 6, 6, 9, 1, 9, 9, 7, 7, 7, 7, 7, 7, 7, 7, 9], [8, 9, 1, 1, 5, 5, 9, 2, 1, 1, 9, 9, 9, 9, 6, 6, 6, 6, 9, 9, 9, 9, 1, 1, 2, 9, 5, 5, 1, 1], [9, 8, 1, 8, 2, 9, 5, 9, 1, 1, 9, 4, 6, 6, 6, 6, 6, 6, 6, 6, 4, 9, 1, 1, 9, 5, 9, 2, 8, 1], [9, 9, 5, 2, 2, 6, 4, 6, 2, 3, 3, 1, 4, 9, 9, 8, 8, 9, 9, 4, 1, 3, 3, 2, 6, 4, 6, 2, 2, 5], [9, 9, 5, 9, 6, 6, 6, 4, 3, 2, 6, 2, 9, 9, 8, 4, 4, 8, 9, 9, 2, 6, 2, 3, 4, 6, 6, 6, 9, 5]], "output": [[4, 3, 9, 8, 9, 9, 4, 1], [4, 9, 8, 4, 8, 9, 9, 3], [4, 4, 4, 9, 9, 1, 1, 3], [3, 9, 9, 4, 9, 1, 1, 2], [4, 9, 4, 2, 5, 9, 9, 9], [8, 9, 9, 9, 5, 9, 9, 8]]}, {"input": [[3, 3, 2, 2, 8, 9, 9, 8, 8, 5, 5, 5, 1, 3, 3, 1, 1, 3, 3, 1, 5, 7, 7, 7, 7, 7, 9, 8, 2, 2], [1, 1, 2, 1, 9, 8, 8, 9, 5, 2, 5, 5, 3, 1, 1, 9, 9, 1, 1, 3, 5, 7, 7, 7, 7, 7, 8, 9, 1, 2], [2, 2, 1, 3, 9, 8, 8, 9, 8, 5, 2, 5, 3, 1, 9, 2, 2, 9, 1, 3, 5, 7, 7, 7, 7, 7, 8, 9, 3, 1], [2, 9, 1, 3, 8, 9, 9, 8, 5, 8, 5, 8, 1, 9, 1, 9, 9, 1, 9, 1, 8, 7, 7, 7, 7, 7, 9, 8, 3, 1], [8, 3, 8, 1, 3, 3, 1, 2, 1, 3, 3, 1, 9, 4, 9, 8, 8, 9, 4, 9, 1, 7, 7, 7, 7, 7, 3, 3, 1, 8], [3, 8, 3, 8, 1, 1, 2, 2, 3, 1, 1, 9, 2, 8, 8, 9, 9, 8, 8, 2, 9, 7, 7, 7, 7, 7, 1, 1, 8, 3], [8, 3, 8, 3, 9, 2, 1, 3, 3, 1, 9, 1, 9, 9, 8, 4, 4, 8, 9, 9, 1, 7, 7, 7, 7, 7, 2, 9, 3, 8], [1, 8, 3, 8, 2, 2, 1, 3, 1, 9, 2, 9, 9, 9, 2, 9, 9, 2, 9, 9, 9, 2, 9, 1, 3, 1, 2, 2, 8, 3], [8, 5, 8, 5, 1, 3, 3, 1, 3, 2, 6, 2, 9, 9, 6, 9, 9, 6, 9, 9, 2, 6, 2, 3, 1, 3, 3, 1, 5, 8], [5, 2, 5, 8, 3, 1, 1, 9, 1, 1, 2, 2, 9, 9, 4, 6, 6, 4, 9, 9, 2, 2, 1, 1, 9, 1, 1, 3, 8, 5], [5, 5, 2, 5, 3, 1, 9, 2, 6, 3, 1, 2, 6, 4, 9, 9, 9, 9, 4, 6, 2, 1, 3, 6, 2, 9, 1, 3, 5, 2], [5, 5, 5, 8, 1, 9, 1, 9, 3, 6, 1, 3, 9, 6, 9, 9, 9, 9, 6, 9, 3, 1, 6, 3, 9, 1, 9, 1, 8, 5], [1, 3, 3, 1, 9, 2, 9, 9, 8, 4, 3, 2, 3, 2, 2, 2, 2, 2, 2, 3, 2, 3, 4, 8, 9, 9, 2, 9, 1, 3], [3, 1, 1, 9, 4, 8, 9, 9, 4, 8, 2, 3, 1, 1, 2, 6, 6, 2, 1, 1, 3, 2, 8, 4, 9, 9, 8, 4, 9, 1], [3, 1, 9, 1, 9, 8, 8, 2, 3, 2, 8, 4, 6, 3, 1, 2, 2, 1, 3, 6, 4, 8, 2, 3, 2, 8, 8, 9, 1, 9], [1, 9, 2, 9, 8, 9, 4, 9, 2, 3, 4, 8, 3, 6, 1, 3, 3, 1, 6, 3, 8, 4, 3, 2, 9, 4, 9, 8, 9, 2], [1, 9, 2, 9, 8, 9, 4, 9, 2, 3, 4, 8, 3, 6, 1, 3, 3, 1, 6, 3, 8, 4, 3, 2, 9, 4, 9, 8, 9, 2], [3, 1, 9, 1, 9, 8, 8, 2, 3, 2, 8, 4, 6, 3, 1, 2, 2, 1, 3, 6, 4, 8, 2, 3, 2, 8, 8, 9, 1, 9], [3, 1, 1, 9, 4, 8, 9, 9, 4, 8, 2, 3, 1, 1, 2, 6, 6, 2, 1, 1, 3, 2, 8, 4, 9, 9, 8, 4, 9, 1], [1, 3, 3, 1, 9, 2, 9, 9, 8, 4, 3, 2, 3, 2, 2, 2, 2, 2, 2, 3, 2, 3, 4, 8, 9, 9, 2, 9, 1, 3], [5, 5, 5, 8, 1, 9, 1, 9, 3, 6, 1, 3, 9, 6, 9, 9, 9, 9, 6, 9, 3, 1, 6, 3, 9, 1, 9, 1, 8, 5], [5, 5, 2, 5, 3, 1, 9, 2, 6, 3, 1, 2, 6, 4, 9, 9, 9, 9, 4, 6, 2, 1, 3, 6, 2, 9, 1, 3, 5, 2], [5, 2, 5, 8, 3, 1, 1, 9, 1, 1, 2, 2, 9, 9, 4, 6, 6, 4, 9, 9, 2, 2, 1, 1, 9, 1, 1, 3, 8, 5], [8, 5, 8, 5, 1, 3, 3, 1, 3, 2, 6, 2, 9, 9, 6, 9, 9, 6, 9, 9, 2, 6, 2, 3, 1, 3, 3, 1, 5, 8], [1, 8, 3, 8, 2, 2, 1, 3, 1, 9, 2, 9, 9, 9, 2, 9, 9, 2, 9, 9, 9, 2, 9, 1, 3, 1, 2, 2, 8, 3], [8, 3, 8, 3, 9, 2, 1, 3, 3, 1, 9, 1, 9, 9, 8, 4, 4, 8, 9, 9, 1, 9, 1, 3, 3, 1, 2, 9, 3, 8], [3, 8, 3, 8, 1, 1, 2, 2, 3, 1, 1, 9, 2, 8, 8, 9, 9, 8, 8, 2, 9, 1, 1, 3, 2, 2, 1, 1, 8, 3], [8, 3, 8, 1, 3, 3, 1, 2, 1, 3, 3, 1, 9, 4, 9, 8, 8, 9, 4, 9, 1, 3, 3, 1, 2, 1, 3, 3, 1, 8], [2, 9, 1, 3, 8, 9, 9, 8, 5, 8, 5, 8, 1, 9, 1, 9, 9, 1, 9, 1, 8, 5, 8, 5, 8, 9, 9, 8, 3, 1], [2, 2, 1, 3, 9, 8, 8, 9, 8, 5, 2, 5, 3, 1, 9, 2, 2, 9, 1, 3, 5, 2, 5, 8, 9, 8, 8, 9, 3, 1]], "output": [[5, 5, 8, 8, 9], [5, 2, 5, 9, 8], [2, 5, 8, 9, 8], [5, 8, 5, 8, 9], [3, 3, 1, 2, 1], [1, 1, 3, 2, 2], [9, 1, 3, 3, 1]]}, {"input": [[4, 3, 3, 8, 8, 8, 4, 4, 2, 3, 8, 2, 6, 2, 2, 6, 6, 2, 2, 6, 2, 8, 3, 2, 4, 4, 8, 8, 8, 3], [4, 3, 8, 8, 8, 8, 4, 4, 3, 8, 2, 8, 9, 6, 6, 6, 6, 6, 6, 9, 8, 2, 8, 3, 4, 4, 8, 8, 8, 8], [8, 8, 3, 3, 4, 4, 8, 8, 3, 8, 8, 3, 2, 6, 9, 6, 6, 9, 6, 2, 3, 8, 8, 3, 8, 8, 4, 4, 3, 3], [8, 3, 4, 4, 4, 4, 8, 8, 8, 3, 3, 2, 6, 6, 2, 9, 9, 2, 6, 6, 2, 3, 3, 8, 8, 8, 4, 4, 4, 4], [5, 9, 4, 4, 4, 3, 8, 8, 6, 9, 2, 6, 6, 2, 9, 8, 8, 9, 2, 6, 6, 2, 9, 6, 8, 8, 3, 4, 4, 4], [9, 5, 5, 4, 4, 3, 8, 3, 2, 6, 6, 6, 8, 6, 8, 9, 9, 8, 6, 8, 6, 6, 6, 2, 3, 8, 3, 4, 4, 5], [4, 5, 5, 9, 3, 8, 3, 3, 2, 6, 9, 2, 8, 6, 6, 2, 2, 6, 6, 8, 2, 9, 6, 2, 3, 3, 8, 3, 9, 5], [4, 4, 9, 5, 8, 8, 4, 4, 6, 6, 6, 9, 6, 8, 8, 6, 6, 8, 8, 6, 9, 6, 6, 6, 4, 4, 8, 8, 5, 9], [2, 3, 3, 8, 6, 2, 2, 6, 9, 9, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 8, 8, 9, 9, 6, 2, 2, 6, 8, 3], [3, 8, 8, 3, 9, 6, 6, 6, 9, 5, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 8, 5, 9, 6, 6, 6, 9, 3, 8], [8, 2, 8, 3, 2, 6, 9, 6, 4, 8, 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 5, 8, 4, 6, 9, 6, 2, 3, 8], [2, 8, 3, 2, 6, 6, 2, 9, 8, 4, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 8, 9, 2, 6, 6, 2, 3], [6, 9, 2, 6, 6, 8, 8, 6, 9, 9, 9, 6, 9, 9, 9, 8, 8, 9, 9, 9, 6, 9, 9, 9, 6, 8, 8, 6, 6, 2], [2, 6, 6, 6, 2, 6, 6, 8, 9, 9, 9, 9, 9, 5, 8, 8, 8, 8, 5, 9, 9, 9, 9, 9, 8, 6, 6, 2, 6, 6], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9, 9, 4, 8, 5, 9, 9, 5, 8, 4, 9, 9, 9, 9, 8, 6, 8, 9, 2, 9], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9, 9, 8, 4, 9, 9, 9, 9, 4, 8, 9, 9, 9, 6, 6, 2, 9, 8, 9, 6], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9, 9, 8, 4, 9, 9, 9, 9, 4, 8, 9, 9, 9, 6, 6, 2, 9, 8, 9, 6], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9, 9, 4, 8, 5, 9, 9, 5, 8, 4, 9, 9, 9, 9, 8, 6, 8, 9, 2, 9], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 5, 8, 8, 8, 8, 5, 9, 9, 9, 9, 9, 8, 6, 6, 2, 6, 6], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9, 6, 9, 9, 9, 8, 8, 9, 9, 9, 6, 9, 9, 9, 6, 8, 8, 6, 6, 2], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 8, 9, 2, 6, 6, 2, 3], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 5, 8, 4, 6, 9, 6, 2, 3, 8], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 8, 5, 9, 6, 6, 6, 9, 3, 8], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 8, 8, 9, 9, 6, 2, 2, 6, 8, 3], [4, 4, 9, 5, 8, 8, 4, 4, 6, 6, 6, 9, 6, 8, 8, 6, 6, 8, 8, 6, 9, 6, 6, 6, 4, 4, 8, 8, 5, 9], [4, 5, 5, 9, 3, 8, 3, 3, 2, 6, 9, 2, 8, 6, 6, 2, 2, 6, 6, 8, 2, 9, 6, 2, 3, 3, 8, 3, 9, 5], [9, 5, 5, 4, 4, 3, 8, 3, 2, 6, 6, 6, 8, 6, 8, 9, 9, 8, 6, 8, 6, 6, 6, 2, 3, 8, 3, 4, 4, 5], [5, 9, 4, 4, 4, 3, 8, 8, 6, 9, 2, 6, 6, 2, 9, 8, 8, 9, 2, 6, 6, 2, 9, 6, 8, 8, 3, 4, 4, 4], [8, 3, 4, 4, 4, 4, 8, 8, 8, 3, 3, 2, 6, 6, 2, 9, 9, 2, 6, 6, 2, 3, 3, 8, 8, 8, 4, 4, 4, 4], [8, 8, 3, 3, 4, 4, 8, 8, 3, 8, 8, 3, 2, 6, 9, 6, 6, 9, 6, 2, 3, 8, 8, 3, 8, 8, 4, 4, 3, 3]], "output": [[2, 6, 9, 2, 9, 8, 6, 8, 9, 9], [6, 6, 6, 9, 8, 9, 2, 6, 6, 9], [6, 6, 6, 9, 8, 9, 2, 6, 6, 9], [2, 6, 9, 2, 9, 8, 6, 8, 9, 9], [2, 6, 6, 6, 2, 6, 6, 8, 9, 9], [6, 9, 2, 6, 6, 8, 8, 6, 9, 9], [2, 8, 3, 2, 6, 6, 2, 9, 8, 4], [8, 2, 8, 3, 2, 6, 9, 6, 4, 8], [3, 8, 8, 3, 9, 6, 6, 6, 9, 5], [2, 3, 3, 8, 6, 2, 2, 6, 9, 9]]}, {"input": [[3, 1, 8, 8, 6, 8, 8, 6, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 8, 8, 8, 6, 8, 8, 6, 8, 8], [2, 3, 8, 3, 8, 6, 1, 8, 8, 9, 9, 8, 2, 9, 8, 8, 8, 8, 9, 2, 8, 9, 9, 8, 8, 1, 6, 8, 3, 8], [1, 8, 3, 1, 8, 1, 6, 8, 4, 8, 9, 8, 9, 8, 9, 8, 8, 9, 8, 9, 8, 9, 8, 4, 8, 6, 1, 8, 1, 3], [8, 2, 2, 3, 6, 8, 8, 6, 8, 4, 8, 8, 9, 8, 9, 9, 9, 9, 8, 9, 8, 8, 4, 8, 6, 8, 8, 6, 3, 2], [3, 8, 8, 3, 3, 1, 3, 8, 9, 2, 9, 9, 9, 8, 9, 8, 8, 9, 8, 9, 9, 9, 2, 9, 8, 3, 1, 3, 3, 8], [8, 3, 1, 8, 2, 3, 8, 8, 9, 9, 8, 8, 8, 4, 8, 9, 9, 8, 4, 8, 8, 8, 9, 9, 8, 8, 3, 2, 8, 1], [8, 1, 3, 8, 2, 8, 3, 1, 9, 8, 9, 9, 9, 5, 4, 8, 8, 4, 5, 9, 9, 9, 8, 9, 1, 3, 8, 2, 8, 3], [3, 8, 8, 3, 8, 1, 2, 3, 9, 8, 8, 9, 5, 9, 8, 9, 9, 8, 9, 5, 9, 8, 8, 9, 3, 2, 1, 8, 3, 8], [8, 8, 4, 8, 9, 9, 9, 9, 2, 9, 8, 8, 5, 2, 5, 1, 1, 5, 2, 5, 8, 8, 9, 2, 9, 9, 9, 9, 8, 4], [8, 9, 8, 4, 2, 9, 8, 8, 8, 2, 8, 3, 2, 5, 4, 5, 5, 4, 5, 2, 3, 8, 2, 8, 8, 8, 9, 2, 4, 8], [8, 9, 9, 8, 9, 8, 9, 8, 8, 8, 2, 9, 5, 4, 5, 2, 2, 5, 4, 5, 9, 2, 8, 8, 8, 9, 8, 9, 8, 9], [9, 8, 8, 8, 9, 8, 9, 9, 8, 8, 8, 2, 1, 5, 2, 5, 5, 2, 5, 1, 2, 8, 8, 8, 9, 9, 8, 9, 8, 8], [9, 2, 9, 9, 9, 8, 9, 5, 8, 8, 6, 8, 2, 9, 3, 8, 8, 3, 9, 2, 8, 6, 8, 8, 5, 9, 8, 9, 9, 9], [9, 9, 8, 8, 8, 4, 5, 9, 8, 8, 4, 6, 8, 2, 8, 8, 8, 8, 2, 8, 6, 4, 8, 8, 9, 5, 4, 8, 8, 8], [9, 8, 9, 9, 9, 8, 4, 8, 6, 4, 8, 8, 8, 8, 2, 9, 9, 2, 8, 8, 8, 8, 4, 6, 8, 4, 8, 9, 9, 9], [9, 8, 8, 9, 8, 9, 8, 9, 8, 6, 8, 8, 8, 8, 8, 2, 2, 8, 8, 8, 8, 8, 6, 8, 9, 8, 9, 8, 9, 8], [9, 8, 8, 9, 8, 9, 8, 9, 8, 6, 8, 8, 8, 8, 8, 2, 2, 8, 8, 8, 8, 8, 6, 8, 9, 8, 9, 8, 9, 8], [9, 8, 9, 9, 9, 8, 4, 8, 6, 4, 8, 8, 8, 8, 2, 9, 9, 2, 8, 8, 8, 8, 4, 6, 8, 4, 8, 9, 9, 9], [9, 9, 8, 8, 8, 4, 5, 9, 8, 8, 4, 6, 8, 2, 8, 8, 8, 8, 2, 8, 6, 4, 8, 8, 9, 5, 4, 8, 8, 8], [9, 2, 9, 9, 9, 8, 9, 5, 8, 8, 6, 8, 2, 9, 3, 8, 8, 3, 9, 2, 8, 6, 8, 8, 5, 9, 8, 9, 9, 9], [9, 8, 8, 8, 9, 8, 9, 9, 8, 8, 8, 2, 1, 5, 2, 5, 5, 2, 5, 1, 2, 8, 8, 8, 9, 9, 8, 9, 8, 8], [8, 9, 9, 8, 9, 8, 9, 8, 8, 8, 2, 9, 5, 4, 5, 2, 2, 5, 4, 5, 9, 2, 8, 8, 8, 9, 8, 9, 8, 9], [8, 9, 8, 4, 2, 9, 8, 8, 8, 2, 8, 3, 2, 5, 4, 5, 5, 4, 5, 2, 3, 8, 2, 8, 8, 8, 9, 2, 4, 8], [8, 8, 4, 8, 9, 9, 9, 9, 2, 9, 8, 8, 5, 2, 5, 1, 1, 5, 2, 5, 8, 8, 9, 2, 9, 9, 9, 9, 8, 4], [3, 8, 8, 3, 8, 7, 7, 7, 7, 8, 8, 9, 5, 9, 8, 9, 9, 8, 9, 5, 9, 8, 8, 9, 3, 2, 1, 8, 3, 8], [8, 1, 3, 8, 2, 7, 7, 7, 7, 8, 9, 9, 9, 5, 4, 8, 8, 4, 5, 9, 9, 9, 8, 9, 1, 3, 8, 2, 8, 3], [8, 3, 1, 8, 2, 7, 7, 7, 7, 9, 8, 8, 8, 4, 8, 9, 9, 8, 4, 8, 8, 8, 9, 9, 8, 8, 3, 2, 8, 1], [3, 8, 8, 3, 3, 7, 7, 7, 7, 2, 9, 9, 9, 8, 9, 8, 8, 9, 8, 9, 9, 9, 2, 9, 8, 3, 1, 3, 3, 8], [8, 2, 2, 3, 6, 8, 8, 6, 8, 4, 8, 8, 9, 8, 9, 9, 9, 9, 8, 9, 8, 8, 4, 8, 6, 8, 8, 6, 3, 2], [1, 8, 3, 1, 8, 1, 6, 8, 4, 8, 9, 8, 9, 8, 9, 8, 8, 9, 8, 9, 8, 9, 8, 4, 8, 6, 1, 8, 1, 3]], "output": [[1, 2, 3, 9], [8, 3, 1, 9], [3, 8, 8, 9], [1, 3, 8, 9]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/df8cc377.json b/data/arc-agi/evaluation/df8cc377.json
deleted file mode 100644
index 3acf173..0000000
--- a/data/arc-agi/evaluation/df8cc377.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 6, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 3, 0, 3, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 3, 0, 3, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 0, 6, 0, 6, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 6, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 0, 6, 0, 6, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 6, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 0, 6, 0, 6, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 6, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 8, 0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 8, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 8, 0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 4, 0, 4, 0, 4, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 4, 0, 4, 0, 4, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 2, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [4, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [5, 0, 2, 2, 2, 2, 0, 0, 4, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 5, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 4, 0, 0, 0, 5, 0, 5, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 4, 0, 4, 0, 4, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 4, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 4, 0, 4, 0, 4, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 4, 0, 4, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 3, 5, 0, 5, 0, 5, 0, 5, 0, 5, 3, 0, 0, 0, 0], [0, 0, 2, 8, 0, 2, 0, 0, 0, 0, 0, 3, 0, 5, 0, 5, 0, 5, 0, 5, 0, 3, 0, 0, 0, 0], [0, 0, 2, 0, 8, 2, 0, 0, 0, 0, 0, 3, 5, 0, 5, 0, 5, 0, 5, 0, 5, 3, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 3, 0, 5, 0, 5, 0, 5, 0, 5, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 0, 5, 0, 5, 0, 5, 0, 5, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 5, 0, 5, 0, 5, 0, 5, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e0fb7511.json b/data/arc-agi/evaluation/e0fb7511.json
deleted file mode 100644
index d11e88e..0000000
--- a/data/arc-agi/evaluation/e0fb7511.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1], [1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0], [1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1], [1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1], [0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1]], "output": [[1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1], [1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 8, 8, 8, 1, 1, 8, 1, 1, 0], [1, 1, 8, 8, 1, 1, 8, 1, 1, 8, 1, 1, 1], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1], [1, 0, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 1], [0, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1]]}, {"input": [[1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 1], [1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1], [1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1], [1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1], [1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1], [1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1], [1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1], [1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0], [1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1], [0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1], [0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1], [1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1]], "output": [[1, 1, 1, 8, 8, 1, 1, 1, 8, 1, 0, 1, 1], [1, 1, 0, 1, 1, 1, 1, 1, 8, 8, 1, 0, 1], [1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1], [1, 1, 8, 8, 1, 0, 1, 1, 0, 1, 1, 1, 1], [1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1], [1, 1, 1, 0, 1, 1, 1, 0, 1, 8, 1, 1, 1], [1, 8, 8, 1, 1, 1, 0, 1, 1, 8, 8, 1, 1], [1, 8, 8, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0], [1, 8, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1], [8, 8, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1], [8, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 8, 1], [1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 8, 8, 1]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1], [1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1], [0, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1], [1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0], [1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1], [0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 0, 1], [1, 1, 1, 0, 1, 1, 1, 1, 8, 1, 1, 1, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [8, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1], [8, 1, 8, 8, 8, 1, 1, 1, 0, 1, 1, 0, 1], [1, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 8], [1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 0, 1, 8], [0, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 8, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 8, 1], [0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1]]}], "test": [{"input": [[1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1], [0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0], [1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0], [0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0], [1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0], [1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0], [1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1], [0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1], [1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0], [1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1]], "output": [[1, 1, 1, 8, 8, 1, 1, 1, 1, 1, 8, 8, 1], [0, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 8, 8], [1, 1, 8, 8, 8, 1, 1, 0, 1, 1, 0, 1, 8], [0, 1, 1, 8, 1, 1, 1, 1, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1], [1, 8, 1, 0, 1, 1, 8, 1, 1, 1, 0, 1, 8], [1, 8, 8, 1, 0, 1, 8, 1, 1, 1, 1, 1, 8], [1, 8, 1, 0, 1, 1, 1, 1, 8, 8, 8, 1, 8], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 8, 1, 8], [1, 0, 1, 8, 8, 1, 1, 1, 1, 8, 8, 1, 1], [0, 1, 1, 8, 1, 1, 1, 1, 0, 1, 8, 1, 1], [1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 8, 1, 0], [1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e133d23d.json b/data/arc-agi/evaluation/e133d23d.json
deleted file mode 100644
index 2f8aeb7..0000000
--- a/data/arc-agi/evaluation/e133d23d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[0, 6, 6, 4, 0, 0, 8], [0, 6, 0, 4, 8, 8, 8], [6, 0, 6, 4, 0, 0, 0]], "output": [[0, 2, 2], [2, 2, 2], [2, 0, 2]]}], "train": [{"input": [[6, 0, 0, 4, 0, 0, 8], [0, 6, 0, 4, 0, 0, 8], [0, 6, 0, 4, 8, 8, 0]], "output": [[2, 0, 2], [0, 2, 2], [2, 2, 0]]}, {"input": [[0, 0, 6, 4, 8, 8, 0], [0, 6, 0, 4, 0, 8, 8], [0, 6, 6, 4, 8, 0, 0]], "output": [[2, 2, 2], [0, 2, 2], [2, 2, 2]]}, {"input": [[0, 0, 6, 4, 8, 0, 8], [6, 0, 6, 4, 0, 0, 0], [0, 6, 6, 4, 8, 0, 8]], "output": [[2, 0, 2], [2, 0, 2], [2, 2, 2]]}, {"input": [[6, 0, 6, 4, 0, 0, 0], [6, 6, 0, 4, 8, 0, 8], [6, 6, 6, 4, 0, 8, 0]], "output": [[2, 0, 2], [2, 2, 2], [2, 2, 2]]}, {"input": [[0, 0, 6, 4, 8, 0, 8], [0, 6, 0, 4, 0, 8, 0], [0, 0, 0, 4, 8, 0, 0]], "output": [[2, 0, 2], [0, 2, 0], [2, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e1baa8a4.json b/data/arc-agi/evaluation/e1baa8a4.json
deleted file mode 100644
index 01aa2c3..0000000
--- a/data/arc-agi/evaluation/e1baa8a4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [3, 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [3, 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [3, 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [3, 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]], "output": [[2, 8], [3, 5]]}, {"input": [[4, 4, 4, 4, 4, 5, 5, 5, 2, 2, 2, 2, 2, 2], [4, 4, 4, 4, 4, 5, 5, 5, 2, 2, 2, 2, 2, 2], [4, 4, 4, 4, 4, 5, 5, 5, 2, 2, 2, 2, 2, 2], [4, 4, 4, 4, 4, 5, 5, 5, 2, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 3, 3, 3, 2, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 3, 3, 3, 2, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 3, 3, 3, 2, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 3, 3, 3, 2, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 3, 3, 3, 2, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 3, 3, 3, 2, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 3, 3, 3, 2, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 3, 3, 3, 2, 2, 2, 2, 2, 2]], "output": [[4, 5, 2], [1, 3, 2]]}, {"input": [[1, 1, 1, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8], [1, 1, 1, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8], [1, 1, 1, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8], [1, 1, 1, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8], [1, 1, 1, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8], [5, 5, 5, 6, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3], [5, 5, 5, 6, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3], [5, 5, 5, 6, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3], [5, 5, 5, 6, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3], [5, 5, 5, 6, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3], [5, 5, 5, 6, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3], [5, 5, 5, 6, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3], [5, 5, 5, 6, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3], [5, 5, 5, 6, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3], [5, 5, 5, 6, 6, 6, 6, 6, 3, 3, 3, 3, 3, 3]], "output": [[1, 2, 8], [5, 6, 3]]}, {"input": [[8, 8, 8, 7, 7, 7, 7, 7, 9, 9, 9, 9, 8, 8, 8], [8, 8, 8, 7, 7, 7, 7, 7, 9, 9, 9, 9, 8, 8, 8], [8, 8, 8, 7, 7, 7, 7, 7, 9, 9, 9, 9, 8, 8, 8], [8, 8, 8, 7, 7, 7, 7, 7, 9, 9, 9, 9, 8, 8, 8], [3, 3, 3, 1, 1, 1, 1, 1, 6, 6, 6, 6, 4, 4, 4], [3, 3, 3, 1, 1, 1, 1, 1, 6, 6, 6, 6, 4, 4, 4], [3, 3, 3, 1, 1, 1, 1, 1, 6, 6, 6, 6, 4, 4, 4], [3, 3, 3, 1, 1, 1, 1, 1, 6, 6, 6, 6, 4, 4, 4], [3, 3, 3, 1, 1, 1, 1, 1, 6, 6, 6, 6, 4, 4, 4], [2, 2, 2, 4, 4, 4, 4, 4, 1, 1, 1, 1, 5, 5, 5], [2, 2, 2, 4, 4, 4, 4, 4, 1, 1, 1, 1, 5, 5, 5], [2, 2, 2, 4, 4, 4, 4, 4, 1, 1, 1, 1, 5, 5, 5], [2, 2, 2, 4, 4, 4, 4, 4, 1, 1, 1, 1, 5, 5, 5], [2, 2, 2, 4, 4, 4, 4, 4, 1, 1, 1, 1, 5, 5, 5], [2, 2, 2, 4, 4, 4, 4, 4, 1, 1, 1, 1, 5, 5, 5]], "output": [[8, 7, 9, 8], [3, 1, 6, 4], [2, 4, 1, 5]]}], "test": [{"input": [[8, 8, 8, 8, 7, 7, 7, 7, 4, 4, 4, 4, 4, 8, 8], [8, 8, 8, 8, 7, 7, 7, 7, 4, 4, 4, 4, 4, 8, 8], [3, 3, 3, 3, 1, 1, 1, 1, 2, 2, 2, 2, 2, 8, 8], [3, 3, 3, 3, 1, 1, 1, 1, 2, 2, 2, 2, 2, 8, 8], [3, 3, 3, 3, 1, 1, 1, 1, 2, 2, 2, 2, 2, 8, 8], [4, 4, 4, 4, 5, 5, 5, 5, 3, 3, 3, 3, 3, 9, 9], [4, 4, 4, 4, 5, 5, 5, 5, 3, 3, 3, 3, 3, 9, 9], [4, 4, 4, 4, 5, 5, 5, 5, 3, 3, 3, 3, 3, 9, 9], [4, 4, 4, 4, 5, 5, 5, 5, 3, 3, 3, 3, 3, 9, 9], [4, 4, 4, 4, 5, 5, 5, 5, 3, 3, 3, 3, 3, 9, 9], [2, 2, 2, 2, 6, 6, 6, 6, 1, 1, 1, 1, 1, 7, 7], [2, 2, 2, 2, 6, 6, 6, 6, 1, 1, 1, 1, 1, 7, 7], [1, 1, 1, 1, 5, 5, 5, 5, 2, 2, 2, 2, 2, 8, 8], [1, 1, 1, 1, 5, 5, 5, 5, 2, 2, 2, 2, 2, 8, 8], [1, 1, 1, 1, 5, 5, 5, 5, 2, 2, 2, 2, 2, 8, 8]], "output": [[8, 7, 4, 8], [3, 1, 2, 8], [4, 5, 3, 9], [2, 6, 1, 7], [1, 5, 2, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e1d2900e.json b/data/arc-agi/evaluation/e1d2900e.json
deleted file mode 100644
index 4d61efb..0000000
--- a/data/arc-agi/evaluation/e1d2900e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 2, 2, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 2, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 1, 0, 0, 0, 0, 2, 2, 0], [0, 2, 2, 0, 0, 0, 0, 1, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 2, 2, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 1, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 1, 0, 0, 0, 2, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e2092e0c.json b/data/arc-agi/evaluation/e2092e0c.json
deleted file mode 100644
index a27b266..0000000
--- a/data/arc-agi/evaluation/e2092e0c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 7, 6, 5, 0, 0, 0, 0, 1, 4, 5, 6, 0, 0, 8], [7, 0, 0, 5, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 6], [0, 9, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 2], [5, 5, 5, 5, 4, 0, 0, 0, 4, 0, 9, 0, 9, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [2, 3, 6, 0, 0, 0, 7, 6, 0, 0, 9, 4, 0, 0, 4], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 9, 0, 0, 0, 0, 9, 0, 8, 7, 0, 0, 0, 0, 0], [0, 6, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [1, 0, 5, 4, 0, 0, 8, 0, 0, 0, 0, 2, 2, 0, 6], [3, 0, 6, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 6, 0], [4, 1, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 4, 0], [0, 2, 0, 0, 7, 0, 0, 9, 7, 6, 0, 0, 5, 3, 0], [4, 0, 4, 1, 0, 0, 8, 1, 8, 0, 0, 9, 4, 7, 7], [0, 8, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 1, 6]], "output": [[0, 7, 6, 5, 0, 0, 0, 0, 1, 4, 5, 6, 0, 0, 8], [7, 0, 0, 5, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 6], [0, 9, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 2], [5, 5, 5, 5, 4, 0, 0, 0, 4, 0, 9, 0, 9, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 2, 0, 0], [2, 3, 6, 0, 5, 0, 7, 6, 5, 0, 9, 4, 0, 0, 4], [0, 0, 0, 0, 5, 7, 0, 0, 5, 0, 0, 3, 0, 0, 0], [0, 9, 0, 0, 5, 0, 9, 0, 5, 7, 0, 0, 0, 0, 0], [0, 6, 1, 0, 5, 5, 5, 5, 5, 0, 0, 0, 7, 0, 0], [1, 0, 5, 4, 0, 0, 8, 0, 0, 0, 0, 2, 2, 0, 6], [3, 0, 6, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 6, 0], [4, 1, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 4, 0], [0, 2, 0, 0, 7, 0, 0, 9, 7, 6, 0, 0, 5, 3, 0], [4, 0, 4, 1, 0, 0, 8, 1, 8, 0, 0, 9, 4, 7, 7], [0, 8, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 1, 6]]}, {"input": [[3, 4, 0, 5, 0, 0, 3, 0, 5, 8, 0, 7, 0, 0, 0], [0, 0, 4, 5, 8, 8, 0, 0, 0, 0, 7, 3, 3, 0, 0], [0, 8, 3, 5, 0, 0, 5, 0, 0, 1, 0, 2, 0, 0, 9], [5, 5, 5, 5, 6, 1, 0, 9, 0, 0, 3, 3, 0, 6, 0], [3, 7, 0, 0, 0, 5, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 4, 0, 0, 5, 5, 6, 0, 0, 0, 0, 0, 1, 5, 0], [0, 2, 1, 0, 0, 0, 0, 0, 4, 9, 0, 9, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 7, 2, 2, 0, 0, 9, 8], [1, 0, 0, 0, 1, 0, 3, 7, 0, 0, 0, 7, 0, 0, 3], [0, 0, 1, 2, 0, 9, 3, 4, 0, 0, 1, 0, 0, 2, 9], [0, 9, 0, 0, 8, 0, 0, 0, 4, 0, 0, 6, 0, 8, 4], [7, 7, 6, 0, 0, 0, 0, 8, 3, 0, 0, 0, 8, 2, 7], [0, 9, 0, 0, 2, 0, 4, 0, 0, 0, 0, 0, 0, 1, 6], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 0, 9, 8, 0], [4, 0, 0, 0, 9, 0, 1, 1, 7, 9, 0, 0, 0, 8, 0]], "output": [[3, 4, 0, 5, 0, 0, 3, 0, 5, 8, 0, 7, 0, 0, 0], [0, 0, 4, 5, 8, 8, 0, 0, 0, 0, 7, 3, 3, 0, 0], [0, 8, 3, 5, 0, 0, 5, 0, 0, 1, 0, 2, 0, 0, 9], [5, 5, 5, 5, 6, 1, 0, 9, 0, 0, 3, 3, 0, 6, 0], [3, 7, 0, 0, 0, 5, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 4, 0, 0, 5, 5, 6, 0, 0, 0, 0, 0, 1, 5, 0], [0, 2, 1, 0, 0, 0, 0, 0, 4, 9, 0, 9, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 7, 2, 2, 0, 0, 9, 8], [1, 0, 0, 0, 1, 5, 5, 5, 5, 5, 0, 7, 0, 0, 3], [0, 0, 1, 2, 0, 5, 3, 4, 0, 5, 1, 0, 0, 2, 9], [0, 9, 0, 0, 8, 5, 0, 0, 4, 5, 0, 6, 0, 8, 4], [7, 7, 6, 0, 0, 5, 0, 8, 3, 5, 0, 0, 8, 2, 7], [0, 9, 0, 0, 2, 5, 5, 5, 5, 5, 0, 0, 0, 1, 6], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 0, 9, 8, 0], [4, 0, 0, 0, 9, 0, 1, 1, 7, 9, 0, 0, 0, 8, 0]]}, {"input": [[4, 0, 2, 5, 0, 0, 0, 2, 6, 9, 0, 0, 5, 0, 0], [0, 7, 0, 5, 0, 8, 5, 8, 0, 7, 0, 0, 0, 8, 8], [0, 6, 6, 5, 7, 0, 3, 5, 0, 0, 0, 4, 7, 0, 0], [5, 5, 5, 5, 8, 0, 1, 9, 0, 0, 0, 0, 5, 0, 0], [8, 0, 0, 0, 0, 0, 1, 0, 3, 9, 8, 0, 0, 0, 0], [0, 2, 0, 0, 0, 6, 6, 4, 0, 9, 0, 0, 1, 7, 0], [8, 0, 6, 0, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 9], [3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 4, 0, 2, 0, 3, 2, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 5, 0, 8], [0, 9, 4, 4, 0, 0, 4, 0, 6, 6, 0, 7, 0, 0, 0], [7, 0, 0, 0, 9, 0, 0, 8, 0, 0, 0, 5, 0, 0, 0], [0, 6, 0, 0, 1, 0, 0, 7, 7, 0, 0, 0, 4, 0, 0], [0, 0, 0, 4, 0, 5, 0, 0, 0, 0, 7, 0, 5, 0, 0], [8, 0, 9, 8, 5, 0, 0, 0, 0, 0, 3, 0, 4, 0, 0]], "output": [[4, 0, 2, 5, 0, 0, 0, 2, 6, 9, 0, 0, 5, 0, 0], [0, 7, 0, 5, 0, 8, 5, 8, 0, 7, 0, 0, 0, 8, 8], [0, 6, 6, 5, 7, 0, 3, 5, 0, 0, 0, 4, 7, 0, 0], [5, 5, 5, 5, 8, 0, 1, 9, 0, 0, 0, 0, 5, 0, 0], [8, 0, 0, 0, 0, 0, 1, 0, 3, 9, 8, 0, 0, 0, 0], [0, 2, 0, 0, 0, 6, 6, 4, 0, 9, 0, 0, 1, 7, 0], [8, 0, 6, 0, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 9], [3, 0, 0, 2, 0, 0, 5, 5, 5, 5, 5, 8, 0, 0, 0], [0, 0, 0, 0, 2, 0, 5, 4, 0, 2, 5, 3, 2, 0, 0], [0, 0, 1, 0, 0, 0, 5, 0, 7, 0, 5, 0, 5, 0, 8], [0, 9, 4, 4, 0, 0, 5, 0, 6, 6, 5, 7, 0, 0, 0], [7, 0, 0, 0, 9, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 6, 0, 0, 1, 0, 0, 7, 7, 0, 0, 0, 4, 0, 0], [0, 0, 0, 4, 0, 5, 0, 0, 0, 0, 7, 0, 5, 0, 0], [8, 0, 9, 8, 5, 0, 0, 0, 0, 0, 3, 0, 4, 0, 0]]}], "test": [{"input": [[0, 7, 3, 5, 0, 0, 0, 0, 0, 0, 0, 3, 5, 4, 0], [1, 0, 3, 5, 2, 0, 1, 0, 0, 0, 0, 8, 0, 0, 0], [1, 0, 0, 5, 6, 0, 0, 9, 9, 0, 5, 0, 0, 0, 9], [5, 5, 5, 5, 0, 0, 2, 1, 0, 0, 3, 0, 0, 0, 0], [3, 0, 0, 3, 1, 8, 5, 0, 5, 2, 0, 0, 5, 0, 0], [4, 0, 9, 2, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 9, 5, 4, 0, 8, 0, 0, 5, 5], [0, 7, 0, 0, 0, 5, 5, 7, 0, 0, 1, 0, 0, 0, 1], [0, 0, 0, 3, 0, 7, 3, 7, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 4, 0, 7, 3, 0, 2], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 0], [0, 0, 5, 2, 2, 2, 0, 0, 0, 0, 1, 0, 0, 2, 0], [0, 0, 3, 0, 0, 5, 4, 7, 0, 0, 0, 0, 0, 3, 5], [8, 0, 0, 1, 7, 1, 0, 8, 0, 8, 2, 0, 0, 0, 4]], "output": [[0, 7, 3, 5, 0, 0, 0, 0, 0, 0, 0, 3, 5, 4, 0], [1, 0, 3, 5, 2, 0, 1, 0, 0, 0, 0, 8, 0, 0, 0], [1, 0, 0, 5, 6, 0, 0, 9, 9, 0, 5, 0, 0, 0, 9], [5, 5, 5, 5, 0, 0, 2, 1, 0, 0, 3, 0, 0, 0, 0], [3, 0, 0, 3, 1, 8, 5, 0, 5, 2, 0, 0, 5, 0, 0], [4, 0, 9, 2, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 9, 5, 4, 0, 8, 0, 0, 5, 5], [0, 7, 0, 0, 0, 5, 5, 7, 0, 0, 1, 0, 0, 0, 1], [0, 0, 0, 3, 0, 7, 3, 7, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 9, 0, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 5, 0, 7, 3, 5, 2], [0, 2, 2, 0, 0, 0, 0, 0, 0, 5, 1, 0, 3, 5, 0], [0, 0, 5, 2, 2, 2, 0, 0, 0, 5, 1, 0, 0, 5, 0], [0, 0, 3, 0, 0, 5, 4, 7, 0, 5, 5, 5, 5, 5, 5], [8, 0, 0, 1, 7, 1, 0, 8, 0, 8, 2, 0, 0, 0, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e21a174a.json b/data/arc-agi/evaluation/e21a174a.json
deleted file mode 100644
index 471f2a4..0000000
--- a/data/arc-agi/evaluation/e21a174a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 5, 0, 0, 0, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 5, 0, 0, 0, 5, 5, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0], [0, 0, 2, 2, 2, 0, 0], [0, 0, 2, 2, 2, 0, 0], [0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 3, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0], [0, 0, 2, 2, 2, 0, 0], [0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0], [0, 4, 0, 4, 0, 4, 0], [0, 0, 5, 5, 5, 0, 0], [0, 6, 0, 6, 0, 6, 0], [0, 0, 6, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 6, 0, 6, 0], [0, 0, 6, 0, 6, 0, 0], [0, 0, 5, 5, 5, 0, 0], [0, 4, 4, 4, 4, 4, 0], [0, 4, 0, 4, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 3, 0, 3, 3, 0, 3, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 8, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 0, 0, 0], [0, 0, 0, 8, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 3, 0, 3, 3, 0, 3, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e345f17b.json b/data/arc-agi/evaluation/e345f17b.json
deleted file mode 100644
index 9a265b7..0000000
--- a/data/arc-agi/evaluation/e345f17b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[6, 0, 6, 6, 5, 0, 0, 5], [0, 0, 0, 6, 5, 5, 5, 5], [0, 6, 6, 0, 5, 5, 0, 5], [6, 6, 0, 0, 5, 5, 5, 0]], "output": [[0, 4, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 4]]}, {"input": [[0, 6, 0, 0, 0, 5, 0, 5], [0, 6, 0, 0, 0, 0, 0, 5], [6, 0, 0, 0, 5, 5, 0, 0], [6, 6, 0, 6, 0, 0, 0, 5]], "output": [[4, 0, 4, 0], [4, 0, 4, 0], [0, 0, 4, 4], [0, 0, 4, 0]]}], "train": [{"input": [[6, 6, 6, 6, 5, 0, 5, 0], [6, 0, 0, 0, 5, 5, 0, 0], [6, 0, 6, 6, 0, 0, 5, 5], [0, 0, 6, 0, 0, 5, 5, 0]], "output": [[0, 0, 0, 0], [0, 0, 4, 4], [0, 4, 0, 0], [4, 0, 0, 4]]}, {"input": [[0, 6, 6, 0, 5, 5, 5, 0], [0, 6, 0, 6, 5, 0, 0, 5], [0, 6, 6, 6, 5, 5, 5, 5], [6, 0, 0, 0, 0, 5, 0, 5]], "output": [[0, 0, 0, 4], [0, 0, 4, 0], [0, 0, 0, 0], [0, 0, 4, 0]]}, {"input": [[6, 6, 6, 0, 5, 0, 5, 5], [6, 0, 0, 0, 0, 5, 5, 5], [6, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 5, 5, 0, 0]], "output": [[0, 0, 0, 0], [0, 0, 0, 0], [0, 4, 4, 4], [0, 0, 0, 0]]}, {"input": [[6, 0, 6, 0, 0, 0, 5, 5], [0, 6, 6, 6, 5, 0, 5, 5], [6, 6, 0, 6, 5, 0, 5, 5], [6, 6, 0, 0, 5, 0, 0, 0]], "output": [[0, 4, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 4, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e4075551.json b/data/arc-agi/evaluation/e4075551.json
deleted file mode 100644
index 79f18e6..0000000
--- a/data/arc-agi/evaluation/e4075551.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 4, 5, 5, 2, 5, 5, 5, 3, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 5, 0, 0, 7, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 5, 0, 0, 7, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 5, 0, 0, 7, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 5, 0, 0, 7, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 5, 0, 0, 7, 0, 0, 0], [0, 0, 0, 8, 5, 5, 5, 2, 5, 5, 7, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 5, 0, 0, 7, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 5, 0, 0, 7, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 5, 0, 0, 7, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 1, 5, 5, 5, 2, 5, 5, 5, 5, 5, 6, 0, 0], [0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 7, 0, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 7, 0, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 7, 0, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 7, 0, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 7, 0, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 7, 5, 2, 5, 5, 5, 5, 5, 5, 3, 0, 0, 0], [0, 0, 7, 0, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 7, 0, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 7, 0, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 7, 0, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 7, 0, 5, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e41c6fd3.json b/data/arc-agi/evaluation/e41c6fd3.json
deleted file mode 100644
index ce57cb4..0000000
--- a/data/arc-agi/evaluation/e41c6fd3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 8, 8, 8, 8, 0, 0, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 8, 8, 8, 8, 0, 0, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 8, 8, 8, 8, 0, 0, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 8, 0, 0, 8, 0, 0, 4, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 8, 0, 8, 8, 0, 8, 0, 0, 6, 0, 6, 6, 0, 6, 1, 0, 1, 1, 0, 1, 3, 0, 3, 3, 0, 3], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 8, 8, 0, 0, 8, 8, 0, 0, 6, 6, 0, 0, 6, 6, 1, 1, 0, 0, 1, 1, 3, 3, 0, 0, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 4, 4, 0, 0, 0, 0, 8, 8, 0, 0, 2, 2, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 2, 2, 2, 2, 0, 0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 4, 4, 0, 0, 0, 0, 8, 8, 0, 0, 2, 2, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 2, 2, 2, 2, 0, 0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 1, 1, 1, 0, 0, 4, 4, 4, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e57337a4.json b/data/arc-agi/evaluation/e57337a4.json
deleted file mode 100644
index c3b41f2..0000000
--- a/data/arc-agi/evaluation/e57337a4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]], "output": [[9, 9, 0], [9, 9, 9], [9, 9, 9]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[0, 8, 8], [8, 0, 8], [8, 8, 8]]}, {"input": [[7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 0, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7]], "output": [[0, 7, 0], [0, 7, 7], [7, 7, 7]]}], "test": [{"input": [[6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]], "output": [[6, 0, 6], [6, 6, 6], [6, 6, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e5790162.json b/data/arc-agi/evaluation/e5790162.json
deleted file mode 100644
index 291489e..0000000
--- a/data/arc-agi/evaluation/e5790162.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [3, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [3, 3, 3, 6, 0, 0], [0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 6, 0], [0, 0, 0, 3, 0, 0], [0, 0, 0, 3, 3, 3], [0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 6, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 6], [0, 0, 0, 8, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 3, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 3, 0, 0], [0, 0, 0, 3, 0, 0], [3, 3, 3, 3, 8, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 6, 0, 0, 3, 0, 0], [0, 0, 3, 3, 3, 3, 8, 0], [0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0], [3, 3, 3, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 8, 0], [0, 0, 6, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e5c44e8f.json b/data/arc-agi/evaluation/e5c44e8f.json
deleted file mode 100644
index 6d38b3e..0000000
--- a/data/arc-agi/evaluation/e5c44e8f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 3, 0, 3, 3, 3, 3, 3, 3, 3, 0], [0, 3, 0, 3, 0, 0, 0, 0, 0, 3, 0], [0, 3, 0, 3, 0, 3, 3, 3, 0, 3, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 3, 0, 3, 0, 0, 0, 3, 0, 3, 0], [0, 3, 0, 3, 3, 3, 3, 3, 0, 3, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 2], [0, 2, 0, 3, 0, 3, 3, 3, 2, 3, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 3, 0, 3, 0, 0, 0, 3, 0, 3, 0], [0, 3, 0, 3, 3, 3, 3, 3, 0, 3, 0], [0, 3, 2, 0, 0, 0, 0, 0, 0, 3, 2], [2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 3, 3, 3, 3, 2, 0, 0, 0, 2], [0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 3, 0, 0, 2, 0], [0, 2, 3, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 3, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0], [0, 0, 0, 2, 0, 0, 3, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e619ca6e.json b/data/arc-agi/evaluation/e619ca6e.json
deleted file mode 100644
index 302f9b5..0000000
--- a/data/arc-agi/evaluation/e619ca6e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 3, 3, 3, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 3, 3, 3, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e633a9e5.json b/data/arc-agi/evaluation/e633a9e5.json
deleted file mode 100644
index b956af3..0000000
--- a/data/arc-agi/evaluation/e633a9e5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[6, 5, 5], [5, 1, 7], [4, 5, 2]], "output": [[6, 6, 5, 5, 5], [6, 6, 5, 5, 5], [5, 5, 1, 7, 7], [4, 4, 5, 2, 2], [4, 4, 5, 2, 2]]}, {"input": [[1, 3, 5], [1, 2, 8], [8, 3, 8]], "output": [[1, 1, 3, 5, 5], [1, 1, 3, 5, 5], [1, 1, 2, 8, 8], [8, 8, 3, 8, 8], [8, 8, 3, 8, 8]]}, {"input": [[2, 3, 7], [2, 1, 6], [1, 5, 7]], "output": [[2, 2, 3, 7, 7], [2, 2, 3, 7, 7], [2, 2, 1, 6, 6], [1, 1, 5, 7, 7], [1, 1, 5, 7, 7]]}], "test": [{"input": [[1, 2, 5], [7, 3, 6], [7, 6, 5]], "output": [[1, 1, 2, 5, 5], [1, 1, 2, 5, 5], [7, 7, 3, 6, 6], [7, 7, 6, 5, 5], [7, 7, 6, 5, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e66aafb8.json b/data/arc-agi/evaluation/e66aafb8.json
deleted file mode 100644
index 139a25e..0000000
--- a/data/arc-agi/evaluation/e66aafb8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[8, 4, 9, 3, 4, 8, 5, 6, 3, 5, 6, 3, 3, 6, 5, 3, 6, 5, 8, 4, 3, 9, 4, 8], [4, 9, 3, 8, 9, 1, 6, 7, 6, 6, 3, 2, 2, 3, 6, 6, 7, 6, 1, 9, 8, 3, 9, 4], [9, 3, 1, 3, 4, 1, 3, 6, 3, 3, 3, 5, 5, 3, 3, 3, 6, 3, 1, 4, 3, 1, 3, 9], [3, 8, 3, 1, 3, 8, 5, 6, 3, 7, 5, 7, 7, 5, 7, 3, 6, 5, 8, 3, 1, 3, 8, 3], [4, 9, 4, 3, 4, 8, 6, 3, 3, 5, 3, 3, 3, 3, 5, 3, 3, 6, 8, 4, 3, 4, 9, 4], [8, 1, 1, 8, 8, 3, 3, 2, 5, 7, 3, 7, 7, 3, 7, 5, 2, 3, 3, 8, 8, 1, 1, 8], [5, 6, 3, 5, 6, 3, 9, 9, 9, 8, 5, 9, 9, 5, 8, 9, 9, 9, 3, 6, 5, 3, 6, 5], [6, 7, 6, 6, 3, 2, 9, 9, 9, 4, 4, 4, 4, 4, 4, 9, 9, 9, 2, 3, 6, 6, 7, 6], [3, 6, 3, 3, 3, 5, 9, 9, 5, 8, 9, 9, 9, 9, 8, 5, 9, 9, 5, 3, 3, 3, 6, 3], [5, 6, 3, 7, 5, 7, 8, 4, 8, 6, 5, 8, 8, 5, 0, 0, 0, 8, 7, 5, 7, 3, 6, 5], [6, 3, 3, 5, 3, 3, 5, 4, 9, 5, 5, 5, 5, 5, 0, 0, 0, 5, 3, 3, 5, 3, 3, 6], [3, 2, 5, 7, 3, 7, 9, 4, 9, 8, 5, 6, 6, 5, 0, 0, 0, 9, 7, 3, 7, 5, 2, 3], [3, 2, 5, 7, 3, 7, 9, 4, 9, 8, 5, 6, 6, 5, 8, 9, 4, 9, 7, 3, 7, 5, 2, 3], [6, 3, 3, 5, 3, 3, 5, 4, 9, 5, 5, 5, 5, 5, 5, 9, 4, 5, 3, 3, 5, 3, 3, 6], [5, 6, 3, 7, 5, 7, 8, 4, 8, 6, 5, 8, 8, 5, 6, 8, 4, 8, 7, 5, 7, 3, 6, 5], [3, 6, 3, 3, 3, 5, 9, 9, 5, 8, 9, 9, 9, 9, 8, 5, 9, 9, 5, 3, 3, 3, 6, 3], [6, 7, 6, 6, 3, 2, 9, 9, 9, 4, 4, 4, 4, 4, 4, 9, 9, 9, 2, 3, 6, 6, 7, 6], [5, 6, 3, 5, 6, 3, 9, 9, 9, 8, 5, 9, 9, 5, 8, 9, 9, 9, 3, 6, 5, 3, 6, 5], [8, 1, 1, 8, 8, 3, 3, 2, 5, 7, 3, 7, 7, 3, 7, 5, 2, 3, 3, 8, 8, 1, 1, 8], [4, 9, 4, 3, 4, 8, 6, 3, 3, 5, 3, 3, 3, 3, 5, 3, 3, 6, 8, 4, 3, 4, 9, 4], [3, 8, 3, 1, 3, 8, 5, 6, 3, 7, 5, 7, 7, 5, 7, 3, 6, 5, 8, 3, 1, 3, 8, 3], [9, 3, 1, 3, 4, 1, 3, 6, 3, 3, 3, 5, 5, 3, 3, 3, 6, 3, 1, 4, 3, 1, 3, 9], [4, 9, 3, 8, 9, 1, 6, 7, 6, 6, 3, 2, 2, 3, 6, 6, 7, 6, 1, 9, 8, 3, 9, 4], [8, 4, 9, 3, 4, 8, 5, 6, 3, 5, 6, 3, 3, 6, 5, 3, 6, 5, 8, 4, 3, 9, 4, 8]], "output": [[6, 8, 4], [5, 9, 4], [8, 9, 4]]}], "train": [{"input": [[8, 8, 9, 1, 1, 9, 5, 8, 8, 2, 6, 3, 3, 6, 2, 8, 8, 5, 9, 1, 1, 9, 8, 8], [8, 5, 9, 1, 5, 5, 8, 2, 8, 6, 6, 6, 6, 6, 6, 8, 2, 8, 5, 5, 1, 9, 5, 8], [9, 9, 8, 8, 8, 9, 8, 8, 3, 2, 5, 2, 2, 5, 2, 3, 8, 8, 9, 8, 8, 8, 9, 9], [1, 1, 8, 9, 5, 7, 2, 6, 2, 6, 5, 5, 5, 5, 6, 2, 6, 2, 7, 5, 9, 8, 1, 1], [1, 5, 8, 5, 9, 8, 6, 6, 5, 5, 3, 6, 6, 3, 5, 5, 6, 6, 8, 9, 5, 8, 5, 1], [9, 5, 9, 7, 8, 8, 3, 6, 2, 5, 6, 8, 8, 6, 5, 2, 6, 3, 8, 8, 7, 9, 5, 9], [5, 8, 8, 2, 6, 3, 2, 9, 7, 8, 2, 5, 5, 2, 8, 7, 9, 2, 3, 6, 2, 8, 8, 5], [8, 2, 8, 6, 6, 6, 9, 2, 9, 5, 7, 2, 2, 7, 5, 9, 2, 9, 6, 6, 6, 8, 2, 8], [8, 8, 3, 2, 5, 2, 7, 9, 7, 5, 7, 7, 7, 7, 5, 7, 9, 7, 2, 5, 2, 3, 8, 8], [2, 6, 2, 6, 5, 5, 8, 5, 5, 7, 7, 5, 5, 7, 7, 5, 5, 8, 5, 5, 6, 2, 6, 2], [6, 6, 5, 5, 3, 6, 2, 7, 7, 7, 7, 9, 9, 7, 7, 7, 7, 2, 6, 3, 5, 5, 6, 6], [3, 6, 2, 5, 6, 8, 5, 2, 7, 5, 9, 9, 9, 9, 5, 7, 2, 5, 8, 6, 5, 2, 6, 3], [3, 6, 2, 5, 6, 8, 5, 2, 7, 5, 9, 9, 9, 9, 5, 7, 2, 5, 8, 6, 5, 2, 6, 3], [6, 6, 5, 5, 3, 6, 2, 7, 7, 7, 7, 9, 9, 7, 7, 7, 7, 2, 6, 3, 5, 5, 6, 6], [2, 6, 2, 6, 5, 5, 8, 5, 5, 7, 7, 5, 5, 7, 7, 5, 5, 8, 5, 5, 6, 2, 6, 2], [8, 8, 3, 2, 5, 0, 0, 0, 0, 0, 7, 7, 7, 7, 5, 7, 9, 7, 2, 5, 2, 3, 8, 8], [8, 2, 8, 6, 6, 0, 0, 0, 0, 0, 7, 2, 2, 7, 5, 9, 2, 9, 6, 6, 6, 8, 2, 8], [5, 8, 8, 2, 6, 0, 0, 0, 0, 0, 2, 5, 5, 2, 8, 7, 9, 2, 3, 6, 2, 8, 8, 5], [9, 5, 9, 7, 8, 0, 0, 0, 0, 0, 6, 8, 8, 6, 5, 2, 6, 3, 8, 8, 7, 9, 5, 9], [1, 5, 8, 5, 9, 0, 0, 0, 0, 0, 3, 6, 6, 3, 5, 5, 6, 6, 8, 9, 5, 8, 5, 1], [1, 1, 8, 9, 5, 0, 0, 0, 0, 0, 5, 5, 5, 5, 6, 2, 6, 2, 7, 5, 9, 8, 1, 1], [9, 9, 8, 8, 8, 0, 0, 0, 0, 0, 5, 2, 2, 5, 2, 3, 8, 8, 9, 8, 8, 8, 9, 9], [8, 5, 9, 1, 5, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 8, 2, 8, 5, 5, 1, 9, 5, 8], [8, 8, 9, 1, 1, 9, 5, 8, 8, 2, 6, 3, 3, 6, 2, 8, 8, 5, 9, 1, 1, 9, 8, 8]], "output": [[2, 7, 9, 7, 5], [6, 9, 2, 9, 5], [3, 2, 9, 7, 8], [8, 3, 6, 2, 5], [8, 6, 6, 5, 5], [7, 2, 6, 2, 6], [9, 8, 8, 3, 2], [5, 8, 2, 8, 6]]}, {"input": [[7, 6, 9, 9, 3, 7, 3, 9, 4, 3, 3, 3, 3, 3, 3, 4, 9, 3, 7, 3, 9, 9, 6, 7], [6, 3, 7, 3, 9, 9, 9, 9, 3, 4, 5, 9, 9, 5, 4, 3, 9, 9, 9, 9, 3, 7, 3, 6], [9, 7, 9, 3, 7, 7, 4, 3, 4, 6, 9, 4, 4, 9, 6, 4, 3, 4, 7, 7, 3, 9, 7, 9], [9, 3, 3, 9, 6, 9, 3, 4, 6, 9, 5, 9, 9, 5, 9, 6, 4, 3, 9, 6, 9, 3, 3, 9], [3, 9, 7, 6, 6, 6, 3, 5, 9, 5, 0, 0, 0, 6, 5, 9, 5, 3, 6, 6, 6, 7, 9, 3], [7, 9, 7, 9, 6, 3, 3, 9, 4, 9, 0, 0, 0, 9, 9, 4, 9, 3, 3, 6, 9, 7, 9, 7], [3, 9, 4, 3, 3, 3, 8, 7, 9, 2, 0, 0, 0, 8, 2, 9, 7, 8, 3, 3, 3, 4, 9, 3], [9, 9, 3, 4, 5, 9, 7, 7, 5, 9, 0, 0, 0, 2, 9, 5, 7, 7, 9, 5, 4, 3, 9, 9], [4, 3, 4, 6, 9, 4, 9, 5, 5, 2, 7, 7, 7, 7, 2, 5, 5, 9, 4, 9, 6, 4, 3, 4], [3, 4, 6, 9, 5, 9, 2, 9, 2, 8, 8, 8, 8, 8, 8, 2, 9, 2, 9, 5, 9, 6, 4, 3], [3, 5, 9, 5, 6, 9, 8, 2, 7, 8, 9, 9, 9, 9, 8, 7, 2, 8, 9, 6, 5, 9, 5, 3], [3, 9, 4, 9, 9, 4, 9, 7, 7, 8, 9, 7, 7, 9, 8, 7, 7, 9, 4, 9, 9, 4, 9, 3], [3, 9, 4, 9, 9, 4, 9, 7, 7, 8, 9, 7, 7, 9, 8, 7, 7, 9, 4, 9, 9, 4, 9, 3], [3, 5, 9, 5, 6, 9, 8, 2, 7, 8, 9, 9, 9, 9, 8, 7, 2, 8, 9, 6, 5, 9, 5, 3], [3, 4, 6, 9, 5, 9, 2, 9, 2, 8, 8, 8, 8, 8, 8, 2, 9, 2, 9, 5, 9, 6, 4, 3], [4, 3, 4, 6, 9, 4, 9, 5, 5, 2, 7, 7, 7, 7, 2, 5, 5, 9, 4, 9, 6, 4, 3, 4], [9, 9, 3, 4, 5, 9, 7, 7, 5, 9, 2, 7, 7, 2, 9, 5, 7, 7, 9, 5, 4, 3, 9, 9], [3, 9, 4, 3, 3, 3, 8, 7, 9, 2, 8, 9, 9, 8, 2, 9, 7, 8, 3, 3, 3, 4, 9, 3], [7, 9, 7, 9, 6, 3, 3, 9, 4, 9, 9, 4, 4, 9, 9, 4, 9, 3, 3, 6, 9, 7, 9, 7], [3, 9, 7, 6, 6, 6, 3, 5, 9, 5, 6, 9, 9, 6, 5, 9, 5, 3, 6, 6, 6, 7, 9, 3], [9, 3, 3, 9, 6, 9, 3, 4, 6, 9, 5, 9, 9, 5, 9, 6, 4, 3, 9, 6, 9, 3, 3, 9], [9, 7, 9, 3, 7, 7, 4, 3, 4, 6, 9, 4, 4, 9, 6, 4, 3, 4, 7, 7, 3, 9, 7, 9], [6, 3, 7, 3, 9, 9, 9, 9, 3, 4, 5, 9, 9, 5, 4, 3, 9, 9, 9, 9, 3, 7, 3, 6], [7, 6, 9, 9, 3, 7, 3, 9, 4, 3, 3, 3, 3, 3, 3, 4, 9, 3, 7, 3, 9, 9, 6, 7]], "output": [[6, 9, 9], [9, 4, 4], [8, 9, 9], [2, 7, 7]]}, {"input": [[6, 8, 8, 1, 8, 5, 1, 5, 8, 2, 2, 1, 1, 2, 2, 8, 5, 1, 5, 8, 1, 8, 8, 6], [8, 8, 5, 4, 5, 1, 5, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 5, 1, 5, 4, 5, 8, 8], [8, 5, 5, 4, 5, 4, 8, 2, 1, 6, 8, 1, 1, 8, 6, 1, 2, 8, 4, 5, 4, 5, 5, 8], [1, 4, 4, 4, 8, 8, 2, 1, 6, 2, 8, 2, 2, 8, 2, 6, 1, 2, 8, 8, 4, 4, 4, 1], [8, 5, 5, 8, 1, 6, 2, 2, 8, 8, 6, 5, 5, 6, 8, 8, 2, 2, 6, 1, 8, 5, 5, 8], [5, 1, 4, 8, 6, 6, 1, 2, 1, 2, 5, 5, 5, 5, 2, 1, 2, 1, 6, 6, 8, 4, 1, 5], [1, 5, 8, 2, 2, 1, 6, 8, 8, 6, 6, 8, 8, 6, 6, 8, 8, 6, 1, 2, 2, 8, 5, 1], [5, 2, 2, 1, 2, 2, 8, 2, 2, 6, 2, 2, 2, 2, 6, 2, 2, 8, 2, 2, 1, 2, 2, 5], [8, 2, 1, 6, 8, 1, 8, 2, 8, 1, 6, 6, 6, 6, 1, 8, 2, 8, 1, 8, 6, 1, 2, 8], [2, 1, 6, 2, 8, 2, 6, 6, 1, 7, 7, 8, 8, 7, 7, 1, 6, 6, 2, 8, 2, 6, 1, 2], [2, 2, 8, 8, 6, 5, 6, 2, 6, 7, 2, 7, 7, 2, 7, 6, 2, 6, 5, 6, 8, 8, 2, 2], [1, 2, 1, 2, 5, 5, 8, 2, 6, 8, 7, 1, 1, 7, 8, 6, 2, 8, 5, 5, 2, 1, 2, 1], [1, 2, 1, 2, 5, 5, 8, 2, 6, 8, 7, 1, 1, 7, 8, 6, 2, 8, 5, 5, 2, 1, 2, 1], [2, 2, 8, 8, 6, 5, 6, 2, 6, 7, 2, 7, 7, 2, 7, 6, 2, 6, 5, 6, 8, 8, 2, 2], [2, 1, 6, 2, 8, 2, 6, 6, 1, 7, 7, 8, 8, 7, 7, 1, 6, 6, 2, 8, 2, 6, 1, 2], [8, 2, 1, 6, 8, 1, 8, 2, 8, 1, 6, 6, 6, 6, 1, 8, 2, 0, 0, 0, 0, 0, 0, 8], [5, 2, 2, 1, 2, 2, 8, 2, 2, 6, 2, 2, 2, 2, 6, 2, 2, 0, 0, 0, 0, 0, 0, 5], [1, 5, 8, 2, 2, 1, 6, 8, 8, 6, 6, 8, 8, 6, 6, 8, 8, 0, 0, 0, 0, 0, 0, 1], [5, 1, 4, 8, 6, 6, 1, 2, 1, 2, 5, 5, 5, 5, 2, 1, 2, 0, 0, 0, 0, 0, 0, 5], [8, 5, 5, 8, 1, 6, 2, 2, 8, 8, 6, 5, 5, 6, 8, 8, 2, 0, 0, 0, 0, 0, 0, 8], [1, 4, 4, 4, 8, 8, 2, 1, 6, 2, 8, 2, 2, 8, 2, 6, 1, 2, 8, 8, 4, 4, 4, 1], [8, 5, 5, 4, 5, 4, 8, 2, 1, 6, 8, 1, 1, 8, 6, 1, 2, 8, 4, 5, 4, 5, 5, 8], [8, 8, 5, 4, 5, 1, 5, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 5, 1, 5, 4, 5, 8, 8], [6, 8, 8, 1, 8, 5, 1, 5, 8, 2, 2, 1, 1, 2, 2, 8, 5, 1, 5, 8, 1, 8, 8, 6]], "output": [[8, 1, 8, 6, 1, 2], [8, 2, 2, 1, 2, 2], [6, 1, 2, 2, 8, 5], [1, 6, 6, 8, 4, 1], [2, 6, 1, 8, 5, 5]]}, {"input": [[5, 4, 6, 4, 6, 6, 5, 5, 5, 9, 5, 6, 6, 5, 9, 5, 5, 5, 6, 6, 4, 6, 4, 5], [4, 1, 9, 4, 9, 1, 5, 1, 9, 6, 5, 1, 1, 5, 6, 9, 1, 5, 1, 9, 4, 9, 1, 4], [6, 9, 1, 4, 4, 5, 5, 9, 2, 5, 9, 5, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 9, 6], [4, 4, 4, 4, 4, 9, 9, 6, 5, 5, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4], [6, 9, 4, 4, 1, 5, 5, 5, 9, 2, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 9, 6], [6, 1, 5, 9, 5, 6, 6, 1, 5, 6, 6, 9, 9, 6, 6, 5, 1, 6, 6, 5, 9, 5, 1, 6], [5, 5, 5, 9, 5, 6, 5, 5, 8, 5, 7, 7, 7, 7, 5, 8, 5, 5, 6, 5, 9, 5, 5, 5], [5, 1, 9, 6, 5, 1, 5, 2, 7, 3, 8, 5, 5, 8, 3, 7, 2, 5, 1, 5, 6, 9, 1, 5], [5, 9, 2, 5, 9, 5, 8, 7, 3, 7, 5, 2, 2, 5, 7, 3, 7, 8, 5, 9, 5, 2, 9, 5], [9, 6, 5, 5, 2, 6, 5, 3, 7, 2, 5, 7, 7, 5, 2, 7, 3, 5, 6, 2, 5, 5, 6, 9], [5, 5, 9, 2, 1, 6, 7, 8, 5, 5, 5, 5, 5, 5, 5, 5, 8, 7, 6, 1, 2, 9, 5, 5], [6, 1, 5, 6, 6, 9, 7, 5, 2, 7, 5, 3, 3, 5, 7, 2, 5, 7, 9, 6, 6, 5, 1, 6], [6, 1, 5, 6, 6, 9, 7, 5, 2, 7, 5, 3, 3, 5, 7, 2, 5, 7, 9, 6, 6, 5, 1, 6], [5, 5, 9, 2, 1, 6, 7, 8, 5, 5, 5, 5, 5, 5, 5, 5, 8, 7, 6, 1, 2, 9, 5, 5], [9, 6, 5, 5, 2, 6, 5, 3, 7, 2, 5, 7, 7, 5, 2, 7, 3, 5, 6, 2, 5, 5, 6, 9], [5, 9, 2, 5, 9, 5, 8, 7, 3, 7, 5, 2, 2, 5, 7, 3, 7, 8, 5, 9, 5, 2, 9, 5], [5, 1, 9, 6, 5, 1, 5, 2, 7, 3, 8, 5, 5, 8, 3, 7, 2, 5, 1, 5, 6, 9, 1, 5], [5, 5, 5, 9, 5, 6, 5, 5, 8, 5, 7, 7, 7, 7, 5, 8, 5, 5, 6, 5, 9, 5, 5, 5], [6, 1, 5, 9, 5, 6, 6, 1, 5, 6, 6, 9, 9, 6, 6, 5, 1, 6, 6, 5, 9, 5, 1, 6], [6, 9, 4, 4, 1, 5, 5, 5, 9, 2, 1, 6, 6, 1, 2, 9, 5, 5, 5, 1, 4, 4, 9, 6], [4, 4, 4, 4, 4, 9, 9, 6, 5, 5, 2, 6, 6, 2, 5, 5, 6, 9, 9, 4, 4, 4, 4, 4], [6, 9, 1, 4, 4, 5, 5, 9, 2, 5, 9, 5, 5, 9, 5, 2, 9, 5, 5, 4, 4, 1, 9, 6], [4, 1, 9, 4, 9, 1, 5, 1, 9, 6, 5, 1, 1, 5, 6, 9, 1, 5, 1, 9, 4, 9, 1, 4], [5, 4, 6, 4, 6, 6, 5, 5, 5, 9, 5, 6, 6, 5, 9, 5, 5, 5, 6, 6, 4, 6, 4, 5]], "output": [[5, 9, 5, 2, 9, 5, 5, 4], [6, 2, 5, 5, 6, 9, 9, 4], [6, 1, 2, 9, 5, 5, 5, 1]]}, {"input": [[7, 7, 6, 3, 8, 7, 3, 5, 4, 4, 5, 1, 1, 5, 4, 4, 5, 3, 7, 8, 3, 6, 7, 7], [7, 3, 3, 6, 3, 7, 5, 4, 5, 8, 4, 3, 3, 4, 8, 5, 4, 5, 7, 3, 6, 3, 3, 7], [6, 3, 8, 7, 7, 2, 4, 5, 8, 1, 8, 4, 4, 8, 1, 8, 5, 4, 2, 7, 7, 8, 3, 6], [3, 6, 7, 3, 6, 7, 4, 8, 1, 4, 8, 4, 4, 8, 4, 1, 8, 4, 7, 6, 3, 7, 6, 3], [8, 3, 7, 6, 8, 6, 5, 4, 8, 8, 5, 8, 8, 5, 8, 8, 4, 5, 6, 8, 6, 7, 3, 8], [7, 7, 2, 7, 6, 2, 1, 3, 4, 4, 8, 4, 4, 8, 4, 4, 3, 1, 2, 6, 7, 2, 7, 7], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 2, 2, 6, 6, 6, 6, 1, 1, 5, 4, 4, 5, 3], [0, 0, 0, 0, 0, 0, 0, 1, 9, 6, 2, 7, 7, 2, 6, 9, 1, 6, 3, 4, 8, 5, 4, 5], [0, 0, 0, 0, 0, 0, 0, 9, 7, 9, 1, 6, 6, 1, 9, 7, 9, 6, 4, 8, 1, 8, 5, 4], [0, 0, 0, 0, 0, 0, 0, 6, 9, 2, 7, 6, 6, 7, 2, 9, 6, 6, 4, 8, 4, 1, 8, 4], [0, 0, 0, 0, 0, 0, 0, 2, 1, 7, 1, 6, 6, 1, 7, 1, 2, 6, 8, 5, 8, 8, 4, 5], [0, 0, 0, 0, 0, 0, 0, 7, 6, 6, 6, 6, 6, 6, 6, 6, 7, 2, 4, 8, 4, 4, 3, 1], [1, 3, 4, 4, 8, 4, 2, 7, 6, 6, 6, 6, 6, 6, 6, 6, 7, 2, 4, 8, 4, 4, 3, 1], [5, 4, 8, 8, 5, 8, 6, 2, 1, 7, 1, 6, 6, 1, 7, 1, 2, 6, 8, 5, 8, 8, 4, 5], [4, 8, 1, 4, 8, 4, 6, 6, 9, 2, 7, 6, 6, 7, 2, 9, 6, 6, 4, 8, 4, 1, 8, 4], [4, 5, 8, 1, 8, 4, 6, 9, 7, 9, 1, 6, 6, 1, 9, 7, 9, 6, 4, 8, 1, 8, 5, 4], [5, 4, 5, 8, 4, 3, 6, 1, 9, 6, 2, 7, 7, 2, 6, 9, 1, 6, 3, 4, 8, 5, 4, 5], [3, 5, 4, 4, 5, 1, 1, 6, 6, 6, 6, 2, 2, 6, 6, 6, 6, 1, 1, 5, 4, 4, 5, 3], [7, 7, 2, 7, 6, 2, 1, 3, 4, 4, 8, 4, 4, 8, 4, 4, 3, 1, 2, 6, 7, 2, 7, 7], [8, 3, 7, 6, 8, 6, 5, 4, 8, 8, 5, 8, 8, 5, 8, 8, 4, 5, 6, 8, 6, 7, 3, 8], [3, 6, 7, 3, 6, 7, 4, 8, 1, 4, 8, 4, 4, 8, 4, 1, 8, 4, 7, 6, 3, 7, 6, 3], [6, 3, 8, 7, 7, 2, 4, 5, 8, 1, 8, 4, 4, 8, 1, 8, 5, 4, 2, 7, 7, 8, 3, 6], [7, 3, 3, 6, 3, 7, 5, 4, 5, 8, 4, 3, 3, 4, 8, 5, 4, 5, 7, 3, 6, 3, 3, 7], [7, 7, 6, 3, 8, 7, 3, 5, 4, 4, 5, 1, 1, 5, 4, 4, 5, 3, 7, 8, 3, 6, 7, 7]], "output": [[3, 5, 4, 4, 5, 1, 1], [5, 4, 5, 8, 4, 3, 6], [4, 5, 8, 1, 8, 4, 6], [4, 8, 1, 4, 8, 4, 6], [5, 4, 8, 8, 5, 8, 6], [1, 3, 4, 4, 8, 4, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e681b708.json b/data/arc-agi/evaluation/e681b708.json
deleted file mode 100644
index 3dce3da..0000000
--- a/data/arc-agi/evaluation/e681b708.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0]], "output": [[0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 1, 0, 3, 0, 0, 0], [0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 3], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 8], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 3], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 2, 0, 1, 0, 0, 0, 8, 0, 0, 8], [0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 8, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 8], [0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 1, 1, 1, 1, 2], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0], [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0], [0, 0, 2, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0], [0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 1, 1, 1, 1, 2], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 1], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 8], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 4], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0], [3, 1, 1, 1, 1, 1, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 1, 1, 1, 1, 4], [1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 8], [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 8], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 1, 0, 3, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 1, 0, 3, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 4], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 4, 0, 0], [3, 1, 1, 1, 1, 1, 1, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 1, 1, 1, 1, 4], [3, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e69241bd.json b/data/arc-agi/evaluation/e69241bd.json
deleted file mode 100644
index 281c64d..0000000
--- a/data/arc-agi/evaluation/e69241bd.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 0, 6, 0, 5, 0, 0, 5, 0], [0, 5, 0, 5, 5, 5, 0, 5, 0], [5, 0, 0, 0, 0, 5, 5, 8, 0], [0, 5, 0, 5, 0, 5, 0, 0, 5], [0, 5, 5, 0, 0, 0, 5, 0, 5], [5, 0, 5, 5, 5, 5, 0, 0, 5], [5, 0, 0, 0, 5, 5, 0, 5, 0], [0, 5, 5, 5, 0, 0, 5, 0, 0], [0, 0, 5, 0, 5, 0, 0, 5, 0]], "output": [[5, 6, 6, 6, 5, 0, 0, 5, 8], [0, 5, 6, 5, 5, 5, 0, 5, 8], [5, 6, 6, 6, 6, 5, 5, 8, 8], [0, 5, 6, 5, 6, 5, 8, 8, 5], [0, 5, 5, 6, 6, 6, 5, 8, 5], [5, 0, 5, 5, 5, 5, 8, 8, 5], [5, 0, 0, 0, 5, 5, 8, 5, 0], [0, 5, 5, 5, 0, 0, 5, 0, 0], [0, 0, 5, 0, 5, 0, 0, 5, 0]]}, {"input": [[5, 1, 0, 5, 0, 5, 0, 0, 5], [5, 0, 0, 5, 0, 3, 5, 0, 5], [0, 5, 5, 0, 5, 0, 5, 0, 0], [0, 0, 5, 0, 5, 0, 0, 5, 0], [5, 0, 0, 5, 0, 0, 0, 0, 5], [0, 5, 5, 0, 5, 5, 0, 5, 0], [0, 7, 0, 5, 0, 0, 5, 0, 0], [0, 0, 5, 0, 5, 5, 0, 0, 5], [0, 5, 0, 0, 0, 0, 5, 5, 0]], "output": [[5, 1, 1, 5, 3, 5, 0, 0, 5], [5, 1, 1, 5, 3, 3, 5, 0, 5], [0, 5, 5, 0, 5, 3, 5, 0, 0], [0, 0, 5, 0, 5, 3, 3, 5, 0], [5, 0, 0, 5, 3, 3, 3, 3, 5], [7, 5, 5, 0, 5, 5, 3, 5, 0], [7, 7, 7, 5, 0, 0, 5, 0, 0], [7, 7, 5, 0, 5, 5, 0, 0, 5], [7, 5, 0, 0, 0, 0, 5, 5, 0]]}, {"input": [[0, 0, 5, 0, 0, 5, 0], [5, 5, 4, 0, 0, 5, 5], [0, 0, 0, 5, 5, 0, 0], [0, 5, 0, 5, 0, 5, 0], [5, 0, 5, 0, 0, 5, 0], [0, 5, 0, 5, 0, 8, 5], [3, 0, 5, 5, 5, 0, 0]], "output": [[0, 0, 5, 4, 4, 5, 0], [5, 5, 4, 4, 4, 5, 5], [4, 4, 4, 5, 5, 0, 0], [4, 5, 4, 5, 8, 5, 0], [5, 0, 5, 8, 8, 5, 0], [3, 5, 0, 5, 8, 8, 5], [3, 3, 5, 5, 5, 8, 8]]}], "test": [{"input": [[0, 0, 0, 5, 0, 3, 0, 5, 0], [5, 5, 5, 0, 0, 0, 5, 5, 0], [0, 8, 5, 5, 0, 5, 0, 5, 0], [0, 0, 5, 0, 5, 0, 0, 5, 5], [5, 0, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 0, 0], [5, 5, 0, 5, 0, 5, 0, 0, 5], [0, 5, 0, 0, 5, 0, 5, 5, 0], [0, 0, 5, 5, 0, 6, 0, 0, 5]], "output": [[0, 0, 0, 5, 3, 3, 3, 5, 0], [5, 5, 5, 3, 3, 3, 5, 5, 0], [8, 8, 5, 5, 3, 5, 0, 5, 0], [8, 8, 5, 0, 5, 0, 0, 5, 5], [5, 8, 5, 0, 0, 5, 0, 0, 0], [8, 8, 8, 5, 0, 0, 5, 0, 0], [5, 5, 8, 5, 0, 5, 0, 0, 5], [0, 5, 8, 8, 5, 6, 5, 5, 0], [0, 0, 5, 5, 6, 6, 6, 6, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e6de6e8f.json b/data/arc-agi/evaluation/e6de6e8f.json
deleted file mode 100644
index 2bc0d52..0000000
--- a/data/arc-agi/evaluation/e6de6e8f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train":[{"input":[[2,0,0,0,2,0,2,0,2,0,0,2],[2,2,0,2,2,0,2,0,2,2,0,2]],"output":[[0,0,0,3,0,0,0],[0,0,0,2,2,0,0],[0,0,0,2,2,0,0],[0,0,0,2,0,0,0],[0,0,0,2,0,0,0],[0,0,0,2,2,0,0],[0,0,0,0,2,0,0],[0,0,0,0,2,0,0]]},{"input":[[0,2,0,2,0,0,2,0,0,2,0,2],[2,2,0,2,2,0,2,2,0,2,0,2]],"output":[[0,0,0,3,0,0,0],[0,0,2,2,0,0,0],[0,0,2,2,0,0,0],[0,0,0,2,2,0,0],[0,0,0,0,2,0,0],[0,0,0,0,2,0,0],[0,0,0,0,2,0,0],[0,0,0,0,2,0,0]]},{"input":[[2,0,0,2,0,0,2,0,0,2,0,2],[2,2,0,2,2,0,2,2,0,2,0,2]],"output":[[0,0,0,3,0,0,0],[0,0,0,2,2,0,0],[0,0,0,0,2,2,0],[0,0,0,0,0,2,2],[0,0,0,0,0,0,2],[0,0,0,0,0,0,2],[0,0,0,0,0,0,2],[0,0,0,0,0,0,2]]}],"test":[{"input":[[2,0,2,0,0,2,0,0,0,2,0,2],[2,0,2,2,0,2,2,0,2,2,0,2]],"output":[[0,0,0,3,0,0,0],[0,0,0,2,0,0,0],[0,0,0,2,0,0,0],[0,0,0,2,2,0,0],[0,0,0,0,2,2,0],[0,0,0,0,2,2,0],[0,0,0,0,2,0,0],[0,0,0,0,2,0,0]]}],"name":"e6de6e8f"}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e74e1818.json b/data/arc-agi/evaluation/e74e1818.json
deleted file mode 100644
index b31f54e..0000000
--- a/data/arc-agi/evaluation/e74e1818.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 5, 0, 5, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 5, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 9, 9, 0, 0], [0, 9, 0, 9, 0, 9, 0], [0, 0, 4, 4, 4, 0, 0], [0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 9, 0, 9, 0, 9, 0], [0, 0, 9, 9, 9, 0, 0], [0, 0, 4, 4, 4, 0, 0], [0, 0, 0, 3, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 2, 0, 0, 2, 0, 0], [0, 0, 0, 2, 2, 2, 0, 2, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 2, 0, 2, 2, 2, 0, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 2, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 4, 4, 4, 4, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e760a62e.json b/data/arc-agi/evaluation/e760a62e.json
deleted file mode 100644
index d781639..0000000
--- a/data/arc-agi/evaluation/e760a62e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 2, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 3, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 3, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 2, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0]], "output": [[0, 0, 0, 8, 2, 2, 2, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 2, 2, 2, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 2, 2, 2, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 2, 2, 2, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 2, 2, 2, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 2, 2, 2, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [3, 3, 3, 8, 6, 6, 6, 8, 3, 3, 3, 8, 3, 3, 3, 8, 3, 3, 3, 8, 0, 0], [3, 3, 3, 8, 6, 6, 6, 8, 3, 3, 3, 8, 3, 3, 3, 8, 3, 3, 3, 8, 0, 0], [3, 3, 3, 8, 6, 6, 6, 8, 3, 3, 3, 8, 3, 3, 3, 8, 3, 3, 3, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 2, 2, 2, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 2, 2, 2, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 2, 2, 2, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 2, 2, 2, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 2, 2, 2, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 2, 2, 2, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0]]}, {"input": [[0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 3, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 3, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 0, 8, 0, 0, 8, 0, 0, 8, 2, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 3, 3, 8, 3, 3, 8, 6, 6, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 0, 0, 8], [0, 0, 8, 3, 3, 8, 3, 3, 8, 6, 6, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 2, 2, 8, 2, 2, 8, 2, 2, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 2, 2, 8, 2, 2, 8, 2, 2, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 2, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 3, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 3, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0]], "output": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 0, 0], [2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 0, 0], [2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 0, 0], [2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 0, 0], [2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 0, 0], [3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 0, 0], [3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 0, 0], [3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 0, 0], [3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 3, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 2, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 2, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 2, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 3, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0]], "output": [[0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 8, 2, 2, 2, 2, 8, 6, 6, 6, 6, 8, 2, 2, 2, 2, 8, 2, 2, 2, 2, 8, 0, 0, 0], [2, 2, 2, 2, 8, 2, 2, 2, 2, 8, 6, 6, 6, 6, 8, 2, 2, 2, 2, 8, 2, 2, 2, 2, 8, 0, 0, 0], [2, 2, 2, 2, 8, 2, 2, 2, 2, 8, 6, 6, 6, 6, 8, 2, 2, 2, 2, 8, 2, 2, 2, 2, 8, 0, 0, 0], [2, 2, 2, 2, 8, 2, 2, 2, 2, 8, 6, 6, 6, 6, 8, 2, 2, 2, 2, 8, 2, 2, 2, 2, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [2, 2, 2, 2, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [2, 2, 2, 2, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [2, 2, 2, 2, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [2, 2, 2, 2, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [2, 2, 2, 2, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [2, 2, 2, 2, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e7639916.json b/data/arc-agi/evaluation/e7639916.json
deleted file mode 100644
index ce5bc42..0000000
--- a/data/arc-agi/evaluation/e7639916.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 8, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 8, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 8, 1, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 1, 1, 1, 1, 1, 8, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e78887d1.json b/data/arc-agi/evaluation/e78887d1.json
deleted file mode 100644
index e6752c7..0000000
--- a/data/arc-agi/evaluation/e78887d1.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 0, 1, 0, 0, 3, 3, 3], [2, 0, 2, 0, 1, 1, 1, 0, 0, 0, 0], [2, 2, 2, 0, 0, 1, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 1, 1, 1, 0, 3, 0, 3], [2, 2, 2, 0, 0, 0, 0, 0, 3, 0, 3], [0, 2, 0, 0, 1, 1, 1, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 1, 0, 1, 0, 0, 3, 0], [0, 0, 0, 0, 1, 0, 1, 0, 3, 3, 3], [2, 2, 2, 0, 1, 1, 1, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 2, 0, 0, 1, 0, 0, 3, 3, 3], [2, 0, 2, 0, 1, 1, 1, 0, 0, 0, 0], [2, 2, 2, 0, 0, 1, 0, 0, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 3, 0, 0, 0, 1, 1, 1], [0, 2, 0, 0, 3, 3, 3, 0, 0, 1, 0], [2, 0, 2, 0, 0, 0, 3, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 3, 3, 3, 0, 1, 0, 1], [2, 2, 2, 0, 0, 3, 0, 0, 0, 1, 0], [0, 0, 2, 0, 0, 3, 0, 0, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 0, 3, 0, 3, 0, 1, 0, 0], [0, 2, 0, 0, 0, 3, 0, 0, 1, 1, 1], [0, 2, 0, 0, 3, 0, 3, 0, 0, 0, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 3, 0, 0, 0, 1, 0, 0, 0, 5, 0, 5], [0, 0, 2, 0, 3, 0, 0, 0, 0, 1, 1, 0, 5, 0, 5], [0, 0, 2, 0, 3, 3, 3, 0, 1, 0, 0, 0, 5, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 0, 0, 3, 0, 0, 0, 1, 0, 1, 0, 5, 5, 5], [2, 0, 0, 0, 0, 3, 3, 0, 1, 0, 1, 0, 0, 0, 5], [2, 2, 2, 0, 3, 0, 0, 0, 1, 0, 1, 0, 0, 0, 5]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 3, 0, 3, 0, 1, 0, 1, 0, 0, 5, 0], [2, 2, 2, 0, 0, 3, 0, 0, 1, 1, 1, 0, 5, 5, 5], [0, 0, 2, 0, 3, 0, 3, 0, 0, 1, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 3, 0, 3, 0, 0, 1, 0, 0, 5, 0, 0], [0, 2, 0, 0, 3, 3, 3, 0, 1, 1, 1, 0, 5, 5, 5], [2, 0, 2, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 2, 0, 0, 3, 0, 0, 1, 0, 0, 0, 5, 0, 5], [2, 2, 2, 0, 3, 3, 3, 0, 1, 1, 1, 0, 0, 5, 0], [0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 5, 0, 5]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 3, 3, 0, 0, 1, 0, 1, 0, 0, 5, 0], [0, 2, 0, 0, 0, 0, 3, 0, 1, 0, 1, 0, 5, 5, 5], [2, 2, 2, 0, 3, 3, 0, 0, 1, 0, 1, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 3, 0, 3, 0, 0, 1, 0, 0, 5, 5, 0], [0, 0, 2, 0, 3, 0, 3, 0, 1, 1, 1, 0, 0, 5, 0], [2, 2, 0, 0, 3, 0, 3, 0, 0, 1, 0, 0, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 2, 0, 0, 3, 0, 0, 1, 1, 0, 0, 5, 5, 0], [2, 0, 2, 0, 3, 3, 3, 0, 0, 1, 0, 0, 0, 0, 5], [2, 0, 2, 0, 0, 3, 0, 0, 1, 1, 1, 0, 5, 5, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e7a25a18.json b/data/arc-agi/evaluation/e7a25a18.json
deleted file mode 100644
index ae22cf6..0000000
--- a/data/arc-agi/evaluation/e7a25a18.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 3, 3, 4, 4, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 3, 3, 4, 4, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 1, 1, 8, 8, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 1, 1, 8, 8, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 3, 3, 3, 3, 4, 4, 4, 4, 2], [2, 3, 3, 3, 3, 4, 4, 4, 4, 2], [2, 3, 3, 3, 3, 4, 4, 4, 4, 2], [2, 3, 3, 3, 3, 4, 4, 4, 4, 2], [2, 1, 1, 1, 1, 8, 8, 8, 8, 2], [2, 1, 1, 1, 1, 8, 8, 8, 8, 2], [2, 1, 1, 1, 1, 8, 8, 8, 8, 2], [2, 1, 1, 1, 1, 8, 8, 8, 8, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 3, 5, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 6, 8, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2], [2, 3, 3, 5, 5, 2], [2, 3, 3, 5, 5, 2], [2, 6, 6, 8, 8, 2], [2, 6, 6, 8, 8, 2], [2, 2, 2, 2, 2, 2]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 2, 0, 3, 3, 6, 6, 0, 0, 0, 2, 0, 0, 0], [0, 2, 0, 3, 3, 6, 6, 0, 0, 0, 2, 0, 0, 0], [0, 2, 0, 4, 4, 1, 1, 0, 0, 0, 2, 0, 0, 0], [0, 2, 0, 4, 4, 1, 1, 0, 0, 0, 2, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 3, 3, 3, 3, 6, 6, 6, 6, 2], [2, 3, 3, 3, 3, 6, 6, 6, 6, 2], [2, 3, 3, 3, 3, 6, 6, 6, 6, 2], [2, 3, 3, 3, 3, 6, 6, 6, 6, 2], [2, 4, 4, 4, 4, 1, 1, 1, 1, 2], [2, 4, 4, 4, 4, 1, 1, 1, 1, 2], [2, 4, 4, 4, 4, 1, 1, 1, 1, 2], [2, 4, 4, 4, 4, 1, 1, 1, 1, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e7b06bea.json b/data/arc-agi/evaluation/e7b06bea.json
deleted file mode 100644
index 6cb8e33..0000000
--- a/data/arc-agi/evaluation/e7b06bea.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 0, 0, 3, 1], [0, 0, 0, 3, 1], [0, 0, 0, 3, 1], [0, 0, 0, 3, 1], [0, 0, 0, 3, 1]], "output": [[5, 0, 3, 0, 0], [0, 0, 1, 0, 0], [0, 0, 3, 0, 0], [0, 0, 1, 0, 0], [0, 0, 3, 0, 0]]}, {"input": [[5, 0, 0, 0, 0, 9, 8], [5, 0, 0, 0, 0, 9, 8], [5, 0, 0, 0, 0, 9, 8], [0, 0, 0, 0, 0, 9, 8], [0, 0, 0, 0, 0, 9, 8], [0, 0, 0, 0, 0, 9, 8], [0, 0, 0, 0, 0, 9, 8]], "output": [[5, 0, 0, 0, 9, 0, 0], [5, 0, 0, 0, 9, 0, 0], [5, 0, 0, 0, 9, 0, 0], [0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 9, 0, 0]]}, {"input": [[5, 0, 0, 0, 9, 6, 7], [5, 0, 0, 0, 9, 6, 7], [0, 0, 0, 0, 9, 6, 7], [0, 0, 0, 0, 9, 6, 7], [0, 0, 0, 0, 9, 6, 7], [0, 0, 0, 0, 9, 6, 7], [0, 0, 0, 0, 9, 6, 7], [0, 0, 0, 0, 9, 6, 7], [0, 0, 0, 0, 9, 6, 7]], "output": [[5, 0, 0, 9, 0, 0, 0], [5, 0, 0, 9, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0]]}, {"input": [[5, 0, 0, 0, 0, 0, 2, 3], [5, 0, 0, 0, 0, 0, 2, 3], [5, 0, 0, 0, 0, 0, 2, 3], [5, 0, 0, 0, 0, 0, 2, 3], [0, 0, 0, 0, 0, 0, 2, 3], [0, 0, 0, 0, 0, 0, 2, 3], [0, 0, 0, 0, 0, 0, 2, 3], [0, 0, 0, 0, 0, 0, 2, 3], [0, 0, 0, 0, 0, 0, 2, 3], [0, 0, 0, 0, 0, 0, 2, 3], [0, 0, 0, 0, 0, 0, 2, 3], [0, 0, 0, 0, 0, 0, 2, 3]], "output": [[5, 0, 0, 0, 0, 2, 0, 0], [5, 0, 0, 0, 0, 2, 0, 0], [5, 0, 0, 0, 0, 2, 0, 0], [5, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0]]}, {"input": [[5, 0, 0, 2, 8, 4], [0, 0, 0, 2, 8, 4], [0, 0, 0, 2, 8, 4], [0, 0, 0, 2, 8, 4], [0, 0, 0, 2, 8, 4], [0, 0, 0, 2, 8, 4], [0, 0, 0, 2, 8, 4], [0, 0, 0, 2, 8, 4], [0, 0, 0, 2, 8, 4], [0, 0, 0, 2, 8, 4], [0, 0, 0, 2, 8, 4], [0, 0, 0, 2, 8, 4], [0, 0, 0, 2, 8, 4], [0, 0, 0, 2, 8, 4]], "output": [[5, 0, 2, 0, 0, 0], [0, 0, 8, 0, 0, 0], [0, 0, 4, 0, 0, 0], [0, 0, 2, 0, 0, 0], [0, 0, 8, 0, 0, 0], [0, 0, 4, 0, 0, 0], [0, 0, 2, 0, 0, 0], [0, 0, 8, 0, 0, 0], [0, 0, 4, 0, 0, 0], [0, 0, 2, 0, 0, 0], [0, 0, 8, 0, 0, 0], [0, 0, 4, 0, 0, 0], [0, 0, 2, 0, 0, 0], [0, 0, 8, 0, 0, 0]]}], "test": [{"input": [[5, 0, 0, 0, 0, 0, 4, 8, 3], [5, 0, 0, 0, 0, 0, 4, 8, 3], [0, 0, 0, 0, 0, 0, 4, 8, 3], [0, 0, 0, 0, 0, 0, 4, 8, 3], [0, 0, 0, 0, 0, 0, 4, 8, 3], [0, 0, 0, 0, 0, 0, 4, 8, 3], [0, 0, 0, 0, 0, 0, 4, 8, 3], [0, 0, 0, 0, 0, 0, 4, 8, 3], [0, 0, 0, 0, 0, 0, 4, 8, 3]], "output": [[5, 0, 0, 0, 0, 4, 0, 0, 0], [5, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0]]}]}
diff --git a/data/arc-agi/evaluation/e7dd8335.json b/data/arc-agi/evaluation/e7dd8335.json
deleted file mode 100644
index 36aa4f7..0000000
--- a/data/arc-agi/evaluation/e7dd8335.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 1, 1, 1, 1, 1, 0], [0, 1, 0, 1, 0, 1, 0], [0, 1, 0, 1, 0, 1, 0], [0, 1, 0, 1, 0, 1, 0], [0, 1, 0, 1, 0, 1, 0], [0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 1, 1, 1, 1, 1, 0], [0, 1, 0, 1, 0, 1, 0], [0, 1, 0, 1, 0, 1, 0], [0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0], [0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 2, 0, 0, 2, 0, 0, 0, 0], [0, 2, 0, 0, 2, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e872b94a.json b/data/arc-agi/evaluation/e872b94a.json
deleted file mode 100644
index 346d8c5..0000000
--- a/data/arc-agi/evaluation/e872b94a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], [5, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 5, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0], [0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 5, 5, 5, 5, 0, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 5, 0, 0, 5, 5, 5, 0, 0, 5, 0, 0], [0, 5, 5, 5, 5, 0, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0], [5, 5, 0, 0, 5, 5, 5, 0, 0, 5, 0, 0], [0, 5, 0, 0, 5, 0, 0, 0, 5, 5, 0, 0], [0, 5, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0]], "output": [[0], [0], [0], [0]]}, {"input": [[0, 5, 0], [0, 5, 5], [0, 0, 5]], "output": [[0], [0]]}, {"input": [[0, 5, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 0, 0], [0, 0, 5, 0, 0, 5, 5], [0, 5, 5, 0, 0, 5, 0], [0, 5, 0, 0, 5, 5, 0], [0, 5, 0, 0, 5, 0, 0], [0, 5, 0, 0, 5, 0, 0]], "output": [[0], [0], [0]]}, {"input": [[0, 5, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0], [0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 0, 0], [0, 0, 5, 0, 5, 0, 0, 5, 0, 0, 0, 0], [0, 0, 5, 0, 5, 0, 5, 5, 0, 0, 0, 0], [5, 5, 5, 0, 5, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 5, 0, 0, 5, 5, 5], [0, 0, 0, 5, 5, 0, 5, 0, 0, 5, 0, 0], [0, 5, 5, 5, 0, 0, 5, 0, 0, 5, 0, 0]], "output": [[0], [0], [0], [0], [0]]}], "test": [{"input": [[0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 5, 0, 0, 0, 5, 5, 0, 0], [0, 0, 5, 5, 0, 0, 0, 5, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 5, 0], [0, 5, 5, 5, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 5, 5, 5, 0], [0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 5, 5, 0, 0, 5, 5, 0, 0, 0], [0, 0, 5, 0, 0, 5, 0, 0, 0, 0]], "output": [[0], [0], [0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e88171ec.json b/data/arc-agi/evaluation/e88171ec.json
deleted file mode 100644
index c902643..0000000
--- a/data/arc-agi/evaluation/e88171ec.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 0, 0, 4, 0, 0, 0, 4, 0, 0, 5, 0, 0, 0, 0, 4, 4, 4, 4], [0, 4, 4, 4, 4, 5, 4, 4, 0, 0, 0, 4, 4, 4, 0, 4, 0, 4, 0], [0, 0, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 0, 4], [0, 4, 0, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 5, 0, 5, 4, 4], [4, 0, 4, 4, 0, 0, 0, 0, 0, 4, 4, 0, 4, 0, 4, 0, 4, 0, 4], [4, 4, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 4, 4, 0, 4], [4, 4, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 4, 5, 4, 4, 0, 5, 4], [4, 4, 4, 0, 0, 0, 0, 0, 0, 4, 5, 4, 4, 4, 0, 4, 0, 0, 5], [0, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 0, 4, 4, 5, 4, 0, 0, 4], [4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 0, 4, 0, 4, 0, 4, 4, 5], [4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 5, 5, 4, 0, 4, 0, 4, 4, 5], [4, 4, 4, 4, 4, 5, 0, 4, 0, 4, 0, 4, 4, 0, 4, 0, 5, 4, 4], [5, 4, 4, 0, 4, 4, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4], [4, 0, 4, 0, 4, 0, 4, 4, 4, 4, 4, 4, 0, 4, 0, 4, 0, 4, 4], [5, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 0, 0, 4, 4, 4, 0], [0, 0, 4, 4, 0, 4, 4, 4, 0, 0, 4, 0, 4, 0, 0, 0, 0, 4, 4], [4, 0, 0, 4, 4, 5, 4, 5, 4, 5, 4, 0, 4, 4, 0, 4, 4, 5, 0], [4, 0, 0, 4, 4, 0, 0, 0, 5, 4, 4, 0, 0, 4, 4, 5, 4, 4, 0]], "output": [[4, 0, 0, 4, 0, 0, 0, 4, 0, 0, 5, 0, 0, 0, 0, 4, 4, 4, 4], [0, 4, 4, 4, 4, 5, 4, 4, 0, 0, 0, 4, 4, 4, 0, 4, 0, 4, 0], [0, 0, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 0, 4], [0, 4, 0, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 5, 0, 5, 4, 4], [4, 0, 4, 4, 0, 0, 0, 0, 0, 4, 4, 0, 4, 0, 4, 0, 4, 0, 4], [4, 4, 4, 0, 0, 8, 8, 8, 0, 4, 0, 0, 4, 0, 0, 4, 4, 0, 4], [4, 4, 0, 0, 0, 8, 8, 8, 0, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 0, 8, 8, 8, 0, 4, 4, 4, 4, 5, 4, 4, 0, 5, 4], [4, 4, 4, 0, 0, 8, 8, 8, 0, 4, 5, 4, 4, 4, 0, 4, 0, 0, 5], [0, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 0, 4, 4, 5, 4, 0, 0, 4], [4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 0, 4, 0, 4, 0, 4, 4, 5], [4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 5, 5, 4, 0, 4, 0, 4, 4, 5], [4, 4, 4, 4, 4, 5, 0, 4, 0, 4, 0, 4, 4, 0, 4, 0, 5, 4, 4], [5, 4, 4, 0, 4, 4, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4], [4, 0, 4, 0, 4, 0, 4, 4, 4, 4, 4, 4, 0, 4, 0, 4, 0, 4, 4], [5, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 0, 0, 4, 4, 4, 0], [0, 0, 4, 4, 0, 4, 4, 4, 0, 0, 4, 0, 4, 0, 0, 0, 0, 4, 4], [4, 0, 0, 4, 4, 5, 4, 5, 4, 5, 4, 0, 4, 4, 0, 4, 4, 5, 0], [4, 0, 0, 4, 4, 0, 0, 0, 5, 4, 4, 0, 0, 4, 4, 5, 4, 4, 0]]}, {"input": [[0, 0, 2, 2, 2, 0, 2, 2, 0, 0, 0, 0, 2, 2, 2], [2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 0, 2, 0, 2, 2], [2, 2, 0, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 2, 0], [2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2], [2, 0, 2, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 2], [0, 2, 0, 2, 2, 0, 0, 0, 0, 0, 2, 2, 0, 2, 0], [2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2, 2, 2], [0, 0, 2, 2, 0, 0, 0, 2, 2, 2, 0, 2, 0, 2, 2], [2, 2, 2, 2, 0, 2, 2, 2, 0, 0, 2, 0, 0, 2, 2], [0, 0, 0, 2, 2, 2, 2, 0, 2, 0, 2, 2, 2, 2, 2], [2, 2, 0, 2, 2, 2, 2, 0, 0, 2, 2, 0, 0, 2, 0], [2, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0], [2, 0, 2, 2, 2, 0, 0, 2, 0, 0, 2, 2, 2, 2, 2], [0, 2, 2, 2, 2, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0], [0, 2, 0, 2, 0, 2, 2, 2, 2, 2, 0, 2, 2, 2, 0]], "output": [[0, 0, 2, 2, 2, 0, 2, 2, 0, 0, 0, 0, 2, 2, 2], [2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 0, 2, 0, 2, 2], [2, 2, 0, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 2, 0], [2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2], [2, 0, 2, 2, 0, 0, 8, 8, 0, 2, 0, 0, 0, 2, 2], [0, 2, 0, 2, 2, 0, 8, 8, 0, 0, 2, 2, 0, 2, 0], [2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2, 2, 2], [0, 0, 2, 2, 0, 0, 0, 2, 2, 2, 0, 2, 0, 2, 2], [2, 2, 2, 2, 0, 2, 2, 2, 0, 0, 2, 0, 0, 2, 2], [0, 0, 0, 2, 2, 2, 2, 0, 2, 0, 2, 2, 2, 2, 2], [2, 2, 0, 2, 2, 2, 2, 0, 0, 2, 2, 0, 0, 2, 0], [2, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0], [2, 0, 2, 2, 2, 0, 0, 2, 0, 0, 2, 2, 2, 2, 2], [0, 2, 2, 2, 2, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0], [0, 2, 0, 2, 0, 2, 2, 2, 2, 2, 0, 2, 2, 2, 0]]}, {"input": [[0, 0, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 3, 0, 0, 3, 0, 3, 0, 0, 0, 3, 3, 0, 3, 3], [0, 3, 0, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 0, 0], [3, 3, 3, 3, 3, 0, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [3, 3, 0, 3, 0, 0, 3, 0, 0, 3, 3, 3, 0, 0, 3, 3], [0, 0, 3, 3, 0, 0, 3, 3, 3, 3, 3, 0, 0, 3, 3, 0], [3, 0, 3, 3, 3, 0, 0, 0, 0, 3, 0, 3, 3, 3, 3, 3], [0, 0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3, 0], [3, 3, 3, 0, 3, 3, 0, 3, 0, 3, 0, 3, 3, 3, 3, 0], [3, 0, 0, 3, 0, 0, 0, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 0, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3], [3, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 0, 3, 0], [0, 0, 0, 3, 3, 0, 0, 3, 3, 0, 3, 3, 0, 0, 3, 3]], "output": [[0, 0, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 3, 0, 0, 3, 0, 3, 0, 0, 0, 3, 3, 0, 3, 3], [0, 3, 0, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 0, 0], [3, 3, 3, 3, 3, 0, 3, 0, 3, 3, 3, 3, 0, 3, 3, 3], [3, 3, 0, 3, 0, 0, 3, 0, 0, 3, 3, 3, 0, 0, 3, 3], [0, 0, 3, 3, 0, 0, 3, 3, 3, 3, 3, 0, 0, 3, 3, 0], [3, 0, 3, 3, 3, 0, 0, 0, 0, 3, 0, 3, 3, 3, 3, 3], [0, 0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3, 0], [3, 3, 3, 0, 3, 3, 0, 3, 0, 3, 0, 3, 3, 3, 3, 0], [3, 0, 0, 3, 0, 0, 0, 0, 3, 3, 3, 3, 0, 3, 3, 3], [0, 0, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 8, 8, 8, 8, 0, 0, 3, 3], [3, 0, 0, 0, 3, 0, 3, 0, 8, 8, 8, 8, 0, 3, 3, 3], [0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 0, 3, 0], [0, 0, 0, 3, 3, 0, 0, 3, 3, 0, 3, 3, 0, 0, 3, 3]]}], "test": [{"input": [[7, 7, 0, 0, 0, 7, 7, 7, 0, 0, 0, 7, 0, 0, 7, 7, 0, 7, 0, 7, 7], [7, 0, 7, 7, 7, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 7, 7, 0, 0], [7, 7, 7, 7, 7, 0, 7, 0, 0, 7, 7, 7, 7, 7, 0, 0, 7, 7, 7, 7, 0], [7, 0, 0, 7, 0, 7, 7, 7, 0, 0, 7, 0, 0, 0, 0, 7, 0, 0, 7, 7, 0], [7, 7, 7, 7, 0, 7, 7, 0, 7, 0, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7], [7, 7, 0, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7], [0, 7, 7, 7, 0, 0, 7, 7, 7, 7, 0, 0, 7, 0, 0, 7, 7, 7, 7, 7, 7], [7, 0, 0, 7, 0, 0, 7, 7, 7, 7, 0, 7, 0, 7, 7, 7, 7, 0, 7, 7, 7], [7, 7, 7, 0, 7, 0, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 7], [7, 7, 7, 0, 7, 7, 7, 7, 0, 7, 0, 7, 7, 7, 7, 7, 0, 7, 7, 7, 7], [0, 7, 7, 0, 7, 0, 7, 0, 0, 7, 7, 7, 7, 7, 0, 7, 0, 0, 0, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 7, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0], [7, 7, 0, 0, 0, 7, 7, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 7], [0, 7, 7, 0, 0, 7, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 7], [7, 7, 7, 0, 7, 7, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0], [7, 0, 7, 7, 0, 7, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0], [7, 7, 7, 7, 7, 7, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 7, 7, 0, 7, 7], [0, 0, 7, 7, 0, 7, 0, 0, 7, 7, 0, 0, 0, 7, 7, 0, 0, 7, 0, 0, 7], [7, 0, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 0, 7, 0, 0, 0, 0, 0, 0], [0, 7, 7, 0, 0, 7, 7, 0, 7, 0, 0, 0, 0, 7, 0, 7, 7, 7, 7, 7, 7], [0, 7, 7, 0, 7, 7, 7, 0, 0, 7, 7, 0, 0, 7, 7, 0, 7, 7, 0, 7, 7]], "output": [[7, 7, 0, 0, 0, 7, 7, 7, 0, 0, 0, 7, 0, 0, 7, 7, 0, 7, 0, 7, 7], [7, 0, 7, 7, 7, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 7, 7, 0, 0], [7, 7, 7, 7, 7, 0, 7, 0, 0, 7, 7, 7, 7, 7, 0, 0, 7, 7, 7, 7, 0], [7, 0, 0, 7, 0, 7, 7, 7, 0, 0, 7, 0, 0, 0, 0, 7, 0, 0, 7, 7, 0], [7, 7, 7, 7, 0, 7, 7, 0, 7, 0, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7], [7, 7, 0, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7], [0, 7, 7, 7, 0, 0, 7, 7, 7, 7, 0, 0, 7, 0, 0, 7, 7, 7, 7, 7, 7], [7, 0, 0, 7, 0, 0, 7, 7, 7, 7, 0, 7, 0, 7, 7, 7, 7, 0, 7, 7, 7], [7, 7, 7, 0, 7, 0, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 7], [7, 7, 7, 0, 7, 7, 7, 7, 0, 7, 0, 7, 7, 7, 7, 7, 0, 7, 7, 7, 7], [0, 7, 7, 0, 7, 0, 7, 0, 0, 7, 7, 7, 7, 7, 0, 7, 0, 0, 0, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 7, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0], [7, 7, 0, 0, 0, 7, 7, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 7], [0, 7, 7, 0, 0, 7, 0, 0, 7, 7, 0, 8, 8, 8, 8, 0, 7, 7, 0, 0, 7], [7, 7, 7, 0, 7, 7, 0, 7, 7, 7, 0, 8, 8, 8, 8, 0, 0, 7, 0, 7, 0], [7, 0, 7, 7, 0, 7, 0, 7, 0, 7, 0, 8, 8, 8, 8, 0, 7, 7, 7, 0, 0], [7, 7, 7, 7, 7, 7, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 7, 7, 0, 7, 7], [0, 0, 7, 7, 0, 7, 0, 0, 7, 7, 0, 0, 0, 7, 7, 0, 0, 7, 0, 0, 7], [7, 0, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 0, 7, 0, 0, 0, 0, 0, 0], [0, 7, 7, 0, 0, 7, 7, 0, 7, 0, 0, 0, 0, 7, 0, 7, 7, 7, 7, 7, 7], [0, 7, 7, 0, 7, 7, 7, 0, 0, 7, 7, 0, 0, 7, 7, 0, 7, 7, 0, 7, 7]]}]}
diff --git a/data/arc-agi/evaluation/e95e3d8e.json b/data/arc-agi/evaluation/e95e3d8e.json
deleted file mode 100644
index 31a3c2f..0000000
--- a/data/arc-agi/evaluation/e95e3d8e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3], [3, 7, 1, 1, 7, 3, 5, 5, 3, 7, 1, 1, 7, 3, 5, 5, 3, 7, 1, 1, 7, 3], [1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 0, 0, 0, 7, 5, 5, 7, 3, 1, 1, 3, 7, 5, 5, 7, 3, 1, 1, 3, 7, 5], [1, 7, 1, 7, 1, 0, 0, 7, 1, 7, 1, 7, 1, 7, 0, 0, 0, 7, 1, 7, 1, 7], [3, 3, 1, 5, 7, 0, 0, 1, 3, 3, 1, 5, 7, 7, 0, 0, 0, 3, 1, 5, 7, 7], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 0, 0, 0, 5, 1, 5, 1, 5], [3, 5, 1, 7, 7, 1, 5, 3, 3, 5, 1, 7, 7, 1, 0, 0, 0, 5, 1, 7, 7, 1], [1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3], [3, 7, 1, 1, 7, 3, 5, 5, 3, 0, 0, 0, 7, 3, 5, 5, 3, 7, 1, 1, 7, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 1, 1, 3, 7, 5, 5, 7, 3, 0, 0, 0, 7, 5, 5, 7, 3, 1, 1, 3, 7, 5], [1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7], [3, 3, 1, 5, 7, 7, 5, 1, 3, 3, 1, 5, 7, 7, 5, 1, 3, 3, 1, 5, 7, 7], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 0, 0, 0, 5, 1, 5, 1, 5], [3, 5, 1, 7, 7, 1, 5, 3, 3, 5, 1, 7, 7, 1, 0, 0, 0, 5, 1, 7, 7, 1], [1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 0, 0, 0, 3, 1, 3, 1, 3], [3, 7, 1, 1, 7, 3, 5, 5, 3, 7, 1, 1, 7, 3, 0, 0, 0, 7, 1, 1, 7, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1], [3, 1, 1, 3, 7, 5, 5, 7, 3, 1, 1, 3, 7, 5, 5, 7, 3, 1, 1, 3, 7, 5], [1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7], [3, 3, 1, 5, 7, 7, 5, 1, 3, 3, 1, 5, 7, 7, 5, 1, 3, 3, 1, 5, 7, 7]], "output": [[1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3], [3, 7, 1, 1, 7, 3, 5, 5, 3, 7, 1, 1, 7, 3, 5, 5, 3, 7, 1, 1, 7, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 1, 1, 3, 7, 5, 5, 7, 3, 1, 1, 3, 7, 5, 5, 7, 3, 1, 1, 3, 7, 5], [1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7], [3, 3, 1, 5, 7, 7, 5, 1, 3, 3, 1, 5, 7, 7, 5, 1, 3, 3, 1, 5, 7, 7], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5], [3, 5, 1, 7, 7, 1, 5, 3, 3, 5, 1, 7, 7, 1, 5, 3, 3, 5, 1, 7, 7, 1], [1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3], [3, 7, 1, 1, 7, 3, 5, 5, 3, 7, 1, 1, 7, 3, 5, 5, 3, 7, 1, 1, 7, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 1, 1, 3, 7, 5, 5, 7, 3, 1, 1, 3, 7, 5, 5, 7, 3, 1, 1, 3, 7, 5], [1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7], [3, 3, 1, 5, 7, 7, 5, 1, 3, 3, 1, 5, 7, 7, 5, 1, 3, 3, 1, 5, 7, 7], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5], [3, 5, 1, 7, 7, 1, 5, 3, 3, 5, 1, 7, 7, 1, 5, 3, 3, 5, 1, 7, 7, 1], [1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3], [3, 7, 1, 1, 7, 3, 5, 5, 3, 7, 1, 1, 7, 3, 5, 5, 3, 7, 1, 1, 7, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 1, 1, 3, 7, 5, 5, 7, 3, 1, 1, 3, 7, 5, 5, 7, 3, 1, 1, 3, 7, 5], [1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7], [3, 3, 1, 5, 7, 7, 5, 1, 3, 3, 1, 5, 7, 7, 5, 1, 3, 3, 1, 5, 7, 7]]}], "train": [{"input": [[1, 0, 0, 4, 3, 1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3, 0, 0, 3, 1, 3], [3, 0, 0, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 0, 0, 5, 3, 2], [4, 0, 0, 2, 4, 4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2, 0, 0, 4, 4, 2], [4, 0, 0, 1, 5, 4, 3, 0, 0, 0, 0, 3, 2, 1, 5, 4, 3, 0, 0, 5, 4, 3], [3, 0, 0, 5, 3, 3, 5, 0, 0, 0, 0, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5], [1, 3, 4, 4, 3, 1, 3, 0, 0, 0, 0, 3, 4, 4, 3, 1, 3, 4, 4, 0, 0, 3], [3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 0, 0, 2], [4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2, 3, 2, 0, 0, 2], [4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3], [3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5], [1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3], [3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2], [4, 2, 3, 2, 4, 0, 0, 0, 0, 0, 4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2], [4, 3, 2, 1, 5, 0, 0, 0, 0, 0, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3], [3, 5, 4, 5, 3, 0, 0, 0, 0, 0, 3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5], [1, 3, 4, 4, 3, 0, 0, 0, 0, 0, 1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3], [3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2], [4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2], [4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3], [3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5], [1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3], [3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2]], "output": [[1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3], [3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2], [4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2], [4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3], [3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5], [1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3], [3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2], [4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2], [4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3], [3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5], [1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3], [3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2], [4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2], [4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3], [3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5], [1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3], [3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2], [4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2, 3, 2, 4, 4, 2], [4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3], [3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5, 4, 5, 3, 3, 5], [1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3, 4, 4, 3, 1, 3], [3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2, 2, 3, 5, 3, 2]]}, {"input": [[1, 3, 3, 1, 0, 0, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1], [3, 1, 5, 3, 0, 0, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3], [3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3], [1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1], [3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 0, 0, 0, 0, 0, 5, 3], [3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 0, 0, 0, 0, 0, 3, 3], [1, 3, 3, 1, 3, 3, 1, 3, 0, 0, 0, 0, 1, 3, 3, 0, 0, 0, 0, 0, 3, 1], [3, 1, 5, 3, 1, 5, 3, 1, 0, 0, 0, 0, 3, 1, 5, 0, 0, 0, 0, 0, 5, 3], [3, 5, 3, 3, 5, 3, 3, 5, 0, 0, 0, 0, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3], [1, 3, 3, 1, 3, 3, 1, 3, 0, 0, 0, 0, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1], [3, 1, 5, 3, 1, 5, 3, 1, 0, 0, 0, 0, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3], [3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3], [1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1], [3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3], [3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3], [1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1], [3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 0, 0, 5, 3, 1, 5, 3], [0, 0, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 0, 0, 3, 3, 5, 3, 3], [0, 0, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1], [0, 0, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3], [0, 0, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3], [1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1]], "output": [[1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1], [3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3], [3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3], [1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1], [3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3], [3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3], [1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1], [3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3], [3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3], [1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1], [3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3], [3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3], [1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1], [3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3], [3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3], [1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1], [3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3], [3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3], [1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1], [3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3], [3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3, 5, 3, 3], [1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 1]]}, {"input": [[1, 3, 2, 5, 5, 2, 3, 1, 3, 2, 5, 5, 2, 3, 1, 3, 2, 5, 5, 2, 3, 1], [3, 7, 3, 5, 6, 6, 5, 3, 7, 3, 5, 6, 6, 5, 3, 7, 3, 5, 6, 6, 5, 3], [2, 3, 5, 1, 5, 3, 2, 2, 3, 5, 0, 0, 0, 0, 0, 3, 5, 1, 5, 3, 2, 2], [5, 5, 1, 7, 2, 7, 1, 5, 5, 1, 0, 0, 0, 0, 0, 5, 1, 7, 2, 7, 1, 5], [5, 6, 5, 2, 4, 4, 2, 5, 6, 5, 0, 0, 0, 0, 0, 6, 5, 2, 4, 4, 2, 5], [2, 6, 3, 7, 4, 1, 5, 2, 0, 0, 0, 0, 0, 0, 0, 6, 3, 7, 4, 1, 5, 2], [3, 5, 2, 1, 2, 5, 3, 3, 0, 0, 0, 0, 0, 0, 0, 5, 2, 1, 2, 5, 3, 3], [1, 3, 2, 5, 5, 2, 3, 1, 0, 0, 0, 0, 0, 3, 1, 3, 2, 5, 5, 2, 3, 1], [3, 7, 3, 5, 6, 6, 5, 3, 7, 3, 5, 6, 6, 5, 3, 7, 3, 5, 6, 6, 5, 3], [2, 3, 5, 1, 5, 3, 0, 0, 0, 0, 0, 5, 3, 2, 2, 3, 5, 1, 5, 3, 2, 2], [5, 5, 1, 7, 2, 7, 0, 0, 0, 0, 0, 2, 7, 1, 5, 5, 1, 7, 2, 7, 1, 5], [5, 6, 5, 2, 4, 4, 0, 0, 0, 0, 0, 4, 4, 2, 5, 6, 5, 2, 4, 4, 2, 5], [2, 6, 3, 7, 4, 1, 5, 2, 6, 3, 7, 4, 1, 5, 2, 6, 3, 7, 4, 1, 5, 2], [3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3], [1, 3, 2, 5, 5, 2, 3, 1, 3, 2, 5, 5, 0, 0, 0, 3, 2, 5, 0, 0, 3, 1], [3, 7, 3, 5, 6, 6, 5, 3, 7, 3, 5, 6, 0, 0, 0, 7, 3, 5, 0, 0, 5, 3], [2, 3, 5, 1, 5, 3, 2, 2, 3, 5, 1, 5, 0, 0, 0, 3, 5, 1, 5, 3, 2, 2], [5, 5, 1, 7, 2, 7, 1, 5, 5, 1, 7, 2, 0, 0, 0, 5, 1, 7, 2, 7, 1, 5], [5, 6, 5, 2, 4, 4, 2, 5, 6, 5, 2, 4, 4, 2, 5, 6, 5, 2, 4, 4, 2, 5], [2, 6, 3, 7, 4, 1, 5, 2, 6, 3, 7, 4, 1, 5, 2, 6, 3, 7, 4, 1, 5, 2], [3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3], [1, 3, 2, 5, 5, 2, 3, 1, 3, 2, 5, 5, 2, 3, 1, 3, 2, 5, 5, 2, 3, 1]], "output": [[1, 3, 2, 5, 5, 2, 3, 1, 3, 2, 5, 5, 2, 3, 1, 3, 2, 5, 5, 2, 3, 1], [3, 7, 3, 5, 6, 6, 5, 3, 7, 3, 5, 6, 6, 5, 3, 7, 3, 5, 6, 6, 5, 3], [2, 3, 5, 1, 5, 3, 2, 2, 3, 5, 1, 5, 3, 2, 2, 3, 5, 1, 5, 3, 2, 2], [5, 5, 1, 7, 2, 7, 1, 5, 5, 1, 7, 2, 7, 1, 5, 5, 1, 7, 2, 7, 1, 5], [5, 6, 5, 2, 4, 4, 2, 5, 6, 5, 2, 4, 4, 2, 5, 6, 5, 2, 4, 4, 2, 5], [2, 6, 3, 7, 4, 1, 5, 2, 6, 3, 7, 4, 1, 5, 2, 6, 3, 7, 4, 1, 5, 2], [3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3], [1, 3, 2, 5, 5, 2, 3, 1, 3, 2, 5, 5, 2, 3, 1, 3, 2, 5, 5, 2, 3, 1], [3, 7, 3, 5, 6, 6, 5, 3, 7, 3, 5, 6, 6, 5, 3, 7, 3, 5, 6, 6, 5, 3], [2, 3, 5, 1, 5, 3, 2, 2, 3, 5, 1, 5, 3, 2, 2, 3, 5, 1, 5, 3, 2, 2], [5, 5, 1, 7, 2, 7, 1, 5, 5, 1, 7, 2, 7, 1, 5, 5, 1, 7, 2, 7, 1, 5], [5, 6, 5, 2, 4, 4, 2, 5, 6, 5, 2, 4, 4, 2, 5, 6, 5, 2, 4, 4, 2, 5], [2, 6, 3, 7, 4, 1, 5, 2, 6, 3, 7, 4, 1, 5, 2, 6, 3, 7, 4, 1, 5, 2], [3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3], [1, 3, 2, 5, 5, 2, 3, 1, 3, 2, 5, 5, 2, 3, 1, 3, 2, 5, 5, 2, 3, 1], [3, 7, 3, 5, 6, 6, 5, 3, 7, 3, 5, 6, 6, 5, 3, 7, 3, 5, 6, 6, 5, 3], [2, 3, 5, 1, 5, 3, 2, 2, 3, 5, 1, 5, 3, 2, 2, 3, 5, 1, 5, 3, 2, 2], [5, 5, 1, 7, 2, 7, 1, 5, 5, 1, 7, 2, 7, 1, 5, 5, 1, 7, 2, 7, 1, 5], [5, 6, 5, 2, 4, 4, 2, 5, 6, 5, 2, 4, 4, 2, 5, 6, 5, 2, 4, 4, 2, 5], [2, 6, 3, 7, 4, 1, 5, 2, 6, 3, 7, 4, 1, 5, 2, 6, 3, 7, 4, 1, 5, 2], [3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3], [1, 3, 2, 5, 5, 2, 3, 1, 3, 2, 5, 5, 2, 3, 1, 3, 2, 5, 5, 2, 3, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e99362f0.json b/data/arc-agi/evaluation/e99362f0.json
deleted file mode 100644
index f5883bb..0000000
--- a/data/arc-agi/evaluation/e99362f0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[7, 7, 0, 0, 4, 0, 9, 9, 0], [7, 0, 0, 0, 4, 0, 9, 0, 9], [0, 7, 7, 0, 4, 9, 9, 9, 9], [7, 7, 0, 0, 4, 9, 0, 9, 9], [7, 0, 0, 0, 4, 9, 9, 0, 9], [4, 4, 4, 4, 4, 4, 4, 4, 4], [2, 2, 0, 2, 4, 8, 8, 0, 8], [0, 0, 2, 0, 4, 8, 8, 0, 0], [0, 0, 2, 0, 4, 8, 0, 8, 8], [0, 0, 0, 2, 4, 8, 8, 8, 0], [0, 0, 2, 2, 4, 8, 8, 8, 0]], "output": [[8, 8, 9, 8], [8, 8, 2, 9], [8, 7, 8, 8], [8, 8, 8, 9], [8, 8, 8, 9]]}], "train": [{"input": [[7, 0, 0, 0, 4, 0, 0, 9, 0], [7, 7, 0, 0, 4, 9, 9, 0, 9], [0, 0, 0, 0, 4, 0, 9, 9, 0], [0, 0, 7, 0, 4, 0, 0, 0, 0], [7, 0, 7, 7, 4, 9, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4], [2, 0, 2, 0, 4, 0, 0, 0, 0], [2, 0, 0, 2, 4, 0, 0, 8, 8], [2, 0, 0, 2, 4, 8, 0, 0, 8], [0, 0, 0, 2, 4, 0, 8, 0, 0], [0, 0, 0, 0, 4, 0, 0, 8, 8]], "output": [[7, 0, 9, 0], [7, 7, 8, 8], [8, 9, 9, 8], [0, 8, 7, 2], [7, 0, 8, 8]]}, {"input": [[0, 7, 7, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 9, 0, 9], [0, 7, 7, 0, 4, 9, 9, 0, 9], [7, 0, 7, 7, 4, 0, 0, 0, 9], [7, 0, 7, 7, 4, 9, 0, 0, 9], [4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 2, 2, 4, 8, 8, 8, 0], [0, 2, 0, 2, 4, 0, 0, 0, 8], [2, 2, 2, 2, 4, 0, 0, 8, 8], [0, 0, 2, 2, 4, 8, 0, 0, 0], [0, 0, 2, 0, 4, 0, 8, 8, 0]], "output": [[8, 8, 8, 2], [0, 9, 0, 8], [9, 7, 8, 8], [8, 0, 7, 7], [7, 8, 8, 7]]}, {"input": [[7, 7, 7, 0, 4, 9, 0, 0, 0], [7, 7, 7, 7, 4, 0, 9, 0, 9], [7, 7, 7, 7, 4, 0, 0, 9, 0], [0, 7, 0, 7, 4, 9, 9, 9, 9], [7, 7, 0, 7, 4, 9, 0, 0, 9], [4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 2, 0, 2, 4, 0, 0, 0, 8], [2, 2, 2, 0, 4, 0, 8, 0, 0], [2, 0, 2, 2, 4, 0, 0, 0, 8], [0, 0, 2, 2, 4, 0, 8, 0, 0], [0, 2, 2, 0, 4, 8, 8, 0, 0]], "output": [[7, 7, 7, 8], [7, 8, 7, 7], [7, 7, 7, 8], [9, 8, 9, 7], [8, 8, 2, 7]]}, {"input": [[0, 7, 0, 0, 4, 9, 0, 9, 0], [7, 7, 0, 0, 4, 9, 0, 0, 0], [0, 0, 0, 0, 4, 9, 0, 9, 9], [0, 7, 7, 7, 4, 0, 0, 0, 0], [0, 0, 7, 7, 4, 0, 0, 9, 9], [4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 2, 2, 0, 4, 8, 8, 0, 0], [2, 2, 0, 2, 4, 8, 0, 8, 8], [2, 0, 2, 2, 4, 0, 8, 0, 8], [2, 0, 2, 2, 4, 0, 8, 8, 0], [2, 0, 0, 0, 4, 0, 0, 8, 0]], "output": [[8, 8, 9, 0], [8, 7, 8, 8], [9, 8, 9, 8], [2, 8, 8, 7], [2, 0, 8, 7]]}, {"input": [[0, 0, 0, 0, 4, 0, 9, 0, 0], [7, 0, 7, 7, 4, 9, 9, 9, 9], [7, 0, 7, 7, 4, 9, 9, 0, 0], [7, 7, 0, 0, 4, 0, 0, 9, 0], [7, 0, 0, 7, 4, 9, 9, 9, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 2, 2, 2, 4, 8, 0, 0, 0], [2, 2, 2, 2, 4, 8, 8, 8, 8], [2, 0, 0, 2, 4, 8, 8, 8, 0], [2, 2, 0, 0, 4, 0, 8, 8, 8], [2, 2, 2, 0, 4, 0, 8, 8, 0]], "output": [[8, 9, 2, 2], [8, 8, 8, 8], [8, 8, 8, 7], [7, 8, 8, 8], [7, 8, 8, 7]]}, {"input": [[7, 0, 7, 7, 4, 0, 9, 9, 9], [0, 7, 7, 0, 4, 9, 9, 9, 0], [0, 0, 0, 0, 4, 9, 0, 0, 0], [7, 0, 0, 7, 4, 9, 9, 9, 0], [7, 0, 7, 7, 4, 9, 0, 9, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 2, 0, 0, 4, 0, 0, 8, 0], [2, 0, 2, 2, 4, 8, 0, 8, 8], [0, 2, 0, 0, 4, 0, 0, 8, 8], [2, 0, 2, 2, 4, 8, 0, 0, 8], [2, 2, 2, 0, 4, 8, 8, 0, 0]], "output": [[7, 9, 8, 7], [8, 7, 8, 8], [9, 2, 8, 8], [8, 9, 9, 8], [8, 8, 7, 7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e9ac8c9e.json b/data/arc-agi/evaluation/e9ac8c9e.json
deleted file mode 100644
index 790968a..0000000
--- a/data/arc-agi/evaluation/e9ac8c9e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 2, 0, 0, 0, 0, 0, 0], [0, 0, 7, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 0, 0, 0], [0, 0, 0, 3, 3, 4, 4, 0, 0, 0], [0, 0, 0, 8, 8, 6, 6, 0, 0, 0], [0, 0, 0, 8, 8, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[8, 0, 0, 0, 0, 0, 0, 9, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [7, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 9, 9, 9, 0, 0, 0], [0, 8, 8, 8, 9, 9, 9, 0, 0, 0], [0, 8, 8, 8, 9, 9, 9, 0, 0, 0], [0, 7, 7, 7, 6, 6, 6, 0, 0, 0], [0, 7, 7, 7, 6, 6, 6, 0, 0, 0], [0, 7, 7, 7, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[6, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 9, 0, 0, 7, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 5, 5, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 5, 5, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 2, 0, 0, 6, 0], [7, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 3, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 8, 8, 8, 0, 0, 0, 0, 9, 7, 0, 0], [0, 7, 7, 7, 8, 8, 8, 0, 0, 0, 0, 2, 6, 0, 0], [0, 7, 7, 7, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e9b4f6fc.json b/data/arc-agi/evaluation/e9b4f6fc.json
deleted file mode 100644
index b64e90c..0000000
--- a/data/arc-agi/evaluation/e9b4f6fc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 4, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 4, 4, 4, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 3, 4, 3, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 3, 3, 3, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8, 8], [8, 8, 1, 8, 8, 8], [8, 1, 1, 1, 8, 8], [8, 2, 1, 2, 8, 8], [8, 2, 2, 2, 8, 8], [8, 8, 8, 8, 8, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 0, 4, 5, 0, 0], [0, 3, 5, 5, 5, 5, 3, 3, 0, 0, 0, 0, 0], [0, 3, 3, 1, 1, 5, 3, 3, 0, 0, 0, 0, 0], [0, 3, 8, 1, 1, 3, 3, 3, 0, 0, 0, 0, 0], [0, 3, 8, 8, 8, 8, 3, 3, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3], [3, 4, 4, 4, 4, 3, 3], [3, 3, 2, 2, 4, 3, 3], [3, 6, 2, 2, 3, 3, 3], [3, 6, 6, 6, 6, 3, 3], [3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 8, 2, 4, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 2, 2, 4, 4, 4, 8, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8, 8, 8], [8, 8, 3, 1, 8, 8, 8], [8, 3, 3, 1, 1, 1, 8], [8, 8, 8, 8, 8, 8, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 2, 2, 1], [3, 3, 2, 1], [3, 3, 1, 1], [1, 1, 1, 1]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 3, 3, 3, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 7, 7, 7, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 7, 1, 1, 0, 0, 4, 8, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 2, 1, 1], [1, 2, 2, 2, 1], [1, 4, 4, 4, 1], [1, 6, 6, 6, 1], [1, 1, 6, 1, 1], [1, 1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e9bb6954.json b/data/arc-agi/evaluation/e9bb6954.json
deleted file mode 100644
index 534e995..0000000
--- a/data/arc-agi/evaluation/e9bb6954.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 7, 7, 7, 0, 2, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 7, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 8, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 9, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 8, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 7, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 7, 0, 0, 8, 0], [0, 0, 1, 0, 0, 2, 0, 8, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 7, 0, 0, 0, 9], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 7, 7, 7, 0, 2, 0], [7, 7, 7, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 7, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 7, 2, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 8, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 7, 0, 0, 7, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 6, 0, 0, 0, 0, 0], [7, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 9], [0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0], [9, 7, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0]], "output": [[0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 9, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 2, 0, 3, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 9, 0, 4, 6, 0, 0, 0, 0, 0], [7, 0, 0, 0, 3, 1, 4, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0], [9, 7, 0, 0, 0, 0, 4, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 6, 0, 0, 0], [0, 0, 0, 7, 0, 0, 4, 0, 0, 0, 1, 0, 0], [0, 0, 0, 8, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 8, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 8, 7, 0, 0, 0, 0, 0, 0], [6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 1, 0, 0, 0, 0], [0, 0, 2, 6, 5, 0, 3, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 2, 2, 2, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 3, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 1], [0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 6, 7, 0, 0, 0, 0, 0, 0, 0, 8]], "output": [[0, 0, 0, 0, 3, 0, 8, 7, 0, 0, 0, 2, 0, 0], [6, 8, 0, 0, 3, 0, 0, 0, 0, 0, 8, 2, 0, 0], [0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 3, 0, 0, 6, 0, 1, 0, 2, 0, 0], [0, 0, 2, 6, 3, 0, 3, 0, 0, 0, 2, 2, 2, 0], [2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 3, 0, 0, 7, 0, 0, 2, 2, 2, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 8, 0, 2, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3, 3], [0, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 3, 0], [0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0], [5, 0, 0, 0, 3, 0, 3, 0, 4, 0, 0, 2, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 6, 2, 0, 1], [0, 0, 0, 8, 3, 8, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 8, 0, 3, 7, 0, 0, 0, 0, 0, 2, 0, 8]]}, {"input": [[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 8, 8, 8, 1, 3, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 8, 8, 8, 0, 0, 0, 0], [1, 0, 0, 7, 0, 0, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 5, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 4, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [1, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 4, 0, 0, 0, 8, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 4, 0, 0, 0, 0]], "output": [[0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0], [0, 0, 2, 0, 6, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 3, 0], [8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8], [0, 0, 4, 0, 6, 0, 0, 0, 0, 4, 0, 8, 8, 8, 0, 0, 3, 0], [1, 0, 0, 7, 6, 0, 0, 7, 2, 0, 0, 0, 8, 0, 0, 0, 3, 0], [8, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 3, 3, 0], [0, 5, 0, 0, 6, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 3, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 3, 0], [0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 6, 6, 6, 0, 6], [0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 3, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0], [0, 0, 9, 0, 6, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 3, 3, 3], [3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3], [0, 0, 0, 0, 6, 4, 0, 0, 0, 8, 0, 0, 8, 0, 0, 3, 3, 3], [0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 8, 4, 0, 0, 3, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 7, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 5, 0, 0, 0, 7, 4, 4, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 7, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 2, 4], [0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 8, 8, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 6, 0, 0, 0, 2, 0], [7, 7, 7, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 9, 9, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 2, 0], [3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 7, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 8, 0, 8, 0, 2, 0, 0], [4, 7, 0, 0, 0, 0, 0, 4, 0, 0, 3, 0, 0, 0, 8, 0, 0, 0, 0], [1, 7, 0, 0, 0, 7, 4, 4, 4, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4], [0, 7, 0, 0, 0, 7, 4, 4, 4, 0, 0, 0, 1, 0, 8, 0, 0, 0, 0], [0, 7, 0, 0, 6, 0, 0, 4, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0], [0, 7, 7, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 8, 8, 8, 0, 2, 4], [8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 7, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 7, 2, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 8, 1, 4, 0, 0], [0, 7, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 6, 8, 0, 0, 2, 0], [7, 7, 7, 0, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [7, 7, 7, 7, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 0, 7, 7, 7, 7], [7, 7, 7, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 7, 6, 6, 9, 9, 0, 4, 4, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 7, 0, 8, 0, 0, 2, 0], [3, 7, 4, 0, 0, 0, 0, 4, 0, 0, 0, 8, 0, 0, 8, 0, 4, 0, 0], [0, 7, 0, 0, 0, 0, 0, 4, 0, 0, 0, 6, 0, 0, 8, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/e9c9d9a1.json b/data/arc-agi/evaluation/e9c9d9a1.json
deleted file mode 100644
index dc27da1..0000000
--- a/data/arc-agi/evaluation/e9c9d9a1.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 3, 0, 0, 3, 4, 4, 4, 4, 4], [2, 2, 2, 3, 0, 0, 3, 4, 4, 4, 4, 4], [2, 2, 2, 3, 0, 0, 3, 4, 4, 4, 4, 4], [2, 2, 2, 3, 0, 0, 3, 4, 4, 4, 4, 4], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 7, 7, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 7, 7, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 7, 7, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 7, 7, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 7, 7, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 7, 7, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [1, 1, 1, 3, 0, 0, 3, 8, 8, 8, 8, 8], [1, 1, 1, 3, 0, 0, 3, 8, 8, 8, 8, 8], [1, 1, 1, 3, 0, 0, 3, 8, 8, 8, 8, 8], [1, 1, 1, 3, 0, 0, 3, 8, 8, 8, 8, 8], [1, 1, 1, 3, 0, 0, 3, 8, 8, 8, 8, 8], [1, 1, 1, 3, 0, 0, 3, 8, 8, 8, 8, 8]]}, {"input": [[0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0]], "output": [[2, 2, 2, 3, 0, 0, 0, 3, 4, 4, 4, 4], [2, 2, 2, 3, 0, 0, 0, 3, 4, 4, 4, 4], [2, 2, 2, 3, 0, 0, 0, 3, 4, 4, 4, 4], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 7, 7, 7, 3, 0, 0, 0, 0], [0, 0, 0, 3, 7, 7, 7, 3, 0, 0, 0, 0], [0, 0, 0, 3, 7, 7, 7, 3, 0, 0, 0, 0], [0, 0, 0, 3, 7, 7, 7, 3, 0, 0, 0, 0], [0, 0, 0, 3, 7, 7, 7, 3, 0, 0, 0, 0], [0, 0, 0, 3, 7, 7, 7, 3, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [1, 1, 1, 3, 0, 0, 0, 3, 8, 8, 8, 8], [1, 1, 1, 3, 0, 0, 0, 3, 8, 8, 8, 8], [1, 1, 1, 3, 0, 0, 0, 3, 8, 8, 8, 8], [1, 1, 1, 3, 0, 0, 0, 3, 8, 8, 8, 8]]}, {"input": [[0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0]], "output": [[2, 2, 2, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 4], [2, 2, 2, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 4], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 7, 7, 7, 3, 7, 7, 7, 3, 7, 7, 3, 0], [0, 0, 0, 3, 7, 7, 7, 3, 7, 7, 7, 3, 7, 7, 3, 0], [0, 0, 0, 3, 7, 7, 7, 3, 7, 7, 7, 3, 7, 7, 3, 0], [0, 0, 0, 3, 7, 7, 7, 3, 7, 7, 7, 3, 7, 7, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 7, 7, 7, 3, 7, 7, 7, 3, 7, 7, 3, 0], [0, 0, 0, 3, 7, 7, 7, 3, 7, 7, 7, 3, 7, 7, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 7, 7, 7, 3, 7, 7, 7, 3, 7, 7, 3, 0], [0, 0, 0, 3, 7, 7, 7, 3, 7, 7, 7, 3, 7, 7, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [1, 1, 1, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 8], [1, 1, 1, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 8], [1, 1, 1, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 8], [1, 1, 1, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 8]]}], "test": [{"input": [[0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0]], "output": [[2, 2, 3, 0, 0, 0, 3, 0, 0, 3, 4, 4, 4, 4, 4], [2, 2, 3, 0, 0, 0, 3, 0, 0, 3, 4, 4, 4, 4, 4], [2, 2, 3, 0, 0, 0, 3, 0, 0, 3, 4, 4, 4, 4, 4], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 3, 7, 7, 7, 3, 7, 7, 3, 0, 0, 0, 0, 0], [0, 0, 3, 7, 7, 7, 3, 7, 7, 3, 0, 0, 0, 0, 0], [0, 0, 3, 7, 7, 7, 3, 7, 7, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 3, 7, 7, 7, 3, 7, 7, 3, 0, 0, 0, 0, 0], [0, 0, 3, 7, 7, 7, 3, 7, 7, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [1, 1, 3, 0, 0, 0, 3, 0, 0, 3, 8, 8, 8, 8, 8], [1, 1, 3, 0, 0, 0, 3, 0, 0, 3, 8, 8, 8, 8, 8], [1, 1, 3, 0, 0, 0, 3, 0, 0, 3, 8, 8, 8, 8, 8], [1, 1, 3, 0, 0, 0, 3, 0, 0, 3, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ea959feb.json b/data/arc-agi/evaluation/ea959feb.json
deleted file mode 100644
index 9f06956..0000000
--- a/data/arc-agi/evaluation/ea959feb.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[7, 3, 1, 1, 3, 7, 4, 3, 4, 7, 3, 1, 1, 3, 7, 4, 3, 4, 7, 3, 1, 1, 3, 7, 4], [8, 4, 2, 2, 4, 8, 5, 4, 5, 8, 4, 2, 2, 4, 8, 5, 4, 5, 8, 4, 2, 2, 4, 8, 5], [9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6], [1, 6, 4, 4, 6, 1, 7, 6, 7, 1, 6, 4, 4, 6, 1, 7, 6, 7, 1, 6, 4, 4, 6, 1, 7], [2, 7, 5, 5, 7, 2, 8, 7, 8, 2, 7, 5, 5, 7, 2, 8, 7, 8, 2, 7, 5, 5, 7, 2, 8], [3, 8, 6, 6, 8, 3, 9, 8, 1, 1, 1, 1, 1, 8, 3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9], [4, 9, 7, 7, 9, 4, 1, 9, 1, 1, 1, 1, 1, 9, 4, 1, 9, 1, 4, 9, 7, 7, 9, 4, 1], [5, 1, 8, 8, 1, 5, 2, 1, 1, 1, 1, 1, 1, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2], [6, 2, 9, 9, 2, 6, 3, 2, 1, 1, 1, 1, 1, 2, 6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3], [7, 3, 1, 1, 1, 1, 1, 3, 4, 7, 3, 1, 1, 3, 7, 4, 3, 4, 7, 3, 1, 1, 3, 7, 4], [8, 4, 2, 2, 1, 1, 1, 4, 5, 8, 4, 1, 1, 4, 8, 5, 4, 5, 8, 4, 2, 2, 4, 8, 5], [9, 5, 3, 1, 1, 1, 1, 1, 6, 9, 5, 1, 1, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6], [1, 6, 4, 1, 1, 1, 1, 1, 7, 1, 6, 1, 1, 6, 1, 7, 6, 7, 1, 6, 4, 4, 6, 1, 7], [2, 7, 5, 1, 1, 1, 1, 1, 8, 2, 7, 5, 5, 7, 2, 8, 7, 8, 2, 7, 5, 5, 7, 2, 8], [3, 8, 6, 1, 1, 1, 1, 1, 9, 3, 8, 6, 6, 8, 3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9], [4, 9, 7, 7, 9, 4, 1, 9, 1, 4, 9, 7, 7, 9, 4, 1, 9, 1, 4, 9, 7, 7, 9, 4, 1], [5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2], [6, 2, 9, 9, 2, 6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3], [7, 3, 1, 1, 3, 7, 4, 3, 4, 7, 3, 1, 1, 3, 7, 4, 3, 4, 7, 3, 1, 1, 3, 7, 4], [8, 4, 2, 2, 4, 8, 5, 4, 5, 8, 4, 2, 2, 4, 8, 5, 4, 5, 8, 4, 2, 2, 4, 8, 5], [9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6], [1, 6, 4, 4, 6, 1, 7, 6, 7, 1, 6, 4, 4, 6, 1, 7, 6, 7, 1, 6, 4, 4, 6, 1, 7]], "output": [[7, 3, 1, 1, 3, 7, 4, 3, 4, 7, 3, 1, 1, 3, 7, 4, 3, 4, 7, 3, 1, 1, 3, 7, 4], [8, 4, 2, 2, 4, 8, 5, 4, 5, 8, 4, 2, 2, 4, 8, 5, 4, 5, 8, 4, 2, 2, 4, 8, 5], [9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6], [1, 6, 4, 4, 6, 1, 7, 6, 7, 1, 6, 4, 4, 6, 1, 7, 6, 7, 1, 6, 4, 4, 6, 1, 7], [2, 7, 5, 5, 7, 2, 8, 7, 8, 2, 7, 5, 5, 7, 2, 8, 7, 8, 2, 7, 5, 5, 7, 2, 8], [3, 8, 6, 6, 8, 3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9], [4, 9, 7, 7, 9, 4, 1, 9, 1, 4, 9, 7, 7, 9, 4, 1, 9, 1, 4, 9, 7, 7, 9, 4, 1], [5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2], [6, 2, 9, 9, 2, 6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3], [7, 3, 1, 1, 3, 7, 4, 3, 4, 7, 3, 1, 1, 3, 7, 4, 3, 4, 7, 3, 1, 1, 3, 7, 4], [8, 4, 2, 2, 4, 8, 5, 4, 5, 8, 4, 2, 2, 4, 8, 5, 4, 5, 8, 4, 2, 2, 4, 8, 5], [9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6], [1, 6, 4, 4, 6, 1, 7, 6, 7, 1, 6, 4, 4, 6, 1, 7, 6, 7, 1, 6, 4, 4, 6, 1, 7], [2, 7, 5, 5, 7, 2, 8, 7, 8, 2, 7, 5, 5, 7, 2, 8, 7, 8, 2, 7, 5, 5, 7, 2, 8], [3, 8, 6, 6, 8, 3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9], [4, 9, 7, 7, 9, 4, 1, 9, 1, 4, 9, 7, 7, 9, 4, 1, 9, 1, 4, 9, 7, 7, 9, 4, 1], [5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2], [6, 2, 9, 9, 2, 6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3], [7, 3, 1, 1, 3, 7, 4, 3, 4, 7, 3, 1, 1, 3, 7, 4, 3, 4, 7, 3, 1, 1, 3, 7, 4], [8, 4, 2, 2, 4, 8, 5, 4, 5, 8, 4, 2, 2, 4, 8, 5, 4, 5, 8, 4, 2, 2, 4, 8, 5], [9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6], [1, 6, 4, 4, 6, 1, 7, 6, 7, 1, 6, 4, 4, 6, 1, 7, 6, 7, 1, 6, 4, 4, 6, 1, 7]]}], "train": [{"input": [[1, 6, 1, 1, 1, 1, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1], [2, 1, 1, 1, 1, 1, 1, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2], [3, 2, 1, 1, 1, 1, 1, 2, 3, 6, 5, 6, 3, 1, 1, 1, 1, 1, 3, 2, 3, 6, 5, 6, 3], [4, 3, 1, 1, 1, 1, 1, 3, 4, 1, 6, 1, 4, 1, 1, 1, 1, 1, 4, 3, 4, 1, 6, 1, 4], [5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 1, 1, 1, 1, 1, 5, 4, 5, 2, 1, 2, 5], [6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 1, 1, 1, 1, 1, 6, 5, 6, 3, 2, 3, 6], [1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1], [2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2], [3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3], [4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4], [5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5], [6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6], [1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1], [2, 1, 1, 1, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2], [3, 2, 1, 1, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 1, 1, 1, 1, 1, 3], [4, 3, 1, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 1, 1, 1, 1, 1, 4], [5, 4, 1, 1, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 1, 1, 1, 1, 1, 5], [6, 5, 1, 1, 1, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 1, 1, 1, 1, 1, 6], [1, 6, 1, 1, 1, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1], [2, 1, 1, 1, 1, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2], [3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3], [4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4]], "output": [[1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1], [2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2], [3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3], [4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4], [5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5], [6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6], [1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1], [2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2], [3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3], [4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4], [5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5], [6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6], [1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1], [2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2], [3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3], [4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4], [5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5], [6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6], [1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1], [2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2], [3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3], [4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4, 3, 4, 1, 6, 1, 4]]}, {"input": [[7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7], [1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1], [2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2], [3, 1, 1, 3, 7, 6, 7, 3, 1, 1, 3, 7, 6, 7, 3, 1, 1, 3, 7, 6, 7, 3, 1, 1, 3], [4, 2, 2, 4, 1, 7, 1, 4, 2, 2, 4, 1, 7, 1, 4, 2, 2, 4, 1, 7, 1, 4, 2, 2, 4], [5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 1, 1, 1, 3, 5], [6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 1, 1, 1, 4, 6], [7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 1, 1, 1, 5, 7], [1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1], [2, 7, 7, 2, 1, 1, 1, 1, 1, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2], [3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 7, 6, 7, 3, 1, 1, 3, 7, 6, 7, 3, 1, 1, 3], [4, 2, 2, 4, 1, 1, 1, 1, 1, 2, 4, 1, 7, 1, 4, 2, 2, 4, 1, 7, 1, 4, 2, 2, 4], [5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5], [6, 4, 4, 1, 1, 1, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6], [7, 5, 5, 1, 1, 1, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7], [1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1], [2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2], [3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 7, 6, 7, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3], [4, 2, 1, 1, 1, 1, 1, 4, 2, 2, 4, 1, 7, 1, 4, 2, 2, 1, 1, 1, 1, 1, 2, 2, 4], [5, 3, 1, 1, 1, 1, 1, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 1, 1, 1, 1, 1, 3, 3, 5], [6, 4, 1, 1, 1, 1, 1, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 1, 1, 1, 1, 1, 4, 4, 6], [7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7]], "output": [[7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7], [1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1], [2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2], [3, 1, 1, 3, 7, 6, 7, 3, 1, 1, 3, 7, 6, 7, 3, 1, 1, 3, 7, 6, 7, 3, 1, 1, 3], [4, 2, 2, 4, 1, 7, 1, 4, 2, 2, 4, 1, 7, 1, 4, 2, 2, 4, 1, 7, 1, 4, 2, 2, 4], [5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5], [6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6], [7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7], [1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1], [2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2], [3, 1, 1, 3, 7, 6, 7, 3, 1, 1, 3, 7, 6, 7, 3, 1, 1, 3, 7, 6, 7, 3, 1, 1, 3], [4, 2, 2, 4, 1, 7, 1, 4, 2, 2, 4, 1, 7, 1, 4, 2, 2, 4, 1, 7, 1, 4, 2, 2, 4], [5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5], [6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6], [7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7], [1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1, 5, 4, 5, 1, 6, 6, 1], [2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2], [3, 1, 1, 3, 7, 6, 7, 3, 1, 1, 3, 7, 6, 7, 3, 1, 1, 3, 7, 6, 7, 3, 1, 1, 3], [4, 2, 2, 4, 1, 7, 1, 4, 2, 2, 4, 1, 7, 1, 4, 2, 2, 4, 1, 7, 1, 4, 2, 2, 4], [5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5], [6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6], [7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7]]}, {"input": [[7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7], [8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8], [1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1], [2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2], [3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3], [4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4], [5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5], [6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6], [7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7], [8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8], [1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1], [2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 1, 1, 1, 1, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2], [3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 1, 1, 1, 1, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3], [4, 1, 8, 1, 1, 1, 1, 1, 4, 1, 8, 1, 1, 1, 1, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4], [5, 2, 1, 2, 1, 1, 1, 2, 5, 1, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5], [6, 3, 2, 3, 1, 1, 1, 3, 6, 1, 1, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6], [7, 4, 3, 4, 1, 1, 1, 4, 7, 1, 1, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7], [8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 1, 1, 1, 5, 8], [1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 1, 1, 1, 6, 5, 6, 1, 1, 1, 6, 1], [2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 1, 1, 1, 7, 6, 7, 1, 1, 1, 7, 2], [3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 1, 1, 1, 8, 3], [4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4]], "output": [[7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7], [8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8], [1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1], [2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2], [3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3], [4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4], [5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5], [6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6], [7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7], [8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8], [1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1], [2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2], [3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3], [4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4], [5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5], [6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6], [7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7, 4, 3, 4, 7], [8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8, 5, 4, 5, 8], [1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1], [2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2, 7, 6, 7, 2], [3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3, 8, 7, 8, 3], [4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4, 1, 8, 1, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ea9794b1.json b/data/arc-agi/evaluation/ea9794b1.json
deleted file mode 100644
index 6645f1e..0000000
--- a/data/arc-agi/evaluation/ea9794b1.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[4, 0, 4, 0, 0, 3, 0, 3, 3, 0], [4, 0, 0, 0, 0, 3, 3, 0, 0, 3], [0, 0, 4, 4, 4, 0, 0, 0, 3, 0], [0, 0, 4, 0, 4, 3, 3, 3, 3, 0], [4, 4, 4, 4, 0, 3, 0, 0, 0, 0], [0, 0, 0, 9, 9, 0, 0, 8, 0, 8], [0, 9, 0, 9, 9, 8, 0, 0, 0, 8], [0, 0, 0, 9, 9, 0, 0, 8, 8, 0], [0, 0, 9, 9, 9, 8, 0, 0, 0, 0], [9, 0, 9, 0, 0, 0, 0, 8, 8, 0]], "output": [[3, 0, 3, 3, 9], [3, 3, 0, 9, 3], [0, 0, 8, 3, 9], [3, 3, 3, 3, 9], [3, 4, 9, 8, 0]]}], "train": [{"input": [[4, 4, 4, 4, 4, 3, 3, 0, 3, 3], [4, 0, 4, 4, 0, 0, 0, 3, 0, 3], [0, 0, 4, 0, 4, 0, 0, 0, 3, 0], [4, 4, 4, 0, 0, 3, 0, 0, 3, 3], [4, 4, 4, 4, 0, 3, 0, 3, 0, 3], [9, 9, 9, 0, 9, 0, 0, 8, 8, 8], [9, 9, 0, 0, 9, 8, 0, 0, 0, 0], [0, 0, 0, 9, 0, 0, 0, 0, 0, 0], [0, 9, 0, 0, 0, 8, 0, 8, 0, 0], [0, 0, 0, 0, 9, 0, 8, 0, 8, 0]], "output": [[3, 3, 9, 3, 3], [9, 9, 3, 4, 3], [0, 0, 4, 3, 4], [3, 9, 8, 3, 3], [3, 8, 3, 8, 3]]}, {"input": [[0, 4, 0, 0, 4, 0, 0, 0, 0, 3], [0, 4, 4, 4, 4, 3, 3, 3, 3, 3], [0, 4, 0, 0, 0, 0, 3, 3, 3, 0], [4, 4, 0, 0, 0, 3, 3, 3, 0, 3], [0, 0, 4, 4, 0, 3, 3, 0, 0, 0], [9, 0, 9, 0, 9, 0, 0, 8, 8, 0], [0, 0, 0, 9, 0, 0, 0, 0, 8, 0], [9, 9, 0, 9, 0, 0, 8, 8, 8, 0], [0, 0, 9, 9, 9, 0, 0, 0, 0, 0], [9, 9, 0, 9, 0, 8, 8, 8, 8, 0]], "output": [[9, 4, 9, 8, 3], [3, 3, 3, 3, 3], [9, 3, 3, 3, 0], [3, 3, 3, 9, 3], [3, 3, 8, 9, 0]]}, {"input": [[4, 0, 0, 0, 0, 3, 0, 0, 0, 3], [0, 0, 4, 4, 4, 3, 3, 3, 3, 3], [4, 4, 0, 4, 0, 3, 3, 3, 3, 3], [4, 4, 4, 0, 0, 3, 0, 0, 0, 0], [0, 0, 4, 0, 4, 3, 3, 0, 0, 0], [0, 0, 0, 0, 9, 0, 8, 0, 8, 8], [9, 0, 9, 0, 9, 8, 0, 8, 0, 0], [0, 0, 9, 0, 0, 8, 0, 8, 8, 0], [9, 9, 9, 9, 0, 8, 0, 0, 0, 8], [0, 9, 9, 0, 0, 8, 8, 8, 8, 8]], "output": [[3, 8, 0, 8, 3], [3, 3, 3, 3, 3], [3, 3, 3, 3, 3], [3, 9, 9, 9, 8], [3, 3, 9, 8, 8]]}, {"input": [[0, 4, 4, 4, 0, 0, 0, 0, 3, 3], [4, 4, 0, 0, 0, 3, 0, 3, 3, 0], [4, 0, 0, 4, 4, 0, 3, 3, 3, 0], [0, 0, 4, 0, 4, 3, 0, 0, 3, 0], [0, 0, 4, 4, 4, 3, 3, 3, 3, 3], [0, 9, 0, 9, 9, 0, 0, 0, 8, 0], [9, 0, 0, 9, 9, 0, 8, 8, 0, 8], [0, 0, 0, 9, 0, 0, 0, 8, 8, 0], [0, 0, 9, 9, 0, 8, 0, 8, 0, 0], [9, 9, 0, 9, 0, 0, 8, 0, 8, 8]], "output": [[0, 9, 4, 3, 3], [3, 8, 3, 3, 9], [4, 3, 3, 3, 4], [3, 0, 9, 3, 4], [3, 3, 3, 3, 3]]}, {"input": [[0, 4, 4, 4, 0, 0, 3, 0, 3, 0], [0, 4, 0, 0, 0, 0, 3, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 4, 4, 0, 3, 0, 3, 3, 3], [0, 4, 4, 4, 4, 3, 3, 3, 3, 3], [9, 0, 9, 9, 0, 0, 0, 0, 0, 0], [9, 0, 0, 0, 9, 0, 8, 0, 8, 0], [0, 0, 9, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 9, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 8, 8, 8]], "output": [[9, 3, 9, 3, 0], [9, 3, 0, 8, 3], [0, 0, 3, 3, 3], [3, 8, 3, 3, 3], [3, 3, 3, 3, 3]]}, {"input": [[4, 0, 0, 0, 4, 0, 0, 3, 3, 0], [4, 0, 0, 0, 0, 3, 3, 3, 3, 0], [0, 4, 4, 0, 4, 3, 0, 0, 3, 3], [0, 4, 4, 0, 4, 0, 0, 3, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 3], [0, 9, 9, 9, 9, 0, 8, 0, 0, 8], [0, 0, 9, 9, 9, 8, 0, 0, 0, 8], [9, 9, 9, 0, 0, 8, 8, 0, 8, 0], [9, 9, 9, 0, 9, 0, 8, 8, 8, 8], [0, 9, 9, 0, 9, 0, 8, 0, 0, 8]], "output": [[4, 9, 3, 3, 9], [3, 3, 3, 3, 9], [3, 9, 9, 3, 3], [9, 9, 3, 8, 9], [0, 9, 9, 0, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ecaa0ec1.json b/data/arc-agi/evaluation/ecaa0ec1.json
deleted file mode 100644
index 3ac74fb..0000000
--- a/data/arc-agi/evaluation/ecaa0ec1.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 8, 1, 8, 0, 0, 0], [0, 0, 0, 0, 8, 1, 8, 0, 0, 0], [0, 0, 0, 0, 1, 1, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 1, 1, 0, 0, 0], [0, 0, 0, 0, 8, 1, 8, 0, 0, 0], [0, 0, 0, 0, 8, 1, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 4, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 8, 1, 8, 0, 0, 0, 0], [0, 0, 0, 8, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 8, 1, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 1, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 1, 8, 0, 0, 0, 0], [0, 0, 0, 1, 8, 8, 0, 0, 0, 0], [0, 4, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 1, 0, 0, 0, 0], [0, 0, 0, 1, 8, 1, 0, 0, 0, 0], [0, 0, 0, 8, 1, 1, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 1, 8, 1, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 8, 1, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 8, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 4, 0, 0], [0, 0, 0, 0, 1, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 1, 8, 1, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 1, 8, 1, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ed74f2f2.json b/data/arc-agi/evaluation/ed74f2f2.json
deleted file mode 100644
index e4851dd..0000000
--- a/data/arc-agi/evaluation/ed74f2f2.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 5, 5, 5, 0], [0, 0, 5, 0, 0, 5, 0, 5, 0], [0, 0, 5, 5, 0, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2], [2, 0, 2], [2, 0, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 5, 0, 5, 0], [0, 0, 5, 0, 0, 5, 0, 5, 0], [0, 5, 5, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 0, 3], [3, 0, 3], [3, 3, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 0, 5, 0, 5, 0], [0, 0, 5, 0, 0, 0, 5, 5, 0], [0, 0, 5, 0, 0, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 1], [0, 1, 1], [1, 0, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 0, 5, 0, 5, 0], [0, 0, 5, 0, 0, 5, 5, 5, 0], [0, 0, 5, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 1], [1, 1, 1], [1, 1, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 5, 5, 0, 0], [0, 0, 5, 0, 0, 0, 5, 5, 0], [0, 0, 5, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 0], [0, 2, 2], [0, 2, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 5, 0, 0, 0], [0, 0, 5, 0, 0, 0, 5, 5, 0], [0, 0, 5, 5, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 0], [0, 2, 2], [2, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 5, 5, 0, 0], [0, 0, 5, 0, 0, 5, 5, 5, 0], [0, 5, 5, 0, 0, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 0], [3, 3, 3], [3, 0, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ed98d772.json b/data/arc-agi/evaluation/ed98d772.json
deleted file mode 100644
index da03029..0000000
--- a/data/arc-agi/evaluation/ed98d772.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[6, 6, 0], [6, 6, 0], [0, 0, 6]], "output": [[6, 6, 0, 0, 0, 6], [6, 6, 0, 6, 6, 0], [0, 0, 6, 6, 6, 0], [6, 0, 0, 0, 6, 6], [0, 6, 6, 0, 6, 6], [0, 6, 6, 6, 0, 0]]}], "train": [{"input": [[9, 9, 9], [0, 0, 0], [9, 9, 0]], "output": [[9, 9, 9, 9, 0, 0], [0, 0, 0, 9, 0, 9], [9, 9, 0, 9, 0, 9], [0, 9, 9, 9, 0, 9], [0, 0, 0, 9, 0, 9], [9, 9, 9, 0, 0, 9]]}, {"input": [[3, 0, 3], [0, 3, 3], [3, 3, 3]], "output": [[3, 0, 3, 3, 3, 3], [0, 3, 3, 0, 3, 3], [3, 3, 3, 3, 0, 3], [3, 3, 3, 3, 0, 3], [3, 3, 0, 3, 3, 0], [3, 0, 3, 3, 3, 3]]}, {"input": [[3, 3, 3], [0, 0, 3], [3, 0, 0]], "output": [[3, 3, 3, 3, 3, 0], [0, 0, 3, 3, 0, 0], [3, 0, 0, 3, 0, 3], [0, 0, 3, 3, 0, 3], [3, 0, 0, 0, 0, 3], [3, 3, 3, 0, 3, 3]]}, {"input": [[8, 0, 8], [8, 0, 0], [8, 0, 0]], "output": [[8, 0, 8, 8, 0, 0], [8, 0, 0, 0, 0, 0], [8, 0, 0, 8, 8, 8], [0, 0, 8, 8, 8, 8], [0, 0, 8, 0, 0, 0], [8, 0, 8, 0, 0, 8]]}, {"input": [[0, 7, 7], [0, 0, 0], [7, 7, 0]], "output": [[0, 7, 7, 7, 0, 0], [0, 0, 0, 7, 0, 7], [7, 7, 0, 0, 0, 7], [0, 7, 7, 7, 0, 0], [0, 0, 0, 7, 0, 7], [7, 7, 0, 0, 0, 7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ef26cbf6.json b/data/arc-agi/evaluation/ef26cbf6.json
deleted file mode 100644
index 89920bf..0000000
--- a/data/arc-agi/evaluation/ef26cbf6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0], [0, 3, 0, 4, 0, 2, 0, 4, 0, 6, 0], [0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 0, 0, 4, 0, 1, 0, 4, 1, 0, 1], [0, 1, 0, 4, 1, 1, 1, 4, 1, 0, 1], [1, 1, 1, 4, 1, 0, 1, 4, 0, 1, 0]], "output": [[0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0], [0, 3, 0, 4, 0, 2, 0, 4, 0, 6, 0], [0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [3, 0, 0, 4, 0, 2, 0, 4, 6, 0, 6], [0, 3, 0, 4, 2, 2, 2, 4, 6, 0, 6], [3, 3, 3, 4, 2, 0, 2, 4, 0, 6, 0]]}, {"input": [[0, 0, 0, 4, 1, 0, 0], [0, 7, 0, 4, 0, 1, 1], [0, 0, 0, 4, 0, 1, 0], [4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 4, 1, 1, 0], [0, 3, 0, 4, 0, 1, 0], [0, 0, 0, 4, 1, 1, 1], [4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 4, 1, 1, 0], [0, 8, 0, 4, 0, 1, 1], [0, 0, 0, 4, 1, 0, 1]], "output": [[0, 0, 0, 4, 7, 0, 0], [0, 7, 0, 4, 0, 7, 7], [0, 0, 0, 4, 0, 7, 0], [4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 4, 3, 3, 0], [0, 3, 0, 4, 0, 3, 0], [0, 0, 0, 4, 3, 3, 3], [4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 4, 8, 8, 0], [0, 8, 0, 4, 0, 8, 8], [0, 0, 0, 4, 8, 0, 8]]}], "test": [{"input": [[1, 0, 0, 4, 0, 0, 0], [0, 1, 0, 4, 0, 6, 0], [1, 1, 0, 4, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4], [0, 0, 1, 4, 0, 0, 0], [0, 1, 1, 4, 0, 2, 0], [1, 0, 0, 4, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4], [1, 1, 0, 4, 0, 0, 0], [0, 1, 0, 4, 0, 8, 0], [1, 1, 1, 4, 0, 0, 0]], "output": [[6, 0, 0, 4, 0, 0, 0], [0, 6, 0, 4, 0, 6, 0], [6, 6, 0, 4, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4], [0, 0, 2, 4, 0, 0, 0], [0, 2, 2, 4, 0, 2, 0], [2, 0, 0, 4, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4], [8, 8, 0, 4, 0, 0, 0], [0, 8, 0, 4, 0, 8, 0], [8, 8, 8, 4, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/f0afb749.json b/data/arc-agi/evaluation/f0afb749.json
deleted file mode 100644
index 8188794..0000000
--- a/data/arc-agi/evaluation/f0afb749.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 5, 0], [0, 5, 0, 0, 0], [0, 0, 0, 0, 0], [0, 5, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[1, 0, 0, 0, 0, 0, 5, 5, 0, 0], [0, 1, 0, 0, 0, 0, 5, 5, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 1, 0], [0, 0, 5, 5, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 1, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 1]]}, {"input": [[2, 0], [0, 0]], "output": [[2, 2, 0, 0], [2, 2, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]]}, {"input": [[0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0]]}], "test": [{"input": [[0, 4, 0], [0, 0, 0], [4, 0, 0]], "output": [[0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1], [4, 4, 0, 0, 0, 0], [4, 4, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/f0df5ff0.json b/data/arc-agi/evaluation/f0df5ff0.json
deleted file mode 100644
index 7994b68..0000000
--- a/data/arc-agi/evaluation/f0df5ff0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 0, 0, 0, 0, 0, 0, 9, 2, 3, 0, 2, 3, 3, 0], [2, 2, 2, 3, 0, 0, 3, 5, 7, 0, 0, 0, 2, 7, 0], [0, 3, 2, 2, 0, 0, 0, 7, 0, 5, 0, 0, 0, 5, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 9, 0, 0, 2, 9, 2], [8, 0, 0, 3, 0, 0, 1, 2, 8, 2, 0, 0, 0, 0, 0], [3, 0, 0, 3, 2, 0, 0, 0, 7, 0, 2, 0, 3, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 5, 6, 0, 2, 0, 0], [0, 1, 0, 2, 3, 6, 0, 0, 2, 3, 0, 2, 0, 6, 0], [0, 2, 8, 0, 3, 0, 0, 0, 6, 0, 7, 0, 0, 3, 0], [0, 2, 3, 0, 8, 0, 0, 3, 0, 1, 0, 0, 6, 0, 0], [7, 0, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 6, 7, 0], [0, 0, 2, 0, 5, 2, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 9, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 3, 0, 0], [0, 0, 2, 0, 2, 3, 3, 0, 0, 0, 1, 0, 0, 6, 2], [0, 2, 9, 0, 0, 5, 2, 3, 0, 0, 0, 0, 2, 0, 0]], "output": [[3, 0, 0, 0, 0, 0, 0, 9, 2, 3, 0, 2, 3, 3, 0], [2, 2, 2, 3, 0, 0, 3, 5, 7, 0, 0, 0, 2, 7, 0], [0, 3, 2, 2, 0, 0, 0, 7, 0, 5, 0, 0, 0, 5, 0], [0, 0, 0, 0, 2, 1, 1, 1, 0, 9, 0, 0, 2, 9, 2], [8, 0, 0, 3, 0, 1, 1, 2, 8, 2, 0, 0, 0, 0, 0], [3, 0, 0, 3, 2, 1, 1, 1, 7, 0, 2, 0, 3, 0, 0], [1, 1, 3, 0, 0, 0, 3, 0, 0, 5, 6, 0, 2, 0, 0], [1, 1, 1, 2, 3, 6, 0, 0, 2, 3, 0, 2, 0, 6, 0], [1, 2, 8, 0, 3, 0, 0, 0, 6, 1, 7, 0, 0, 3, 0], [0, 2, 3, 0, 8, 0, 0, 3, 1, 1, 1, 0, 6, 0, 0], [7, 0, 3, 0, 0, 2, 0, 0, 1, 1, 1, 0, 6, 7, 0], [0, 0, 2, 0, 5, 2, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 9, 0, 2, 0, 0, 0, 0, 0, 2, 1, 1, 3, 0, 0], [0, 0, 2, 0, 2, 3, 3, 0, 0, 1, 1, 1, 0, 6, 2], [0, 2, 9, 0, 0, 5, 2, 3, 0, 1, 1, 1, 2, 0, 0]]}, {"input": [[0, 0, 6, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 6, 0, 4, 0, 0], [6, 3, 0, 1, 0, 4, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 4, 0, 6, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0], [6, 0, 3, 0, 0, 0, 0, 0, 0, 3, 2, 2, 0, 0, 4], [4, 2, 0, 2, 0, 2, 0, 0, 0, 0, 6, 0, 0, 6, 0], [0, 0, 0, 0, 2, 6, 0, 6, 0, 0, 4, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 4, 0, 0, 0, 4, 6, 0, 0, 0], [0, 0, 0, 6, 0, 6, 0, 0, 3, 3, 4, 0, 6, 6, 0], [4, 6, 0, 3, 1, 3, 0, 0, 4, 0, 0, 2, 6, 0, 0], [0, 0, 3, 2, 0, 4, 0, 6, 0, 0, 4, 3, 6, 0, 0], [0, 4, 0, 0, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 3, 0, 3, 0, 0, 2, 2, 0], [6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 4, 3], [0, 0, 0, 0, 0, 3, 4, 0, 0, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 6, 2, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 4], [0, 0, 1, 1, 1, 2, 0, 0, 0, 2, 6, 0, 4, 0, 0], [6, 3, 1, 1, 1, 4, 1, 1, 1, 0, 0, 6, 0, 0, 0], [0, 0, 4, 1, 6, 0, 1, 1, 1, 0, 0, 0, 3, 0, 0], [6, 0, 3, 0, 0, 0, 1, 1, 1, 3, 2, 2, 0, 0, 4], [4, 2, 0, 2, 0, 2, 0, 0, 0, 0, 6, 0, 0, 6, 0], [0, 0, 0, 0, 2, 6, 0, 6, 0, 0, 4, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 4, 0, 0, 0, 4, 6, 0, 0, 0], [0, 0, 0, 6, 1, 6, 0, 0, 3, 3, 4, 0, 6, 6, 0], [4, 6, 0, 3, 1, 3, 0, 0, 4, 0, 0, 2, 6, 0, 0], [0, 0, 3, 2, 1, 4, 0, 6, 0, 0, 4, 3, 6, 0, 0], [0, 4, 1, 1, 1, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 3, 0, 3, 1, 1, 2, 2, 0], [6, 0, 1, 1, 1, 0, 2, 0, 0, 1, 1, 1, 0, 4, 3], [0, 0, 0, 0, 0, 3, 4, 0, 0, 2, 1, 1, 0, 0, 0]]}, {"input": [[3, 9, 0, 0, 0, 0, 0, 0, 0, 8, 3, 9, 3, 0, 8], [0, 0, 0, 4, 0, 4, 0, 0, 3, 0, 2, 7, 7, 0, 2], [0, 3, 3, 0, 9, 0, 9, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 9, 0, 4, 0, 3, 0, 3, 3, 0, 1, 0], [0, 1, 0, 0, 8, 8, 0, 3, 0, 2, 9, 3, 0, 0, 0], [0, 9, 0, 8, 0, 0, 0, 0, 3, 0, 0, 7, 0, 0, 3], [0, 0, 7, 2, 2, 4, 7, 0, 9, 0, 0, 0, 0, 0, 8], [0, 4, 0, 0, 7, 0, 0, 0, 8, 0, 3, 3, 2, 7, 0], [0, 3, 3, 0, 2, 0, 1, 0, 2, 3, 3, 0, 0, 0, 4], [0, 0, 0, 3, 0, 8, 0, 0, 0, 7, 0, 3, 0, 1, 0], [0, 8, 0, 0, 3, 0, 9, 9, 0, 0, 7, 3, 9, 0, 0], [4, 4, 3, 0, 3, 0, 7, 8, 0, 4, 0, 7, 3, 0, 9], [7, 0, 1, 3, 3, 0, 7, 0, 1, 7, 0, 0, 4, 0, 9], [3, 0, 0, 0, 7, 8, 8, 0, 0, 8, 0, 9, 0, 0, 0], [0, 0, 7, 0, 0, 9, 8, 0, 0, 4, 8, 3, 0, 0, 0]], "output": [[3, 9, 0, 0, 0, 0, 0, 0, 0, 8, 3, 9, 3, 0, 8], [0, 0, 0, 4, 0, 4, 0, 0, 3, 0, 2, 7, 7, 0, 2], [0, 3, 3, 0, 9, 0, 9, 0, 0, 0, 0, 2, 1, 1, 1], [1, 1, 1, 0, 9, 0, 4, 0, 3, 0, 3, 3, 1, 1, 1], [1, 1, 1, 0, 8, 8, 0, 3, 0, 2, 9, 3, 1, 1, 1], [1, 9, 1, 8, 0, 0, 0, 0, 3, 0, 0, 7, 0, 0, 3], [0, 0, 7, 2, 2, 4, 7, 0, 9, 0, 0, 0, 0, 0, 8], [0, 4, 0, 0, 7, 1, 1, 1, 8, 0, 3, 3, 2, 7, 0], [0, 3, 3, 0, 2, 1, 1, 1, 2, 3, 3, 0, 1, 1, 4], [0, 0, 0, 3, 0, 8, 1, 1, 0, 7, 0, 3, 1, 1, 1], [0, 8, 0, 0, 3, 0, 9, 9, 0, 0, 7, 3, 9, 1, 1], [4, 4, 3, 1, 3, 0, 7, 8, 1, 4, 0, 7, 3, 0, 9], [7, 1, 1, 3, 3, 0, 7, 1, 1, 7, 0, 0, 4, 0, 9], [3, 1, 1, 1, 7, 8, 8, 1, 1, 8, 0, 9, 0, 0, 0], [0, 0, 7, 0, 0, 9, 8, 0, 0, 4, 8, 3, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 7, 0, 0, 6, 0, 7, 0, 0, 0, 0, 0, 3], [2, 0, 4, 0, 3, 7, 0, 0, 7, 0, 7, 0, 0, 0, 8], [0, 0, 0, 7, 8, 0, 6, 2, 7, 0, 1, 0, 2, 7, 2], [0, 1, 0, 0, 2, 0, 0, 2, 6, 0, 0, 0, 0, 7, 8], [6, 0, 0, 6, 0, 1, 0, 0, 0, 2, 0, 0, 8, 6, 4], [0, 0, 4, 6, 6, 0, 0, 4, 8, 0, 0, 8, 0, 8, 7], [8, 7, 6, 0, 0, 0, 0, 7, 7, 4, 4, 8, 0, 0, 7], [3, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 7, 0, 8, 0], [0, 0, 8, 6, 8, 6, 7, 6, 1, 6, 6, 0, 4, 0, 7], [0, 8, 7, 0, 7, 8, 0, 7, 0, 8, 0, 0, 8, 0, 4], [4, 4, 0, 0, 0, 3, 0, 0, 2, 0, 0, 3, 8, 4, 8], [0, 0, 8, 0, 1, 0, 8, 3, 7, 6, 7, 8, 0, 8, 7], [0, 0, 0, 0, 8, 0, 0, 6, 0, 3, 0, 0, 3, 0, 0], [0, 6, 0, 0, 0, 0, 6, 3, 1, 0, 3, 0, 0, 1, 3], [4, 6, 0, 0, 0, 0, 8, 0, 0, 0, 2, 2, 0, 0, 6]], "output": [[0, 0, 0, 7, 0, 0, 6, 0, 7, 0, 0, 0, 0, 0, 3], [2, 0, 4, 0, 3, 7, 0, 0, 7, 1, 7, 1, 0, 0, 8], [1, 1, 1, 7, 8, 0, 6, 2, 7, 1, 1, 1, 2, 7, 2], [1, 1, 1, 0, 2, 1, 1, 2, 6, 1, 1, 1, 0, 7, 8], [6, 1, 1, 6, 1, 1, 1, 0, 0, 2, 0, 0, 8, 6, 4], [0, 0, 4, 6, 6, 1, 1, 4, 8, 0, 0, 8, 0, 8, 7], [8, 7, 6, 1, 1, 0, 0, 7, 7, 4, 4, 8, 0, 0, 7], [3, 0, 1, 1, 1, 0, 3, 1, 1, 1, 0, 7, 0, 8, 0], [0, 0, 8, 6, 8, 6, 7, 6, 1, 6, 6, 0, 4, 0, 7], [0, 8, 7, 0, 7, 8, 0, 7, 1, 8, 0, 0, 8, 0, 4], [4, 4, 0, 1, 1, 3, 0, 0, 2, 0, 0, 3, 8, 4, 8], [0, 0, 8, 1, 1, 1, 8, 3, 7, 6, 7, 8, 0, 8, 7], [0, 0, 0, 1, 8, 1, 0, 6, 1, 3, 0, 0, 3, 1, 1], [0, 6, 0, 0, 0, 0, 6, 3, 1, 1, 3, 0, 1, 1, 3], [4, 6, 0, 0, 0, 0, 8, 1, 1, 1, 2, 2, 1, 1, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/f21745ec.json b/data/arc-agi/evaluation/f21745ec.json
deleted file mode 100644
index 7459cc3..0000000
--- a/data/arc-agi/evaluation/f21745ec.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6], [0, 8, 0, 8, 8, 0, 0, 0, 8, 0, 0, 6, 0, 0, 0, 0, 0, 0, 6], [0, 8, 8, 8, 0, 8, 8, 0, 8, 0, 0, 6, 0, 0, 0, 0, 0, 0, 6], [0, 8, 0, 0, 8, 8, 0, 8, 8, 0, 0, 6, 0, 0, 0, 0, 0, 0, 6], [0, 8, 0, 0, 0, 0, 8, 0, 8, 0, 0, 6, 0, 0, 0, 0, 0, 0, 6], [0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 6, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 5, 5, 5, 5, 5, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 5, 0, 0, 0, 5, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 5, 0, 0, 0, 5, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 5, 0, 0, 0, 5, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 5, 5, 5, 5, 5, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6], [0, 8, 0, 8, 8, 0, 0, 0, 8, 0, 0, 6, 0, 0, 0, 0, 0, 6, 6], [0, 8, 8, 8, 0, 8, 8, 0, 8, 0, 0, 6, 0, 6, 6, 0, 0, 0, 6], [0, 8, 0, 0, 8, 8, 0, 8, 8, 0, 0, 6, 6, 6, 0, 6, 6, 0, 6], [0, 8, 0, 0, 0, 0, 8, 0, 8, 0, 0, 6, 0, 0, 6, 6, 0, 6, 6], [0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 6, 0, 0, 0, 0, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 4, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 2, 0, 0, 0, 2], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2], [0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 3, 0, 0, 0, 0, 2, 0, 2, 0, 2], [0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 3, 0, 0, 0, 0, 2, 2, 2, 0, 2], [0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 3, 0, 0, 0, 0, 2, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 2, 2, 0, 0, 2], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2], [0, 4, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 4, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 7, 0, 7, 7, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 0, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0], [0, 7, 0, 7, 7, 7, 0, 0, 7, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0], [0, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 6, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 6, 6, 6, 6, 6, 6, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 5, 5, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 5, 5, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0], [0, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 7, 0, 7, 7, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 0, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 7, 7, 7, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/f3b10344.json b/data/arc-agi/evaluation/f3b10344.json
deleted file mode 100644
index 2f7f898..0000000
--- a/data/arc-agi/evaluation/f3b10344.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 8, 8, 8, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 8, 8, 8, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 8, 8, 8, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 8, 8, 8, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 8, 8, 8, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 6, 6, 6, 0, 0, 0], [4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 6, 6, 6, 0, 0, 0], [4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 6, 6, 6, 0, 0, 0], [4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 8, 8, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 8, 8, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 6, 6, 6, 0, 0, 0], [4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 8, 8, 6, 6, 6, 0, 0, 0], [4, 4, 4, 8, 8, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 8, 8, 6, 6, 6, 0, 0, 0], [4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 8, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 0, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 8, 8, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 8, 8, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 8, 8, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 3, 3, 3, 3, 3, 3, 8, 8, 3, 3, 3, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 8, 8, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/f3cdc58f.json b/data/arc-agi/evaluation/f3cdc58f.json
deleted file mode 100644
index 1051e14..0000000
--- a/data/arc-agi/evaluation/f3cdc58f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [2, 0, 0, 0, 0, 3, 0, 1, 4, 1], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [1, 4, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 2, 0, 0, 0, 2, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 4, 0, 4, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 1, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 4, 0, 0, 0, 0, 0, 0], [1, 0, 0, 4, 0, 0, 0, 0, 0, 0], [1, 2, 0, 4, 0, 0, 0, 0, 0, 0], [1, 2, 0, 4, 0, 0, 0, 0, 0, 0], [1, 2, 3, 4, 0, 0, 0, 0, 0, 0], [1, 2, 3, 4, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 4, 0, 3, 3, 0], [0, 1, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 0, 4], [3, 0, 0, 0, 2, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0], [0, 3, 0, 0, 0, 4, 3, 2, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 3, 0], [0, 0, 4, 0, 0, 4, 0, 1, 0, 1]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [1, 0, 3, 0, 0, 0, 0, 0, 0, 0], [1, 0, 3, 0, 0, 0, 0, 0, 0, 0], [1, 2, 3, 4, 0, 0, 0, 0, 0, 0], [1, 2, 3, 4, 0, 0, 0, 0, 0, 0], [1, 2, 3, 4, 0, 0, 0, 0, 0, 0], [1, 2, 3, 4, 0, 0, 0, 0, 0, 0], [1, 2, 3, 4, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 3, 0], [0, 1, 0, 0, 2, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 3, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 4, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 2, 3, 4, 0, 0, 0, 0, 0, 0], [1, 2, 3, 4, 0, 0, 0, 0, 0, 0], [1, 2, 3, 4, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 3, 0, 0, 2, 4, 0, 0, 0], [0, 3, 0, 2, 0, 0, 0, 0, 0, 3], [4, 0, 0, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 1, 0, 0, 0, 2, 0, 0], [3, 0, 1, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 1, 0, 0, 3], [0, 0, 0, 0, 2, 4, 0, 2, 4, 2]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 2, 3, 0, 0, 0, 0, 0, 0, 0], [1, 2, 3, 0, 0, 0, 0, 0, 0, 0], [1, 2, 3, 0, 0, 0, 0, 0, 0, 0], [1, 2, 3, 4, 0, 0, 0, 0, 0, 0], [1, 2, 3, 4, 0, 0, 0, 0, 0, 0], [1, 2, 3, 4, 0, 0, 0, 0, 0, 0], [1, 2, 3, 4, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/f3e62deb.json b/data/arc-agi/evaluation/f3e62deb.json
deleted file mode 100644
index d691601..0000000
--- a/data/arc-agi/evaluation/f3e62deb.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 8, 0, 8], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 8, 0, 8], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 6, 0, 6, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 6, 0, 6, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 0, 0, 0, 0, 0], [0, 0, 6, 0, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 6, 6, 6, 0, 0, 0, 0, 0], [0, 0, 6, 0, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 8, 0, 8], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 0, 4, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 0, 4, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [3, 0, 3, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/f4081712.json b/data/arc-agi/evaluation/f4081712.json
deleted file mode 100644
index 1305cf2..0000000
--- a/data/arc-agi/evaluation/f4081712.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[9, 9, 9, 7, 7, 9, 2, 5, 8, 2, 8, 5, 5, 8, 2, 8, 5, 2, 9, 7, 7, 9, 9, 9], [9, 9, 7, 4, 9, 4, 5, 2, 5, 2, 5, 5, 5, 5, 2, 5, 2, 5, 4, 9, 4, 7, 9, 9], [9, 7, 7, 7, 4, 7, 8, 5, 2, 8, 8, 2, 2, 8, 8, 2, 5, 8, 7, 4, 7, 7, 7, 9], [7, 4, 7, 4, 9, 9, 2, 2, 8, 5, 5, 5, 5, 5, 5, 8, 2, 2, 9, 9, 4, 7, 4, 7], [7, 9, 4, 9, 4, 7, 8, 5, 8, 5, 5, 3, 3, 3, 3, 8, 5, 8, 7, 4, 9, 4, 9, 7], [9, 4, 7, 9, 7, 9, 5, 5, 2, 5, 8, 3, 3, 3, 3, 2, 5, 5, 9, 7, 9, 7, 4, 9], [2, 5, 8, 2, 8, 5, 2, 1, 6, 6, 2, 3, 3, 3, 3, 6, 1, 2, 5, 8, 2, 8, 5, 2], [5, 2, 5, 2, 5, 5, 1, 1, 6, 6, 6, 3, 3, 3, 3, 6, 1, 1, 5, 5, 2, 5, 2, 5], [8, 5, 2, 8, 8, 2, 6, 6, 1, 2, 1, 3, 3, 3, 3, 1, 6, 6, 2, 8, 8, 2, 5, 8], [2, 2, 8, 5, 5, 5, 6, 6, 2, 1, 6, 3, 3, 3, 3, 2, 6, 6, 5, 5, 5, 8, 2, 2], [8, 5, 8, 5, 5, 8, 2, 6, 1, 6, 1, 6, 6, 1, 6, 1, 6, 2, 8, 5, 5, 8, 5, 8], [5, 5, 2, 5, 8, 8, 6, 2, 6, 6, 6, 1, 1, 6, 6, 6, 2, 6, 8, 8, 5, 2, 5, 5], [5, 5, 2, 5, 8, 8, 6, 2, 6, 6, 6, 1, 1, 6, 6, 6, 2, 6, 8, 8, 5, 2, 5, 5], [8, 5, 8, 5, 5, 8, 2, 6, 1, 6, 1, 6, 6, 1, 6, 1, 6, 2, 8, 5, 5, 8, 5, 8], [2, 2, 8, 5, 5, 5, 6, 6, 2, 1, 6, 6, 6, 6, 1, 2, 6, 6, 5, 5, 5, 8, 2, 2], [8, 5, 2, 8, 8, 2, 6, 6, 1, 2, 1, 6, 6, 1, 2, 1, 6, 6, 2, 8, 8, 2, 5, 8], [5, 2, 5, 2, 5, 5, 1, 1, 6, 6, 6, 2, 2, 6, 6, 6, 1, 1, 5, 5, 2, 5, 2, 5], [2, 5, 8, 2, 8, 5, 2, 1, 6, 6, 2, 6, 6, 2, 6, 6, 1, 2, 5, 8, 2, 8, 5, 2], [9, 4, 7, 9, 7, 9, 5, 5, 2, 5, 8, 8, 8, 8, 5, 2, 5, 5, 9, 7, 9, 7, 4, 9], [7, 9, 4, 9, 4, 7, 8, 5, 8, 5, 5, 8, 8, 5, 5, 8, 5, 8, 7, 4, 9, 4, 9, 7], [7, 4, 7, 4, 9, 9, 2, 2, 8, 5, 5, 5, 5, 5, 5, 8, 2, 2, 9, 9, 4, 7, 4, 7], [9, 7, 7, 7, 4, 7, 8, 5, 2, 8, 8, 2, 2, 8, 8, 2, 5, 8, 7, 4, 7, 7, 7, 9], [9, 9, 7, 4, 9, 4, 5, 2, 5, 2, 5, 5, 5, 5, 2, 5, 2, 5, 4, 9, 4, 7, 9, 9], [9, 9, 9, 7, 7, 9, 2, 5, 8, 2, 8, 5, 5, 8, 2, 8, 5, 2, 9, 7, 7, 9, 9, 9]], "output": [[8, 8, 5, 5], [8, 8, 8, 5], [6, 6, 2, 6], [2, 2, 6, 6], [6, 6, 1, 2], [6, 6, 6, 1]]}], "train": [{"input": [[1, 7, 8, 7, 1, 8, 4, 7, 7, 7, 4, 1, 1, 4, 7, 7, 7, 4, 8, 1, 7, 8, 7, 1], [7, 7, 7, 7, 1, 1, 7, 4, 7, 1, 7, 4, 4, 7, 1, 7, 4, 7, 1, 1, 7, 7, 7, 7], [8, 7, 1, 7, 8, 1, 7, 7, 7, 1, 7, 7, 7, 7, 1, 7, 7, 7, 1, 8, 7, 1, 7, 8], [7, 7, 7, 1, 7, 1, 7, 1, 1, 4, 4, 4, 4, 4, 4, 1, 1, 7, 1, 7, 1, 7, 7, 7], [1, 1, 8, 7, 7, 8, 4, 7, 7, 4, 1, 1, 1, 1, 4, 7, 7, 4, 8, 7, 7, 8, 1, 1], [8, 1, 1, 1, 8, 7, 1, 4, 7, 4, 1, 1, 1, 1, 4, 7, 4, 1, 7, 8, 1, 1, 1, 8], [4, 7, 7, 7, 4, 1, 5, 5, 5, 5, 1, 4, 4, 1, 5, 5, 5, 5, 1, 4, 7, 7, 7, 4], [7, 4, 7, 1, 7, 4, 5, 4, 5, 4, 4, 1, 1, 4, 4, 5, 4, 5, 4, 7, 1, 7, 4, 7], [7, 7, 7, 1, 7, 7, 5, 5, 1, 4, 1, 5, 5, 1, 4, 1, 5, 5, 7, 7, 1, 7, 7, 7], [7, 1, 1, 4, 4, 4, 5, 4, 4, 5, 5, 5, 5, 5, 5, 4, 4, 5, 4, 4, 4, 1, 1, 7], [4, 7, 7, 4, 1, 1, 1, 4, 1, 5, 5, 4, 4, 5, 5, 1, 4, 1, 1, 1, 4, 7, 7, 4], [1, 4, 7, 4, 1, 1, 4, 1, 5, 5, 4, 5, 5, 4, 5, 5, 1, 4, 1, 1, 4, 7, 4, 1], [1, 4, 7, 4, 1, 1, 4, 1, 5, 5, 4, 5, 5, 4, 5, 5, 1, 4, 1, 1, 4, 7, 4, 1], [4, 7, 7, 4, 1, 1, 1, 4, 1, 5, 5, 4, 4, 5, 5, 1, 4, 1, 1, 1, 4, 7, 7, 4], [7, 1, 1, 4, 4, 4, 5, 4, 4, 5, 5, 5, 5, 5, 5, 4, 4, 5, 4, 4, 4, 1, 1, 7], [7, 7, 7, 1, 7, 7, 5, 5, 1, 4, 1, 5, 5, 1, 4, 1, 5, 5, 7, 7, 1, 7, 7, 7], [7, 4, 7, 1, 7, 4, 5, 4, 5, 4, 4, 1, 1, 4, 4, 5, 4, 5, 4, 7, 1, 7, 4, 7], [4, 7, 7, 7, 4, 1, 3, 3, 3, 5, 1, 4, 4, 1, 5, 5, 5, 5, 1, 4, 7, 7, 7, 4], [8, 1, 1, 1, 8, 7, 3, 3, 3, 4, 1, 1, 1, 1, 4, 7, 4, 1, 7, 8, 1, 1, 1, 8], [1, 1, 8, 7, 7, 8, 3, 3, 3, 4, 1, 1, 1, 1, 4, 7, 7, 4, 8, 7, 7, 8, 1, 1], [7, 7, 7, 1, 7, 1, 7, 1, 1, 4, 4, 4, 4, 4, 4, 1, 1, 7, 1, 7, 1, 7, 7, 7], [8, 7, 1, 7, 8, 1, 7, 7, 7, 1, 7, 7, 7, 7, 1, 7, 7, 7, 1, 8, 7, 1, 7, 8], [7, 7, 7, 7, 1, 1, 7, 4, 7, 1, 7, 4, 4, 7, 1, 7, 4, 7, 1, 1, 7, 7, 7, 7], [1, 7, 8, 7, 1, 8, 4, 7, 7, 7, 4, 1, 1, 4, 7, 7, 7, 4, 8, 1, 7, 8, 7, 1]], "output": [[5, 5, 5], [1, 4, 7], [4, 7, 7]]}, {"input": [[1, 7, 7, 7, 1, 1, 2, 9, 9, 5, 2, 9, 9, 2, 5, 9, 9, 2, 1, 1, 7, 7, 7, 1], [7, 2, 7, 1, 1, 2, 9, 9, 5, 5, 2, 2, 2, 2, 5, 5, 9, 9, 2, 1, 1, 7, 2, 7], [7, 7, 7, 7, 7, 1, 9, 5, 5, 5, 2, 9, 9, 2, 5, 5, 5, 9, 1, 7, 7, 7, 7, 7], [7, 1, 7, 1, 7, 2, 5, 5, 5, 2, 9, 9, 9, 9, 2, 5, 5, 5, 2, 7, 1, 7, 1, 7], [1, 1, 7, 7, 7, 7, 2, 2, 2, 9, 5, 9, 9, 5, 9, 2, 2, 2, 7, 7, 7, 7, 1, 1], [1, 2, 1, 2, 7, 1, 9, 2, 9, 9, 9, 5, 5, 9, 9, 9, 2, 9, 1, 7, 2, 1, 2, 1], [2, 9, 9, 5, 2, 9, 7, 9, 9, 7, 9, 9, 9, 9, 7, 9, 9, 7, 9, 2, 5, 9, 9, 2], [9, 9, 5, 5, 2, 2, 9, 4, 7, 9, 4, 7, 7, 4, 9, 7, 4, 9, 2, 2, 5, 5, 9, 9], [9, 5, 5, 5, 2, 9, 9, 7, 9, 7, 4, 7, 7, 4, 7, 9, 7, 9, 9, 2, 5, 5, 5, 9], [5, 5, 5, 2, 9, 9, 7, 9, 7, 9, 9, 4, 4, 9, 9, 7, 9, 7, 9, 9, 2, 5, 5, 5], [2, 2, 2, 9, 5, 9, 9, 3, 3, 3, 3, 3, 3, 9, 9, 4, 4, 9, 9, 5, 9, 2, 2, 2], [9, 2, 9, 9, 9, 5, 9, 3, 3, 3, 3, 3, 3, 7, 4, 7, 7, 9, 5, 9, 9, 9, 2, 9], [9, 2, 9, 9, 9, 5, 9, 7, 7, 4, 7, 4, 4, 7, 4, 7, 7, 9, 5, 9, 9, 9, 2, 9], [2, 2, 2, 9, 5, 9, 9, 4, 4, 9, 9, 7, 7, 9, 9, 4, 4, 9, 9, 5, 9, 2, 2, 2], [5, 5, 5, 2, 9, 9, 7, 9, 7, 9, 9, 4, 4, 9, 9, 7, 9, 7, 9, 9, 2, 5, 5, 5], [9, 5, 5, 5, 2, 9, 9, 7, 9, 7, 4, 7, 7, 4, 7, 9, 7, 9, 9, 2, 5, 5, 5, 9], [9, 9, 5, 5, 2, 2, 9, 4, 7, 9, 4, 7, 7, 4, 9, 7, 4, 9, 2, 2, 5, 5, 9, 9], [2, 9, 9, 5, 2, 9, 7, 9, 9, 7, 9, 9, 9, 9, 7, 9, 9, 7, 9, 2, 5, 9, 9, 2], [1, 2, 1, 2, 7, 1, 9, 2, 9, 9, 9, 5, 5, 9, 9, 9, 2, 9, 1, 7, 2, 1, 2, 1], [1, 1, 7, 7, 7, 7, 2, 2, 2, 9, 5, 9, 9, 5, 9, 2, 2, 2, 7, 7, 7, 7, 1, 1], [7, 1, 7, 1, 7, 2, 5, 5, 5, 2, 9, 9, 9, 9, 2, 5, 5, 5, 2, 7, 1, 7, 1, 7], [7, 7, 7, 7, 7, 1, 9, 5, 5, 5, 2, 9, 9, 2, 5, 5, 5, 9, 1, 7, 7, 7, 7, 7], [7, 2, 7, 1, 1, 2, 9, 9, 5, 5, 2, 2, 2, 2, 5, 5, 9, 9, 2, 1, 1, 7, 2, 7], [1, 7, 7, 7, 1, 1, 2, 9, 9, 5, 2, 9, 9, 2, 5, 9, 9, 2, 1, 1, 7, 7, 7, 1]], "output": [[4, 4, 9, 9, 7, 7], [7, 7, 4, 7, 4, 4]]}, {"input": [[7, 7, 8, 3, 3, 3, 3, 3, 3, 3, 3, 7, 7, 2, 2, 2, 2, 7, 7, 7, 8, 8, 7, 7], [7, 1, 8, 3, 3, 3, 3, 3, 3, 3, 3, 7, 7, 1, 1, 7, 2, 2, 7, 1, 1, 8, 1, 7], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 7, 7, 7, 1, 1, 7, 2, 1, 8, 7, 8, 8, 8], [8, 1, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 7, 7, 1, 1, 1, 2, 8, 7, 8, 7, 1, 8], [7, 1, 8, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 7, 7, 7, 1, 2, 8, 8, 7, 8, 1, 7], [7, 7, 1, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 7, 7, 7, 7, 8, 8, 8, 1, 7, 7], [7, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 8, 8, 8, 8, 8, 7, 2, 2, 2, 2, 7], [2, 2, 7, 1, 1, 7, 8, 1, 9, 1, 9, 9, 9, 9, 1, 9, 1, 8, 7, 1, 1, 7, 2, 2], [2, 7, 1, 1, 7, 7, 8, 9, 8, 8, 9, 1, 1, 9, 8, 8, 9, 8, 7, 7, 1, 1, 7, 2], [2, 1, 1, 1, 7, 7, 8, 1, 8, 1, 9, 9, 9, 9, 1, 8, 1, 8, 7, 7, 1, 1, 1, 2], [2, 1, 7, 7, 7, 2, 8, 9, 9, 9, 8, 9, 9, 8, 9, 9, 9, 8, 2, 7, 7, 7, 1, 2], [7, 7, 7, 7, 2, 2, 1, 9, 1, 9, 9, 9, 9, 9, 9, 1, 9, 1, 2, 2, 7, 7, 7, 7], [7, 7, 7, 7, 2, 2, 1, 9, 1, 9, 9, 9, 9, 9, 9, 1, 9, 1, 2, 2, 7, 7, 7, 7], [2, 1, 7, 7, 7, 2, 8, 9, 9, 9, 8, 9, 9, 8, 9, 9, 9, 8, 2, 7, 7, 7, 1, 2], [2, 1, 1, 1, 7, 7, 8, 1, 8, 1, 9, 9, 9, 9, 1, 8, 1, 8, 7, 7, 1, 1, 1, 2], [2, 7, 1, 1, 7, 7, 8, 9, 8, 8, 9, 1, 1, 9, 8, 8, 9, 8, 7, 7, 1, 1, 7, 2], [2, 2, 7, 1, 1, 7, 8, 1, 9, 1, 9, 9, 9, 9, 1, 9, 1, 8, 7, 1, 1, 7, 2, 2], [7, 2, 2, 2, 2, 7, 8, 8, 8, 8, 8, 1, 1, 8, 8, 8, 8, 8, 7, 2, 2, 2, 2, 7], [7, 7, 1, 8, 8, 8, 7, 7, 7, 7, 2, 2, 2, 2, 7, 7, 7, 7, 8, 8, 8, 1, 7, 7], [7, 1, 8, 7, 8, 8, 2, 1, 7, 7, 7, 2, 2, 7, 7, 7, 1, 2, 8, 8, 7, 8, 1, 7], [8, 1, 7, 8, 7, 8, 2, 1, 1, 1, 7, 7, 7, 7, 1, 1, 1, 2, 8, 7, 8, 7, 1, 8], [8, 8, 8, 7, 8, 1, 2, 7, 1, 1, 7, 7, 7, 7, 1, 1, 7, 2, 1, 8, 7, 8, 8, 8], [7, 1, 8, 1, 1, 7, 2, 2, 7, 1, 1, 7, 7, 1, 1, 7, 2, 2, 7, 1, 1, 8, 1, 7], [7, 7, 8, 8, 7, 7, 7, 2, 2, 2, 2, 7, 7, 2, 2, 2, 2, 7, 7, 7, 8, 8, 7, 7]], "output": [[8, 7, 7, 7, 2, 2, 2, 2], [1, 1, 7, 2, 2, 7, 1, 1], [7, 8, 1, 2, 7, 1, 1, 7], [8, 7, 8, 2, 1, 1, 1, 7], [7, 8, 8, 2, 1, 7, 7, 7], [8, 8, 8, 7, 7, 7, 7, 2], [2, 2, 7, 8, 8, 8, 8, 8]]}, {"input": [[2, 9, 9, 2, 4, 9, 6, 4, 6, 1, 4, 1, 1, 4, 1, 6, 4, 6, 9, 4, 2, 9, 9, 2], [9, 9, 4, 9, 4, 9, 4, 6, 1, 1, 6, 1, 1, 6, 1, 1, 6, 4, 9, 4, 9, 4, 9, 9], [9, 4, 2, 2, 9, 2, 6, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 6, 2, 9, 2, 2, 4, 9], [2, 9, 2, 4, 4, 4, 1, 1, 1, 6, 4, 6, 6, 4, 6, 1, 1, 1, 4, 4, 4, 2, 9, 2], [4, 4, 9, 4, 4, 4, 4, 6, 1, 4, 6, 6, 6, 6, 4, 1, 6, 4, 4, 4, 4, 9, 4, 4], [9, 9, 2, 4, 4, 9, 1, 1, 6, 6, 6, 4, 4, 6, 6, 6, 1, 1, 9, 4, 4, 2, 9, 9], [6, 4, 6, 1, 4, 1, 2, 4, 9, 2, 9, 2, 2, 9, 2, 9, 4, 2, 1, 4, 1, 6, 4, 6], [4, 6, 1, 1, 6, 1, 4, 4, 9, 2, 2, 4, 4, 2, 2, 9, 4, 4, 1, 6, 1, 1, 6, 4], [6, 1, 1, 1, 1, 6, 9, 9, 9, 2, 2, 2, 2, 2, 2, 9, 9, 9, 6, 1, 1, 1, 1, 6], [1, 1, 1, 6, 4, 6, 2, 2, 2, 2, 9, 9, 9, 9, 2, 2, 2, 2, 6, 4, 6, 1, 1, 1], [4, 6, 1, 4, 6, 6, 9, 2, 2, 9, 9, 9, 9, 9, 9, 2, 2, 9, 6, 6, 4, 1, 6, 4], [1, 1, 6, 6, 6, 4, 2, 4, 2, 9, 9, 9, 9, 9, 9, 2, 4, 2, 4, 6, 6, 6, 1, 1], [1, 3, 3, 3, 3, 3, 3, 3, 2, 9, 9, 9, 9, 9, 9, 2, 4, 2, 4, 6, 6, 6, 1, 1], [4, 3, 3, 3, 3, 3, 3, 3, 2, 9, 9, 9, 9, 9, 9, 2, 2, 9, 6, 6, 4, 1, 6, 4], [1, 3, 3, 3, 3, 3, 3, 3, 2, 2, 9, 9, 9, 9, 2, 2, 2, 2, 6, 4, 6, 1, 1, 1], [6, 3, 3, 3, 3, 3, 3, 3, 9, 2, 2, 2, 2, 2, 2, 9, 9, 9, 6, 1, 1, 1, 1, 6], [4, 3, 3, 3, 3, 3, 3, 3, 9, 2, 2, 4, 4, 2, 2, 9, 4, 4, 1, 6, 1, 1, 6, 4], [6, 3, 3, 3, 3, 3, 3, 3, 9, 2, 9, 2, 2, 9, 2, 9, 4, 2, 1, 4, 1, 6, 4, 6], [9, 3, 3, 3, 3, 3, 3, 3, 6, 6, 6, 4, 4, 6, 6, 6, 1, 1, 9, 4, 4, 2, 9, 9], [4, 3, 3, 3, 3, 3, 3, 3, 1, 4, 6, 6, 6, 6, 4, 1, 6, 4, 4, 4, 4, 9, 4, 4], [2, 9, 2, 4, 4, 4, 1, 1, 1, 6, 4, 6, 6, 4, 6, 1, 1, 1, 4, 4, 4, 2, 9, 2], [9, 4, 2, 2, 9, 2, 6, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 6, 2, 9, 2, 2, 4, 9], [9, 9, 4, 9, 4, 9, 4, 6, 1, 1, 6, 1, 1, 6, 1, 1, 6, 4, 9, 4, 9, 4, 9, 9], [2, 9, 9, 2, 4, 9, 6, 4, 6, 1, 4, 1, 1, 4, 1, 6, 4, 6, 9, 4, 2, 9, 9, 2]], "output": [[1, 6, 6, 6, 4, 2, 4], [6, 1, 4, 6, 6, 9, 2], [1, 1, 6, 4, 6, 2, 2], [1, 1, 1, 1, 6, 9, 9], [6, 1, 1, 6, 1, 4, 4], [4, 6, 1, 4, 1, 2, 4], [9, 2, 4, 4, 9, 1, 1], [4, 9, 4, 4, 4, 4, 6]]}, {"input": [[2, 2, 7, 2, 2, 2, 5, 9, 9, 2, 2, 5, 5, 2, 2, 9, 9, 5, 2, 2, 2, 7, 2, 2], [2, 7, 2, 2, 7, 2, 9, 2, 9, 2, 2, 9, 9, 2, 2, 9, 2, 9, 2, 7, 2, 2, 7, 2], [7, 2, 1, 7, 1, 7, 9, 9, 5, 2, 5, 5, 5, 5, 2, 5, 9, 9, 7, 1, 7, 1, 2, 7], [2, 2, 7, 1, 2, 7, 2, 2, 2, 5, 5, 5, 5, 5, 5, 2, 2, 2, 7, 2, 1, 7, 2, 2], [2, 7, 1, 2, 7, 7, 2, 2, 5, 5, 5, 9, 9, 5, 5, 5, 2, 2, 7, 7, 2, 1, 7, 2], [2, 2, 7, 7, 7, 2, 5, 9, 5, 5, 9, 2, 2, 9, 5, 5, 9, 5, 2, 7, 7, 7, 2, 2], [5, 9, 9, 2, 2, 5, 6, 6, 6, 8, 8, 6, 6, 8, 8, 6, 6, 6, 5, 2, 2, 9, 9, 5], [9, 2, 9, 2, 2, 9, 6, 8, 6, 6, 8, 8, 8, 8, 6, 6, 8, 6, 9, 2, 2, 9, 2, 9], [9, 9, 5, 2, 5, 5, 6, 6, 6, 8, 4, 8, 8, 4, 8, 6, 6, 6, 5, 5, 2, 5, 9, 9], [2, 2, 2, 5, 5, 5, 8, 6, 8, 4, 8, 8, 8, 8, 4, 8, 6, 8, 5, 5, 5, 2, 2, 2], [2, 2, 5, 5, 5, 9, 8, 8, 4, 8, 8, 8, 8, 8, 8, 4, 8, 8, 9, 5, 5, 5, 2, 2], [5, 9, 5, 5, 9, 2, 6, 8, 8, 8, 8, 6, 6, 8, 8, 8, 8, 6, 2, 9, 5, 5, 9, 5], [5, 9, 5, 5, 9, 2, 6, 8, 8, 8, 8, 6, 6, 8, 8, 8, 8, 6, 2, 9, 5, 5, 9, 5], [2, 2, 5, 5, 5, 9, 8, 8, 4, 8, 8, 8, 8, 8, 8, 4, 8, 8, 9, 5, 5, 5, 2, 2], [2, 2, 2, 3, 3, 3, 3, 3, 8, 4, 8, 8, 8, 8, 4, 8, 6, 8, 5, 5, 5, 2, 2, 2], [9, 9, 5, 3, 3, 3, 3, 3, 6, 8, 4, 8, 8, 4, 8, 6, 6, 6, 5, 5, 2, 5, 9, 9], [9, 2, 9, 3, 3, 3, 3, 3, 6, 6, 8, 8, 8, 8, 6, 6, 8, 6, 9, 2, 2, 9, 2, 9], [5, 9, 9, 3, 3, 3, 3, 3, 6, 8, 8, 6, 6, 8, 8, 6, 6, 6, 5, 2, 2, 9, 9, 5], [2, 2, 7, 3, 3, 3, 3, 3, 5, 5, 9, 2, 2, 9, 5, 5, 9, 5, 2, 7, 7, 7, 2, 2], [2, 7, 1, 2, 7, 7, 2, 2, 5, 5, 5, 9, 9, 5, 5, 5, 2, 2, 7, 7, 2, 1, 7, 2], [2, 2, 7, 1, 2, 7, 2, 2, 2, 5, 5, 5, 5, 5, 5, 2, 2, 2, 7, 2, 1, 7, 2, 2], [7, 2, 1, 7, 1, 7, 9, 9, 5, 2, 5, 5, 5, 5, 2, 5, 9, 9, 7, 1, 7, 1, 2, 7], [2, 7, 2, 2, 7, 2, 9, 2, 9, 2, 2, 9, 9, 2, 2, 9, 2, 9, 2, 7, 2, 2, 7, 2], [2, 2, 7, 2, 2, 2, 5, 9, 9, 2, 2, 5, 5, 2, 2, 9, 9, 5, 2, 2, 2, 7, 2, 2]], "output": [[5, 5, 5, 8, 6], [2, 5, 5, 6, 6], [2, 2, 9, 6, 8], [2, 2, 5, 6, 6], [7, 7, 2, 5, 9]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/f45f5ca7.json b/data/arc-agi/evaluation/f45f5ca7.json
deleted file mode 100644
index 7bdaa53..0000000
--- a/data/arc-agi/evaluation/f45f5ca7.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0]]}, {"input": [[8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/f5aa3634.json b/data/arc-agi/evaluation/f5aa3634.json
deleted file mode 100644
index bc70edc..0000000
--- a/data/arc-agi/evaluation/f5aa3634.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 5, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 5, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0], [0, 0, 3, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 5, 8, 8, 0], [0, 0, 3, 2, 0, 0, 0, 0, 3, 5, 3, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 5, 8, 8], [3, 5, 3, 8], [0, 3, 3, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 6, 8, 0, 0], [0, 0, 8, 8, 8, 0, 0, 0, 6, 6, 8, 0, 0], [0, 0, 5, 5, 5, 0, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0]], "output": [[0, 8, 0], [8, 8, 8], [5, 5, 5]]}, {"input": [[0, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 5, 9, 0, 0], [0, 0, 8, 2, 0, 0, 0, 0, 0, 7, 7, 5, 9, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 5, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 5, 9], [7, 7, 5, 9], [0, 5, 7, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 8, 5, 5, 8, 0], [0, 0, 0, 5, 9, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 8, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 4, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 3, 0], [0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 3, 4, 3, 0], [0, 0, 0, 7, 0, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 8, 3], [3, 4, 3], [0, 4, 0], [0, 4, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/f5c89df1.json b/data/arc-agi/evaluation/f5c89df1.json
deleted file mode 100644
index 8a5382d..0000000
--- a/data/arc-agi/evaluation/f5c89df1.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 8, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 3, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 8, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 2, 8, 0, 3, 0, 8, 2, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0], [0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 0, 8, 0], [0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 3, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 3, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 0], [8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 0], [0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/f823c43c.json b/data/arc-agi/evaluation/f823c43c.json
deleted file mode 100644
index 33367ab..0000000
--- a/data/arc-agi/evaluation/f823c43c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 6, 6, 6, 8, 8, 8, 8, 8], [8, 4, 8, 4, 8, 4, 8, 4, 6, 4, 8, 4, 8, 4, 6, 4, 8, 4, 8], [6, 8, 8, 6, 8, 6, 8, 8, 8, 8, 8, 8, 6, 6, 8, 8, 6, 8, 8], [8, 4, 8, 4, 8, 6, 6, 4, 8, 4, 6, 4, 8, 4, 8, 6, 8, 4, 8], [8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6], [8, 4, 8, 4, 8, 4, 6, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8], [8, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 8, 8, 6, 8, 6], [8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 6, 4, 8, 4, 6, 4, 8], [8, 8, 8, 8, 6, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 6, 8, 4, 8, 4, 6, 4, 6, 6, 8, 4, 8, 4, 8, 4, 8, 4, 8], [8, 8, 8, 6, 8, 6, 6, 8, 6, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8], [8, 4, 8, 4, 6, 6, 6, 4, 8, 4, 6, 4, 8, 4, 8, 4, 8, 4, 8], [8, 8, 8, 8, 8, 6, 8, 8, 6, 8, 8, 6, 8, 6, 8, 8, 8, 8, 8], [8, 4, 8, 6, 8, 6, 8, 4, 8, 4, 8, 4, 6, 4, 8, 4, 6, 4, 8], [8, 6, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[7, 7, 6, 7, 7, 6, 7, 6, 7, 7, 7, 6], [7, 8, 7, 7, 6, 7, 7, 8, 6, 7, 8, 7], [7, 7, 7, 6, 7, 7, 7, 7, 6, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 8, 7, 7, 8, 6, 7, 8, 7, 7, 8, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [6, 7, 7, 7, 7, 7, 7, 7, 6, 7, 7, 7], [7, 6, 7, 7, 8, 7, 6, 6, 6, 7, 8, 7], [7, 6, 7, 7, 7, 7, 6, 6, 7, 7, 7, 6], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 8, 7, 7, 8, 7, 6, 8, 7, 7, 8, 6], [7, 7, 7, 7, 7, 7, 6, 7, 7, 6, 7, 7]], "output": [[7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 8, 7, 7, 8, 7, 7, 8, 7, 7, 8, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 8, 7, 7, 8, 7, 7, 8, 7, 7, 8, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 8, 7, 7, 8, 7, 7, 8, 7, 7, 8, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 8, 7, 7, 8, 7, 7, 8, 7, 7, 8, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7]]}], "test": [{"input": [[3, 6, 3, 3, 3, 3, 3, 3, 6, 6, 3, 3, 3, 3, 3, 3], [3, 1, 1, 3, 6, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3], [6, 1, 1, 3, 6, 1, 3, 1, 1, 3, 1, 6, 3, 1, 6, 3], [6, 6, 3, 3, 6, 6, 6, 3, 6, 3, 3, 3, 6, 3, 6, 3], [3, 1, 1, 6, 1, 1, 3, 1, 1, 3, 1, 1, 3, 6, 1, 6], [3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 6, 1, 3, 1, 1, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 3, 3, 3, 3], [3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 6, 1, 6, 1, 1, 3], [3, 1, 6, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6], [6, 6, 1, 3, 6, 6, 3, 6, 1, 3, 6, 6, 3, 1, 1, 6], [6, 1, 1, 3, 6, 6, 3, 6, 1, 3, 1, 6, 3, 6, 1, 6], [3, 3, 6, 3, 6, 3, 6, 3, 3, 3, 6, 3, 3, 3, 3, 6], [3, 1, 1, 3, 1, 6, 3, 1, 6, 3, 6, 1, 3, 1, 1, 6], [6, 6, 1, 6, 1, 1, 3, 6, 1, 3, 6, 6, 3, 6, 1, 6], [3, 3, 3, 3, 3, 6, 3, 3, 3, 6, 3, 6, 6, 3, 3, 3]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3], [3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3], [3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3], [3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3], [3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3], [3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/f83cb3f6.json b/data/arc-agi/evaluation/f83cb3f6.json
deleted file mode 100644
index 3a09d0c..0000000
--- a/data/arc-agi/evaluation/f83cb3f6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 0, 0, 5, 5, 0, 0, 5], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [5, 5, 5, 5, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 8, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0]], "output": [[0, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 8, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 2, 0, 0, 2, 0, 0, 0, 0], [2, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 2, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 0, 2, 0, 0, 0, 0], [8, 8, 8, 0, 0, 8, 8, 8, 8, 0], [2, 0, 0, 0, 0, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3], [3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 8, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 3]], "output": [[0, 0, 0, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 8, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/f8be4b64.json b/data/arc-agi/evaluation/f8be4b64.json
deleted file mode 100644
index b8e3164..0000000
--- a/data/arc-agi/evaluation/f8be4b64.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 3, 2, 3, 2, 2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 3, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 6, 6, 6, 6, 6, 6, 6, 0, 6, 6, 6, 6, 6, 3, 6, 3, 8, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 3, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 6, 3, 8, 3, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 3, 5, 3, 0, 0, 0, 0, 3, 0], [0, 0, 3, 0, 0, 0, 0, 3, 6, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 8, 3, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 5, 0, 0, 8, 0, 0, 6, 0], [0, 0, 3, 0, 0, 8, 0, 0, 6, 0], [5, 3, 5, 3, 5, 8, 5, 5, 3, 0], [0, 0, 3, 6, 6, 8, 6, 3, 6, 3], [0, 0, 5, 0, 0, 8, 0, 0, 3, 0], [0, 0, 5, 0, 0, 3, 0, 0, 6, 0], [8, 8, 5, 8, 3, 8, 3, 8, 6, 8], [0, 0, 5, 0, 0, 3, 0, 0, 6, 0], [0, 0, 5, 0, 0, 8, 0, 0, 6, 0], [0, 0, 5, 0, 0, 8, 0, 0, 6, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [5, 5, 5, 0, 5, 5, 5, 6, 5, 5, 5, 5, 3, 5, 3, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 4, 0, 0, 0], [6, 6, 6, 0, 6, 6, 3, 6, 3, 6, 6, 6, 6, 5, 4, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 5, 3, 0, 0, 0], [4, 4, 4, 0, 4, 4, 4, 6, 4, 4, 4, 4, 4, 3, 4, 3, 4, 4], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 3, 2, 3, 2, 2, 2, 0, 2, 2, 2, 2], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 3, 0, 3, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 8, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 4, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 3, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [8, 8, 8, 2, 8, 3, 8, 3, 0, 8, 8, 8, 8, 3, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 3, 4, 0, 4, 4, 4, 3, 4, 3, 4, 4, 4, 4], [0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 8, 0, 3, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 8, 3, 0, 3, 0, 0, 0, 4, 1, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 8, 0, 3, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0], [1, 1, 1, 2, 1, 1, 8, 1, 0, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1], [0, 0, 0, 3, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [2, 2, 3, 2, 3, 2, 8, 2, 0, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2], [0, 0, 0, 3, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/f9a67cb5.json b/data/arc-agi/evaluation/f9a67cb5.json
deleted file mode 100644
index 8afbdd0..0000000
--- a/data/arc-agi/evaluation/f9a67cb5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 2, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8, 8], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [8, 8, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2, 8, 8, 8, 8], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [8, 8, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0], [2, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0]], "output": [[0, 2, 8, 0, 0, 8, 0, 0, 2, 8, 0, 0], [0, 2, 8, 0, 0, 8, 0, 0, 2, 8, 0, 0], [0, 2, 8, 0, 0, 8, 0, 0, 2, 8, 0, 0], [2, 2, 8, 0, 2, 2, 2, 2, 2, 8, 0, 0], [0, 2, 8, 0, 2, 8, 0, 0, 2, 8, 0, 0], [0, 2, 2, 2, 2, 8, 0, 0, 2, 8, 0, 0], [0, 0, 8, 0, 2, 8, 0, 0, 2, 2, 2, 2], [0, 0, 8, 0, 2, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 2, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 2, 8, 0, 0, 0, 8, 0, 0], [0, 0, 8, 0, 2, 8, 0, 0, 0, 8, 0, 0]]}, {"input": [[0, 0, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0, 2], [0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0]], "output": [[0, 0, 8, 0, 0, 8, 2, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 2, 0, 0, 8, 0, 0, 0], [0, 0, 8, 0, 0, 8, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 8, 2, 0, 0, 8, 2, 0, 0], [0, 0, 8, 0, 0, 8, 2, 0, 0, 8, 2, 2, 2], [0, 0, 8, 0, 0, 8, 2, 2, 2, 2, 2, 0, 0], [0, 0, 8, 0, 0, 8, 2, 0, 0, 8, 0, 0, 0], [0, 0, 8, 0, 0, 8, 2, 0, 0, 8, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 0, 0, 8, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 0, 8, 8, 0, 8, 8, 8, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [8, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [8, 8, 2, 8, 8, 8, 8, 2, 8, 8, 8, 0, 8, 8], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [8, 8, 2, 8, 8, 8, 8, 8, 8, 2, 8, 8, 8, 8], [0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 0, 0], [8, 8, 8, 8, 2, 8, 8, 2, 8, 8, 8, 2, 8, 8], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 2, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/f9d67f8b.json b/data/arc-agi/evaluation/f9d67f8b.json
deleted file mode 100644
index b059a44..0000000
--- a/data/arc-agi/evaluation/f9d67f8b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[4, 8, 8, 8, 5, 7, 4, 1, 7, 5, 1, 6, 9, 9, 9, 9, 9, 9, 9, 3, 6, 1, 5, 7, 1, 4, 7, 5, 8, 8], [4, 4, 8, 8, 7, 5, 1, 4, 7, 7, 6, 1, 9, 9, 9, 9, 9, 9, 9, 4, 1, 6, 7, 7, 4, 1, 5, 7, 8, 8], [8, 8, 4, 8, 4, 1, 5, 7, 8, 6, 7, 5, 9, 9, 9, 9, 9, 9, 9, 4, 5, 7, 6, 8, 7, 5, 1, 4, 8, 4], [8, 6, 4, 4, 1, 4, 7, 5, 6, 8, 7, 7, 9, 9, 9, 9, 9, 9, 9, 6, 7, 7, 8, 6, 5, 7, 4, 1, 4, 4], [8, 5, 5, 3, 4, 8, 8, 8, 3, 4, 4, 6, 9, 9, 9, 9, 9, 9, 9, 8, 6, 4, 4, 3, 8, 8, 8, 4, 3, 5], [5, 8, 3, 5, 4, 4, 8, 8, 4, 3, 6, 2, 9, 9, 9, 9, 9, 9, 9, 2, 2, 6, 3, 4, 8, 8, 4, 4, 5, 3], [5, 3, 8, 5, 6, 8, 4, 8, 4, 6, 1, 1, 9, 9, 9, 9, 9, 9, 9, 3, 1, 1, 6, 4, 8, 4, 8, 6, 5, 8], [3, 5, 5, 8, 8, 8, 4, 4, 6, 2, 8, 1, 9, 9, 9, 9, 9, 9, 9, 5, 1, 8, 2, 6, 4, 4, 8, 8, 8, 5], [7, 7, 8, 6, 3, 4, 4, 6, 3, 2, 2, 3, 8, 8, 6, 3, 3, 6, 8, 8, 3, 2, 2, 3, 6, 4, 4, 3, 6, 8], [5, 7, 6, 8, 4, 3, 6, 2, 2, 3, 3, 1, 8, 8, 3, 6, 6, 3, 8, 8, 1, 3, 3, 2, 2, 6, 3, 4, 8, 6], [1, 6, 7, 7, 4, 6, 1, 8, 4, 2, 3, 2, 6, 3, 8, 8, 8, 8, 3, 6, 2, 3, 2, 4, 8, 1, 6, 4, 7, 7], [6, 1, 5, 7, 6, 2, 1, 1, 2, 4, 9, 9, 9, 6, 8, 8, 8, 8, 6, 3, 3, 2, 4, 2, 1, 1, 2, 6, 7, 5], [3, 4, 4, 6, 8, 2, 3, 5, 4, 8, 9, 9, 9, 2, 1, 3, 3, 1, 2, 3, 7, 8, 8, 4, 5, 3, 2, 8, 6, 4], [4, 3, 6, 2, 6, 8, 5, 3, 8, 4, 9, 9, 9, 3, 3, 2, 2, 3, 3, 2, 8, 7, 4, 8, 3, 5, 8, 6, 2, 6], [4, 6, 1, 1, 8, 4, 8, 2, 8, 7, 4, 8, 4, 2, 3, 2, 2, 3, 2, 4, 8, 4, 7, 8, 2, 8, 4, 8, 1, 1], [6, 2, 8, 1, 4, 8, 6, 8, 7, 8, 8, 4, 2, 4, 2, 3, 3, 2, 4, 2, 4, 8, 8, 7, 8, 6, 8, 4, 1, 8], [6, 2, 8, 1, 4, 8, 6, 8, 7, 8, 8, 4, 2, 4, 2, 3, 3, 2, 4, 2, 4, 8, 8, 7, 9, 9, 9, 9, 9, 9], [4, 6, 1, 1, 8, 4, 8, 2, 8, 7, 4, 8, 4, 2, 3, 2, 2, 3, 2, 4, 8, 4, 7, 8, 9, 9, 9, 9, 9, 9], [4, 3, 6, 2, 6, 8, 5, 3, 8, 4, 7, 8, 2, 3, 3, 2, 2, 3, 3, 2, 8, 7, 4, 8, 9, 9, 9, 9, 9, 9], [3, 4, 4, 6, 8, 2, 3, 5, 4, 8, 8, 7, 3, 2, 1, 3, 3, 1, 2, 3, 7, 8, 8, 4, 9, 9, 9, 9, 9, 9], [6, 1, 5, 7, 6, 2, 1, 1, 2, 4, 2, 3, 3, 6, 8, 8, 8, 8, 6, 3, 3, 2, 4, 2, 9, 9, 9, 9, 9, 9], [1, 6, 7, 7, 4, 6, 1, 8, 4, 2, 3, 2, 6, 3, 8, 8, 8, 8, 3, 6, 2, 3, 2, 4, 9, 9, 9, 9, 9, 9], [5, 7, 6, 8, 4, 3, 6, 2, 2, 3, 3, 1, 8, 8, 3, 6, 6, 3, 8, 8, 1, 3, 3, 2, 9, 9, 9, 9, 9, 9], [7, 7, 8, 6, 3, 4, 4, 6, 3, 2, 2, 3, 8, 8, 6, 3, 3, 6, 8, 8, 3, 2, 2, 3, 6, 4, 4, 3, 6, 8], [3, 5, 5, 8, 8, 8, 4, 4, 6, 2, 8, 1, 5, 3, 2, 8, 8, 2, 3, 5, 1, 8, 2, 6, 4, 4, 8, 8, 8, 5], [5, 3, 8, 5, 6, 8, 4, 8, 4, 6, 1, 1, 3, 5, 8, 6, 6, 8, 5, 3, 1, 1, 6, 4, 8, 4, 8, 6, 5, 8], [5, 8, 3, 5, 4, 4, 8, 8, 4, 3, 6, 2, 2, 8, 4, 8, 8, 4, 8, 2, 2, 6, 3, 4, 8, 8, 4, 4, 5, 3], [8, 5, 5, 3, 4, 8, 8, 8, 3, 4, 4, 6, 8, 6, 8, 4, 4, 8, 6, 8, 6, 4, 4, 3, 8, 8, 8, 4, 3, 5], [8, 6, 4, 4, 1, 4, 7, 5, 6, 8, 7, 7, 6, 2, 1, 1, 1, 1, 2, 6, 7, 7, 8, 6, 5, 7, 4, 1, 4, 4], [8, 8, 4, 8, 4, 1, 5, 7, 8, 6, 7, 5, 4, 6, 1, 8, 8, 1, 6, 4, 5, 7, 6, 8, 7, 5, 1, 4, 8, 4]], "output": [[4, 8, 8, 8, 5, 7, 4, 1, 7, 5, 1, 6, 3, 4, 4, 6, 6, 4, 4, 3, 6, 1, 5, 7, 1, 4, 7, 5, 8, 8], [4, 4, 8, 8, 7, 5, 1, 4, 7, 7, 6, 1, 4, 3, 6, 2, 2, 6, 3, 4, 1, 6, 7, 7, 4, 1, 5, 7, 8, 8], [8, 8, 4, 8, 4, 1, 5, 7, 8, 6, 7, 5, 4, 6, 1, 8, 8, 1, 6, 4, 5, 7, 6, 8, 7, 5, 1, 4, 8, 4], [8, 6, 4, 4, 1, 4, 7, 5, 6, 8, 7, 7, 6, 2, 1, 1, 1, 1, 2, 6, 7, 7, 8, 6, 5, 7, 4, 1, 4, 4], [8, 5, 5, 3, 4, 8, 8, 8, 3, 4, 4, 6, 8, 6, 8, 4, 4, 8, 6, 8, 6, 4, 4, 3, 8, 8, 8, 4, 3, 5], [5, 8, 3, 5, 4, 4, 8, 8, 4, 3, 6, 2, 2, 8, 4, 8, 8, 4, 8, 2, 2, 6, 3, 4, 8, 8, 4, 4, 5, 3], [5, 3, 8, 5, 6, 8, 4, 8, 4, 6, 1, 1, 3, 5, 8, 6, 6, 8, 5, 3, 1, 1, 6, 4, 8, 4, 8, 6, 5, 8], [3, 5, 5, 8, 8, 8, 4, 4, 6, 2, 8, 1, 5, 3, 2, 8, 8, 2, 3, 5, 1, 8, 2, 6, 4, 4, 8, 8, 8, 5], [7, 7, 8, 6, 3, 4, 4, 6, 3, 2, 2, 3, 8, 8, 6, 3, 3, 6, 8, 8, 3, 2, 2, 3, 6, 4, 4, 3, 6, 8], [5, 7, 6, 8, 4, 3, 6, 2, 2, 3, 3, 1, 8, 8, 3, 6, 6, 3, 8, 8, 1, 3, 3, 2, 2, 6, 3, 4, 8, 6], [1, 6, 7, 7, 4, 6, 1, 8, 4, 2, 3, 2, 6, 3, 8, 8, 8, 8, 3, 6, 2, 3, 2, 4, 8, 1, 6, 4, 7, 7], [6, 1, 5, 7, 6, 2, 1, 1, 2, 4, 2, 3, 3, 6, 8, 8, 8, 8, 6, 3, 3, 2, 4, 2, 1, 1, 2, 6, 7, 5], [3, 4, 4, 6, 8, 2, 3, 5, 4, 8, 8, 7, 3, 2, 1, 3, 3, 1, 2, 3, 7, 8, 8, 4, 5, 3, 2, 8, 6, 4], [4, 3, 6, 2, 6, 8, 5, 3, 8, 4, 7, 8, 2, 3, 3, 2, 2, 3, 3, 2, 8, 7, 4, 8, 3, 5, 8, 6, 2, 6], [4, 6, 1, 1, 8, 4, 8, 2, 8, 7, 4, 8, 4, 2, 3, 2, 2, 3, 2, 4, 8, 4, 7, 8, 2, 8, 4, 8, 1, 1], [6, 2, 8, 1, 4, 8, 6, 8, 7, 8, 8, 4, 2, 4, 2, 3, 3, 2, 4, 2, 4, 8, 8, 7, 8, 6, 8, 4, 1, 8], [6, 2, 8, 1, 4, 8, 6, 8, 7, 8, 8, 4, 2, 4, 2, 3, 3, 2, 4, 2, 4, 8, 8, 7, 8, 6, 8, 4, 1, 8], [4, 6, 1, 1, 8, 4, 8, 2, 8, 7, 4, 8, 4, 2, 3, 2, 2, 3, 2, 4, 8, 4, 7, 8, 2, 8, 4, 8, 1, 1], [4, 3, 6, 2, 6, 8, 5, 3, 8, 4, 7, 8, 2, 3, 3, 2, 2, 3, 3, 2, 8, 7, 4, 8, 3, 5, 8, 6, 2, 6], [3, 4, 4, 6, 8, 2, 3, 5, 4, 8, 8, 7, 3, 2, 1, 3, 3, 1, 2, 3, 7, 8, 8, 4, 5, 3, 2, 8, 6, 4], [6, 1, 5, 7, 6, 2, 1, 1, 2, 4, 2, 3, 3, 6, 8, 8, 8, 8, 6, 3, 3, 2, 4, 2, 1, 1, 2, 6, 7, 5], [1, 6, 7, 7, 4, 6, 1, 8, 4, 2, 3, 2, 6, 3, 8, 8, 8, 8, 3, 6, 2, 3, 2, 4, 8, 1, 6, 4, 7, 7], [5, 7, 6, 8, 4, 3, 6, 2, 2, 3, 3, 1, 8, 8, 3, 6, 6, 3, 8, 8, 1, 3, 3, 2, 2, 6, 3, 4, 8, 6], [7, 7, 8, 6, 3, 4, 4, 6, 3, 2, 2, 3, 8, 8, 6, 3, 3, 6, 8, 8, 3, 2, 2, 3, 6, 4, 4, 3, 6, 8], [3, 5, 5, 8, 8, 8, 4, 4, 6, 2, 8, 1, 5, 3, 2, 8, 8, 2, 3, 5, 1, 8, 2, 6, 4, 4, 8, 8, 8, 5], [5, 3, 8, 5, 6, 8, 4, 8, 4, 6, 1, 1, 3, 5, 8, 6, 6, 8, 5, 3, 1, 1, 6, 4, 8, 4, 8, 6, 5, 8], [5, 8, 3, 5, 4, 4, 8, 8, 4, 3, 6, 2, 2, 8, 4, 8, 8, 4, 8, 2, 2, 6, 3, 4, 8, 8, 4, 4, 5, 3], [8, 5, 5, 3, 4, 8, 8, 8, 3, 4, 4, 6, 8, 6, 8, 4, 4, 8, 6, 8, 6, 4, 4, 3, 8, 8, 8, 4, 3, 5], [8, 6, 4, 4, 1, 4, 7, 5, 6, 8, 7, 7, 6, 2, 1, 1, 1, 1, 2, 6, 7, 7, 8, 6, 5, 7, 4, 1, 4, 4], [8, 8, 4, 8, 4, 1, 5, 7, 8, 6, 7, 5, 4, 6, 1, 8, 8, 1, 6, 4, 5, 7, 6, 8, 7, 5, 1, 4, 8, 4]]}], "train": [{"input": [[6, 1, 2, 2, 4, 6, 2, 6, 8, 2, 8, 3, 3, 2, 3, 5, 5, 3, 2, 3, 3, 8, 2, 8, 6, 2, 6, 4, 2, 2], [6, 6, 2, 7, 6, 4, 6, 2, 2, 8, 3, 8, 3, 3, 5, 5, 5, 5, 3, 3, 8, 3, 8, 2, 2, 6, 4, 6, 7, 2], [1, 7, 6, 1, 2, 6, 4, 6, 8, 1, 8, 2, 3, 5, 5, 5, 5, 5, 5, 3, 2, 8, 1, 8, 6, 4, 6, 2, 1, 6], [7, 2, 6, 6, 6, 2, 6, 4, 1, 8, 2, 8, 5, 5, 5, 5, 5, 5, 5, 5, 8, 2, 8, 1, 4, 6, 2, 6, 6, 6], [7, 2, 8, 1, 6, 1, 7, 2, 3, 3, 3, 5, 7, 6, 4, 4, 4, 4, 6, 7, 5, 3, 3, 3, 2, 7, 1, 6, 1, 8], [2, 7, 1, 8, 6, 6, 2, 2, 2, 3, 5, 5, 6, 7, 4, 4, 4, 4, 7, 6, 5, 5, 3, 2, 2, 2, 6, 6, 8, 1], [8, 1, 7, 2, 2, 7, 6, 1, 3, 5, 5, 5, 6, 7, 7, 6, 6, 7, 7, 6, 5, 5, 5, 3, 1, 6, 7, 2, 2, 7], [1, 8, 2, 7, 7, 1, 6, 6, 5, 5, 5, 5, 7, 6, 6, 7, 7, 9, 9, 9, 9, 5, 5, 5, 6, 6, 1, 7, 7, 2], [8, 2, 8, 1, 3, 2, 3, 5, 6, 6, 2, 7, 7, 7, 4, 5, 5, 9, 9, 9, 9, 2, 6, 6, 5, 3, 2, 3, 1, 8], [2, 8, 1, 8, 3, 3, 5, 5, 8, 6, 7, 5, 7, 7, 5, 4, 4, 9, 9, 9, 9, 7, 6, 8, 5, 5, 3, 3, 8, 1], [8, 3, 8, 2, 3, 5, 9, 9, 9, 9, 9, 9, 4, 5, 7, 7, 7, 7, 5, 4, 6, 6, 7, 7, 5, 5, 5, 3, 2, 8], [3, 8, 2, 8, 5, 5, 9, 9, 9, 9, 9, 9, 5, 4, 7, 7, 7, 7, 4, 5, 6, 8, 7, 7, 5, 5, 5, 5, 8, 2], [3, 3, 3, 5, 7, 9, 9, 9, 8, 8, 8, 6, 6, 6, 5, 7, 7, 5, 6, 6, 6, 8, 8, 8, 7, 6, 6, 7, 5, 3], [2, 3, 5, 5, 6, 9, 9, 9, 8, 8, 6, 8, 8, 6, 7, 2, 2, 7, 6, 8, 8, 6, 8, 8, 6, 7, 7, 6, 5, 5], [3, 5, 5, 5, 4, 9, 9, 9, 8, 6, 8, 8, 7, 7, 6, 6, 6, 6, 7, 7, 8, 8, 6, 8, 6, 7, 4, 4, 5, 5], [5, 5, 5, 5, 4, 9, 9, 9, 6, 8, 8, 8, 7, 7, 8, 6, 6, 8, 7, 7, 8, 8, 8, 6, 7, 6, 4, 4, 5, 5], [5, 5, 5, 5, 4, 4, 6, 7, 6, 8, 8, 8, 7, 7, 8, 6, 6, 8, 7, 7, 8, 8, 8, 6, 7, 6, 4, 4, 5, 5], [3, 5, 5, 5, 4, 4, 7, 6, 8, 6, 8, 8, 7, 7, 6, 6, 6, 6, 7, 7, 8, 8, 6, 8, 6, 7, 4, 4, 5, 5], [2, 3, 5, 5, 6, 7, 7, 6, 8, 8, 6, 8, 8, 6, 7, 2, 2, 7, 6, 8, 8, 6, 8, 8, 6, 7, 7, 6, 5, 5], [3, 3, 3, 5, 7, 6, 6, 7, 8, 8, 8, 6, 6, 6, 5, 7, 7, 5, 6, 6, 6, 8, 8, 8, 7, 6, 6, 7, 5, 3], [3, 8, 2, 8, 5, 5, 5, 5, 7, 7, 8, 6, 5, 4, 7, 7, 7, 7, 4, 5, 6, 8, 7, 7, 5, 5, 5, 5, 8, 2], [8, 3, 8, 2, 3, 5, 5, 5, 7, 7, 6, 6, 4, 5, 7, 7, 7, 7, 5, 4, 6, 6, 7, 7, 5, 5, 5, 3, 2, 8], [2, 8, 1, 8, 3, 3, 5, 5, 8, 6, 7, 5, 7, 7, 5, 4, 4, 5, 7, 7, 5, 7, 6, 8, 5, 5, 3, 3, 8, 1], [8, 2, 8, 1, 3, 2, 3, 5, 6, 6, 2, 7, 7, 7, 4, 5, 5, 4, 7, 7, 7, 2, 6, 6, 5, 3, 2, 3, 1, 8], [1, 8, 2, 7, 7, 1, 6, 6, 5, 5, 5, 5, 7, 6, 6, 7, 7, 6, 6, 7, 5, 5, 5, 5, 6, 6, 1, 7, 7, 2], [8, 1, 7, 2, 2, 7, 6, 1, 3, 5, 5, 5, 6, 7, 7, 6, 6, 7, 7, 6, 5, 5, 5, 3, 1, 6, 7, 2, 2, 7], [2, 7, 1, 8, 6, 6, 2, 2, 2, 3, 5, 5, 6, 7, 4, 4, 4, 4, 7, 6, 5, 5, 3, 2, 2, 2, 6, 6, 8, 1], [7, 2, 8, 1, 6, 1, 7, 2, 3, 3, 3, 5, 7, 6, 4, 4, 4, 4, 6, 7, 5, 3, 3, 3, 2, 7, 1, 6, 1, 8], [7, 2, 6, 6, 6, 2, 6, 4, 1, 8, 2, 8, 5, 5, 5, 5, 5, 5, 5, 5, 8, 2, 8, 1, 4, 6, 2, 6, 6, 6], [1, 7, 6, 1, 2, 6, 4, 6, 8, 1, 8, 2, 3, 5, 5, 5, 5, 5, 5, 3, 2, 8, 1, 8, 6, 4, 6, 2, 1, 6]], "output": [[6, 1, 2, 2, 4, 6, 2, 6, 8, 2, 8, 3, 3, 2, 3, 5, 5, 3, 2, 3, 3, 8, 2, 8, 6, 2, 6, 4, 2, 2], [6, 6, 2, 7, 6, 4, 6, 2, 2, 8, 3, 8, 3, 3, 5, 5, 5, 5, 3, 3, 8, 3, 8, 2, 2, 6, 4, 6, 7, 2], [1, 7, 6, 1, 2, 6, 4, 6, 8, 1, 8, 2, 3, 5, 5, 5, 5, 5, 5, 3, 2, 8, 1, 8, 6, 4, 6, 2, 1, 6], [7, 2, 6, 6, 6, 2, 6, 4, 1, 8, 2, 8, 5, 5, 5, 5, 5, 5, 5, 5, 8, 2, 8, 1, 4, 6, 2, 6, 6, 6], [7, 2, 8, 1, 6, 1, 7, 2, 3, 3, 3, 5, 7, 6, 4, 4, 4, 4, 6, 7, 5, 3, 3, 3, 2, 7, 1, 6, 1, 8], [2, 7, 1, 8, 6, 6, 2, 2, 2, 3, 5, 5, 6, 7, 4, 4, 4, 4, 7, 6, 5, 5, 3, 2, 2, 2, 6, 6, 8, 1], [8, 1, 7, 2, 2, 7, 6, 1, 3, 5, 5, 5, 6, 7, 7, 6, 6, 7, 7, 6, 5, 5, 5, 3, 1, 6, 7, 2, 2, 7], [1, 8, 2, 7, 7, 1, 6, 6, 5, 5, 5, 5, 7, 6, 6, 7, 7, 6, 6, 7, 5, 5, 5, 5, 6, 6, 1, 7, 7, 2], [8, 2, 8, 1, 3, 2, 3, 5, 6, 6, 2, 7, 7, 7, 4, 5, 5, 4, 7, 7, 7, 2, 6, 6, 5, 3, 2, 3, 1, 8], [2, 8, 1, 8, 3, 3, 5, 5, 8, 6, 7, 5, 7, 7, 5, 4, 4, 5, 7, 7, 5, 7, 6, 8, 5, 5, 3, 3, 8, 1], [8, 3, 8, 2, 3, 5, 5, 5, 7, 7, 6, 6, 4, 5, 7, 7, 7, 7, 5, 4, 6, 6, 7, 7, 5, 5, 5, 3, 2, 8], [3, 8, 2, 8, 5, 5, 5, 5, 7, 7, 8, 6, 5, 4, 7, 7, 7, 7, 4, 5, 6, 8, 7, 7, 5, 5, 5, 5, 8, 2], [3, 3, 3, 5, 7, 6, 6, 7, 8, 8, 8, 6, 6, 6, 5, 7, 7, 5, 6, 6, 6, 8, 8, 8, 7, 6, 6, 7, 5, 3], [2, 3, 5, 5, 6, 7, 7, 6, 8, 8, 6, 8, 8, 6, 7, 2, 2, 7, 6, 8, 8, 6, 8, 8, 6, 7, 7, 6, 5, 5], [3, 5, 5, 5, 4, 4, 7, 6, 8, 6, 8, 8, 7, 7, 6, 6, 6, 6, 7, 7, 8, 8, 6, 8, 6, 7, 4, 4, 5, 5], [5, 5, 5, 5, 4, 4, 6, 7, 6, 8, 8, 8, 7, 7, 8, 6, 6, 8, 7, 7, 8, 8, 8, 6, 7, 6, 4, 4, 5, 5], [5, 5, 5, 5, 4, 4, 6, 7, 6, 8, 8, 8, 7, 7, 8, 6, 6, 8, 7, 7, 8, 8, 8, 6, 7, 6, 4, 4, 5, 5], [3, 5, 5, 5, 4, 4, 7, 6, 8, 6, 8, 8, 7, 7, 6, 6, 6, 6, 7, 7, 8, 8, 6, 8, 6, 7, 4, 4, 5, 5], [2, 3, 5, 5, 6, 7, 7, 6, 8, 8, 6, 8, 8, 6, 7, 2, 2, 7, 6, 8, 8, 6, 8, 8, 6, 7, 7, 6, 5, 5], [3, 3, 3, 5, 7, 6, 6, 7, 8, 8, 8, 6, 6, 6, 5, 7, 7, 5, 6, 6, 6, 8, 8, 8, 7, 6, 6, 7, 5, 3], [3, 8, 2, 8, 5, 5, 5, 5, 7, 7, 8, 6, 5, 4, 7, 7, 7, 7, 4, 5, 6, 8, 7, 7, 5, 5, 5, 5, 8, 2], [8, 3, 8, 2, 3, 5, 5, 5, 7, 7, 6, 6, 4, 5, 7, 7, 7, 7, 5, 4, 6, 6, 7, 7, 5, 5, 5, 3, 2, 8], [2, 8, 1, 8, 3, 3, 5, 5, 8, 6, 7, 5, 7, 7, 5, 4, 4, 5, 7, 7, 5, 7, 6, 8, 5, 5, 3, 3, 8, 1], [8, 2, 8, 1, 3, 2, 3, 5, 6, 6, 2, 7, 7, 7, 4, 5, 5, 4, 7, 7, 7, 2, 6, 6, 5, 3, 2, 3, 1, 8], [1, 8, 2, 7, 7, 1, 6, 6, 5, 5, 5, 5, 7, 6, 6, 7, 7, 6, 6, 7, 5, 5, 5, 5, 6, 6, 1, 7, 7, 2], [8, 1, 7, 2, 2, 7, 6, 1, 3, 5, 5, 5, 6, 7, 7, 6, 6, 7, 7, 6, 5, 5, 5, 3, 1, 6, 7, 2, 2, 7], [2, 7, 1, 8, 6, 6, 2, 2, 2, 3, 5, 5, 6, 7, 4, 4, 4, 4, 7, 6, 5, 5, 3, 2, 2, 2, 6, 6, 8, 1], [7, 2, 8, 1, 6, 1, 7, 2, 3, 3, 3, 5, 7, 6, 4, 4, 4, 4, 6, 7, 5, 3, 3, 3, 2, 7, 1, 6, 1, 8], [7, 2, 6, 6, 6, 2, 6, 4, 1, 8, 2, 8, 5, 5, 5, 5, 5, 5, 5, 5, 8, 2, 8, 1, 4, 6, 2, 6, 6, 6], [1, 7, 6, 1, 2, 6, 4, 6, 8, 1, 8, 2, 3, 5, 5, 5, 5, 5, 5, 3, 2, 8, 1, 8, 6, 4, 6, 2, 1, 6]]}, {"input": [[3, 2, 7, 8, 4, 7, 7, 4, 1, 1, 1, 7, 6, 4, 6, 4, 4, 6, 4, 6, 7, 1, 1, 1, 4, 7, 7, 4, 8, 7], [2, 3, 8, 7, 7, 4, 4, 7, 1, 1, 7, 1, 6, 6, 4, 6, 6, 4, 6, 6, 1, 7, 1, 1, 7, 4, 4, 7, 7, 8], [1, 4, 3, 2, 7, 4, 4, 7, 5, 5, 1, 1, 6, 4, 1, 1, 1, 1, 4, 6, 1, 1, 5, 5, 7, 4, 4, 7, 2, 3], [4, 1, 2, 3, 4, 7, 7, 4, 9, 9, 9, 9, 4, 6, 1, 1, 1, 1, 6, 4, 1, 1, 5, 5, 4, 7, 7, 4, 3, 2], [6, 9, 9, 9, 9, 9, 7, 8, 9, 9, 9, 9, 1, 6, 5, 8, 8, 5, 6, 1, 4, 6, 6, 6, 8, 7, 2, 3, 8, 8], [6, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 1, 1, 8, 5, 5, 8, 1, 1, 6, 4, 6, 4, 7, 8, 3, 2, 8, 8], [8, 8, 6, 9, 9, 9, 9, 9, 9, 9, 9, 9, 2, 2, 1, 6, 6, 1, 2, 2, 1, 1, 4, 6, 2, 3, 4, 1, 6, 6], [8, 8, 6, 9, 9, 9, 9, 9, 9, 9, 9, 9, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 6, 4, 3, 2, 1, 4, 6, 6], [1, 1, 5, 9, 9, 9, 9, 9, 9, 6, 3, 3, 8, 8, 8, 2, 2, 8, 8, 8, 3, 3, 6, 4, 4, 6, 4, 6, 5, 5], [1, 1, 5, 9, 9, 9, 9, 9, 9, 4, 3, 3, 8, 8, 2, 8, 8, 2, 8, 8, 3, 3, 4, 7, 6, 4, 6, 6, 5, 5], [1, 7, 1, 1, 6, 4, 1, 1, 8, 6, 4, 6, 8, 2, 8, 8, 8, 8, 2, 8, 6, 4, 6, 8, 1, 1, 4, 6, 1, 1], [7, 1, 1, 1, 4, 6, 1, 1, 6, 8, 7, 4, 2, 8, 8, 8, 8, 8, 8, 2, 4, 7, 8, 6, 1, 1, 6, 4, 1, 1], [6, 6, 6, 4, 1, 1, 2, 2, 5, 4, 6, 6, 4, 6, 3, 3, 3, 3, 6, 4, 6, 6, 4, 5, 2, 2, 1, 1, 4, 6], [4, 6, 4, 6, 6, 1, 2, 2, 4, 5, 6, 6, 7, 4, 3, 3, 3, 3, 4, 7, 6, 6, 5, 4, 2, 2, 1, 6, 6, 4], [6, 4, 1, 1, 5, 8, 1, 1, 6, 6, 5, 4, 8, 6, 4, 6, 6, 4, 6, 8, 4, 5, 6, 6, 1, 1, 8, 5, 1, 1], [4, 6, 1, 1, 8, 5, 6, 1, 6, 6, 4, 5, 6, 8, 7, 4, 4, 7, 8, 6, 5, 4, 6, 6, 1, 6, 5, 8, 1, 1], [4, 6, 1, 1, 8, 5, 6, 1, 6, 6, 4, 5, 6, 8, 7, 4, 4, 7, 8, 6, 5, 4, 6, 6, 1, 6, 5, 8, 1, 1], [6, 4, 1, 1, 5, 8, 1, 1, 6, 6, 5, 4, 8, 6, 4, 6, 6, 4, 6, 8, 4, 5, 6, 6, 1, 1, 8, 5, 1, 1], [4, 6, 4, 6, 6, 1, 2, 2, 4, 5, 6, 6, 7, 4, 3, 3, 3, 3, 4, 7, 6, 6, 5, 4, 2, 2, 1, 6, 6, 4], [6, 6, 6, 4, 1, 1, 2, 2, 5, 4, 6, 6, 4, 6, 3, 3, 3, 3, 6, 4, 6, 6, 4, 5, 2, 2, 1, 1, 4, 6], [7, 1, 1, 1, 4, 6, 1, 1, 6, 8, 7, 4, 2, 8, 8, 8, 8, 8, 8, 2, 4, 7, 8, 6, 1, 1, 6, 4, 1, 1], [1, 7, 1, 1, 6, 4, 1, 1, 8, 6, 4, 6, 8, 2, 8, 8, 8, 8, 2, 8, 6, 4, 6, 8, 1, 1, 4, 6, 1, 1], [1, 1, 5, 5, 6, 6, 4, 6, 7, 4, 3, 3, 8, 8, 2, 8, 8, 2, 8, 8, 3, 3, 4, 7, 6, 4, 6, 6, 5, 5], [1, 1, 5, 5, 6, 4, 6, 4, 4, 6, 3, 3, 8, 8, 8, 2, 2, 8, 8, 8, 3, 3, 6, 4, 4, 6, 4, 6, 5, 5], [8, 8, 6, 6, 4, 1, 2, 3, 4, 6, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 6, 4, 3, 2, 1, 4, 6, 6], [8, 8, 6, 6, 1, 4, 3, 2, 6, 4, 9, 9, 9, 9, 9, 9, 6, 1, 2, 2, 1, 1, 4, 6, 2, 3, 4, 1, 6, 6], [6, 6, 8, 8, 2, 3, 8, 7, 4, 6, 9, 9, 9, 9, 9, 9, 5, 8, 1, 1, 6, 4, 6, 4, 7, 8, 3, 2, 8, 8], [6, 6, 8, 8, 3, 2, 7, 8, 6, 6, 9, 9, 9, 9, 9, 9, 8, 5, 6, 1, 4, 6, 6, 6, 8, 7, 2, 3, 8, 8], [4, 1, 2, 3, 4, 7, 7, 4, 5, 5, 1, 1, 4, 6, 1, 1, 1, 1, 6, 4, 1, 1, 5, 5, 4, 7, 7, 4, 3, 2], [1, 4, 3, 2, 7, 4, 4, 7, 5, 5, 1, 1, 6, 4, 1, 1, 1, 1, 4, 6, 1, 1, 5, 5, 7, 4, 4, 7, 2, 3]], "output": [[3, 2, 7, 8, 4, 7, 7, 4, 1, 1, 1, 7, 6, 4, 6, 4, 4, 6, 4, 6, 7, 1, 1, 1, 4, 7, 7, 4, 8, 7], [2, 3, 8, 7, 7, 4, 4, 7, 1, 1, 7, 1, 6, 6, 4, 6, 6, 4, 6, 6, 1, 7, 1, 1, 7, 4, 4, 7, 7, 8], [1, 4, 3, 2, 7, 4, 4, 7, 5, 5, 1, 1, 6, 4, 1, 1, 1, 1, 4, 6, 1, 1, 5, 5, 7, 4, 4, 7, 2, 3], [4, 1, 2, 3, 4, 7, 7, 4, 5, 5, 1, 1, 4, 6, 1, 1, 1, 1, 6, 4, 1, 1, 5, 5, 4, 7, 7, 4, 3, 2], [6, 6, 8, 8, 3, 2, 7, 8, 6, 6, 6, 4, 1, 6, 5, 8, 8, 5, 6, 1, 4, 6, 6, 6, 8, 7, 2, 3, 8, 8], [6, 6, 8, 8, 2, 3, 8, 7, 4, 6, 4, 6, 1, 1, 8, 5, 5, 8, 1, 1, 6, 4, 6, 4, 7, 8, 3, 2, 8, 8], [8, 8, 6, 6, 1, 4, 3, 2, 6, 4, 1, 1, 2, 2, 1, 6, 6, 1, 2, 2, 1, 1, 4, 6, 2, 3, 4, 1, 6, 6], [8, 8, 6, 6, 4, 1, 2, 3, 4, 6, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 6, 4, 3, 2, 1, 4, 6, 6], [1, 1, 5, 5, 6, 4, 6, 4, 4, 6, 3, 3, 8, 8, 8, 2, 2, 8, 8, 8, 3, 3, 6, 4, 4, 6, 4, 6, 5, 5], [1, 1, 5, 5, 6, 6, 4, 6, 7, 4, 3, 3, 8, 8, 2, 8, 8, 2, 8, 8, 3, 3, 4, 7, 6, 4, 6, 6, 5, 5], [1, 7, 1, 1, 6, 4, 1, 1, 8, 6, 4, 6, 8, 2, 8, 8, 8, 8, 2, 8, 6, 4, 6, 8, 1, 1, 4, 6, 1, 1], [7, 1, 1, 1, 4, 6, 1, 1, 6, 8, 7, 4, 2, 8, 8, 8, 8, 8, 8, 2, 4, 7, 8, 6, 1, 1, 6, 4, 1, 1], [6, 6, 6, 4, 1, 1, 2, 2, 5, 4, 6, 6, 4, 6, 3, 3, 3, 3, 6, 4, 6, 6, 4, 5, 2, 2, 1, 1, 4, 6], [4, 6, 4, 6, 6, 1, 2, 2, 4, 5, 6, 6, 7, 4, 3, 3, 3, 3, 4, 7, 6, 6, 5, 4, 2, 2, 1, 6, 6, 4], [6, 4, 1, 1, 5, 8, 1, 1, 6, 6, 5, 4, 8, 6, 4, 6, 6, 4, 6, 8, 4, 5, 6, 6, 1, 1, 8, 5, 1, 1], [4, 6, 1, 1, 8, 5, 6, 1, 6, 6, 4, 5, 6, 8, 7, 4, 4, 7, 8, 6, 5, 4, 6, 6, 1, 6, 5, 8, 1, 1], [4, 6, 1, 1, 8, 5, 6, 1, 6, 6, 4, 5, 6, 8, 7, 4, 4, 7, 8, 6, 5, 4, 6, 6, 1, 6, 5, 8, 1, 1], [6, 4, 1, 1, 5, 8, 1, 1, 6, 6, 5, 4, 8, 6, 4, 6, 6, 4, 6, 8, 4, 5, 6, 6, 1, 1, 8, 5, 1, 1], [4, 6, 4, 6, 6, 1, 2, 2, 4, 5, 6, 6, 7, 4, 3, 3, 3, 3, 4, 7, 6, 6, 5, 4, 2, 2, 1, 6, 6, 4], [6, 6, 6, 4, 1, 1, 2, 2, 5, 4, 6, 6, 4, 6, 3, 3, 3, 3, 6, 4, 6, 6, 4, 5, 2, 2, 1, 1, 4, 6], [7, 1, 1, 1, 4, 6, 1, 1, 6, 8, 7, 4, 2, 8, 8, 8, 8, 8, 8, 2, 4, 7, 8, 6, 1, 1, 6, 4, 1, 1], [1, 7, 1, 1, 6, 4, 1, 1, 8, 6, 4, 6, 8, 2, 8, 8, 8, 8, 2, 8, 6, 4, 6, 8, 1, 1, 4, 6, 1, 1], [1, 1, 5, 5, 6, 6, 4, 6, 7, 4, 3, 3, 8, 8, 2, 8, 8, 2, 8, 8, 3, 3, 4, 7, 6, 4, 6, 6, 5, 5], [1, 1, 5, 5, 6, 4, 6, 4, 4, 6, 3, 3, 8, 8, 8, 2, 2, 8, 8, 8, 3, 3, 6, 4, 4, 6, 4, 6, 5, 5], [8, 8, 6, 6, 4, 1, 2, 3, 4, 6, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 6, 4, 3, 2, 1, 4, 6, 6], [8, 8, 6, 6, 1, 4, 3, 2, 6, 4, 1, 1, 2, 2, 1, 6, 6, 1, 2, 2, 1, 1, 4, 6, 2, 3, 4, 1, 6, 6], [6, 6, 8, 8, 2, 3, 8, 7, 4, 6, 4, 6, 1, 1, 8, 5, 5, 8, 1, 1, 6, 4, 6, 4, 7, 8, 3, 2, 8, 8], [6, 6, 8, 8, 3, 2, 7, 8, 6, 6, 6, 4, 1, 6, 5, 8, 8, 5, 6, 1, 4, 6, 6, 6, 8, 7, 2, 3, 8, 8], [4, 1, 2, 3, 4, 7, 7, 4, 5, 5, 1, 1, 4, 6, 1, 1, 1, 1, 6, 4, 1, 1, 5, 5, 4, 7, 7, 4, 3, 2], [1, 4, 3, 2, 7, 4, 4, 7, 5, 5, 1, 1, 6, 4, 1, 1, 1, 1, 4, 6, 1, 1, 5, 5, 7, 4, 4, 7, 2, 3]]}, {"input": [[3, 3, 8, 2, 8, 8, 7, 6, 4, 4, 6, 6, 3, 3, 2, 7, 7, 2, 3, 3, 6, 6, 4, 4, 6, 7, 8, 8, 2, 8], [3, 3, 2, 6, 8, 8, 6, 7, 6, 4, 6, 6, 1, 3, 7, 2, 2, 7, 3, 1, 6, 6, 4, 6, 7, 6, 8, 8, 6, 2], [8, 2, 3, 3, 7, 6, 8, 8, 8, 8, 4, 4, 2, 7, 6, 7, 7, 6, 7, 2, 4, 4, 8, 8, 8, 8, 6, 7, 3, 3], [2, 3, 3, 3, 6, 7, 8, 8, 8, 8, 6, 4, 7, 2, 3, 6, 6, 3, 2, 7, 4, 6, 8, 8, 8, 8, 7, 6, 3, 3], [5, 7, 8, 8, 3, 3, 6, 2, 3, 1, 2, 7, 1, 1, 5, 5, 5, 5, 1, 1, 7, 2, 1, 3, 2, 6, 9, 9, 9, 9], [7, 5, 8, 8, 3, 3, 2, 8, 3, 3, 7, 2, 1, 1, 5, 5, 5, 5, 1, 1, 2, 7, 3, 3, 8, 2, 9, 9, 9, 9], [8, 8, 5, 7, 3, 2, 3, 3, 2, 7, 6, 3, 6, 6, 1, 1, 1, 1, 6, 6, 3, 6, 7, 2, 3, 3, 9, 9, 9, 9], [8, 8, 7, 5, 2, 8, 3, 3, 7, 2, 7, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 7, 2, 7, 3, 3, 9, 9, 9, 9], [4, 6, 8, 8, 3, 3, 2, 7, 1, 7, 6, 5, 5, 5, 5, 7, 7, 5, 5, 5, 5, 6, 7, 1, 7, 2, 9, 9, 9, 9], [4, 4, 8, 8, 1, 3, 7, 2, 8, 1, 5, 5, 5, 5, 7, 5, 5, 7, 5, 5, 5, 5, 1, 8, 2, 7, 9, 9, 9, 9], [6, 6, 4, 6, 2, 7, 6, 7, 1, 3, 1, 7, 5, 7, 5, 5, 5, 5, 7, 5, 7, 1, 3, 1, 9, 9, 9, 9, 9, 9], [6, 6, 4, 4, 7, 2, 3, 6, 3, 3, 8, 1, 7, 5, 5, 5, 5, 5, 5, 7, 1, 8, 3, 3, 9, 9, 9, 9, 9, 9], [3, 1, 2, 7, 1, 1, 6, 6, 8, 5, 5, 4, 1, 7, 5, 5, 5, 5, 7, 9, 9, 9, 9, 9, 6, 6, 1, 1, 7, 2], [3, 3, 7, 2, 1, 1, 6, 6, 5, 8, 4, 5, 8, 1, 5, 6, 6, 5, 1, 9, 9, 9, 9, 9, 6, 6, 1, 1, 2, 7], [2, 7, 6, 3, 5, 5, 1, 1, 5, 4, 8, 5, 3, 3, 1, 7, 7, 1, 3, 9, 9, 9, 9, 9, 1, 1, 5, 5, 3, 6], [7, 2, 7, 6, 5, 5, 1, 1, 4, 5, 5, 8, 3, 1, 8, 1, 1, 8, 1, 3, 8, 5, 5, 4, 1, 1, 5, 5, 6, 7], [7, 2, 7, 6, 5, 5, 1, 1, 4, 5, 5, 8, 3, 1, 8, 1, 1, 8, 1, 3, 8, 5, 5, 4, 1, 1, 5, 5, 6, 7], [2, 7, 6, 3, 5, 5, 1, 1, 5, 4, 8, 5, 3, 3, 1, 7, 7, 1, 3, 3, 5, 8, 4, 5, 1, 1, 5, 5, 3, 6], [3, 3, 7, 2, 1, 1, 6, 6, 5, 8, 4, 5, 8, 1, 5, 6, 6, 5, 1, 8, 5, 4, 8, 5, 6, 6, 1, 1, 2, 7], [3, 1, 2, 7, 1, 1, 6, 6, 8, 5, 5, 4, 1, 7, 5, 5, 5, 5, 7, 1, 4, 5, 5, 8, 6, 6, 1, 1, 7, 2], [6, 6, 4, 4, 7, 2, 3, 6, 3, 3, 8, 1, 7, 5, 5, 5, 5, 5, 5, 7, 1, 8, 3, 3, 6, 3, 2, 7, 4, 4], [6, 6, 4, 6, 2, 7, 6, 7, 1, 3, 1, 7, 5, 7, 5, 5, 5, 5, 7, 5, 7, 1, 3, 1, 7, 6, 7, 2, 6, 4], [4, 4, 8, 8, 1, 3, 7, 2, 8, 1, 5, 5, 5, 5, 7, 5, 5, 7, 5, 5, 5, 5, 1, 8, 2, 7, 3, 1, 8, 8], [4, 6, 8, 8, 3, 3, 2, 7, 1, 7, 6, 5, 5, 5, 5, 7, 7, 5, 5, 5, 5, 6, 7, 1, 7, 2, 3, 3, 8, 8], [8, 8, 7, 5, 2, 8, 3, 3, 7, 2, 7, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 7, 2, 7, 3, 3, 8, 2, 5, 7], [8, 8, 5, 7, 3, 2, 3, 3, 2, 7, 6, 3, 6, 6, 1, 1, 1, 1, 6, 6, 3, 6, 7, 2, 3, 3, 2, 3, 7, 5], [7, 5, 8, 8, 3, 3, 2, 8, 3, 3, 7, 2, 1, 1, 5, 5, 5, 5, 1, 1, 2, 7, 3, 3, 8, 2, 3, 3, 8, 8], [5, 7, 8, 8, 3, 3, 6, 2, 3, 1, 2, 7, 1, 1, 5, 5, 5, 5, 1, 1, 7, 2, 1, 3, 2, 6, 3, 3, 8, 8], [2, 3, 3, 3, 6, 7, 8, 8, 8, 8, 6, 4, 7, 2, 3, 6, 6, 3, 2, 7, 4, 6, 8, 8, 8, 8, 7, 6, 3, 3], [8, 2, 3, 3, 7, 6, 8, 8, 8, 8, 4, 4, 2, 7, 6, 7, 7, 6, 7, 2, 4, 4, 8, 8, 8, 8, 6, 7, 3, 3]], "output": [[3, 3, 8, 2, 8, 8, 7, 6, 4, 4, 6, 6, 3, 3, 2, 7, 7, 2, 3, 3, 6, 6, 4, 4, 6, 7, 8, 8, 2, 8], [3, 3, 2, 6, 8, 8, 6, 7, 6, 4, 6, 6, 1, 3, 7, 2, 2, 7, 3, 1, 6, 6, 4, 6, 7, 6, 8, 8, 6, 2], [8, 2, 3, 3, 7, 6, 8, 8, 8, 8, 4, 4, 2, 7, 6, 7, 7, 6, 7, 2, 4, 4, 8, 8, 8, 8, 6, 7, 3, 3], [2, 3, 3, 3, 6, 7, 8, 8, 8, 8, 6, 4, 7, 2, 3, 6, 6, 3, 2, 7, 4, 6, 8, 8, 8, 8, 7, 6, 3, 3], [5, 7, 8, 8, 3, 3, 6, 2, 3, 1, 2, 7, 1, 1, 5, 5, 5, 5, 1, 1, 7, 2, 1, 3, 2, 6, 3, 3, 8, 8], [7, 5, 8, 8, 3, 3, 2, 8, 3, 3, 7, 2, 1, 1, 5, 5, 5, 5, 1, 1, 2, 7, 3, 3, 8, 2, 3, 3, 8, 8], [8, 8, 5, 7, 3, 2, 3, 3, 2, 7, 6, 3, 6, 6, 1, 1, 1, 1, 6, 6, 3, 6, 7, 2, 3, 3, 2, 3, 7, 5], [8, 8, 7, 5, 2, 8, 3, 3, 7, 2, 7, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 7, 2, 7, 3, 3, 8, 2, 5, 7], [4, 6, 8, 8, 3, 3, 2, 7, 1, 7, 6, 5, 5, 5, 5, 7, 7, 5, 5, 5, 5, 6, 7, 1, 7, 2, 3, 3, 8, 8], [4, 4, 8, 8, 1, 3, 7, 2, 8, 1, 5, 5, 5, 5, 7, 5, 5, 7, 5, 5, 5, 5, 1, 8, 2, 7, 3, 1, 8, 8], [6, 6, 4, 6, 2, 7, 6, 7, 1, 3, 1, 7, 5, 7, 5, 5, 5, 5, 7, 5, 7, 1, 3, 1, 7, 6, 7, 2, 6, 4], [6, 6, 4, 4, 7, 2, 3, 6, 3, 3, 8, 1, 7, 5, 5, 5, 5, 5, 5, 7, 1, 8, 3, 3, 6, 3, 2, 7, 4, 4], [3, 1, 2, 7, 1, 1, 6, 6, 8, 5, 5, 4, 1, 7, 5, 5, 5, 5, 7, 1, 4, 5, 5, 8, 6, 6, 1, 1, 7, 2], [3, 3, 7, 2, 1, 1, 6, 6, 5, 8, 4, 5, 8, 1, 5, 6, 6, 5, 1, 8, 5, 4, 8, 5, 6, 6, 1, 1, 2, 7], [2, 7, 6, 3, 5, 5, 1, 1, 5, 4, 8, 5, 3, 3, 1, 7, 7, 1, 3, 3, 5, 8, 4, 5, 1, 1, 5, 5, 3, 6], [7, 2, 7, 6, 5, 5, 1, 1, 4, 5, 5, 8, 3, 1, 8, 1, 1, 8, 1, 3, 8, 5, 5, 4, 1, 1, 5, 5, 6, 7], [7, 2, 7, 6, 5, 5, 1, 1, 4, 5, 5, 8, 3, 1, 8, 1, 1, 8, 1, 3, 8, 5, 5, 4, 1, 1, 5, 5, 6, 7], [2, 7, 6, 3, 5, 5, 1, 1, 5, 4, 8, 5, 3, 3, 1, 7, 7, 1, 3, 3, 5, 8, 4, 5, 1, 1, 5, 5, 3, 6], [3, 3, 7, 2, 1, 1, 6, 6, 5, 8, 4, 5, 8, 1, 5, 6, 6, 5, 1, 8, 5, 4, 8, 5, 6, 6, 1, 1, 2, 7], [3, 1, 2, 7, 1, 1, 6, 6, 8, 5, 5, 4, 1, 7, 5, 5, 5, 5, 7, 1, 4, 5, 5, 8, 6, 6, 1, 1, 7, 2], [6, 6, 4, 4, 7, 2, 3, 6, 3, 3, 8, 1, 7, 5, 5, 5, 5, 5, 5, 7, 1, 8, 3, 3, 6, 3, 2, 7, 4, 4], [6, 6, 4, 6, 2, 7, 6, 7, 1, 3, 1, 7, 5, 7, 5, 5, 5, 5, 7, 5, 7, 1, 3, 1, 7, 6, 7, 2, 6, 4], [4, 4, 8, 8, 1, 3, 7, 2, 8, 1, 5, 5, 5, 5, 7, 5, 5, 7, 5, 5, 5, 5, 1, 8, 2, 7, 3, 1, 8, 8], [4, 6, 8, 8, 3, 3, 2, 7, 1, 7, 6, 5, 5, 5, 5, 7, 7, 5, 5, 5, 5, 6, 7, 1, 7, 2, 3, 3, 8, 8], [8, 8, 7, 5, 2, 8, 3, 3, 7, 2, 7, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 7, 2, 7, 3, 3, 8, 2, 5, 7], [8, 8, 5, 7, 3, 2, 3, 3, 2, 7, 6, 3, 6, 6, 1, 1, 1, 1, 6, 6, 3, 6, 7, 2, 3, 3, 2, 3, 7, 5], [7, 5, 8, 8, 3, 3, 2, 8, 3, 3, 7, 2, 1, 1, 5, 5, 5, 5, 1, 1, 2, 7, 3, 3, 8, 2, 3, 3, 8, 8], [5, 7, 8, 8, 3, 3, 6, 2, 3, 1, 2, 7, 1, 1, 5, 5, 5, 5, 1, 1, 7, 2, 1, 3, 2, 6, 3, 3, 8, 8], [2, 3, 3, 3, 6, 7, 8, 8, 8, 8, 6, 4, 7, 2, 3, 6, 6, 3, 2, 7, 4, 6, 8, 8, 8, 8, 7, 6, 3, 3], [8, 2, 3, 3, 7, 6, 8, 8, 8, 8, 4, 4, 2, 7, 6, 7, 7, 6, 7, 2, 4, 4, 8, 8, 8, 8, 6, 7, 3, 3]]}, {"input": [[1, 6, 5, 5, 8, 8, 8, 8, 1, 3, 5, 2, 3, 6, 7, 3, 3, 7, 6, 3, 2, 5, 3, 1, 8, 8, 8, 8, 5, 5], [6, 1, 5, 2, 8, 8, 8, 8, 3, 1, 2, 5, 6, 3, 3, 6, 6, 3, 3, 6, 5, 2, 1, 3, 8, 8, 8, 8, 2, 5], [6, 3, 1, 6, 8, 8, 8, 8, 5, 3, 1, 3, 7, 3, 2, 2, 2, 2, 3, 7, 3, 1, 3, 5, 8, 8, 8, 8, 6, 1], [3, 6, 6, 1, 8, 8, 8, 8, 3, 5, 3, 1, 3, 6, 8, 2, 2, 9, 9, 9, 1, 3, 5, 3, 8, 8, 8, 8, 1, 6], [7, 7, 3, 3, 1, 6, 2, 5, 3, 6, 7, 3, 2, 1, 5, 5, 5, 9, 9, 9, 3, 7, 6, 9, 9, 2, 6, 1, 3, 3], [7, 7, 3, 3, 6, 1, 5, 5, 6, 3, 3, 6, 1, 2, 5, 5, 5, 9, 9, 9, 6, 3, 3, 9, 9, 5, 1, 6, 3, 3], [3, 3, 7, 7, 6, 3, 1, 6, 7, 3, 2, 8, 2, 1, 2, 1, 1, 9, 9, 9, 8, 2, 3, 7, 6, 1, 3, 6, 7, 7], [3, 3, 7, 7, 3, 6, 6, 1, 3, 6, 2, 2, 1, 2, 1, 2, 2, 9, 9, 9, 2, 2, 6, 3, 1, 6, 6, 3, 7, 7], [1, 3, 5, 3, 3, 6, 7, 3, 2, 2, 8, 8, 8, 4, 8, 8, 8, 9, 9, 9, 8, 8, 2, 2, 3, 7, 6, 3, 3, 5], [3, 1, 3, 5, 6, 3, 3, 6, 2, 2, 8, 8, 4, 8, 8, 8, 8, 9, 9, 9, 8, 8, 2, 2, 6, 3, 3, 6, 5, 3], [9, 9, 9, 3, 7, 3, 2, 2, 5, 3, 2, 2, 8, 8, 8, 4, 4, 8, 8, 8, 2, 2, 3, 5, 2, 2, 3, 7, 3, 1], [9, 9, 9, 1, 3, 6, 8, 2, 3, 8, 2, 2, 8, 8, 4, 8, 8, 4, 8, 8, 2, 2, 8, 3, 2, 8, 6, 3, 1, 3], [3, 6, 7, 3, 2, 1, 2, 1, 6, 8, 6, 7, 2, 2, 8, 8, 8, 8, 2, 2, 7, 6, 8, 6, 1, 2, 1, 2, 3, 7], [6, 3, 3, 6, 1, 2, 1, 2, 8, 6, 7, 6, 2, 2, 8, 8, 8, 8, 2, 2, 6, 7, 6, 8, 2, 1, 2, 1, 6, 3], [7, 3, 2, 8, 5, 5, 2, 1, 6, 7, 6, 8, 8, 3, 2, 2, 2, 2, 3, 8, 8, 6, 7, 6, 1, 2, 5, 5, 8, 2], [3, 6, 2, 2, 5, 5, 1, 2, 7, 6, 8, 6, 3, 5, 2, 2, 2, 2, 5, 3, 6, 8, 6, 7, 2, 1, 5, 5, 2, 2], [3, 6, 2, 2, 5, 5, 1, 2, 7, 6, 8, 6, 3, 5, 2, 2, 2, 2, 5, 3, 6, 8, 6, 7, 2, 1, 5, 5, 2, 2], [7, 3, 2, 8, 5, 5, 2, 1, 6, 7, 6, 8, 8, 3, 2, 2, 2, 2, 3, 8, 8, 6, 7, 6, 1, 2, 5, 5, 8, 2], [6, 3, 3, 6, 1, 2, 1, 2, 8, 6, 7, 6, 2, 2, 8, 8, 8, 8, 2, 2, 6, 7, 6, 8, 2, 1, 2, 1, 6, 3], [3, 6, 7, 3, 2, 1, 2, 1, 6, 8, 6, 7, 2, 2, 8, 8, 8, 8, 2, 2, 7, 6, 8, 6, 1, 2, 1, 2, 3, 7], [2, 5, 3, 1, 3, 6, 8, 2, 3, 8, 2, 2, 8, 8, 4, 8, 8, 4, 8, 8, 2, 2, 8, 3, 2, 8, 6, 3, 1, 3], [5, 2, 1, 3, 7, 3, 2, 2, 5, 3, 2, 2, 8, 8, 8, 4, 4, 8, 8, 8, 2, 2, 3, 5, 2, 2, 3, 7, 3, 1], [3, 1, 3, 5, 6, 3, 3, 6, 2, 2, 8, 8, 4, 8, 8, 8, 8, 8, 8, 4, 8, 8, 2, 2, 6, 3, 3, 6, 5, 3], [1, 3, 5, 3, 3, 6, 7, 3, 2, 2, 8, 8, 8, 4, 8, 8, 8, 8, 4, 8, 8, 8, 2, 2, 3, 7, 6, 3, 3, 5], [3, 3, 7, 7, 3, 6, 6, 1, 3, 6, 2, 2, 1, 2, 1, 2, 2, 1, 2, 1, 2, 2, 6, 3, 1, 6, 6, 3, 7, 7], [3, 3, 7, 7, 6, 3, 1, 6, 7, 3, 2, 8, 2, 1, 2, 1, 1, 2, 1, 2, 8, 2, 3, 7, 6, 1, 3, 6, 7, 7], [7, 7, 3, 3, 6, 1, 5, 5, 6, 3, 3, 6, 1, 2, 5, 5, 5, 5, 2, 1, 6, 3, 3, 6, 5, 5, 1, 6, 3, 3], [7, 7, 3, 3, 1, 6, 2, 5, 3, 6, 7, 3, 2, 1, 5, 5, 5, 5, 1, 2, 3, 7, 6, 3, 5, 2, 6, 1, 3, 3], [3, 6, 6, 1, 8, 8, 8, 8, 3, 5, 3, 1, 3, 6, 8, 2, 2, 8, 6, 3, 1, 3, 5, 3, 8, 8, 8, 8, 1, 6], [6, 3, 1, 6, 8, 8, 8, 8, 5, 3, 1, 3, 7, 3, 2, 2, 2, 2, 3, 7, 3, 1, 3, 5, 8, 8, 8, 8, 6, 1]], "output": [[1, 6, 5, 5, 8, 8, 8, 8, 1, 3, 5, 2, 3, 6, 7, 3, 3, 7, 6, 3, 2, 5, 3, 1, 8, 8, 8, 8, 5, 5], [6, 1, 5, 2, 8, 8, 8, 8, 3, 1, 2, 5, 6, 3, 3, 6, 6, 3, 3, 6, 5, 2, 1, 3, 8, 8, 8, 8, 2, 5], [6, 3, 1, 6, 8, 8, 8, 8, 5, 3, 1, 3, 7, 3, 2, 2, 2, 2, 3, 7, 3, 1, 3, 5, 8, 8, 8, 8, 6, 1], [3, 6, 6, 1, 8, 8, 8, 8, 3, 5, 3, 1, 3, 6, 8, 2, 2, 8, 6, 3, 1, 3, 5, 3, 8, 8, 8, 8, 1, 6], [7, 7, 3, 3, 1, 6, 2, 5, 3, 6, 7, 3, 2, 1, 5, 5, 5, 5, 1, 2, 3, 7, 6, 3, 5, 2, 6, 1, 3, 3], [7, 7, 3, 3, 6, 1, 5, 5, 6, 3, 3, 6, 1, 2, 5, 5, 5, 5, 2, 1, 6, 3, 3, 6, 5, 5, 1, 6, 3, 3], [3, 3, 7, 7, 6, 3, 1, 6, 7, 3, 2, 8, 2, 1, 2, 1, 1, 2, 1, 2, 8, 2, 3, 7, 6, 1, 3, 6, 7, 7], [3, 3, 7, 7, 3, 6, 6, 1, 3, 6, 2, 2, 1, 2, 1, 2, 2, 1, 2, 1, 2, 2, 6, 3, 1, 6, 6, 3, 7, 7], [1, 3, 5, 3, 3, 6, 7, 3, 2, 2, 8, 8, 8, 4, 8, 8, 8, 8, 4, 8, 8, 8, 2, 2, 3, 7, 6, 3, 3, 5], [3, 1, 3, 5, 6, 3, 3, 6, 2, 2, 8, 8, 4, 8, 8, 8, 8, 8, 8, 4, 8, 8, 2, 2, 6, 3, 3, 6, 5, 3], [5, 2, 1, 3, 7, 3, 2, 2, 5, 3, 2, 2, 8, 8, 8, 4, 4, 8, 8, 8, 2, 2, 3, 5, 2, 2, 3, 7, 3, 1], [2, 5, 3, 1, 3, 6, 8, 2, 3, 8, 2, 2, 8, 8, 4, 8, 8, 4, 8, 8, 2, 2, 8, 3, 2, 8, 6, 3, 1, 3], [3, 6, 7, 3, 2, 1, 2, 1, 6, 8, 6, 7, 2, 2, 8, 8, 8, 8, 2, 2, 7, 6, 8, 6, 1, 2, 1, 2, 3, 7], [6, 3, 3, 6, 1, 2, 1, 2, 8, 6, 7, 6, 2, 2, 8, 8, 8, 8, 2, 2, 6, 7, 6, 8, 2, 1, 2, 1, 6, 3], [7, 3, 2, 8, 5, 5, 2, 1, 6, 7, 6, 8, 8, 3, 2, 2, 2, 2, 3, 8, 8, 6, 7, 6, 1, 2, 5, 5, 8, 2], [3, 6, 2, 2, 5, 5, 1, 2, 7, 6, 8, 6, 3, 5, 2, 2, 2, 2, 5, 3, 6, 8, 6, 7, 2, 1, 5, 5, 2, 2], [3, 6, 2, 2, 5, 5, 1, 2, 7, 6, 8, 6, 3, 5, 2, 2, 2, 2, 5, 3, 6, 8, 6, 7, 2, 1, 5, 5, 2, 2], [7, 3, 2, 8, 5, 5, 2, 1, 6, 7, 6, 8, 8, 3, 2, 2, 2, 2, 3, 8, 8, 6, 7, 6, 1, 2, 5, 5, 8, 2], [6, 3, 3, 6, 1, 2, 1, 2, 8, 6, 7, 6, 2, 2, 8, 8, 8, 8, 2, 2, 6, 7, 6, 8, 2, 1, 2, 1, 6, 3], [3, 6, 7, 3, 2, 1, 2, 1, 6, 8, 6, 7, 2, 2, 8, 8, 8, 8, 2, 2, 7, 6, 8, 6, 1, 2, 1, 2, 3, 7], [2, 5, 3, 1, 3, 6, 8, 2, 3, 8, 2, 2, 8, 8, 4, 8, 8, 4, 8, 8, 2, 2, 8, 3, 2, 8, 6, 3, 1, 3], [5, 2, 1, 3, 7, 3, 2, 2, 5, 3, 2, 2, 8, 8, 8, 4, 4, 8, 8, 8, 2, 2, 3, 5, 2, 2, 3, 7, 3, 1], [3, 1, 3, 5, 6, 3, 3, 6, 2, 2, 8, 8, 4, 8, 8, 8, 8, 8, 8, 4, 8, 8, 2, 2, 6, 3, 3, 6, 5, 3], [1, 3, 5, 3, 3, 6, 7, 3, 2, 2, 8, 8, 8, 4, 8, 8, 8, 8, 4, 8, 8, 8, 2, 2, 3, 7, 6, 3, 3, 5], [3, 3, 7, 7, 3, 6, 6, 1, 3, 6, 2, 2, 1, 2, 1, 2, 2, 1, 2, 1, 2, 2, 6, 3, 1, 6, 6, 3, 7, 7], [3, 3, 7, 7, 6, 3, 1, 6, 7, 3, 2, 8, 2, 1, 2, 1, 1, 2, 1, 2, 8, 2, 3, 7, 6, 1, 3, 6, 7, 7], [7, 7, 3, 3, 6, 1, 5, 5, 6, 3, 3, 6, 1, 2, 5, 5, 5, 5, 2, 1, 6, 3, 3, 6, 5, 5, 1, 6, 3, 3], [7, 7, 3, 3, 1, 6, 2, 5, 3, 6, 7, 3, 2, 1, 5, 5, 5, 5, 1, 2, 3, 7, 6, 3, 5, 2, 6, 1, 3, 3], [3, 6, 6, 1, 8, 8, 8, 8, 3, 5, 3, 1, 3, 6, 8, 2, 2, 8, 6, 3, 1, 3, 5, 3, 8, 8, 8, 8, 1, 6], [6, 3, 1, 6, 8, 8, 8, 8, 5, 3, 1, 3, 7, 3, 2, 2, 2, 2, 3, 7, 3, 1, 3, 5, 8, 8, 8, 8, 6, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/fafd9572.json b/data/arc-agi/evaluation/fafd9572.json
deleted file mode 100644
index 8cf4991..0000000
--- a/data/arc-agi/evaluation/fafd9572.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0], [1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 3, 2, 0], [1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0], [3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 3, 2, 0], [3, 0, 3, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 3, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], [0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 4, 0, 0, 0], [0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0], [0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1], [0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1], [0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 7, 0, 0, 0, 4, 0], [0, 4, 4, 4, 0, 7, 7, 7, 0, 4, 4, 4], [0, 4, 0, 4, 0, 7, 0, 7, 0, 4, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3], [0, 3, 0, 3, 0, 0, 0, 0, 0, 3, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/fb791726.json b/data/arc-agi/evaluation/fb791726.json
deleted file mode 100644
index 7c21315..0000000
--- a/data/arc-agi/evaluation/fb791726.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0]], "output": [[0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0]]}, {"input": [[0, 8, 0], [0, 0, 0], [0, 8, 0]], "output": [[0, 8, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3], [0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0], [3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 8, 0]]}, {"input": [[0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[9, 0, 0, 0], [0, 0, 0, 0], [9, 0, 0, 0], [0, 0, 0, 0]], "output": [[9, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3], [9, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/fc754716.json b/data/arc-agi/evaluation/fc754716.json
deleted file mode 100644
index 6796172..0000000
--- a/data/arc-agi/evaluation/fc754716.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0], [0, 2, 0], [0, 0, 0]], "output": [[2, 2, 2], [2, 0, 2], [2, 2, 2]]}, {"input": [[0, 0, 0], [0, 0, 0], [0, 3, 0], [0, 0, 0], [0, 0, 0]], "output": [[3, 3, 3], [3, 0, 3], [3, 0, 3], [3, 0, 3], [3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1]]}, {"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 6, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[6, 6, 6, 6, 6], [6, 0, 0, 0, 6], [6, 0, 0, 0, 6], [6, 0, 0, 0, 6], [6, 6, 6, 6, 6]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/fd096ab6.json b/data/arc-agi/evaluation/fd096ab6.json
deleted file mode 100644
index a47a4bd..0000000
--- a/data/arc-agi/evaluation/fd096ab6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 6, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 4, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 7, 1, 1, 1], [1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 6, 6, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 1, 1, 1, 6, 1, 1, 1], [1, 1, 1, 1, 1, 1, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 6, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 4, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 7, 7, 7, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 7, 1, 1, 1, 7, 1, 1, 1], [1, 1, 1, 1, 1, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 7, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 8, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 7, 7, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}], "test": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 4, 1, 4, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 4, 4, 1, 4, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1], [1, 1, 1, 1, 1, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 6, 1, 6, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 8, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 8, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 4, 1, 4, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 4, 4, 1, 4, 1, 1, 2, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 5, 1, 1], [1, 1, 1, 1, 1, 1, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5, 1, 5, 1, 1], [1, 1, 1, 1, 1, 6, 1, 6, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 6, 6, 1, 6, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 7, 1, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1], [1, 1, 1, 1, 9, 1, 1, 1, 1, 7, 7, 1, 7, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 2, 1, 1, 1, 1, 1], [1, 1, 1, 9, 1, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 9, 9, 1, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/fd4b2b02.json b/data/arc-agi/evaluation/fd4b2b02.json
deleted file mode 100644
index b88328e..0000000
--- a/data/arc-agi/evaluation/fd4b2b02.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0], [6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/fe9372f3.json b/data/arc-agi/evaluation/fe9372f3.json
deleted file mode 100644
index 47843e8..0000000
--- a/data/arc-agi/evaluation/fe9372f3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 0, 0, 4, 0, 0, 0, 1, 0], [0, 1, 0, 0, 8, 0, 0, 1, 0, 0], [0, 0, 1, 0, 8, 0, 1, 0, 0, 0], [0, 0, 0, 1, 2, 1, 0, 0, 0, 0], [4, 8, 8, 2, 2, 2, 8, 8, 4, 8], [0, 0, 0, 1, 2, 1, 0, 0, 0, 0], [0, 0, 1, 0, 8, 0, 1, 0, 0, 0], [0, 1, 0, 0, 8, 0, 0, 1, 0, 0], [1, 0, 0, 0, 4, 0, 0, 0, 1, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 1], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 0, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 8, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 2, 2, 2, 8, 8, 4, 8, 8, 4, 8, 8, 4, 8, 8], [0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 8, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1, 0], [1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 8, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0], [4, 8, 8, 4, 8, 8, 2, 2, 2, 8, 8, 4, 8, 8, 4, 8, 8], [0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 8, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/fea12743.json b/data/arc-agi/evaluation/fea12743.json
deleted file mode 100644
index 254d14c..0000000
--- a/data/arc-agi/evaluation/fea12743.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 2, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 8, 8, 8, 8, 0], [0, 2, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 2, 2, 2, 2, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0], [0, 8, 8, 8, 8, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 3, 3, 3, 3, 0], [0, 0, 2, 0, 0, 0, 0, 3, 0, 3, 0], [0, 0, 2, 0, 0, 0, 0, 3, 0, 3, 0], [0, 2, 2, 2, 2, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 0, 2, 2, 0, 2, 0, 0, 2, 0], [0, 2, 0, 0, 2, 0, 2, 0, 2, 2, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 0, 0, 2, 0, 2, 0, 2, 2, 0], [0, 2, 2, 0, 2, 0, 2, 2, 0, 2, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 2, 0, 2, 0, 2, 0, 0, 2, 0], [0, 2, 0, 0, 2, 0, 2, 0, 2, 2, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 2, 2, 2, 2, 0], [0, 8, 0, 8, 8, 0, 2, 0, 0, 2, 0], [0, 8, 0, 0, 8, 0, 2, 0, 2, 2, 0], [0, 8, 8, 8, 8, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 3, 3, 3, 3, 0], [0, 8, 0, 0, 8, 0, 3, 0, 3, 3, 0], [0, 8, 8, 0, 8, 0, 3, 3, 0, 3, 0], [0, 8, 8, 8, 8, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 2, 0, 2, 0, 2, 0, 0, 2, 0], [0, 2, 0, 0, 2, 0, 2, 0, 2, 2, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0], [0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 0, 2, 2, 0, 2, 0, 0, 2, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 2, 2, 0], [0, 0, 2, 2, 2, 0, 0, 0, 2, 2, 0], [0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 2, 0, 2, 0], [0, 2, 2, 2, 0, 0, 2, 2, 0, 2, 0], [0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 8, 8, 0, 0], [0, 3, 3, 3, 3, 0, 8, 8, 8, 8, 0], [0, 3, 0, 3, 3, 0, 8, 0, 0, 8, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 8, 8, 0], [0, 0, 2, 2, 2, 0, 0, 0, 8, 8, 0], [0, 0, 2, 2, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 2, 0, 2, 0], [0, 2, 2, 2, 0, 0, 2, 2, 0, 2, 0], [0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0], [0, 0, 0, 2, 2, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 2, 2, 0], [0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0], [0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 2, 2, 0, 0], [0, 2, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0], [0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0], [0, 0, 0, 2, 2, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0], [0, 8, 0, 0, 8, 0, 8, 0, 0, 8, 0], [0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 2, 2, 0, 0], [0, 3, 0, 0, 3, 0, 2, 0, 0, 0, 0], [0, 3, 0, 0, 3, 0, 2, 0, 0, 2, 0], [0, 0, 3, 3, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/evaluation/ff72ca3e.json b/data/arc-agi/evaluation/ff72ca3e.json
deleted file mode 100644
index a5f4c7c..0000000
--- a/data/arc-agi/evaluation/ff72ca3e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5]], "output": [[0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 4, 2, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 0], [5, 0, 0, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 2, 2, 4, 2, 2, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 0], [0, 5, 0, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0], [0, 5, 2, 2, 4, 2, 2, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 2, 4, 2, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 2, 2, 2, 4, 2, 2, 2, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 5, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 4, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 5, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 2, 2, 4, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 4, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/results_direct.json b/data/arc-agi/results_direct.json
deleted file mode 100644
index 95f7ab0..0000000
--- a/data/arc-agi/results_direct.json
+++ /dev/null
@@ -1,3674 +0,0 @@
-{
- "summary": {
- "score": 0.0,
- "solved": 0,
- "failed": 20,
- "errored": 0,
- "total": 20,
- "elapsed_s": 107.6,
- "mode": "direct",
- "llm": "nvidia/meta/llama-3.1-8b-instruct"
- },
- "results": [
- {
- "task_id": "00576224",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 1,
- 0,
- 1,
- 0,
- 1
- ],
- [
- 0,
- 3,
- 0,
- 3,
- 0,
- 3
- ],
- [
- 1,
- 7,
- 1,
- 7,
- 1,
- 7
- ],
- [
- 0,
- 2,
- 0,
- 2,
- 0,
- 2
- ],
- [
- 1,
- 8,
- 1,
- 8,
- 1,
- 8
- ],
- [
- 0,
- 1,
- 0,
- 1,
- 0,
- 1
- ],
- [
- 1,
- 7,
- 1,
- 7,
- 1,
- 7
- ]
- ],
- "expected_shape": "6x6"
- },
- {
- "task_id": "009d5c81",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 3,
- 3,
- 0,
- 3,
- 0,
- 3,
- 3,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 3,
- 0,
- 3,
- 0,
- 3,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 3,
- 0,
- 0,
- 3,
- 3,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 3,
- 3,
- 0,
- 3,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 3,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "14x14"
- },
- {
- "task_id": "00dbd492",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0
- ],
- [
- 1,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 2,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 2,
- 0,
- 2,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 3,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 2,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 4,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 5,
- 2,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 6,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 7,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0
- ],
- [
- 8,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0
- ],
- [
- 9,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 2,
- 0,
- 2,
- 0,
- 2,
- 0,
- 0
- ],
- [
- 10,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0
- ],
- [
- 11,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0
- ],
- [
- 12,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 13,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 14,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 15,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 2,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 16,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 17,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 18,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 19,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "20x20"
- },
- {
- "task_id": "03560426",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 7,
- 7,
- 7,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 7,
- 0,
- 8,
- 8,
- 0,
- 6,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 7,
- 0,
- 8,
- 8,
- 0,
- 6,
- 0,
- 3,
- 3,
- 0,
- 0
- ],
- [
- 7,
- 0,
- 0,
- 0,
- 0,
- 6,
- 0,
- 3,
- 3,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "10x10"
- },
- {
- "task_id": "05a7bcf2",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": null,
- "expected_shape": "30x30"
- },
- {
- "task_id": "0607ce86",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": null,
- "expected_shape": "24x22"
- },
- {
- "task_id": "0692e18c",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 0,
- 0,
- 0,
- 3,
- 0,
- 3,
- 0,
- 0,
- 0
- ],
- [
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 3
- ],
- [
- 2,
- 0,
- 0,
- 0,
- 3,
- 0,
- 3,
- 0,
- 0,
- 0
- ],
- [
- 3,
- 3,
- 0,
- 3,
- 3,
- 0,
- 3,
- 3,
- 0,
- 3
- ],
- [
- 4,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 5,
- 3,
- 0,
- 3,
- 3,
- 0,
- 3,
- 3,
- 0,
- 3
- ],
- [
- 6,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 7,
- 3,
- 0,
- 3,
- 3,
- 0,
- 3,
- 3,
- 0,
- 3
- ],
- [
- 8,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "9x9"
- },
- {
- "task_id": "070dd51e",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 5,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 7,
- 0,
- 0,
- 0,
- 0,
- 7,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 5,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 8,
- 0,
- 0,
- 0,
- 0,
- 0,
- 8,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 3,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "20x20"
- },
- {
- "task_id": "08573cc6",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 3,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 4,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 5,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 6,
- 0,
- 2,
- 0,
- 2,
- 2,
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 7,
- 0,
- 2,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 8,
- 0,
- 2,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 9,
- 0,
- 2,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 10,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 11,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 12,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "13x13"
- },
- {
- "task_id": "0934a4d8",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 1,
- 2,
- 3,
- 4,
- 5,
- 6
- ],
- [
- 7,
- 8,
- 9,
- 10,
- 11,
- 12,
- 13
- ],
- [
- 14,
- 15,
- 16,
- 17,
- 18,
- 19,
- 20
- ]
- ],
- "expected_shape": "9x3"
- },
- {
- "task_id": "09c534e7",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": null,
- "expected_shape": "30x30"
- },
- {
- "task_id": "0a1d4ef5",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 8,
- 4,
- 3
- ],
- [
- 3,
- 7,
- 3
- ],
- [
- 2,
- 8,
- 4
- ]
- ],
- "expected_shape": "4x3"
- },
- {
- "task_id": "0a2355a6",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 4,
- 4,
- 4,
- 4,
- 4,
- 4,
- 4,
- 4,
- 4,
- 4,
- 4,
- 0,
- 4,
- 4,
- 4,
- 0
- ],
- [
- 0,
- 0,
- 4,
- 0,
- 4,
- 0,
- 4,
- 0,
- 4,
- 0,
- 4,
- 0,
- 4,
- 0,
- 4,
- 0,
- 4,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 4,
- 4,
- 4,
- 4,
- 4,
- 4,
- 4,
- 4,
- 4,
- 0,
- 4,
- 4,
- 4,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 3,
- 3,
- 3,
- 3,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 0,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 0,
- 3,
- 0,
- 0,
- 3,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 2,
- 0,
- 2,
- 0,
- 2,
- 0
- ],
- [
- 0,
- 3,
- 3,
- 3,
- 3,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 2,
- 0,
- 2,
- 0,
- 2,
- 0
- ],
- [
- 0,
- 3,
- 0,
- 0,
- 3,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 3,
- 3,
- 3,
- 3,
- 0,
- 0,
- 0,
- 2,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 1,
- 1,
- 1,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 1,
- 0,
- 1,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 1,
- 1,
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "15x17"
- },
- {
- "task_id": "0b17323b",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "15x15"
- },
- {
- "task_id": "0bb8deee",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 1,
- 2,
- 3,
- 4,
- 5
- ],
- [
- 0,
- 2,
- 2,
- 0,
- 1,
- 1
- ],
- [
- 1,
- 2,
- 0,
- 2,
- 1,
- 0
- ],
- [
- 2,
- 0,
- 2,
- 0,
- 0,
- 1
- ],
- [
- 3,
- 4,
- 0,
- 0,
- 5,
- 0
- ],
- [
- 4,
- 4,
- 4,
- 5,
- 0,
- 5
- ]
- ],
- "expected_shape": "6x6"
- },
- {
- "task_id": "0becf7df",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 8,
- 9
- ],
- [
- 2,
- 4
- ],
- [
- 0,
- 0
- ],
- [
- 2,
- 8
- ],
- [
- 2,
- 8
- ],
- [
- 2,
- 4
- ],
- [
- 2,
- 4
- ],
- [
- 9,
- 4
- ],
- [
- 0,
- 0
- ],
- [
- 0,
- 0
- ]
- ],
- "expected_shape": "10x10"
- },
- {
- "task_id": "0c786b71",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12,
- 13,
- 14,
- 15
- ],
- [
- 0,
- 8,
- 5,
- 8,
- 8,
- 8,
- 8,
- 5,
- 8,
- 7,
- 7,
- 7,
- 7,
- 7,
- 7,
- 7
- ],
- [
- 1,
- 7,
- 7,
- 8,
- 8,
- 8,
- 8,
- 5,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8
- ],
- [
- 2,
- 5,
- 5,
- 8,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5
- ],
- [
- 3,
- 5,
- 5,
- 8,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5
- ],
- [
- 4,
- 8,
- 5,
- 8,
- 8,
- 8,
- 8,
- 5,
- 8,
- 7,
- 7,
- 7,
- 7,
- 7,
- 7,
- 7
- ],
- [
- 5,
- 7,
- 7,
- 8,
- 8,
- 8,
- 8,
- 5,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8
- ],
- [
- 6,
- 5,
- 5,
- 8,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5
- ],
- [
- 7,
- 5,
- 5,
- 8,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5
- ],
- [
- 8,
- 8,
- 5,
- 8,
- 8,
- 8,
- 8,
- 5,
- 8,
- 7,
- 7,
- 7,
- 7,
- 7,
- 7,
- 7
- ],
- [
- 9,
- 7,
- 7,
- 8,
- 8,
- 8,
- 8,
- 5,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8
- ],
- [
- 10,
- 5,
- 5,
- 8,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5
- ],
- [
- 11,
- 5,
- 5,
- 8,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5
- ],
- [
- 12,
- 8,
- 5,
- 8,
- 8,
- 8,
- 8,
- 5,
- 8,
- 7,
- 7,
- 7,
- 7,
- 7,
- 7,
- 7
- ],
- [
- 13,
- 7,
- 7,
- 8,
- 8,
- 8,
- 8,
- 5,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8
- ],
- [
- 14,
- 5,
- 5,
- 8,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5
- ],
- [
- 15,
- 5,
- 5,
- 8,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5
- ]
- ],
- "expected_shape": "6x8"
- },
- {
- "task_id": "0c9aba6e",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 8,
- 8,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 8,
- 8
- ],
- [
- 0,
- 8,
- 0,
- 0
- ],
- [
- 8,
- 0,
- 0,
- 8
- ]
- ],
- "expected_shape": "6x4"
- },
- {
- "task_id": "0d87d2a6",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 1,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0
- ],
- [
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0
- ],
- [
- 3,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 0,
- 0,
- 2,
- 2,
- 2,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0
- ],
- [
- 4,
- 1,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 2,
- 2,
- 2,
- 2,
- 0,
- 1
- ],
- [
- 5,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 6,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 0
- ],
- [
- 7,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 0
- ],
- [
- 8,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 0
- ],
- [
- 9,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 10,
- 1,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 1
- ],
- [
- 11,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 12,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 13,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 14,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 15,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 16,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 17,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 18,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 2,
- 2,
- 0,
- 0,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 19,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 20,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 21,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 22,
- 0,
- 0,
- 0,
- 0,
- 0,
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "23x25"
- },
- {
- "task_id": "0e671a1a",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "13x13"
- }
- ]
-}
\ No newline at end of file
diff --git a/data/arc-agi/results_memory.json b/data/arc-agi/results_memory.json
deleted file mode 100644
index 2f9e501..0000000
--- a/data/arc-agi/results_memory.json
+++ /dev/null
@@ -1,3592 +0,0 @@
-{
- "summary": {
- "score": 0.0,
- "solved": 0,
- "failed": 20,
- "errored": 0,
- "total": 20,
- "elapsed_s": 124.5,
- "mode": "memory",
- "llm": "nvidia/meta/llama-3.1-8b-instruct"
- },
- "results": [
- {
- "task_id": "00576224",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 1,
- 2,
- 3,
- 4,
- 5
- ],
- [
- 0,
- 3,
- 2,
- 0,
- 3,
- 2
- ],
- [
- 1,
- 7,
- 8,
- 1,
- 7,
- 8
- ],
- [
- 2,
- 2,
- 3,
- 2,
- 2,
- 3
- ],
- [
- 3,
- 3,
- 7,
- 3,
- 3,
- 7
- ],
- [
- 4,
- 8,
- 0,
- 4,
- 8,
- 0
- ],
- [
- 5,
- 7,
- 2,
- 5,
- 7,
- 2
- ]
- ],
- "expected_shape": "6x6"
- },
- {
- "task_id": "009d5c81",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 3,
- 3,
- 0,
- 3,
- 0,
- 3,
- 3,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 3,
- 0,
- 3,
- 0,
- 3,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 3,
- 0,
- 0,
- 3,
- 3,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 3,
- 3,
- 0,
- 3,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 3,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "14x14"
- },
- {
- "task_id": "00dbd492",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0
- ],
- [
- 1,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 2,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 2,
- 0,
- 2,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 3,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 2,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 4,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 5,
- 2,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 6,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 7,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0
- ],
- [
- 8,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0
- ],
- [
- 9,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 2,
- 0,
- 2,
- 0,
- 2,
- 0,
- 0
- ],
- [
- 10,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0
- ],
- [
- 11,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0
- ],
- [
- 12,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 13,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 14,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 15,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 2,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 16,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 17,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 18,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 19,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "20x20"
- },
- {
- "task_id": "03560426",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 7,
- 7,
- 7,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 7,
- 0,
- 8,
- 8,
- 0,
- 6,
- 0,
- 3,
- 3,
- 0
- ],
- [
- 7,
- 0,
- 8,
- 8,
- 0,
- 6,
- 0,
- 3,
- 3,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "10x10"
- },
- {
- "task_id": "05a7bcf2",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": null,
- "expected_shape": "30x30"
- },
- {
- "task_id": "0607ce86",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": null,
- "expected_shape": "24x22"
- },
- {
- "task_id": "0692e18c",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 0,
- 0,
- 0,
- 3,
- 0,
- 3,
- 0,
- 0,
- 0
- ],
- [
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 3
- ],
- [
- 2,
- 0,
- 0,
- 0,
- 3,
- 0,
- 3,
- 0,
- 0,
- 0
- ],
- [
- 3,
- 3,
- 0,
- 3,
- 3,
- 0,
- 3,
- 3,
- 0,
- 3
- ],
- [
- 4,
- 0,
- 3,
- 0,
- 0,
- 0,
- 0,
- 3,
- 3,
- 0
- ],
- [
- 5,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 3,
- 3
- ],
- [
- 6,
- 3,
- 0,
- 3,
- 3,
- 0,
- 3,
- 0,
- 0,
- 0
- ],
- [
- 7,
- 0,
- 3,
- 0,
- 0,
- 0,
- 0,
- 3,
- 3,
- 0
- ],
- [
- 8,
- 0,
- 0,
- 0,
- 3,
- 0,
- 3,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "9x9"
- },
- {
- "task_id": "070dd51e",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12,
- 13,
- 14,
- 15,
- 16,
- 17,
- 18,
- 19
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 3,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 4,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 5,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 6,
- 0,
- 0,
- 3,
- 3,
- 3,
- 2,
- 3,
- 3,
- 3,
- 3,
- 3,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 7,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 8,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 9,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 10,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 11,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 12,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 8,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 13,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 8,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 14,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 8,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 15,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 8,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 16,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 8,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 17,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 8,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 18,
- 0,
- 0,
- 0,
- 3,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 19,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "20x20"
- },
- {
- "task_id": "08573cc6",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 3,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 4,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 5,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 6,
- 0,
- 2,
- 0,
- 2,
- 2,
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 7,
- 0,
- 2,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 8,
- 0,
- 2,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 9,
- 0,
- 2,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 10,
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 11,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 12,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "13x13"
- },
- {
- "task_id": "0934a4d8",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 1,
- 2,
- 3,
- 4,
- 5,
- 6
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 1,
- 1,
- 1,
- 1,
- 1,
- 1,
- 1
- ],
- [
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2
- ],
- [
- 3,
- 3,
- 3,
- 3,
- 3,
- 3,
- 3
- ],
- [
- 4,
- 4,
- 4,
- 4,
- 4,
- 4,
- 4
- ],
- [
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5
- ],
- [
- 6,
- 6,
- 6,
- 6,
- 6,
- 6,
- 6
- ]
- ],
- "expected_shape": "9x3"
- },
- {
- "task_id": "09c534e7",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": null,
- "expected_shape": "30x30"
- },
- {
- "task_id": "0a1d4ef5",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 8,
- 4,
- 3
- ],
- [
- 3,
- 7,
- 3
- ],
- [
- 2,
- 8,
- 4
- ]
- ],
- "expected_shape": "4x3"
- },
- {
- "task_id": "0a2355a6",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "15x17"
- },
- {
- "task_id": "0b17323b",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "15x15"
- },
- {
- "task_id": "0bb8deee",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 1,
- 2,
- 3,
- 4,
- 5
- ],
- [
- 0,
- 2,
- 2,
- 0,
- 0,
- 3,
- 3
- ],
- [
- 1,
- 0,
- 2,
- 0,
- 3,
- 3,
- 0
- ],
- [
- 2,
- 0,
- 1,
- 1,
- 0,
- 3,
- 0
- ],
- [
- 3,
- 0,
- 4,
- 0,
- 5,
- 5,
- 0
- ],
- [
- 4,
- 4,
- 0,
- 4,
- 0,
- 5,
- 0
- ],
- [
- 5,
- 0,
- 4,
- 0,
- 0,
- 0,
- 5
- ]
- ],
- "expected_shape": "6x6"
- },
- {
- "task_id": "0becf7df",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 8,
- 9
- ],
- [
- 2,
- 4
- ],
- [
- 0,
- 0
- ],
- [
- 0,
- 0
- ],
- [
- 2,
- 2
- ],
- [
- 2,
- 2
- ],
- [
- 2,
- 4
- ],
- [
- 9,
- 4
- ],
- [
- 0,
- 0
- ],
- [
- 0,
- 0
- ]
- ],
- "expected_shape": "10x10"
- },
- {
- "task_id": "0c786b71",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12,
- 13,
- 14,
- 15
- ],
- [
- 0,
- 8,
- 5,
- 8,
- 8,
- 8,
- 8,
- 5,
- 8,
- 7,
- 7,
- 8,
- 8,
- 8,
- 8,
- 7
- ],
- [
- 1,
- 7,
- 7,
- 8,
- 8,
- 8,
- 8,
- 5,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8
- ],
- [
- 2,
- 5,
- 5,
- 8,
- 5,
- 5,
- 5,
- 5,
- 8,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5
- ],
- [
- 3,
- 5,
- 5,
- 8,
- 5,
- 5,
- 5,
- 5,
- 8,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5
- ],
- [
- 4,
- 8,
- 5,
- 8,
- 8,
- 8,
- 8,
- 5,
- 8,
- 7,
- 7,
- 8,
- 8,
- 8,
- 8,
- 7
- ],
- [
- 5,
- 7,
- 7,
- 8,
- 8,
- 8,
- 8,
- 5,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8
- ]
- ],
- "expected_shape": "6x8"
- },
- {
- "task_id": "0c9aba6e",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 8,
- 8,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 8,
- 8
- ],
- [
- 0,
- 8,
- 0,
- 0
- ],
- [
- 8,
- 0,
- 0,
- 8
- ]
- ],
- "expected_shape": "6x4"
- },
- {
- "task_id": "0d87d2a6",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12,
- 13,
- 14,
- 15,
- 16,
- 17,
- 18,
- 19,
- 20,
- 21,
- 22,
- 23,
- 24
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 1,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 2,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 2,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 3,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 2,
- 2,
- 2,
- 2,
- 1
- ],
- [
- 4,
- 1,
- 0,
- 0,
- 1,
- 1,
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 2,
- 2,
- 2,
- 2,
- 1
- ],
- [
- 5,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2
- ],
- [
- 6,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2
- ],
- [
- 7,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 8,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2
- ],
- [
- 9,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 10,
- 1,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 1
- ],
- [
- 11,
- 0,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 12,
- 0,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 13,
- 0,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 14,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 15,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 16,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 17,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 18,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 2,
- 2,
- 0,
- 0,
- 2,
- 2,
- 2,
- 0
- ],
- [
- 19,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 20,
- 0,
- 0,
- 0,
- 0,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 21,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 22,
- 0,
- 0,
- 0,
- 0,
- 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "23x25"
- },
- {
- "task_id": "0e671a1a",
- "test_idx": 0,
- "status": "WRONG",
- "predicted": [
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 4,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 2,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 3,
- 0,
- 0,
- 0,
- 0,
- 0
- ],
- [
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
- ]
- ],
- "expected_shape": "13x13"
- }
- ]
-}
\ No newline at end of file
diff --git a/data/arc-agi/training/007bbfb7.json b/data/arc-agi/training/007bbfb7.json
deleted file mode 100644
index 433f607..0000000
--- a/data/arc-agi/training/007bbfb7.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[7, 0, 7], [7, 0, 7], [7, 7, 0]], "output": [[7, 0, 7, 0, 0, 0, 7, 0, 7], [7, 0, 7, 0, 0, 0, 7, 0, 7], [7, 7, 0, 0, 0, 0, 7, 7, 0], [7, 0, 7, 0, 0, 0, 7, 0, 7], [7, 0, 7, 0, 0, 0, 7, 0, 7], [7, 7, 0, 0, 0, 0, 7, 7, 0], [7, 0, 7, 7, 0, 7, 0, 0, 0], [7, 0, 7, 7, 0, 7, 0, 0, 0], [7, 7, 0, 7, 7, 0, 0, 0, 0]]}], "train": [{"input": [[0, 7, 7], [7, 7, 7], [0, 7, 7]], "output": [[0, 0, 0, 0, 7, 7, 0, 7, 7], [0, 0, 0, 7, 7, 7, 7, 7, 7], [0, 0, 0, 0, 7, 7, 0, 7, 7], [0, 7, 7, 0, 7, 7, 0, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 7, 7, 0, 7, 7, 0, 7, 7], [0, 0, 0, 0, 7, 7, 0, 7, 7], [0, 0, 0, 7, 7, 7, 7, 7, 7], [0, 0, 0, 0, 7, 7, 0, 7, 7]]}, {"input": [[4, 0, 4], [0, 0, 0], [0, 4, 0]], "output": [[4, 0, 4, 0, 0, 0, 4, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0]]}, {"input": [[0, 0, 0], [0, 0, 2], [2, 0, 2]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 2, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 2], [2, 0, 2, 0, 0, 0, 2, 0, 2]]}, {"input": [[6, 6, 0], [6, 0, 0], [0, 6, 6]], "output": [[6, 6, 0, 6, 6, 0, 0, 0, 0], [6, 0, 0, 6, 0, 0, 0, 0, 0], [0, 6, 6, 0, 6, 6, 0, 0, 0], [6, 6, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 0, 6, 6, 0], [0, 0, 0, 6, 0, 0, 6, 0, 0], [0, 0, 0, 0, 6, 6, 0, 6, 6]]}, {"input": [[2, 2, 2], [0, 0, 0], [0, 2, 2]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 2, 2, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/00d62c1b.json b/data/arc-agi/training/00d62c1b.json
deleted file mode 100644
index 1658b5b..0000000
--- a/data/arc-agi/training/00d62c1b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0], [0, 3, 0, 3, 0, 0], [0, 0, 3, 0, 3, 0], [0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0], [0, 3, 4, 3, 0, 0], [0, 0, 3, 4, 3, 0], [0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 3, 0, 0], [0, 0, 0, 3, 0, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 3, 4, 3, 0, 0], [0, 0, 0, 3, 0, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 3, 3, 0, 3, 3, 0, 3, 0, 0], [3, 0, 0, 3, 0, 0, 3, 0, 3, 0], [0, 0, 0, 3, 0, 0, 3, 3, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 3, 3, 0, 3, 3, 0, 3, 0, 0], [3, 0, 0, 3, 4, 4, 3, 4, 3, 0], [0, 0, 0, 3, 4, 4, 3, 3, 0, 0], [0, 0, 0, 3, 4, 4, 3, 0, 0, 0], [0, 0, 0, 3, 4, 4, 3, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 3, 0, 0, 3, 0, 0, 0, 0], [0, 0, 3, 0, 0, 3, 0, 3, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 3, 0], [0, 0, 0, 3, 3, 0, 0, 3, 0, 3], [0, 0, 0, 3, 0, 3, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 3, 4, 4, 3, 0, 0, 0, 0], [0, 0, 3, 4, 4, 3, 0, 3, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 3, 3, 0], [0, 0, 0, 3, 3, 0, 0, 3, 4, 3], [0, 0, 0, 3, 4, 3, 0, 0, 3, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 3, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 0, 0, 3, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 3, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 4, 4, 4, 4, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 4, 4, 4, 4, 4, 4, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 4, 4, 4, 4, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 4, 4, 4, 4, 3, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 3, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 4, 4, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 3, 3, 0, 0, 3, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 3, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 4, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 3, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 4, 4, 4, 4, 3, 4, 4, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 4, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 4, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 4, 4, 4, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 4, 3, 4, 4, 4, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 4, 4, 4, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 4, 3, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/017c7c7b.json b/data/arc-agi/training/017c7c7b.json
deleted file mode 100644
index 58e74c8..0000000
--- a/data/arc-agi/training/017c7c7b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 1, 0], [1, 1, 0], [0, 1, 0], [0, 1, 1], [0, 1, 0], [1, 1, 0]], "output": [[0, 2, 0], [2, 2, 0], [0, 2, 0], [0, 2, 2], [0, 2, 0], [2, 2, 0], [0, 2, 0], [0, 2, 2], [0, 2, 0]]}, {"input": [[0, 1, 0], [1, 0, 1], [0, 1, 0], [1, 0, 1], [0, 1, 0], [1, 0, 1]], "output": [[0, 2, 0], [2, 0, 2], [0, 2, 0], [2, 0, 2], [0, 2, 0], [2, 0, 2], [0, 2, 0], [2, 0, 2], [0, 2, 0]]}, {"input": [[0, 1, 0], [1, 1, 0], [0, 1, 0], [0, 1, 0], [1, 1, 0], [0, 1, 0]], "output": [[0, 2, 0], [2, 2, 0], [0, 2, 0], [0, 2, 0], [2, 2, 0], [0, 2, 0], [0, 2, 0], [2, 2, 0], [0, 2, 0]]}], "test": [{"input": [[1, 1, 1], [0, 1, 0], [0, 1, 0], [1, 1, 1], [0, 1, 0], [0, 1, 0]], "output": [[2, 2, 2], [0, 2, 0], [0, 2, 0], [2, 2, 2], [0, 2, 0], [0, 2, 0], [2, 2, 2], [0, 2, 0], [0, 2, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/025d127b.json b/data/arc-agi/training/025d127b.json
deleted file mode 100644
index dd97ef8..0000000
--- a/data/arc-agi/training/025d127b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 0, 0, 0, 0, 0], [0, 6, 0, 0, 6, 0, 0, 0, 0], [0, 0, 6, 0, 0, 6, 0, 0, 0], [0, 0, 0, 6, 0, 0, 6, 0, 0], [0, 0, 0, 0, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 6, 0, 0, 6, 0, 0, 0], [0, 0, 0, 6, 0, 0, 6, 0, 0], [0, 0, 0, 0, 6, 0, 6, 0, 0], [0, 0, 0, 0, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 0, 0], [0, 8, 0, 0, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 0, 8], [0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 0, 0], [0, 0, 8, 0, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 0, 8], [0, 0, 0, 0, 8, 0, 0, 0, 8], [0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 4, 0, 0, 0, 0, 4], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
diff --git a/data/arc-agi/training/045e512c.json b/data/arc-agi/training/045e512c.json
deleted file mode 100644
index e02f567..0000000
--- a/data/arc-agi/training/045e512c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 3, 3, 3, 0, 3, 3, 3, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 3, 3, 3, 0, 3, 3, 3, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 1, 1, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 4], [2, 2, 0, 2, 2, 2, 0, 2, 2, 2, 0, 1, 1, 1, 0, 4, 4, 4, 0, 4, 4], [2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/0520fde7.json b/data/arc-agi/training/0520fde7.json
deleted file mode 100644
index a7b90b3..0000000
--- a/data/arc-agi/training/0520fde7.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 0, 0, 5, 0, 1, 0], [0, 1, 0, 5, 1, 1, 1], [1, 0, 0, 5, 0, 0, 0]], "output": [[0, 0, 0], [0, 2, 0], [0, 0, 0]]}, {"input": [[1, 1, 0, 5, 0, 1, 0], [0, 0, 1, 5, 1, 1, 1], [1, 1, 0, 5, 0, 1, 0]], "output": [[0, 2, 0], [0, 0, 2], [0, 2, 0]]}, {"input": [[0, 0, 1, 5, 0, 0, 0], [1, 1, 0, 5, 1, 0, 1], [0, 1, 1, 5, 1, 0, 1]], "output": [[0, 0, 0], [2, 0, 0], [0, 0, 2]]}], "test": [{"input": [[1, 0, 1, 5, 1, 0, 1], [0, 1, 0, 5, 1, 0, 1], [1, 0, 1, 5, 0, 1, 0]], "output": [[2, 0, 2], [0, 0, 0], [0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/05269061.json b/data/arc-agi/training/05269061.json
deleted file mode 100644
index e690d4d..0000000
--- a/data/arc-agi/training/05269061.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 8, 3, 0, 0, 0, 0], [8, 3, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[2, 8, 3, 2, 8, 3, 2], [8, 3, 2, 8, 3, 2, 8], [3, 2, 8, 3, 2, 8, 3], [2, 8, 3, 2, 8, 3, 2], [8, 3, 2, 8, 3, 2, 8], [3, 2, 8, 3, 2, 8, 3], [2, 8, 3, 2, 8, 3, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 1, 2], [0, 0, 0, 0, 1, 2, 4], [0, 0, 0, 1, 2, 4, 0], [0, 0, 1, 2, 4, 0, 0]], "output": [[2, 4, 1, 2, 4, 1, 2], [4, 1, 2, 4, 1, 2, 4], [1, 2, 4, 1, 2, 4, 1], [2, 4, 1, 2, 4, 1, 2], [4, 1, 2, 4, 1, 2, 4], [1, 2, 4, 1, 2, 4, 1], [2, 4, 1, 2, 4, 1, 2]]}, {"input": [[0, 0, 0, 0, 8, 3, 0], [0, 0, 0, 8, 3, 0, 0], [0, 0, 8, 3, 0, 0, 0], [0, 8, 3, 0, 0, 0, 4], [8, 3, 0, 0, 0, 4, 0], [3, 0, 0, 0, 4, 0, 0], [0, 0, 0, 4, 0, 0, 0]], "output": [[4, 8, 3, 4, 8, 3, 4], [8, 3, 4, 8, 3, 4, 8], [3, 4, 8, 3, 4, 8, 3], [4, 8, 3, 4, 8, 3, 4], [8, 3, 4, 8, 3, 4, 8], [3, 4, 8, 3, 4, 8, 3], [4, 8, 3, 4, 8, 3, 4]]}], "test": [{"input": [[0, 1, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 4], [2, 0, 0, 0, 0, 4, 0]], "output": [[2, 1, 4, 2, 1, 4, 2], [1, 4, 2, 1, 4, 2, 1], [4, 2, 1, 4, 2, 1, 4], [2, 1, 4, 2, 1, 4, 2], [1, 4, 2, 1, 4, 2, 1], [4, 2, 1, 4, 2, 1, 4], [2, 1, 4, 2, 1, 4, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/05f2a901.json b/data/arc-agi/training/05f2a901.json
deleted file mode 100644
index f00a08f..0000000
--- a/data/arc-agi/training/05f2a901.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0], [2, 2, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0], [2, 2, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 8, 8, 0, 0, 2, 2, 0, 0, 0], [0, 8, 8, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 8, 8, 2, 2, 0, 0, 0, 0, 0], [0, 8, 8, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/06df4c85.json b/data/arc-agi/training/06df4c85.json
deleted file mode 100644
index d51b738..0000000
--- a/data/arc-agi/training/06df4c85.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 2, 2, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0], [0, 0, 8, 2, 2, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 1, 1, 8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 1, 1, 8, 0, 0, 8, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 3, 3, 8, 0, 0, 8, 3, 3, 8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 3, 3, 8, 0, 0, 8, 3, 3, 8, 0, 0, 8, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0]], "output": [[0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 2, 2, 8, 2, 2, 8, 2, 2, 8, 2, 2, 8, 2, 2, 8, 0, 0], [0, 0, 8, 2, 2, 8, 2, 2, 8, 2, 2, 8, 2, 2, 8, 2, 2, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 1, 1, 8, 0, 0, 8, 2, 2, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 1, 1, 8, 0, 0, 8, 2, 2, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 2, 2, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 0, 0, 8, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0]]}, {"input": [[0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 2, 2, 1, 0, 0, 1, 0, 0, 1, 4, 4, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 2, 2, 1, 0, 0, 1, 0, 0, 1, 4, 4, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 9, 9, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 9, 9], [0, 0, 1, 0, 0, 1, 0, 0, 1, 9, 9, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 9, 9], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 8, 8, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 8, 8, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 2, 2, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 2, 2, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 8, 8, 1, 0, 0, 1, 0, 0, 1, 8, 8, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 8, 8, 1, 0, 0, 1, 0, 0, 1, 8, 8, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0]], "output": [[0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 2, 2, 1, 0, 0, 1, 0, 0, 1, 4, 4, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 2, 2, 1, 0, 0, 1, 0, 0, 1, 4, 4, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 2, 2, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 2, 2, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 2, 2, 1, 0, 0, 1, 9, 9, 1, 9, 9, 1, 9, 9, 1, 9, 9, 1, 9, 9], [0, 0, 1, 2, 2, 1, 0, 0, 1, 9, 9, 1, 9, 9, 1, 9, 9, 1, 9, 9, 1, 9, 9], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 2, 2, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 8, 8, 1, 0, 0], [0, 0, 1, 2, 2, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 8, 8, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 2, 2, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 8, 8, 1, 0, 0], [0, 0, 1, 2, 2, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 8, 8, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 8, 8, 1, 8, 8, 1, 8, 8, 1, 8, 8, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 8, 8, 1, 8, 8, 1, 8, 8, 1, 8, 8, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0]]}, {"input": [[0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0], [0, 0, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 3, 3, 4, 0, 0, 4, 0, 0], [0, 0, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 3, 3, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0]], "output": [[0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0], [0, 0, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 3, 3, 4, 0, 0, 4, 2, 2, 4, 2, 2, 4, 2, 2, 4, 2, 2, 4, 0, 0], [0, 0, 4, 3, 3, 4, 0, 0, 4, 2, 2, 4, 2, 2, 4, 2, 2, 4, 2, 2, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 3, 3, 4, 3, 3, 4, 3, 3, 4, 3, 3, 4, 3, 3, 4, 0, 0, 4, 0, 0], [0, 0, 4, 3, 3, 4, 3, 3, 4, 3, 3, 4, 3, 3, 4, 3, 3, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0]]}], "test": [{"input": [[0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 3, 3, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 3, 3, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0]], "output": [[0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 3, 3, 4, 0, 0], [0, 0, 4, 0, 0, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 3, 3, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 2, 2, 4, 2, 2, 4, 2, 2, 4, 2, 2, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 2, 2, 4, 2, 2, 4, 2, 2, 4, 2, 2, 4, 2, 2, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/08ed6ac7.json b/data/arc-agi/training/08ed6ac7.json
deleted file mode 100644
index 789358f..0000000
--- a/data/arc-agi/training/08ed6ac7.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 5, 0, 5, 0, 5, 0, 0, 0], [0, 5, 0, 5, 0, 5, 0, 0, 0], [0, 5, 0, 5, 0, 5, 0, 0, 0], [0, 5, 0, 5, 0, 5, 0, 5, 0], [0, 5, 0, 5, 0, 5, 0, 5, 0], [0, 5, 0, 5, 0, 5, 0, 5, 0]], "output": [[0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 2, 0, 0, 0, 1, 0, 0, 0], [0, 2, 0, 0, 0, 1, 0, 0, 0], [0, 2, 0, 3, 0, 1, 0, 0, 0], [0, 2, 0, 3, 0, 1, 0, 0, 0], [0, 2, 0, 3, 0, 1, 0, 0, 0], [0, 2, 0, 3, 0, 1, 0, 4, 0], [0, 2, 0, 3, 0, 1, 0, 4, 0], [0, 2, 0, 3, 0, 1, 0, 4, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 5, 0, 5, 0], [0, 0, 0, 5, 0, 5, 0, 5, 0], [0, 5, 0, 5, 0, 5, 0, 5, 0], [0, 5, 0, 5, 0, 5, 0, 5, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 2, 0, 0, 0, 1, 0], [0, 0, 0, 2, 0, 3, 0, 1, 0], [0, 0, 0, 2, 0, 3, 0, 1, 0], [0, 4, 0, 2, 0, 3, 0, 1, 0], [0, 4, 0, 2, 0, 3, 0, 1, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 5, 0], [0, 5, 0, 0, 0, 5, 0, 5, 0], [0, 5, 0, 5, 0, 5, 0, 5, 0], [0, 5, 0, 5, 0, 5, 0, 5, 0], [0, 5, 0, 5, 0, 5, 0, 5, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 2, 0, 0, 0], [0, 1, 0, 0, 0, 2, 0, 0, 0], [0, 1, 0, 0, 0, 2, 0, 3, 0], [0, 1, 0, 0, 0, 2, 0, 3, 0], [0, 1, 0, 4, 0, 2, 0, 3, 0], [0, 1, 0, 4, 0, 2, 0, 3, 0], [0, 1, 0, 4, 0, 2, 0, 3, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/09629e4f.json b/data/arc-agi/training/09629e4f.json
deleted file mode 100644
index c427a19..0000000
--- a/data/arc-agi/training/09629e4f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 0, 0, 5, 0, 6, 2, 5, 0, 0, 4], [0, 4, 3, 5, 4, 0, 8, 5, 3, 0, 6], [6, 0, 0, 5, 3, 0, 0, 5, 8, 0, 2], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [3, 8, 0, 5, 6, 2, 0, 5, 0, 4, 8], [0, 0, 4, 5, 0, 0, 4, 5, 6, 0, 0], [6, 2, 0, 5, 3, 8, 0, 5, 0, 3, 2], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 3, 6, 5, 0, 2, 0, 5, 0, 6, 0], [2, 0, 0, 5, 4, 0, 8, 5, 0, 0, 8], [8, 0, 4, 5, 6, 3, 0, 5, 2, 3, 4]], "output": [[2, 2, 2, 5, 0, 0, 0, 5, 0, 0, 0], [2, 2, 2, 5, 0, 0, 0, 5, 0, 0, 0], [2, 2, 2, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 4, 4, 4, 5, 3, 3, 3], [0, 0, 0, 5, 4, 4, 4, 5, 3, 3, 3], [0, 0, 0, 5, 4, 4, 4, 5, 3, 3, 3], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [6, 6, 6, 5, 0, 0, 0, 5, 0, 0, 0], [6, 6, 6, 5, 0, 0, 0, 5, 0, 0, 0], [6, 6, 6, 5, 0, 0, 0, 5, 0, 0, 0]]}, {"input": [[2, 0, 3, 5, 4, 6, 0, 5, 0, 6, 0], [0, 0, 8, 5, 0, 0, 2, 5, 4, 0, 3], [4, 6, 0, 5, 3, 8, 0, 5, 2, 0, 8], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [4, 0, 8, 5, 0, 0, 2, 5, 0, 6, 4], [0, 0, 2, 5, 0, 3, 0, 5, 3, 0, 0], [3, 0, 6, 5, 4, 0, 6, 5, 8, 0, 2], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [3, 6, 0, 5, 0, 8, 4, 5, 2, 0, 0], [0, 8, 4, 5, 2, 0, 0, 5, 8, 0, 3], [2, 0, 0, 5, 0, 3, 6, 5, 6, 4, 0]], "output": [[0, 0, 0, 5, 0, 0, 0, 5, 2, 2, 2], [0, 0, 0, 5, 0, 0, 0, 5, 2, 2, 2], [0, 0, 0, 5, 0, 0, 0, 5, 2, 2, 2], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 3, 3, 3, 5, 0, 0, 0], [0, 0, 0, 5, 3, 3, 3, 5, 0, 0, 0], [0, 0, 0, 5, 3, 3, 3, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [4, 4, 4, 5, 0, 0, 0, 5, 6, 6, 6], [4, 4, 4, 5, 0, 0, 0, 5, 6, 6, 6], [4, 4, 4, 5, 0, 0, 0, 5, 6, 6, 6]]}, {"input": [[0, 3, 0, 5, 0, 6, 3, 5, 0, 6, 2], [6, 0, 4, 5, 2, 8, 0, 5, 0, 0, 8], [0, 2, 8, 5, 0, 4, 0, 5, 3, 0, 4], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 2, 0, 5, 4, 0, 3, 5, 3, 4, 0], [4, 0, 8, 5, 2, 0, 6, 5, 0, 0, 2], [3, 6, 0, 5, 0, 8, 0, 5, 8, 6, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [6, 3, 0, 5, 0, 3, 0, 5, 0, 0, 3], [0, 0, 2, 5, 0, 6, 4, 5, 2, 8, 0], [8, 4, 0, 5, 2, 0, 0, 5, 4, 0, 6]], "output": [[0, 0, 0, 5, 3, 3, 3, 5, 0, 0, 0], [0, 0, 0, 5, 3, 3, 3, 5, 0, 0, 0], [0, 0, 0, 5, 3, 3, 3, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 6, 6, 6, 5, 4, 4, 4], [0, 0, 0, 5, 6, 6, 6, 5, 4, 4, 4], [0, 0, 0, 5, 6, 6, 6, 5, 4, 4, 4], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [2, 2, 2, 5, 0, 0, 0, 5, 0, 0, 0], [2, 2, 2, 5, 0, 0, 0, 5, 0, 0, 0], [2, 2, 2, 5, 0, 0, 0, 5, 0, 0, 0]]}, {"input": [[3, 8, 4, 5, 4, 6, 0, 5, 2, 0, 8], [0, 0, 0, 5, 8, 0, 3, 5, 6, 0, 3], [6, 2, 0, 5, 0, 2, 0, 5, 4, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 4, 2, 5, 8, 0, 3, 5, 0, 4, 0], [0, 8, 6, 5, 0, 0, 4, 5, 0, 2, 6], [0, 3, 0, 5, 2, 6, 0, 5, 0, 3, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 6, 0, 5, 6, 2, 0, 5, 3, 6, 0], [3, 0, 8, 5, 0, 8, 3, 5, 0, 0, 4], [4, 2, 0, 5, 0, 0, 4, 5, 2, 0, 8]], "output": [[0, 0, 0, 5, 4, 4, 4, 5, 0, 0, 0], [0, 0, 0, 5, 4, 4, 4, 5, 0, 0, 0], [0, 0, 0, 5, 4, 4, 4, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 2, 2, 2, 5, 6, 6, 6], [0, 0, 0, 5, 2, 2, 2, 5, 6, 6, 6], [0, 0, 0, 5, 2, 2, 2, 5, 6, 6, 6], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 3, 3, 3, 5, 0, 0, 0], [0, 0, 0, 5, 3, 3, 3, 5, 0, 0, 0], [0, 0, 0, 5, 3, 3, 3, 5, 0, 0, 0]]}], "test": [{"input": [[6, 4, 0, 5, 0, 3, 0, 5, 0, 4, 0], [0, 0, 3, 5, 2, 8, 6, 5, 8, 0, 2], [2, 0, 8, 5, 4, 0, 0, 5, 6, 3, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [2, 0, 0, 5, 0, 3, 0, 5, 3, 6, 2], [3, 4, 6, 5, 8, 4, 2, 5, 0, 0, 4], [0, 8, 0, 5, 0, 0, 6, 5, 8, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 2, 4, 5, 0, 6, 4, 5, 0, 2, 8], [0, 6, 3, 5, 0, 0, 3, 5, 4, 0, 6], [0, 0, 0, 5, 2, 0, 8, 5, 3, 0, 0]], "output": [[0, 0, 0, 5, 2, 2, 2, 5, 4, 4, 4], [0, 0, 0, 5, 2, 2, 2, 5, 4, 4, 4], [0, 0, 0, 5, 2, 2, 2, 5, 4, 4, 4], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 6, 6, 6, 5, 3, 3, 3], [0, 0, 0, 5, 6, 6, 6, 5, 3, 3, 3], [0, 0, 0, 5, 6, 6, 6, 5, 3, 3, 3], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/0962bcdd.json b/data/arc-agi/training/0962bcdd.json
deleted file mode 100644
index 5dc9d81..0000000
--- a/data/arc-agi/training/0962bcdd.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 2, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 7, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0], [7, 7, 2, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 2, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 7, 0, 2, 0, 2, 0, 7, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 2, 7, 2, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 2, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 2, 7, 2, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 7, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 6, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 6, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 8, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 6, 8, 6, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 6, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 6, 8, 6, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 8, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 6, 8, 6, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 6, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 6, 8, 6, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 6, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 4, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 4, 0, 3, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 4, 3, 4, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 4, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 4, 3, 4, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 3, 0, 4, 0], [4, 0, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 4, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 4, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/0a938d79.json b/data/arc-agi/training/0a938d79.json
deleted file mode 100644
index 3dd60de..0000000
--- a/data/arc-agi/training/0a938d79.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0], [0, 0, 0, 0, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0], [0, 0, 0, 0, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0], [0, 0, 0, 0, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0], [0, 0, 0, 0, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0], [0, 0, 0, 0, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0], [0, 0, 0, 0, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0], [0, 0, 0, 0, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0], [0, 0, 0, 0, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0], [0, 0, 0, 0, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0, 2, 0, 8, 0]]}, {"input": [[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0, 3, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4]]}], "test": [{"input": [[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/0b148d64.json b/data/arc-agi/training/0b148d64.json
deleted file mode 100644
index 1e30a60..0000000
--- a/data/arc-agi/training/0b148d64.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 0, 8, 8], [8, 0, 0, 8, 0, 8, 0, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 8], [8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 0, 8, 8, 8, 8], [8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 0, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8], [8, 8, 8, 8, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8], [0, 0, 0, 8, 8, 0, 8, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8], [8, 0, 0, 8, 0, 0, 8, 8, 0, 8, 0, 0, 0, 0, 8, 0, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 0, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 8, 8, 0, 8, 8, 0, 8], [2, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0, 8, 8, 8, 8, 0, 8, 0], [0, 2, 2, 2, 2, 2, 2, 0, 2, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 8], [2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 8, 8, 0, 8, 8, 8, 0], [2, 2, 2, 2, 2, 2, 0, 2, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0], [2, 2, 2, 2, 2, 0, 2, 0, 2, 2, 0, 0, 0, 0, 8, 0, 8, 0, 8, 8, 8], [2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 8, 0, 0, 8], [0, 2, 2, 0, 0, 2, 2, 0, 0, 2, 0, 0, 0, 0, 8, 0, 0, 0, 8, 8, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 8, 8, 0, 0, 8, 8], [2, 0, 2, 2, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8]], "output": [[0, 2, 2, 2, 0, 0, 2, 2, 2, 2], [2, 0, 2, 2, 2, 0, 0, 2, 2, 2], [0, 2, 2, 2, 2, 2, 2, 0, 2, 0], [2, 2, 2, 2, 0, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 0, 2, 0, 0], [2, 2, 2, 2, 2, 0, 2, 0, 2, 2], [2, 2, 0, 2, 2, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 2, 2, 0, 0, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 2, 2, 0, 2, 2, 2, 2, 2]]}, {"input": [[2, 0, 2, 2, 2, 2, 0, 0, 0, 0, 2, 0, 2, 2, 2, 2, 0, 0, 2], [2, 2, 2, 2, 0, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 2, 2, 2, 0, 2, 2, 2, 2, 2], [2, 0, 2, 0, 2, 2, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0], [0, 2, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 2], [2, 2, 2, 0, 2, 0, 2, 0, 0, 0, 2, 0, 2, 2, 2, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 3, 3], [0, 2, 2, 0, 0, 2, 2, 0, 0, 0, 3, 3, 3, 0, 0, 0, 3, 3, 0], [0, 2, 2, 0, 0, 2, 0, 0, 0, 0, 3, 3, 3, 0, 3, 0, 3, 0, 0], [2, 2, 2, 0, 0, 2, 2, 0, 0, 0, 3, 3, 0, 0, 0, 3, 3, 3, 3], [2, 0, 0, 2, 2, 2, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 3, 0, 3], [2, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 3, 3, 0, 3, 3, 3, 0, 3], [0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 3, 3, 0, 0, 3, 0, 3, 0]], "output": [[0, 3, 3, 3, 3, 3, 0, 3, 3], [3, 3, 3, 0, 0, 0, 3, 3, 0], [3, 3, 3, 0, 3, 0, 3, 0, 0], [3, 3, 0, 0, 0, 3, 3, 3, 3], [3, 0, 0, 0, 3, 0, 3, 0, 3], [0, 3, 3, 0, 3, 3, 3, 0, 3], [0, 3, 3, 0, 0, 3, 0, 3, 0]]}, {"input": [[0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0], [1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1], [1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1], [0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0], [1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1], [0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 4, 0, 4, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1], [4, 4, 4, 4, 0, 4, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0], [4, 0, 4, 0, 0, 4, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1], [0, 4, 4, 4, 4, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1], [4, 4, 4, 0, 4, 4, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1], [0, 4, 4, 4, 0, 4, 0, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0], [0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1], [4, 4, 0, 4, 0, 4, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0]], "output": [[4, 0, 0, 4, 0, 4], [4, 4, 4, 4, 0, 4], [4, 0, 4, 0, 0, 4], [0, 4, 4, 4, 4, 0], [4, 4, 4, 0, 4, 4], [0, 4, 4, 4, 4, 0], [0, 4, 4, 4, 0, 4], [0, 4, 0, 0, 0, 0], [4, 4, 0, 4, 0, 4]]}], "test": [{"input": [[1, 1, 1, 1, 0, 1, 0, 0, 3, 0, 3, 3, 3, 3, 3, 3, 0], [1, 0, 1, 0, 1, 1, 0, 0, 0, 3, 0, 3, 3, 3, 0, 0, 0], [1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 3, 3, 0, 3, 3, 0, 3, 0, 0], [1, 1, 1, 1, 1, 1, 0, 0, 0, 3, 0, 3, 3, 3, 0, 3, 3], [1, 1, 1, 1, 1, 1, 0, 0, 3, 3, 0, 0, 0, 3, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 3, 0, 0, 3, 3, 3, 0, 3, 0, 3, 0, 3], [0, 3, 3, 0, 0, 3, 0, 0, 0, 3, 0, 3, 3, 3, 0, 0, 0], [3, 3, 3, 3, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3], [3, 0, 3, 0, 3, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 3], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 3, 3, 0]], "output": [[1, 1, 1, 1, 0, 1], [1, 0, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0], [0, 0, 0, 1, 1, 1], [1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/0ca9ddb6.json b/data/arc-agi/training/0ca9ddb6.json
deleted file mode 100644
index 8470583..0000000
--- a/data/arc-agi/training/0ca9ddb6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 7, 1, 7, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 4, 0], [0, 0, 7, 0, 0, 0, 2, 0, 0], [0, 7, 1, 7, 0, 4, 0, 4, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0], [4, 0, 4, 0, 0, 7, 1, 7, 0], [0, 2, 0, 0, 0, 0, 7, 0, 0], [4, 0, 4, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 7, 1, 7, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 4, 0, 4, 0, 7, 1, 7, 0], [0, 0, 2, 0, 0, 0, 7, 0, 0], [0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4], [0, 6, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/0d3d703e.json b/data/arc-agi/training/0d3d703e.json
deleted file mode 100644
index 1b029ff..0000000
--- a/data/arc-agi/training/0d3d703e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 1, 2], [3, 1, 2], [3, 1, 2]], "output": [[4, 5, 6], [4, 5, 6], [4, 5, 6]]}, {"input": [[2, 3, 8], [2, 3, 8], [2, 3, 8]], "output": [[6, 4, 9], [6, 4, 9], [6, 4, 9]]}, {"input": [[5, 8, 6], [5, 8, 6], [5, 8, 6]], "output": [[1, 9, 2], [1, 9, 2], [1, 9, 2]]}, {"input": [[9, 4, 2], [9, 4, 2], [9, 4, 2]], "output": [[8, 3, 6], [8, 3, 6], [8, 3, 6]]}], "test": [{"input": [[8, 1, 3], [8, 1, 3], [8, 1, 3]], "output": [[9, 5, 4], [9, 5, 4], [9, 5, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/0dfd9992.json b/data/arc-agi/training/0dfd9992.json
deleted file mode 100644
index 3a79bf9..0000000
--- a/data/arc-agi/training/0dfd9992.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5], [6, 3, 2, 3, 6, 2, 9, 9, 2, 0, 0, 0, 0, 0, 2, 9, 9, 2, 6, 3, 2], [5, 2, 1, 2, 5, 1, 8, 8, 1, 0, 0, 0, 0, 0, 1, 8, 8, 1, 5, 2, 1], [6, 3, 2, 3, 6, 2, 9, 9, 2, 0, 0, 0, 0, 0, 2, 9, 9, 2, 6, 3, 2], [9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5], [5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1], [3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9, 8], [3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9, 8], [5, 2, 1, 2, 0, 0, 0, 0, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1], [9, 6, 5, 6, 0, 0, 0, 0, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5], [6, 3, 2, 3, 0, 0, 0, 0, 2, 6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3, 2], [5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1], [6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3, 2, 3, 6, 0, 0, 9, 2, 6, 3, 2], [9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 0, 0, 3, 5, 9, 6, 5], [5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 0, 0, 8, 1, 5, 2, 1], [0, 0, 8, 9, 0, 0, 0, 6, 8, 3, 9, 8, 9, 3, 0, 0, 6, 8, 3, 9, 8], [0, 0, 8, 9, 0, 0, 0, 6, 8, 3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9, 8], [5, 2, 1, 2, 0, 0, 0, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1], [9, 6, 5, 6, 0, 0, 0, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5], [6, 3, 2, 3, 0, 0, 0, 9, 2, 6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3, 2], [5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1]], "output": [[9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5], [6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3, 2], [5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1], [6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3, 2], [9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5], [5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1], [3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9, 8], [3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9, 8], [5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1], [9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5], [6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3, 2], [5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1], [6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3, 2], [9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5], [5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1], [3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9, 8], [3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9, 8, 9, 3, 8, 6, 6, 8, 3, 9, 8], [5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1], [9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5, 6, 9, 5, 3, 3, 5, 9, 6, 5], [6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3, 2, 3, 6, 2, 9, 9, 2, 6, 3, 2], [5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1, 2, 5, 1, 8, 8, 1, 5, 2, 1]]}], "train": [{"input": [[3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5], [6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2], [5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2], [3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 0, 0, 0, 0, 0, 5], [2, 5, 4, 5, 2, 1, 2, 5, 0, 0, 2, 1, 2, 5, 4, 0, 0, 0, 0, 0, 4], [3, 6, 5, 6, 3, 2, 3, 0, 0, 0, 0, 2, 3, 6, 5, 0, 0, 0, 0, 0, 5], [6, 3, 2, 3, 6, 5, 6, 0, 0, 0, 0, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2], [5, 2, 1, 2, 5, 4, 5, 0, 0, 0, 0, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [6, 3, 2, 3, 6, 5, 6, 3, 0, 0, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2], [3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5], [2, 5, 4, 0, 0, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4], [3, 6, 5, 0, 0, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5], [6, 3, 2, 0, 0, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2], [5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2], [3, 6, 5, 6, 0, 0, 0, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5], [2, 5, 4, 5, 0, 0, 0, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4], [3, 6, 5, 6, 0, 0, 0, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5], [6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2], [5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1]], "output": [[3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5], [6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2], [5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2], [3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5], [2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4], [3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5], [6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2], [5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2], [3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5], [2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4], [3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5], [6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2], [5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1], [6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2], [3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5], [2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4], [3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5], [6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2, 3, 6, 5, 6, 3, 2], [5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1, 2, 5, 4, 5, 2, 1]]}, {"input": [[2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6], [7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4], [7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4], [2, 7, 7, 2, 0, 0, 0, 0, 0, 7, 2, 6, 5, 6, 2, 7, 0, 0, 6, 5, 6], [6, 4, 4, 6, 0, 0, 0, 0, 0, 4, 6, 3, 2, 3, 6, 4, 0, 0, 3, 2, 3], [5, 3, 3, 5, 0, 0, 0, 0, 0, 3, 5, 2, 1, 2, 5, 3, 0, 0, 2, 1, 2], [6, 4, 4, 6, 0, 0, 0, 0, 0, 4, 6, 3, 2, 3, 6, 4, 0, 0, 0, 0, 3], [2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 0, 0, 0, 6], [0, 0, 0, 0, 0, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 0, 0, 0, 4], [0, 0, 0, 0, 0, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 0, 0, 0, 4], [0, 0, 0, 0, 0, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6], [6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3], [5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2], [6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 0, 0, 3, 2, 3], [2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 0, 0, 6, 5, 6], [7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 0, 0, 4, 3, 4], [7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4], [2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6], [6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3], [5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2], [6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3]], "output": [[2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6], [7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4], [7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4], [2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6], [6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3], [5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2], [6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3], [2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6], [7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4], [7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4], [2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6], [6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3], [5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2], [6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3], [2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6], [7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4], [7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4, 7, 5, 5, 7, 4, 3, 4], [2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6, 2, 7, 7, 2, 6, 5, 6], [6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3], [5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2, 5, 3, 3, 5, 2, 1, 2], [6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3, 6, 4, 4, 6, 3, 2, 3]]}, {"input": [[3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2], [0, 0, 0, 0, 0, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [0, 0, 0, 0, 0, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6], [3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 0, 0, 0, 2, 3, 6, 3], [2, 1, 2, 5, 0, 0, 0, 0, 2, 0, 0, 0, 2, 1, 0, 0, 0, 1, 2, 5, 2], [3, 2, 3, 6, 0, 0, 0, 0, 3, 0, 0, 0, 3, 2, 3, 6, 3, 2, 3, 6, 3], [6, 5, 6, 1, 0, 0, 0, 0, 6, 0, 0, 0, 6, 5, 6, 1, 6, 5, 6, 1, 6], [3, 2, 3, 6, 0, 0, 0, 0, 3, 0, 0, 0, 3, 2, 3, 6, 3, 2, 3, 6, 3], [2, 1, 2, 5, 0, 0, 0, 0, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2], [3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6], [3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2], [3, 0, 0, 0, 0, 0, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [6, 0, 0, 0, 0, 0, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6], [3, 0, 0, 0, 0, 0, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [2, 0, 0, 0, 0, 0, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2], [3, 0, 0, 0, 0, 0, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6], [3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3]], "output": [[3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2], [3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6], [3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2], [3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6], [3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2], [3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6], [3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2], [3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6], [3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2, 1, 2, 5, 2], [3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3], [6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6, 5, 6, 1, 6], [3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3, 2, 3, 6, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/0e206a2e.json b/data/arc-agi/training/0e206a2e.json
deleted file mode 100644
index ad1f115..0000000
--- a/data/arc-agi/training/0e206a2e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 8, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 8, 8, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 3, 3, 3, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 8, 8, 8, 2, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 8, 8, 8, 2, 8, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 1, 5, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/10fcaaa3.json b/data/arc-agi/training/10fcaaa3.json
deleted file mode 100644
index e36265b..0000000
--- a/data/arc-agi/training/10fcaaa3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0], [0, 5, 0, 0]], "output": [[8, 0, 8, 0, 8, 0, 8, 0], [0, 5, 0, 0, 0, 5, 0, 0], [8, 0, 8, 0, 8, 0, 8, 0], [0, 5, 0, 0, 0, 5, 0, 0]]}, {"input": [[0, 0, 6, 0], [0, 0, 0, 0], [0, 6, 0, 0]], "output": [[0, 0, 6, 0, 0, 0, 6, 0], [8, 8, 8, 8, 8, 8, 8, 8], [0, 6, 0, 8, 0, 6, 0, 8], [8, 0, 6, 0, 8, 0, 6, 0], [8, 8, 8, 8, 8, 8, 8, 8], [0, 6, 0, 0, 0, 6, 0, 0]]}, {"input": [[0, 0, 0], [0, 4, 0], [0, 0, 0], [0, 0, 0], [4, 0, 0]], "output": [[8, 0, 8, 8, 0, 8], [0, 4, 0, 0, 4, 0], [8, 0, 8, 8, 0, 8], [0, 8, 8, 0, 8, 0], [4, 0, 0, 4, 0, 0], [8, 8, 8, 8, 8, 8], [0, 4, 0, 0, 4, 0], [8, 0, 8, 8, 0, 8], [0, 8, 8, 0, 8, 0], [4, 0, 0, 4, 0, 0]]}, {"input": [[0, 0, 0, 0], [0, 2, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "output": [[8, 0, 8, 0, 8, 0, 8, 0], [0, 2, 0, 0, 0, 2, 0, 0], [8, 0, 8, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 0, 8, 0, 8, 0], [0, 2, 0, 0, 0, 2, 0, 0], [8, 0, 8, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 3, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 3, 0], [0, 0, 0, 0, 0], [0, 3, 0, 0, 0]], "output": [[0, 3, 0, 0, 0, 0, 3, 0, 0, 0], [8, 0, 8, 0, 0, 8, 0, 8, 0, 0], [0, 0, 8, 0, 8, 0, 0, 8, 0, 8], [0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [8, 0, 8, 0, 8, 8, 0, 8, 0, 8], [8, 3, 8, 0, 0, 8, 3, 8, 0, 0], [8, 3, 8, 0, 0, 8, 3, 8, 0, 0], [8, 0, 8, 0, 0, 8, 0, 8, 0, 0], [0, 0, 8, 0, 8, 0, 0, 8, 0, 8], [0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [8, 0, 8, 0, 8, 8, 0, 8, 0, 8], [0, 3, 0, 0, 0, 0, 3, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/11852cab.json b/data/arc-agi/training/11852cab.json
deleted file mode 100644
index 32130a3..0000000
--- a/data/arc-agi/training/11852cab.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 8, 0, 3, 0, 8, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 8, 0, 3, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 8, 0, 3, 0, 8, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 3, 0, 8, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 0, 0, 0, 0], [0, 0, 3, 0, 4, 0, 3, 0, 0, 0], [0, 0, 0, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 3, 0, 2, 0, 0, 0], [0, 0, 0, 4, 0, 4, 0, 0, 0, 0], [0, 0, 3, 0, 4, 0, 3, 0, 0, 0], [0, 0, 0, 4, 0, 4, 0, 0, 0, 0], [0, 0, 2, 0, 3, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 8, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 1, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 8, 0, 0], [0, 0, 0, 0, 4, 0, 4, 0, 0, 0], [0, 0, 0, 8, 0, 1, 0, 8, 0, 0], [0, 0, 0, 0, 4, 0, 4, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 4, 0, 1, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 4, 0, 1, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 4, 0, 1, 0, 4, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 1, 0, 4, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
diff --git a/data/arc-agi/training/1190e5a7.json b/data/arc-agi/training/1190e5a7.json
deleted file mode 100644
index 8f4f34d..0000000
--- a/data/arc-agi/training/1190e5a7.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 5, 1]], "output": [[1, 1, 1], [1, 1, 1], [1, 1, 1], [1, 1, 1], [1, 1, 1]]}], "train": [{"input": [[3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 7, 3], [3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 7, 3], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 7, 3], [3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 7, 3], [3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 7, 3], [3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 7, 3], [3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 7, 3], [3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 7, 3], [3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 7, 3], [3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 7, 3], [3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 7, 3], [3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 7, 3], [3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 7, 3], [3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 7, 3]], "output": [[3, 3, 3, 3], [3, 3, 3, 3]]}, {"input": [[1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 8, 1, 1, 1, 1, 1, 1]], "output": [[1, 1], [1, 1], [1, 1]]}, {"input": [[3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 1, 3]], "output": [[3, 3, 3, 3, 3], [3, 3, 3, 3, 3], [3, 3, 3, 3, 3], [3, 3, 3, 3, 3], [3, 3, 3, 3, 3], [3, 3, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/137eaa0f.json b/data/arc-agi/training/137eaa0f.json
deleted file mode 100644
index c984f9a..0000000
--- a/data/arc-agi/training/137eaa0f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 6, 7], [0, 5, 7], [4, 4, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 7, 5, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 2, 2, 0, 0, 3, 3, 3, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 2, 2], [7, 5, 7], [3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 9, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 1, 1], [1, 5, 2], [9, 9, 2]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0], [0, 0, 0, 0, 0, 0, 0, 9, 5, 0, 0], [4, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0], [0, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0]], "output": [[4, 9, 8], [9, 5, 4], [9, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/150deff5.json b/data/arc-agi/training/150deff5.json
deleted file mode 100644
index 6c70469..0000000
--- a/data/arc-agi/training/150deff5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 2, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 2, 0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 2, 8, 8, 2, 0, 0, 0], [0, 8, 8, 2, 8, 8, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 8, 8, 0, 0, 0], [0, 0, 0, 0, 2, 8, 8, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 8, 8, 0, 0, 0], [0, 0, 0, 2, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 5, 5, 0, 5, 5, 5, 0, 0, 0], [0, 0, 5, 5, 0, 0, 5, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 8, 8, 0, 2, 2, 2, 0, 0, 0], [0, 0, 8, 8, 0, 0, 2, 0, 0, 0, 0], [0, 2, 2, 2, 8, 8, 2, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/178fcbfb.json b/data/arc-agi/training/178fcbfb.json
deleted file mode 100644
index 288a02e..0000000
--- a/data/arc-agi/training/178fcbfb.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 2, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 2, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 2, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]], "output": [[0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0]]}], "test": [{"input": [[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/1a07d186.json b/data/arc-agi/training/1a07d186.json
deleted file mode 100644
index b9fd9f4..0000000
--- a/data/arc-agi/training/1a07d186.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 4, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 3, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 8, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 8, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [8, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 3, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/1b2d62fb.json b/data/arc-agi/training/1b2d62fb.json
deleted file mode 100644
index 3463b42..0000000
--- a/data/arc-agi/training/1b2d62fb.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[9, 9, 0, 1, 0, 9, 0], [0, 9, 9, 1, 0, 0, 0], [9, 9, 0, 1, 0, 9, 0], [9, 9, 9, 1, 9, 0, 9], [0, 9, 9, 1, 0, 9, 9]], "output": [[0, 0, 8], [8, 0, 0], [0, 0, 8], [0, 0, 0], [8, 0, 0]]}], "train": [{"input": [[0, 9, 9, 1, 9, 9, 9], [0, 0, 9, 1, 9, 9, 0], [9, 0, 9, 1, 9, 9, 0], [0, 0, 0, 1, 9, 0, 0], [0, 9, 9, 1, 9, 9, 9]], "output": [[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 8, 8], [0, 0, 0]]}, {"input": [[0, 0, 0, 1, 9, 0, 0], [9, 0, 9, 1, 9, 9, 9], [0, 9, 9, 1, 9, 9, 9], [0, 0, 0, 1, 9, 9, 9], [0, 9, 9, 1, 9, 9, 9]], "output": [[0, 8, 8], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]]}, {"input": [[9, 0, 0, 1, 9, 0, 9], [9, 0, 0, 1, 0, 9, 0], [9, 0, 0, 1, 9, 0, 0], [0, 9, 9, 1, 0, 9, 9], [0, 0, 9, 1, 0, 9, 0]], "output": [[0, 8, 0], [0, 0, 8], [0, 8, 8], [8, 0, 0], [8, 0, 0]]}, {"input": [[0, 9, 9, 1, 9, 0, 9], [9, 0, 0, 1, 9, 0, 0], [9, 9, 9, 1, 9, 9, 9], [0, 9, 0, 1, 0, 0, 0], [9, 0, 0, 1, 9, 0, 0]], "output": [[0, 0, 0], [0, 8, 8], [0, 0, 0], [8, 0, 8], [0, 8, 8]]}, {"input": [[0, 9, 9, 1, 9, 0, 9], [9, 0, 9, 1, 9, 9, 9], [9, 9, 9, 1, 0, 0, 9], [9, 0, 0, 1, 9, 0, 0], [9, 9, 9, 1, 0, 0, 9]], "output": [[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 8, 8], [0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/1b60fb0c.json b/data/arc-agi/training/1b60fb0c.json
deleted file mode 100644
index e5b104b..0000000
--- a/data/arc-agi/training/1b60fb0c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0], [0, 2, 2, 0, 1, 1, 1, 1, 1, 0], [0, 2, 2, 2, 1, 1, 0, 1, 1, 0], [0, 2, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 1, 1], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 1, 1], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 2, 2, 0, 0, 1, 0, 0, 1, 1], [0, 2, 2, 0, 0, 1, 0, 0, 1, 1], [0, 2, 2, 2, 2, 1, 1, 1, 1, 1], [0, 2, 2, 0, 0, 1, 0, 0, 1, 1], [0, 2, 2, 0, 0, 1, 0, 0, 1, 1], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 1], [0, 0, 0, 0, 0, 1, 0, 1, 0, 1], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 1, 0, 1, 0, 1], [0, 0, 0, 0, 1, 1, 1, 0, 0, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 2, 0, 0, 1, 1, 1, 0, 0, 1], [0, 2, 0, 2, 0, 1, 0, 1, 0, 1], [0, 2, 2, 2, 2, 1, 1, 1, 1, 1], [0, 2, 0, 2, 0, 1, 0, 1, 0, 1], [0, 2, 0, 0, 1, 1, 1, 0, 0, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 1, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 1, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 1, 0], [0, 2, 0, 0, 1, 0, 0, 0, 1, 0], [0, 2, 2, 0, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 1, 1, 0, 1, 1, 0], [0, 2, 0, 0, 0, 1, 0, 0, 1, 0], [0, 2, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0]]}]}
diff --git a/data/arc-agi/training/1bfc4729.json b/data/arc-agi/training/1bfc4729.json
deleted file mode 100644
index dc0c669..0000000
--- a/data/arc-agi/training/1bfc4729.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 0, 0, 0, 0, 0, 0, 0, 0, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 0, 0, 0, 0, 0, 0, 0, 0, 6], [6, 0, 0, 0, 0, 0, 0, 0, 0, 6], [7, 0, 0, 0, 0, 0, 0, 0, 0, 7], [7, 0, 0, 0, 0, 0, 0, 0, 0, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 0, 0, 0, 0, 0, 0, 0, 0, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 1], [4, 0, 0, 0, 0, 0, 0, 0, 0, 4], [4, 0, 0, 0, 0, 0, 0, 0, 0, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 0, 0, 0, 0, 0, 0, 0, 0, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 0, 0, 0, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 0, 0, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 0, 0, 0, 0, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/1c786137.json b/data/arc-agi/training/1c786137.json
deleted file mode 100644
index b9a56f4..0000000
--- a/data/arc-agi/training/1c786137.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 8, 8, 0, 3, 8, 8, 0, 8, 0, 3, 1, 1, 1, 8, 8, 0, 3, 8, 3, 8], [3, 3, 0, 0, 5, 3, 0, 3, 8, 0, 3, 3, 8, 1, 1, 8, 1, 3, 1, 8, 3], [1, 5, 1, 3, 1, 1, 8, 3, 0, 0, 3, 8, 3, 0, 1, 0, 8, 8, 5, 5, 0], [5, 3, 0, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 0, 3, 0, 0, 3], [0, 1, 3, 3, 2, 0, 0, 8, 0, 3, 3, 3, 3, 2, 0, 0, 8, 0, 3, 3, 1], [8, 0, 0, 8, 2, 1, 0, 0, 0, 3, 0, 3, 1, 2, 0, 0, 0, 8, 0, 1, 0], [1, 1, 5, 0, 2, 3, 3, 0, 3, 3, 0, 8, 1, 2, 1, 0, 8, 3, 1, 0, 0], [0, 0, 8, 8, 2, 3, 3, 5, 1, 0, 3, 0, 0, 2, 1, 0, 5, 0, 3, 0, 1], [0, 1, 0, 0, 2, 5, 1, 3, 0, 1, 3, 1, 1, 2, 8, 8, 0, 5, 0, 3, 8], [8, 3, 3, 3, 2, 5, 0, 8, 0, 3, 0, 8, 8, 2, 3, 3, 0, 0, 3, 3, 8], [1, 1, 1, 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 8, 1, 3, 0, 0], [3, 3, 3, 0, 8, 8, 0, 8, 3, 0, 8, 8, 3, 0, 3, 0, 8, 1, 0, 1, 0], [8, 0, 0, 3, 3, 0, 8, 3, 0, 3, 3, 0, 1, 3, 3, 1, 8, 0, 0, 3, 8], [5, 1, 5, 1, 8, 3, 5, 0, 8, 3, 3, 8, 1, 8, 0, 0, 0, 3, 0, 0, 5], [1, 3, 1, 0, 1, 3, 1, 0, 5, 0, 3, 3, 8, 0, 8, 3, 8, 8, 8, 0, 0], [5, 3, 3, 3, 3, 8, 8, 0, 1, 1, 0, 8, 5, 1, 3, 0, 0, 8, 3, 1, 0], [3, 1, 3, 3, 8, 0, 3, 8, 0, 3, 1, 8, 3, 1, 8, 1, 1, 3, 8, 1, 0], [0, 3, 8, 3, 3, 0, 1, 3, 0, 3, 8, 5, 3, 0, 3, 1, 0, 3, 0, 0, 8], [3, 8, 3, 0, 1, 3, 8, 0, 1, 3, 8, 1, 0, 1, 1, 8, 5, 8, 3, 1, 1], [1, 5, 1, 3, 3, 1, 5, 3, 3, 1, 1, 3, 5, 0, 8, 8, 1, 1, 8, 0, 8], [1, 3, 0, 1, 3, 3, 1, 0, 0, 1, 5, 8, 3, 5, 3, 8, 0, 3, 8, 3, 8], [3, 1, 3, 0, 8, 0, 8, 0, 0, 1, 3, 1, 1, 0, 8, 8, 5, 1, 0, 1, 8], [3, 3, 1, 0, 3, 1, 8, 8, 0, 0, 5, 1, 8, 8, 1, 3, 3, 5, 3, 5, 8]], "output": [[0, 0, 8, 0, 3, 3, 3, 3], [1, 0, 0, 0, 3, 0, 3, 1], [3, 3, 0, 3, 3, 0, 8, 1], [3, 3, 5, 1, 0, 3, 0, 0], [5, 1, 3, 0, 1, 3, 1, 1], [5, 0, 8, 0, 3, 0, 8, 8]]}, {"input": [[0, 6, 9, 6, 6, 0, 6, 3, 6, 9, 6, 6, 6, 9, 9, 0], [9, 9, 0, 6, 6, 0, 0, 9, 3, 6, 6, 6, 9, 9, 0, 6], [6, 0, 9, 0, 0, 6, 0, 6, 6, 0, 3, 0, 0, 6, 0, 0], [9, 6, 6, 9, 9, 9, 6, 3, 6, 9, 9, 6, 6, 3, 6, 6], [6, 6, 0, 0, 6, 6, 9, 0, 0, 3, 0, 0, 0, 0, 0, 9], [9, 9, 6, 0, 0, 9, 0, 0, 3, 9, 3, 0, 0, 0, 9, 0], [3, 6, 4, 4, 4, 4, 4, 6, 0, 0, 0, 9, 0, 0, 0, 9], [9, 0, 4, 3, 3, 0, 4, 0, 0, 6, 0, 0, 9, 6, 9, 3], [9, 0, 4, 9, 3, 9, 4, 9, 0, 0, 3, 9, 0, 0, 9, 3], [6, 9, 4, 6, 6, 0, 4, 3, 9, 6, 0, 6, 0, 9, 3, 0], [3, 3, 4, 9, 0, 0, 4, 9, 0, 6, 0, 0, 0, 6, 0, 0], [0, 0, 4, 6, 3, 9, 4, 6, 0, 9, 0, 9, 0, 0, 0, 0], [9, 9, 4, 4, 4, 4, 4, 9, 9, 0, 9, 9, 0, 0, 0, 6]], "output": [[3, 3, 0], [9, 3, 9], [6, 6, 0], [9, 0, 0], [6, 3, 9]]}, {"input": [[2, 5, 0, 0, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 5, 3, 5], [2, 0, 0, 2, 0, 2, 2, 2, 2, 2, 2, 5, 3, 0, 3, 2, 0, 5], [0, 5, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 5, 0, 0], [2, 0, 2, 8, 0, 0, 5, 3, 3, 3, 2, 2, 5, 0, 8, 2, 5, 5], [5, 0, 3, 8, 3, 0, 0, 5, 5, 5, 5, 2, 0, 5, 8, 3, 3, 3], [0, 5, 5, 8, 3, 5, 0, 2, 0, 3, 0, 5, 3, 0, 8, 0, 2, 5], [5, 2, 2, 8, 3, 2, 5, 5, 0, 5, 3, 0, 5, 0, 8, 0, 0, 0], [0, 0, 0, 8, 5, 2, 5, 2, 5, 0, 2, 2, 2, 2, 8, 2, 0, 5], [5, 0, 5, 8, 0, 5, 2, 5, 0, 0, 0, 0, 3, 3, 8, 0, 0, 5], [3, 0, 0, 8, 2, 3, 2, 3, 0, 0, 5, 0, 5, 0, 8, 3, 2, 0], [3, 5, 0, 8, 3, 2, 5, 0, 5, 0, 0, 0, 5, 5, 8, 0, 0, 2], [3, 3, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 2, 0], [5, 0, 0, 3, 0, 3, 3, 5, 2, 5, 0, 0, 0, 0, 0, 5, 0, 0], [2, 5, 2, 5, 2, 2, 0, 0, 0, 5, 2, 0, 2, 0, 3, 0, 3, 0], [0, 2, 2, 2, 2, 0, 0, 2, 0, 2, 3, 3, 2, 0, 2, 5, 2, 5], [3, 0, 0, 0, 0, 5, 3, 0, 0, 0, 2, 2, 5, 0, 2, 3, 2, 0], [0, 0, 2, 5, 0, 5, 0, 3, 0, 0, 0, 0, 2, 3, 3, 5, 2, 3]], "output": [[0, 0, 5, 3, 3, 3, 2, 2, 5, 0], [3, 0, 0, 5, 5, 5, 5, 2, 0, 5], [3, 5, 0, 2, 0, 3, 0, 5, 3, 0], [3, 2, 5, 5, 0, 5, 3, 0, 5, 0], [5, 2, 5, 2, 5, 0, 2, 2, 2, 2], [0, 5, 2, 5, 0, 0, 0, 0, 3, 3], [2, 3, 2, 3, 0, 0, 5, 0, 5, 0], [3, 2, 5, 0, 5, 0, 0, 0, 5, 5]]}], "test": [{"input": [[0, 0, 0, 8, 1, 1, 8, 0, 0, 8, 0, 8, 0, 0, 0, 8], [0, 1, 0, 8, 8, 1, 0, 1, 1, 2, 8, 1, 1, 2, 0, 2], [0, 0, 8, 8, 1, 1, 8, 8, 1, 1, 8, 0, 8, 0, 0, 1], [1, 0, 1, 0, 8, 0, 1, 8, 1, 0, 1, 1, 8, 8, 8, 0], [8, 0, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2], [1, 0, 8, 3, 2, 0, 8, 1, 1, 1, 0, 1, 0, 3, 0, 0], [0, 8, 8, 3, 8, 1, 0, 8, 2, 8, 1, 2, 8, 3, 1, 8], [1, 0, 8, 3, 8, 2, 0, 2, 0, 1, 1, 8, 1, 3, 8, 8], [0, 8, 0, 3, 0, 1, 8, 8, 1, 1, 8, 1, 8, 3, 2, 1], [1, 0, 0, 3, 0, 1, 8, 8, 0, 8, 0, 2, 0, 3, 8, 1], [0, 8, 8, 3, 0, 8, 8, 2, 8, 8, 8, 8, 8, 3, 8, 8], [1, 1, 1, 3, 8, 0, 2, 0, 0, 0, 0, 8, 8, 3, 8, 0], [1, 8, 0, 3, 0, 2, 8, 8, 1, 2, 0, 0, 2, 3, 8, 1], [8, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2], [8, 1, 0, 0, 0, 0, 8, 8, 0, 1, 2, 8, 8, 8, 1, 8], [8, 1, 0, 0, 1, 1, 8, 0, 1, 2, 8, 1, 0, 1, 2, 0], [8, 0, 8, 2, 8, 0, 8, 2, 0, 1, 8, 1, 8, 1, 8, 8]], "output": [[2, 0, 8, 1, 1, 1, 0, 1, 0], [8, 1, 0, 8, 2, 8, 1, 2, 8], [8, 2, 0, 2, 0, 1, 1, 8, 1], [0, 1, 8, 8, 1, 1, 8, 1, 8], [0, 1, 8, 8, 0, 8, 0, 2, 0], [0, 8, 8, 2, 8, 8, 8, 8, 8], [8, 0, 2, 0, 0, 0, 0, 8, 8], [0, 2, 8, 8, 1, 2, 0, 0, 2]]}]}
diff --git a/data/arc-agi/training/1caeab9d.json b/data/arc-agi/training/1caeab9d.json
deleted file mode 100644
index 7473701..0000000
--- a/data/arc-agi/training/1caeab9d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 4, 4, 0, 1, 1, 0], [0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 4, 4, 0, 1, 1, 0], [0, 2, 2, 0, 4, 4, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 1, 1, 1, 4, 4, 4], [0, 2, 2, 2, 1, 1, 1, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 1, 0, 2, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 2, 0, 0, 4, 0, 0, 0], [0, 1, 0, 2, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 1, 1, 0, 0, 0, 0, 2, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 4, 4, 0, 0, 2, 2], [0, 1, 1, 0, 4, 4, 0, 0, 2, 2], [1, 0, 0, 4, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/1cf80156.json b/data/arc-agi/training/1cf80156.json
deleted file mode 100644
index fbbe4cc..0000000
--- a/data/arc-agi/training/1cf80156.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 2, 2], [0, 0, 2, 0], [2, 2, 2, 0], [2, 0, 2, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 0], [1, 1, 0], [0, 1, 0], [1, 1, 1], [0, 0, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 8, 0], [8, 8, 8, 8, 0], [0, 0, 0, 8, 8]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 6, 6, 6, 6], [0, 0, 6, 0, 0, 0], [6, 0, 6, 0, 0, 0], [6, 6, 6, 6, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/1e0a9b12.json b/data/arc-agi/training/1e0a9b12.json
deleted file mode 100644
index fa89e4f..0000000
--- a/data/arc-agi/training/1e0a9b12.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 4, 0, 9], [0, 0, 0, 0], [0, 4, 6, 0], [1, 0, 0, 0]], "output": [[0, 0, 0, 0], [0, 0, 0, 0], [0, 4, 0, 0], [1, 4, 6, 9]]}, {"input": [[0, 0, 0, 0, 0, 9], [0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0], [4, 0, 7, 8, 0, 0], [4, 0, 7, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0], [4, 0, 7, 8, 0, 0], [4, 0, 7, 8, 0, 9]]}, {"input": [[0, 0, 0, 1, 0], [0, 3, 0, 0, 0], [0, 3, 0, 1, 2], [6, 0, 0, 0, 0], [0, 3, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 3, 0, 0, 0], [0, 3, 0, 1, 0], [6, 3, 0, 1, 2]]}], "test": [{"input": [[0, 2, 0, 4, 3], [5, 0, 0, 0, 0], [0, 0, 6, 0, 0], [5, 2, 0, 4, 0], [5, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [5, 0, 0, 0, 0], [5, 2, 0, 4, 0], [5, 2, 6, 4, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/1e32b0e9.json b/data/arc-agi/training/1e32b0e9.json
deleted file mode 100644
index 4a8b83b..0000000
--- a/data/arc-agi/training/1e32b0e9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 8, 0, 0, 0, 0, 0, 8, 0, 2, 2, 2, 0], [0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 2, 0, 2, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 2, 2, 2, 0, 8, 0, 8, 8, 8, 0, 8, 0, 2, 2, 2, 0], [0, 0, 2, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 2, 0, 0, 8, 0, 0, 8, 0, 0], [0, 8, 8, 8, 0, 8, 0, 2, 8, 2, 0, 8, 0, 8, 8, 8, 0], [0, 0, 8, 0, 0, 8, 0, 0, 2, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 2, 2, 2, 0, 8, 0, 8, 8, 8, 0, 8, 0, 8, 8, 8, 0], [0, 0, 2, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0], [0, 1, 1, 1, 0, 2, 0, 1, 1, 0, 0, 2, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 1, 0, 1, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2, 1, 1, 0], [0, 1, 1, 1, 0, 2, 0, 1, 1, 2, 0, 2, 0, 2, 2, 2, 0], [0, 1, 1, 1, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2, 2, 2, 0], [0, 2, 2, 2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2, 1, 2, 0], [0, 2, 2, 2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 2, 0, 2, 1, 2, 0, 2, 0, 2, 2, 2, 0], [0, 2, 2, 2, 0, 2, 0, 1, 2, 1, 0, 2, 0, 2, 2, 2, 0], [0, 2, 2, 2, 0, 2, 0, 2, 1, 2, 0, 2, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 3, 0, 3, 0, 1, 0, 3, 0, 0, 0, 1, 0, 0, 0, 3, 0], [0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 3, 0, 3, 0, 1, 0, 3, 0, 1, 0, 1, 0, 1, 0, 3, 0], [0, 0, 3, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 3, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 3, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 9, 0, 4, 4, 0, 0, 9, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 9, 0, 4, 4, 0, 0, 9, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 4, 0, 4, 0, 9, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 9, 0, 4, 4, 9, 0, 9, 0, 9, 9, 9, 0], [0, 4, 0, 4, 0, 9, 0, 9, 0, 9, 0, 9, 0, 9, 0, 9, 0], [0, 4, 4, 4, 0, 9, 0, 9, 9, 9, 0, 9, 0, 9, 9, 9, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [0, 9, 4, 9, 0, 9, 0, 9, 9, 9, 0, 9, 0, 9, 9, 9, 0], [0, 4, 0, 4, 0, 9, 0, 9, 0, 9, 0, 9, 0, 9, 0, 9, 0], [0, 9, 4, 9, 0, 9, 0, 4, 4, 9, 0, 9, 0, 9, 9, 9, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [0, 9, 9, 9, 0, 9, 0, 9, 9, 9, 0, 9, 0, 9, 9, 9, 0], [0, 9, 0, 9, 0, 9, 0, 4, 0, 4, 0, 9, 0, 9, 0, 9, 0], [0, 9, 9, 9, 0, 9, 0, 9, 9, 9, 0, 9, 0, 9, 9, 9, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/1f0c79e5.json b/data/arc-agi/training/1f0c79e5.json
deleted file mode 100644
index 66620e9..0000000
--- a/data/arc-agi/training/1f0c79e5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 2, 0, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 4, 4, 4], [0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 3, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 2, 0, 0, 0, 0], [0, 0, 0, 2, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 6, 6, 6], [0, 0, 0, 0, 0, 6, 6, 6, 0], [0, 0, 0, 0, 6, 6, 6, 0, 0], [0, 0, 0, 6, 6, 6, 0, 0, 0], [0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 6, 6, 6, 0, 0, 0, 0, 0], [6, 6, 6, 0, 0, 0, 0, 0, 0], [6, 6, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[7, 7, 0, 0, 0, 0, 7, 7, 7], [7, 7, 7, 0, 0, 7, 7, 7, 0], [0, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 7, 7, 7, 7, 0, 0, 0], [0, 0, 7, 7, 7, 0, 0, 0, 0], [0, 7, 7, 7, 0, 0, 0, 0, 0], [7, 7, 7, 0, 0, 0, 0, 0, 0], [7, 7, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 8, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 8, 8, 8, 0, 0, 8, 8], [0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/1f642eb9.json b/data/arc-agi/training/1f642eb9.json
deleted file mode 100644
index 026d4da..0000000
--- a/data/arc-agi/training/1f642eb9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train":[{"input":[[0,0,0,0,9,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,8,8,0,0,0,0],[0,0,0,0,8,8,0,0,0,0],[0,0,0,0,8,8,0,0,0,0],[6,0,0,0,8,8,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,4,0,0,0,0]],"output":[[0,0,0,0,9,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,9,8,0,0,0,0],[0,0,0,0,8,8,0,0,0,0],[0,0,0,0,8,8,0,0,0,0],[6,0,0,0,6,4,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,4,0,0,0,0]]},{"input":[[0,0,0,0,7,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[6,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,8,0,0,0,2],[0,0,0,8,8,8,0,0,0,0],[3,0,0,8,8,8,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,0,0,0]],"output":[[0,0,0,0,7,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[6,0,0,6,7,8,0,0,0,0],[0,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,2,0,0,0,2],[0,0,0,8,8,8,0,0,0,0],[3,0,0,3,8,1,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,0,0,0]]},{"input":[[0,0,0,4,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,8,8,8,0,0,0,6],[3,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,8,0,0,0,0],[2,0,0,8,8,8,0,0,0,0],[0,0,0,8,8,8,0,0,0,2],[0,0,0,0,0,0,0,0,0,0],[0,0,0,7,0,0,0,0,0,0]],"output":[[0,0,0,4,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,4,8,6,0,0,0,6],[3,0,0,3,8,8,0,0,0,0],[0,0,0,8,8,8,0,0,0,0],[2,0,0,2,8,8,0,0,0,0],[0,0,0,7,8,2,0,0,0,2],[0,0,0,0,0,0,0,0,0,0],[0,0,0,7,0,0,0,0,0,0]]}],"test":[{"input":[[0,0,0,6,0,2,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[9,0,8,8,8,8,0,0,0,0],[0,0,8,8,8,8,0,0,0,7],[3,0,8,8,8,8,0,0,0,0],[4,0,8,8,8,8,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,6,0,0,0,0,0]],"output":[[0,0,0,6,0,2,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[9,0,9,6,8,2,0,0,0,0],[0,0,8,8,8,7,0,0,0,7],[3,0,3,8,8,8,0,0,0,0],[4,0,4,8,6,8,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,6,0,0,0,0,0]]}]}
diff --git a/data/arc-agi/training/1f85a75f.json b/data/arc-agi/training/1f85a75f.json
deleted file mode 100644
index dfaf53e..0000000
--- a/data/arc-agi/training/1f85a75f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 1, 0, 0, 0, 5, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 1, 0, 1, 5, 1, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 1], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 0], [3, 3, 3], [3, 0, 3], [3, 3, 3], [0, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 4, 0], [4, 4, 4], [0, 4, 4]]}], "test": [{"input": [[0, 0, 1, 0, 3, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 1, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 1, 3, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 8, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 8], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 8, 0, 8, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 8, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 8, 0, 3], [0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0, 8, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 8, 0, 0, 3, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 2, 2, 2, 0, 8, 3, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 3, 0, 1, 0, 0, 3, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 1, 1, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 1, 0, 0, 8, 0, 3, 0, 3, 0, 0], [0, 0, 1, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 8, 0, 3, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3]], "output": [[0, 2, 2, 2], [2, 2, 0, 2], [2, 2, 0, 2], [0, 2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/1f876c06.json b/data/arc-agi/training/1f876c06.json
deleted file mode 100644
index 646a663..0000000
--- a/data/arc-agi/training/1f876c06.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 2, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0]], "output": [[0, 0, 2, 0, 0, 6, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 6, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0]]}, {"input": [[9, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 3], [0, 0, 0, 9, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7]], "output": [[9, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 9, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 9, 0, 0, 0, 8, 0, 0, 3], [0, 0, 0, 9, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 7, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 7, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7]]}, {"input": [[0, 0, 0, 6, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [9, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 6, 0, 8, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 8, 0, 0, 0], [0, 6, 4, 0, 0, 0, 0, 8, 0, 0], [6, 0, 0, 4, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 8], [0, 0, 0, 0, 9, 4, 0, 0, 0, 0], [0, 0, 0, 9, 0, 0, 4, 0, 0, 0], [0, 0, 9, 0, 0, 0, 0, 0, 0, 0], [0, 9, 0, 0, 0, 0, 0, 0, 0, 0], [9, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 3, 0, 0, 9], [7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 9, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 3, 0, 0, 9], [7, 0, 0, 0, 0, 3, 0, 0, 9, 0], [0, 7, 0, 0, 3, 0, 0, 9, 0, 0], [0, 0, 7, 3, 0, 0, 9, 0, 0, 0], [6, 0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 7, 0, 0, 0, 0, 4], [0, 0, 6, 0, 0, 7, 0, 0, 4, 0], [0, 0, 0, 6, 0, 0, 7, 4, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/1fad071e.json b/data/arc-agi/training/1fad071e.json
deleted file mode 100644
index b83e244..0000000
--- a/data/arc-agi/training/1fad071e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 2, 2, 0, 0, 1], [0, 1, 1, 0, 2, 2, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 2, 2], [1, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 1]], "output": [[1, 1, 0, 0, 0]]}, {"input": [[1, 1, 0, 2, 0, 0, 0, 0, 2], [1, 1, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 2, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 1, 1, 0, 2, 2, 0, 0, 0], [0, 1, 1, 0, 2, 2, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 1, 1, 0], [0, 1, 0, 2, 2, 0, 1, 1, 0]], "output": [[1, 1, 1, 1, 0]]}, {"input": [[2, 2, 0, 1, 1, 0, 0, 0, 0], [2, 2, 0, 1, 1, 0, 0, 1, 1], [1, 0, 0, 0, 0, 0, 0, 1, 1], [0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 1, 1, 0, 1, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 2, 2], [0, 1, 1, 0, 0, 1, 0, 2, 2]], "output": [[1, 1, 1, 1, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 2, 2, 0, 1], [1, 1, 0, 1, 0, 2, 2, 0, 0], [1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 2, 2, 0, 0, 1, 1, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 2, 2, 0], [2, 2, 0, 1, 1, 0, 2, 2, 0], [2, 2, 0, 1, 1, 0, 0, 0, 0]], "output": [[1, 1, 1, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/2013d3e2.json b/data/arc-agi/training/2013d3e2.json
deleted file mode 100644
index aa164de..0000000
--- a/data/arc-agi/training/2013d3e2.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0], [0, 0, 0, 6, 8, 8, 6, 0, 0, 0], [0, 0, 7, 8, 4, 4, 8, 7, 0, 0], [0, 0, 7, 8, 4, 4, 8, 7, 0, 0], [0, 0, 0, 6, 8, 8, 6, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 7], [0, 6, 8], [7, 8, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 3, 6, 5, 3, 0, 0, 0, 0], [0, 0, 5, 2, 2, 6, 0, 0, 0, 0], [0, 0, 6, 2, 2, 5, 0, 0, 0, 0], [0, 0, 3, 5, 6, 3, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 0], [0, 3, 6], [0, 5, 2]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 4, 4, 8, 4, 0, 0, 0], [0, 0, 8, 8, 3, 3, 4, 0, 0, 0], [0, 0, 0, 4, 3, 3, 8, 8, 0, 0], [0, 0, 0, 4, 8, 4, 4, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0], [0, 4, 4], [8, 8, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/2204b7a8.json b/data/arc-agi/training/2204b7a8.json
deleted file mode 100644
index 33f55d4..0000000
--- a/data/arc-agi/training/2204b7a8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 3, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 3, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 3, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 2]], "output": [[1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 2, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 1, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 1, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 2]]}, {"input": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7]], "output": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 9, 0, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 9, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9]]}], "test": [{"input": [[5, 3, 0, 0, 0, 0, 0, 0, 0, 4], [5, 0, 0, 0, 0, 3, 0, 0, 3, 4], [5, 0, 0, 0, 0, 0, 0, 0, 0, 4], [5, 0, 0, 3, 0, 0, 0, 0, 0, 4], [5, 0, 0, 0, 0, 0, 3, 0, 0, 4], [5, 0, 0, 3, 0, 0, 0, 0, 0, 4], [5, 0, 0, 0, 0, 0, 0, 0, 0, 4], [5, 0, 0, 0, 3, 0, 0, 0, 0, 4], [5, 0, 3, 0, 0, 0, 3, 0, 0, 4], [5, 0, 0, 0, 0, 0, 0, 0, 0, 4]], "output": [[5, 5, 0, 0, 0, 0, 0, 0, 0, 4], [5, 0, 0, 0, 0, 4, 0, 0, 4, 4], [5, 0, 0, 0, 0, 0, 0, 0, 0, 4], [5, 0, 0, 5, 0, 0, 0, 0, 0, 4], [5, 0, 0, 0, 0, 0, 4, 0, 0, 4], [5, 0, 0, 5, 0, 0, 0, 0, 0, 4], [5, 0, 0, 0, 0, 0, 0, 0, 0, 4], [5, 0, 0, 0, 5, 0, 0, 0, 0, 4], [5, 0, 5, 0, 0, 0, 4, 0, 0, 4], [5, 0, 0, 0, 0, 0, 0, 0, 0, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/22168020.json b/data/arc-agi/training/22168020.json
deleted file mode 100644
index 155f3da..0000000
--- a/data/arc-agi/training/22168020.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 4, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 0]]}, {"input": [[6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 6, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 8, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0]], "output": [[6, 6, 6, 6, 6, 6, 0, 0, 0, 0], [0, 6, 6, 6, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 8, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 7, 0, 0, 0, 0, 7], [0, 4, 4, 0, 0, 7, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 0, 0], [0, 3, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 7, 7, 7, 7, 7, 7], [0, 4, 4, 0, 0, 7, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 0, 0], [0, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/22233c11.json b/data/arc-agi/training/22233c11.json
deleted file mode 100644
index ac29f24..0000000
--- a/data/arc-agi/training/22233c11.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/2281f1f4.json b/data/arc-agi/training/2281f1f4.json
deleted file mode 100644
index b550580..0000000
--- a/data/arc-agi/training/2281f1f4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 0, 0, 5, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 0, 0, 5, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 2, 0, 0, 0, 2, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 2, 0, 0, 0, 2, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 5, 0, 5, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 5, 0, 5, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 2, 0, 0, 2, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 2, 0, 0, 2, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 2, 0, 0, 2, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 5, 5, 0, 5, 0, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 5, 5, 0, 5, 0, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 2, 0, 2, 2, 5], [0, 0, 2, 2, 0, 2, 0, 2, 2, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 2, 0, 2, 2, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 2, 0, 2, 2, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[5, 0, 5, 5, 0, 0, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5]], "output": [[5, 0, 5, 5, 0, 0, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 2, 0, 0, 2, 0, 2, 5], [2, 0, 2, 2, 0, 0, 2, 0, 2, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 2, 0, 0, 2, 0, 2, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 2, 0, 0, 2, 0, 2, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 2, 0, 0, 2, 0, 2, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/228f6490.json b/data/arc-agi/training/228f6490.json
deleted file mode 100644
index b6c97e4..0000000
--- a/data/arc-agi/training/228f6490.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[7, 0, 0, 0, 0, 0, 0, 0, 7, 7], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 5, 0, 0, 5, 5, 0, 6, 6, 0], [0, 5, 0, 0, 5, 5, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 5, 5, 5, 5, 5], [0, 8, 8, 0, 0, 5, 5, 0, 0, 5], [0, 8, 8, 0, 0, 5, 5, 5, 5, 5]], "output": [[7, 0, 0, 0, 0, 0, 0, 0, 7, 7], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 5, 8, 8, 5, 5, 0, 0, 0, 0], [0, 5, 8, 8, 5, 5, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 5, 5, 6, 6, 5], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5]]}, {"input": [[5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [5, 0, 0, 0, 5, 0, 9, 9, 9, 9], [5, 5, 5, 0, 5, 0, 9, 9, 9, 9], [5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 6], [3, 3, 3, 0, 0, 0, 6, 6, 0, 0], [0, 0, 3, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 5, 0, 0, 0, 0, 5, 0], [6, 6, 0, 5, 0, 0, 0, 0, 5, 0], [6, 6, 0, 5, 5, 5, 5, 5, 5, 0]], "output": [[5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [5, 3, 3, 3, 5, 0, 0, 0, 0, 0], [5, 5, 5, 3, 5, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 6], [0, 0, 0, 0, 0, 0, 6, 6, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 5, 9, 9, 9, 9, 5, 0], [6, 6, 0, 5, 9, 9, 9, 9, 5, 0], [6, 6, 0, 5, 5, 5, 5, 5, 5, 0]]}, {"input": [[2, 2, 0, 0, 5, 5, 5, 5, 5, 5], [2, 2, 2, 0, 5, 0, 0, 0, 5, 5], [0, 0, 0, 0, 5, 5, 5, 0, 0, 5], [0, 4, 4, 0, 5, 5, 5, 5, 5, 5], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0], [5, 5, 5, 5, 5, 0, 0, 4, 4, 0], [5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [5, 0, 0, 5, 5, 0, 0, 0, 0, 4], [5, 0, 0, 0, 5, 0, 8, 8, 8, 0], [5, 5, 5, 5, 5, 0, 0, 0, 8, 8]], "output": [[0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 5, 8, 8, 8, 5, 5], [0, 0, 0, 0, 5, 5, 5, 8, 8, 5], [0, 4, 4, 0, 5, 5, 5, 5, 5, 5], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0], [5, 5, 5, 5, 5, 0, 0, 4, 4, 0], [5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [5, 2, 2, 5, 5, 0, 0, 0, 0, 4], [5, 2, 2, 2, 5, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 5, 5, 5, 5, 5, 0, 0, 2], [2, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 5, 5, 0, 5, 5, 4, 4, 4], [0, 0, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 0, 0, 2], [7, 7, 7, 0, 0, 2, 0, 2, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5], [0, 2, 0, 5, 0, 0, 0, 5, 5, 5], [2, 0, 0, 5, 5, 5, 5, 5, 5, 5]], "output": [[0, 0, 5, 5, 5, 5, 5, 0, 0, 2], [2, 0, 5, 7, 7, 7, 5, 0, 0, 0], [0, 0, 5, 5, 7, 5, 5, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 0, 0, 2], [0, 0, 0, 0, 0, 2, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5], [0, 2, 0, 5, 4, 4, 4, 5, 5, 5], [2, 0, 0, 5, 5, 5, 5, 5, 5, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/22eb0ac0.json b/data/arc-agi/training/22eb0ac0.json
deleted file mode 100644
index 6664a5f..0000000
--- a/data/arc-agi/training/22eb0ac0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [9, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [9, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 3]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [9, 0, 0, 0, 0, 0, 0, 0, 0, 4]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [9, 0, 0, 0, 0, 0, 0, 0, 0, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/234bbc79.json b/data/arc-agi/training/234bbc79.json
deleted file mode 100644
index 3cb1ea5..0000000
--- a/data/arc-agi/training/234bbc79.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 5, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 5, 1, 0, 5, 2, 2], [0, 0, 0, 0, 5, 0, 0, 0, 0]], "output": [[0, 2, 1, 1, 0, 0, 0], [2, 2, 0, 1, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 5, 1, 5, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 5, 0, 0, 0, 0, 0, 5, 3, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 3, 3, 3], [0, 2, 1, 1, 1, 3, 3, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [2, 2, 2, 0, 5, 8, 8, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 5, 6, 6]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 8, 6, 6, 6], [0, 0, 2, 8, 8, 8, 0, 0, 0]]}, {"input": [[0, 1, 5, 0, 0, 0, 0, 0, 2, 2, 0], [1, 1, 0, 0, 5, 2, 0, 5, 2, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0]], "output": [[0, 1, 1, 2, 2, 0, 2, 2], [1, 1, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 5, 0, 5, 1, 0, 0, 5, 0, 5, 8], [2, 2, 0, 0, 1, 0, 5, 3, 0, 0, 8], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 1, 1, 0, 0, 0, 0], [2, 2, 0, 1, 0, 3, 8, 8], [0, 0, 0, 1, 3, 3, 0, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/23581191.json b/data/arc-agi/training/23581191.json
deleted file mode 100644
index ac2a9e0..0000000
--- a/data/arc-agi/training/23581191.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 8, 0, 0, 0, 7, 0, 0], [0, 0, 8, 0, 0, 0, 7, 0, 0], [8, 8, 8, 8, 8, 8, 2, 8, 8], [0, 0, 8, 0, 0, 0, 7, 0, 0], [0, 0, 8, 0, 0, 0, 7, 0, 0], [0, 0, 8, 0, 0, 0, 7, 0, 0], [7, 7, 2, 7, 7, 7, 7, 7, 7], [0, 0, 8, 0, 0, 0, 7, 0, 0], [0, 0, 8, 0, 0, 0, 7, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 8, 0, 0, 7, 0, 0], [8, 8, 8, 8, 8, 8, 2, 8, 8], [0, 0, 0, 8, 0, 0, 7, 0, 0], [0, 0, 0, 8, 0, 0, 7, 0, 0], [0, 0, 0, 8, 0, 0, 7, 0, 0], [0, 0, 0, 8, 0, 0, 7, 0, 0], [0, 0, 0, 8, 0, 0, 7, 0, 0], [7, 7, 7, 2, 7, 7, 7, 7, 7], [0, 0, 0, 8, 0, 0, 7, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 7, 0, 0, 8, 0, 0, 0, 0], [8, 2, 8, 8, 8, 8, 8, 8, 8], [0, 7, 0, 0, 8, 0, 0, 0, 0], [0, 7, 0, 0, 8, 0, 0, 0, 0], [0, 7, 0, 0, 8, 0, 0, 0, 0], [0, 7, 0, 0, 8, 0, 0, 0, 0], [7, 7, 7, 7, 2, 7, 7, 7, 7], [0, 7, 0, 0, 8, 0, 0, 0, 0], [0, 7, 0, 0, 8, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/239be575.json b/data/arc-agi/training/239be575.json
deleted file mode 100644
index 73040b5..0000000
--- a/data/arc-agi/training/239be575.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 8, 0, 8], [2, 2, 8, 0, 0], [2, 2, 0, 0, 8], [0, 0, 0, 2, 2], [8, 8, 0, 2, 2]], "output": [[0]]}, {"input": [[0, 8, 0, 0, 0, 0, 0], [2, 2, 0, 8, 8, 8, 0], [2, 2, 8, 8, 0, 2, 2], [0, 0, 8, 0, 0, 2, 2], [0, 8, 0, 0, 8, 0, 0]], "output": [[8]]}, {"input": [[8, 2, 2, 8, 8, 0, 0], [0, 2, 2, 0, 0, 0, 8], [0, 8, 8, 0, 0, 8, 0], [0, 0, 8, 0, 0, 0, 8], [8, 0, 8, 8, 8, 2, 2], [8, 0, 0, 0, 0, 2, 2]], "output": [[8]]}, {"input": [[8, 8, 0, 0, 2, 2, 0], [0, 8, 8, 0, 2, 2, 8], [0, 0, 0, 8, 0, 8, 0], [8, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 8, 0, 8], [0, 2, 2, 8, 8, 0, 8]], "output": [[0]]}, {"input": [[8, 0, 0, 0, 0, 8, 0], [0, 0, 2, 2, 0, 8, 0], [8, 0, 2, 2, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0], [0, 0, 8, 2, 2, 0, 8], [8, 0, 0, 2, 2, 8, 0]], "output": [[8]]}, {"input": [[8, 0, 0, 2, 2, 8], [8, 0, 8, 2, 2, 0], [0, 0, 0, 0, 8, 0], [2, 2, 8, 0, 8, 0], [2, 2, 0, 0, 0, 8], [0, 8, 8, 0, 8, 0]], "output": [[0]]}], "test": [{"input": [[2, 2, 8, 8, 0, 8], [2, 2, 0, 8, 0, 0], [8, 8, 0, 0, 0, 8], [0, 8, 8, 8, 0, 0], [8, 0, 8, 0, 0, 8], [0, 0, 8, 2, 2, 0], [8, 0, 0, 2, 2, 0], [0, 8, 0, 0, 0, 8]], "output": [[8]]}, {"input": [[0, 8, 0, 0, 0, 0], [0, 0, 0, 8, 2, 2], [0, 8, 8, 8, 2, 2], [0, 8, 0, 0, 0, 8], [0, 0, 0, 8, 0, 0], [8, 2, 2, 0, 0, 8], [0, 2, 2, 0, 0, 0], [0, 8, 0, 8, 8, 0]], "output": [[0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/23b5c85d.json b/data/arc-agi/training/23b5c85d.json
deleted file mode 100644
index 448e548..0000000
--- a/data/arc-agi/training/23b5c85d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 2, 2, 8, 8, 8, 2, 0, 0, 0], [0, 2, 2, 8, 8, 8, 2, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8], [8, 8, 8], [8, 8, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 4, 4, 4, 4, 4, 4, 8, 8, 8, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 4, 4, 4, 4, 4, 4, 8, 8, 8, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 4, 4, 4, 4, 4, 4, 8, 8, 8, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 4, 4, 4, 4, 4, 4, 8, 8, 8, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1], [1, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 6], [6, 6], [6, 6]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 2, 2, 7, 7, 7, 7, 2, 2, 2, 2, 2, 2, 2, 0], [0, 2, 2, 7, 7, 7, 7, 2, 2, 2, 2, 2, 2, 2, 0], [0, 2, 2, 7, 7, 7, 7, 2, 2, 2, 2, 2, 2, 2, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0]], "output": [[7, 7, 7, 7], [7, 7, 7, 7], [7, 7, 7, 7]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 4, 4, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 4, 4, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 4], [4, 4]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 6, 6], [6, 6, 6], [6, 6, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/253bf280.json b/data/arc-agi/training/253bf280.json
deleted file mode 100644
index c699b3c..0000000
--- a/data/arc-agi/training/253bf280.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 3, 3, 3, 3, 3, 3, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 3, 3, 3, 3, 3, 3, 3, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0], [0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0], [0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0], [0, 8, 0], [0, 0, 0]], "output": [[0, 0, 0], [0, 8, 0], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0], [0, 0, 0, 3, 0, 0], [0, 8, 0, 3, 0, 0], [0, 0, 0, 3, 0, 0], [0, 0, 0, 3, 0, 0], [0, 0, 0, 8, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 8, 3, 3, 3, 8], [0, 8, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 3, 3, 3, 3, 3, 3, 3, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 3, 3, 3, 3, 3, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/25d487eb.json b/data/arc-agi/training/25d487eb.json
deleted file mode 100644
index 737ac7a..0000000
--- a/data/arc-agi/training/25d487eb.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 8, 8, 8, 3, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 8, 8, 8, 3, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 2, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 2, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 4, 4, 4, 8, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 4, 4, 4, 8, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/25d8a9c8.json b/data/arc-agi/training/25d8a9c8.json
deleted file mode 100644
index 07eefd1..0000000
--- a/data/arc-agi/training/25d8a9c8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 4, 4], [2, 3, 2], [2, 3, 3]], "output": [[5, 5, 5], [0, 0, 0], [0, 0, 0]]}, {"input": [[7, 3, 3], [6, 6, 6], [3, 7, 7]], "output": [[0, 0, 0], [5, 5, 5], [0, 0, 0]]}, {"input": [[2, 9, 2], [4, 4, 4], [9, 9, 9]], "output": [[0, 0, 0], [5, 5, 5], [5, 5, 5]]}, {"input": [[2, 2, 4], [2, 2, 4], [1, 1, 1]], "output": [[0, 0, 0], [0, 0, 0], [5, 5, 5]]}], "test": [{"input": [[4, 4, 4], [3, 2, 3], [8, 8, 8]], "output": [[5, 5, 5], [0, 0, 0], [5, 5, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/25ff71a9.json b/data/arc-agi/training/25ff71a9.json
deleted file mode 100644
index 95031e6..0000000
--- a/data/arc-agi/training/25ff71a9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1], [0, 0, 0], [0, 0, 0]], "output": [[0, 0, 0], [1, 1, 1], [0, 0, 0]]}, {"input": [[0, 0, 0], [1, 1, 1], [0, 0, 0]], "output": [[0, 0, 0], [0, 0, 0], [1, 1, 1]]}, {"input": [[0, 1, 0], [1, 1, 0], [0, 0, 0]], "output": [[0, 0, 0], [0, 1, 0], [1, 1, 0]]}, {"input": [[0, 2, 2], [0, 0, 2], [0, 0, 0]], "output": [[0, 0, 0], [0, 2, 2], [0, 0, 2]]}], "test": [{"input": [[2, 0, 0], [2, 0, 0], [0, 0, 0]], "output": [[0, 0, 0], [2, 0, 0], [2, 0, 0]]}, {"input": [[0, 0, 0], [0, 1, 0], [0, 0, 0]], "output": [[0, 0, 0], [0, 0, 0], [0, 1, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/264363fd.json b/data/arc-agi/training/264363fd.json
deleted file mode 100644
index 4c0192d..0000000
--- a/data/arc-agi/training/264363fd.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train":[{"input":[[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,2,8,8,8,8],[8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,3,2,3,8,8,8],[8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,2,2,3,2,2,8,8],[8,8,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,3,2,3,8,8,8],[8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,2,8,8,8,8],[8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8]],"output":[[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,3,2,3,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,3,2,3,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,3,2,3,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,8,8,8,8],[8,8,8,8,8,8,8,8,1,1,1,1,1,1,1,1,3,2,3,1,1,1,1,1,1,1,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8]]},{"input":[[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1],[1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,3,4,3,3,1,1,1],[1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,1,1,1,1,1],[1,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,1,1,3,1,1,1,1,1],[1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1],[1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1],[1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1],[1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1],[1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1],[1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]],"output":[[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1],[1,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1],[1,3,3,3,3,3,3,3,3,3,3,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1],[1,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1],[1,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1],[1,3,3,3,3,4,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1],[1,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1],[1,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1],[1,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,4,3,3,3,3,3,3,3,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]]},{"input":[[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,3,3,3,3,3,3,3,3,3,3,3,3,4,3,3,3,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,8,8,8],[8,3,3,3,3,3,3,3,3,3,8,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,8,8,8],[8,3,3,3,3,3,3,3,3,3,8,3,3,3,3,4,3,3,3,3,3,3,3,3,3,3,3,8,8,8],[8,3,3,3,3,3,3,3,3,3,8,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,8,8,8],[8,3,3,3,4,3,3,3,3,3,8,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,8,8,8],[8,3,3,3,3,3,3,3,3,3,8,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,8,8,8],[8,3,3,3,3,3,3,3,3,3,8,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,8,8,8],[8,3,3,3,3,3,3,3,3,3,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,3,3,3,3,3,3,3,3,3,8,8,3,3,3,3,3,3,3,3,3,3,8,8,8,8,8,8,8,8],[8,3,3,3,3,3,3,3,3,3,8,8,3,3,3,3,3,3,3,3,3,3,8,8,8,8,8,8,8,8],[8,3,3,3,3,3,3,3,3,3,8,8,3,3,3,3,3,3,3,3,3,3,8,8,8,8,8,8,8,8],[8,3,3,3,3,3,3,3,3,3,8,8,3,3,3,3,3,3,3,3,3,3,8,8,8,8,8,8,8,8],[8,3,3,3,3,3,3,3,3,3,8,8,3,3,3,3,3,3,4,3,3,3,8,8,8,8,8,8,8,8],[8,3,3,3,3,3,3,3,3,3,8,8,3,3,3,3,3,3,3,3,3,3,8,8,8,8,8,8,8,8],[8,3,3,3,3,3,3,3,3,3,8,8,3,3,3,3,3,3,3,3,3,3,8,8,8,8,8,8,8,8],[8,3,3,3,3,3,3,3,3,3,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,5,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,6,5,6,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,6,4,6,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,6,5,6,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,5,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8]],"output":[[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,3,3,3,3,5,3,3,3,3,3,3,3,5,3,3,3,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,3,3,3,3,5,3,3,3,3,3,3,3,5,3,3,3,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,3,3,3,3,5,3,3,3,3,3,3,3,5,3,3,3,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,3,3,3,3,5,3,3,3,3,3,3,6,5,6,3,3,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,3,3,3,3,5,3,3,3,3,3,3,6,4,6,3,3,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,3,3,3,3,5,3,3,3,3,3,3,6,5,6,3,3,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,3,3,3,3,5,3,3,3,3,3,3,3,5,3,3,3,8,8,8],[8,3,3,3,5,3,3,3,3,3,8,3,3,3,6,5,6,3,3,3,3,3,3,5,3,3,3,8,8,8],[8,3,3,3,5,3,3,3,3,3,8,3,3,3,6,4,6,3,3,3,3,3,3,5,3,3,3,8,8,8],[8,3,3,6,5,6,3,3,3,3,8,3,3,3,6,5,6,3,3,3,3,3,3,5,3,3,3,8,8,8],[8,3,3,6,4,6,3,3,3,3,8,3,3,3,3,5,3,3,3,3,3,3,3,5,3,3,3,8,8,8],[8,3,3,6,5,6,3,3,3,3,8,3,3,3,3,5,3,3,3,3,3,3,3,5,3,3,3,8,8,8],[8,3,3,3,5,3,3,3,3,3,8,3,3,3,3,5,3,3,3,3,3,3,3,5,3,3,3,8,8,8],[8,3,3,3,5,3,3,3,3,3,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,3,3,3,5,3,3,3,3,3,8,8,3,3,3,3,3,3,5,3,3,3,8,8,8,8,8,8,8,8],[8,3,3,3,5,3,3,3,3,3,8,8,3,3,3,3,3,3,5,3,3,3,8,8,8,8,8,8,8,8],[8,3,3,3,5,3,3,3,3,3,8,8,3,3,3,3,3,3,5,3,3,3,8,8,8,8,8,8,8,8],[8,3,3,3,5,3,3,3,3,3,8,8,3,3,3,3,3,6,5,6,3,3,8,8,8,8,8,8,8,8],[8,3,3,3,5,3,3,3,3,3,8,8,3,3,3,3,3,6,4,6,3,3,8,8,8,8,8,8,8,8],[8,3,3,3,5,3,3,3,3,3,8,8,3,3,3,3,3,6,5,6,3,3,8,8,8,8,8,8,8,8],[8,3,3,3,5,3,3,3,3,3,8,8,3,3,3,3,3,3,5,3,3,3,8,8,8,8,8,8,8,8],[8,3,3,3,5,3,3,3,3,3,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8]]}],"test":[{"input":[[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,2,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,3,3,3,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,8,8,2,8,8,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,3,3,3,4,4,4,4,4,4,4,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]],"output":[[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,3,3,3,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,8,8,8,2,8,8,8,8,8,8,8,8,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,3,3,3,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,3,3,3,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,8,8,8,8,8,8,8,8,8,8,8,2,8,8,8,8,8,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,3,3,3,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,3,3,3,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,8,8,8,8,8,8,2,8,8,8,8,8,8,8,8,8,8,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,3,3,3,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4],[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]]}]}
diff --git a/data/arc-agi/training/272f95fa.json b/data/arc-agi/training/272f95fa.json
deleted file mode 100644
index 74898d3..0000000
--- a/data/arc-agi/training/272f95fa.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 8, 2, 2, 2, 2, 2, 2, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 2, 2, 2, 2, 2, 2, 8, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [4, 4, 4, 4, 8, 6, 6, 6, 6, 6, 6, 8, 3, 3, 3, 3, 3, 3, 3], [4, 4, 4, 4, 8, 6, 6, 6, 6, 6, 6, 8, 3, 3, 3, 3, 3, 3, 3], [4, 4, 4, 4, 8, 6, 6, 6, 6, 6, 6, 8, 3, 3, 3, 3, 3, 3, 3], [4, 4, 4, 4, 8, 6, 6, 6, 6, 6, 6, 8, 3, 3, 3, 3, 3, 3, 3], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 1, 1, 1, 1, 1, 1, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 1, 1, 1, 1, 1, 1, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 1, 1, 1, 1, 1, 1, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 1, 1, 1, 1, 1, 1, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 1, 1, 1, 1, 1, 1, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 1, 1, 1, 1, 1, 1, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 1, 1, 1, 1, 1, 1, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 1, 1, 1, 1, 1, 1, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 1, 1, 1, 1, 1, 1, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 1, 1, 1, 1, 1, 1, 8, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0]], "output": [[0, 0, 8, 2, 2, 2, 2, 2, 2, 8, 0, 0, 0, 0], [0, 0, 8, 2, 2, 2, 2, 2, 2, 8, 0, 0, 0, 0], [0, 0, 8, 2, 2, 2, 2, 2, 2, 8, 0, 0, 0, 0], [0, 0, 8, 2, 2, 2, 2, 2, 2, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [4, 4, 8, 6, 6, 6, 6, 6, 6, 8, 3, 3, 3, 3], [4, 4, 8, 6, 6, 6, 6, 6, 6, 8, 3, 3, 3, 3], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 1, 1, 1, 1, 1, 1, 8, 0, 0, 0, 0], [0, 0, 8, 1, 1, 1, 1, 1, 1, 8, 0, 0, 0, 0], [0, 0, 8, 1, 1, 1, 1, 1, 1, 8, 0, 0, 0, 0], [0, 0, 8, 1, 1, 1, 1, 1, 1, 8, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 8, 2, 2, 2, 2, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 2, 2, 2, 2, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 2, 2, 2, 2, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 2, 2, 2, 2, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 2, 2, 2, 2, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 2, 2, 2, 2, 8, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [4, 4, 4, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3, 3, 3], [4, 4, 4, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3, 3, 3], [4, 4, 4, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3, 3, 3], [4, 4, 4, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3, 3, 3], [4, 4, 4, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3, 3, 3], [4, 4, 4, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3, 3, 3], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 1, 1, 1, 1, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 1, 1, 1, 1, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 1, 1, 1, 1, 8, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/27a28665.json b/data/arc-agi/training/27a28665.json
deleted file mode 100644
index 6d8ea88..0000000
--- a/data/arc-agi/training/27a28665.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 5, 0], [5, 0, 5], [0, 5, 0]], "output": [[1]]}, {"input": [[8, 0, 8], [0, 8, 0], [8, 0, 8]], "output": [[2]]}, {"input": [[5, 0, 5], [0, 5, 0], [5, 0, 5]], "output": [[2]]}, {"input": [[0, 1, 1], [0, 1, 1], [1, 0, 0]], "output": [[3]]}, {"input": [[0, 8, 8], [0, 8, 8], [8, 0, 0]], "output": [[3]]}, {"input": [[4, 4, 0], [4, 0, 4], [0, 4, 0]], "output": [[1]]}, {"input": [[0, 5, 0], [5, 5, 5], [0, 5, 0]], "output": [[6]]}], "test": [{"input": [[0, 8, 0], [8, 8, 8], [0, 8, 0]], "output": [[6]]}, {"input": [[7, 7, 0], [7, 0, 7], [0, 7, 0]], "output": [[1]]}, {"input": [[2, 0, 2], [0, 2, 0], [2, 0, 2]], "output": [[2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/28bf18c6.json b/data/arc-agi/training/28bf18c6.json
deleted file mode 100644
index 5f002da..0000000
--- a/data/arc-agi/training/28bf18c6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 0, 8, 8, 0], [0, 8, 0, 0, 8, 0], [8, 8, 8, 8, 8, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0]], "output": [[0, 2, 0, 0, 2, 0], [2, 2, 2, 2, 2, 2], [2, 2, 0, 2, 2, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 1, 1, 0, 1, 1], [1, 0, 0, 1, 0, 0], [0, 1, 0, 0, 1, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 3, 0, 0, 3], [3, 3, 3, 3, 3, 3], [3, 0, 0, 3, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/28e73c20.json b/data/arc-agi/training/28e73c20.json
deleted file mode 100644
index 7f86b56..0000000
--- a/data/arc-agi/training/28e73c20.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 0, 3], [3, 0, 3, 3, 0, 3], [3, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 0, 3], [3, 0, 0, 0, 0, 3, 0, 3], [3, 0, 3, 3, 0, 3, 0, 3], [3, 0, 3, 3, 3, 3, 0, 3], [3, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3], [3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3, 0, 3], [3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 3, 3, 3, 3, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 0, 0, 0, 3, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 0, 3, 3, 3, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 0, 0, 0, 0, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 3, 3, 3, 3, 3, 3, 0, 3, 0, 3], [3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3], [3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3], [3, 0, 3, 3, 3, 3, 3, 3, 3, 0, 3, 0, 3], [3, 0, 3, 0, 0, 0, 0, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 3, 3, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 0, 0, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 3, 3, 3, 3, 0, 3, 0, 3], [3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3], [3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3, 3, 0, 3], [3, 0, 0, 0, 0, 0, 0, 3, 0, 3], [3, 0, 3, 3, 3, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 3, 0, 3, 0, 3], [3, 0, 3, 0, 0, 0, 0, 3, 0, 3], [3, 0, 3, 3, 3, 3, 3, 3, 0, 3], [3, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3], [3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3, 0, 3], [3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 0, 3, 3, 3, 3, 0, 3, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 0, 3, 0, 3, 3, 0, 3, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 3, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 0, 3, 3, 3, 3, 3, 3, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3, 0, 3], [3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3], [3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/29623171.json b/data/arc-agi/training/29623171.json
deleted file mode 100644
index fd7102a..0000000
--- a/data/arc-agi/training/29623171.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [1, 0, 0, 5, 0, 0, 0, 5, 0, 1, 0], [0, 0, 0, 5, 0, 0, 1, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 1, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 1, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 1, 0, 0], [0, 1, 0, 5, 0, 0, 0, 5, 0, 0, 1], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0]], "output": [[0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 1, 1, 1], [0, 0, 0, 5, 0, 0, 0, 5, 1, 1, 1], [0, 0, 0, 5, 0, 0, 0, 5, 1, 1, 1]]}, {"input": [[0, 0, 0, 5, 0, 2, 0, 5, 2, 0, 0], [2, 0, 0, 5, 0, 0, 0, 5, 0, 0, 2], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [2, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [2, 0, 0, 5, 0, 0, 2, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 2, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [2, 0, 0, 5, 0, 0, 2, 5, 0, 0, 2], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0]], "output": [[0, 0, 0, 5, 0, 0, 0, 5, 2, 2, 2], [0, 0, 0, 5, 0, 0, 0, 5, 2, 2, 2], [0, 0, 0, 5, 0, 0, 0, 5, 2, 2, 2], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [2, 2, 2, 5, 0, 0, 0, 5, 0, 0, 0], [2, 2, 2, 5, 0, 0, 0, 5, 0, 0, 0], [2, 2, 2, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0]]}, {"input": [[3, 3, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 3, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 3, 0, 5, 0, 3, 0, 5, 0, 0, 0], [0, 0, 0, 5, 3, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 3, 0, 5, 3, 0, 0, 5, 3, 3, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 3]], "output": [[0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 3, 3, 3], [0, 0, 0, 5, 0, 0, 0, 5, 3, 3, 3], [0, 0, 0, 5, 0, 0, 0, 5, 3, 3, 3]]}], "test": [{"input": [[4, 4, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 4, 0, 5, 0, 0, 4, 5, 4, 4, 0], [4, 0, 0, 5, 0, 0, 0, 5, 0, 4, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 4, 0], [4, 0, 0, 5, 0, 4, 0, 5, 4, 0, 4], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 4, 0, 5, 0, 0, 4], [4, 0, 0, 5, 0, 0, 4, 5, 0, 4, 0], [0, 0, 0, 5, 4, 4, 0, 5, 0, 0, 0]], "output": [[4, 4, 4, 5, 0, 0, 0, 5, 0, 0, 0], [4, 4, 4, 5, 0, 0, 0, 5, 0, 0, 0], [4, 4, 4, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 4, 4, 4, 5, 0, 0, 0], [0, 0, 0, 5, 4, 4, 4, 5, 0, 0, 0], [0, 0, 0, 5, 4, 4, 4, 5, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/29c11459.json b/data/arc-agi/training/29c11459.json
deleted file mode 100644
index e641c1f..0000000
--- a/data/arc-agi/training/29c11459.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 5, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 5, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 5, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 6, 6, 5, 9, 9, 9, 9, 9]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/29ec7d0e.json b/data/arc-agi/training/29ec7d0e.json
deleted file mode 100644
index 5b5b05c..0000000
--- a/data/arc-agi/training/29ec7d0e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1], [1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 0, 0, 0, 8, 9], [1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 0, 0, 0, 6, 8], [1, 4, 7, 1, 4, 7, 1, 4, 7, 1, 4, 7, 1, 4, 7, 1, 4, 7], [1, 5, 9, 4, 8, 3, 7, 2, 6, 1, 5, 9, 4, 8, 3, 7, 2, 6], [1, 6, 2, 0, 0, 0, 4, 9, 5, 1, 6, 2, 7, 0, 0, 0, 9, 5], [1, 7, 4, 0, 0, 0, 1, 7, 4, 0, 0, 0, 0, 0, 0, 0, 7, 4], [1, 8, 6, 0, 0, 0, 7, 5, 3, 0, 0, 0, 0, 2, 9, 7, 5, 3], [1, 9, 8, 0, 0, 0, 4, 3, 2, 0, 0, 0, 0, 6, 5, 4, 3, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9], [1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8], [1, 4, 7, 1, 4, 7, 1, 4, 7, 1, 4, 7, 1, 4, 7, 1, 4, 7], [1, 0, 0, 0, 8, 3, 7, 2, 6, 1, 5, 9, 4, 8, 3, 7, 2, 6], [1, 0, 0, 0, 3, 8, 4, 9, 5, 1, 6, 2, 7, 3, 8, 4, 9, 5], [1, 0, 0, 0, 7, 4, 1, 7, 4, 1, 7, 4, 1, 7, 4, 1, 7, 4], [1, 0, 0, 0, 2, 9, 7, 5, 3, 1, 8, 6, 4, 2, 9, 7, 5, 3], [1, 9, 8, 7, 6, 5, 4, 3, 2, 1, 9, 8, 7, 6, 5, 4, 3, 2]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9], [1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8], [1, 4, 7, 1, 4, 7, 1, 4, 7, 1, 4, 7, 1, 4, 7, 1, 4, 7], [1, 5, 9, 4, 8, 3, 7, 2, 6, 1, 5, 9, 4, 8, 3, 7, 2, 6], [1, 6, 2, 7, 3, 8, 4, 9, 5, 1, 6, 2, 7, 3, 8, 4, 9, 5], [1, 7, 4, 1, 7, 4, 1, 7, 4, 1, 7, 4, 1, 7, 4, 1, 7, 4], [1, 8, 6, 4, 2, 9, 7, 5, 3, 1, 8, 6, 4, 2, 9, 7, 5, 3], [1, 9, 8, 7, 6, 5, 4, 3, 2, 1, 9, 8, 7, 6, 5, 4, 3, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9], [1, 3, 5, 7, 9, 2, 4, 6, 8, 1, 3, 5, 7, 9, 2, 4, 6, 8], [1, 4, 7, 1, 4, 7, 1, 4, 7, 1, 4, 7, 1, 4, 7, 1, 4, 7], [1, 5, 9, 4, 8, 3, 7, 2, 6, 1, 5, 9, 4, 8, 3, 7, 2, 6], [1, 6, 2, 7, 3, 8, 4, 9, 5, 1, 6, 2, 7, 3, 8, 4, 9, 5], [1, 7, 4, 1, 7, 4, 1, 7, 4, 1, 7, 4, 1, 7, 4, 1, 7, 4], [1, 8, 6, 4, 2, 9, 7, 5, 3, 1, 8, 6, 4, 2, 9, 7, 5, 3], [1, 9, 8, 7, 6, 5, 4, 3, 2, 1, 9, 8, 7, 6, 5, 4, 3, 2]]}], "train": [{"input": [[1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 0, 0, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3], [1, 3, 5, 0, 0, 1, 3, 5, 2, 4, 0, 0, 5, 2, 4, 1, 3, 5], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 0, 0, 2, 5, 3, 1, 4, 2], [1, 5, 4, 3, 2, 1, 0, 0, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4], [1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1], [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 0, 0, 0, 5, 1, 2, 3], [1, 3, 5, 2, 4, 1, 3, 5, 2, 4, 1, 3, 5, 2, 4, 1, 3, 5], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2], [1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3], [0, 0, 0, 0, 4, 1, 3, 5, 2, 4, 1, 3, 5, 2, 4, 1, 3, 5], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2], [1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3], [1, 3, 5, 2, 4, 1, 3, 5, 2, 4, 1, 3, 5, 2, 4, 1, 3, 5]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3], [1, 3, 5, 2, 4, 1, 3, 5, 2, 4, 1, 3, 5, 2, 4, 1, 3, 5], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2], [1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3], [1, 3, 5, 2, 4, 1, 3, 5, 2, 4, 1, 3, 5, 2, 4, 1, 3, 5], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2], [1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3], [1, 3, 5, 2, 4, 1, 3, 5, 2, 4, 1, 3, 5, 2, 4, 1, 3, 5], [1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2, 5, 3, 1, 4, 2], [1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4, 3, 2, 1, 5, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3], [1, 3, 5, 2, 4, 1, 3, 5, 2, 4, 1, 3, 5, 2, 4, 1, 3, 5]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 1, 0, 0, 0, 5, 6, 1, 2, 3, 4, 5, 6], [1, 3, 5, 1, 3, 5, 1, 0, 0, 0, 3, 5, 1, 3, 5, 1, 3, 5], [1, 4, 1, 4, 1, 4, 1, 0, 0, 0, 1, 4, 1, 4, 1, 4, 1, 4], [1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 0, 0, 0, 3, 1, 5, 3], [1, 6, 5, 0, 0, 0, 0, 6, 5, 4, 3, 0, 0, 0, 5, 4, 3, 2], [1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 0, 0, 0, 0, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6], [1, 3, 5, 1, 3, 5, 1, 3, 5, 1, 3, 5, 1, 3, 5, 1, 3, 5], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3], [1, 6, 5, 4, 3, 2, 1, 0, 0, 0, 3, 2, 0, 0, 0, 0, 3, 2], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1], [1, 2, 3, 4, 5, 6, 1, 0, 0, 0, 5, 6, 0, 0, 0, 0, 5, 6], [1, 3, 5, 1, 3, 5, 1, 3, 5, 1, 3, 5, 1, 3, 5, 1, 3, 5], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3], [1, 6, 5, 4, 3, 2, 1, 6, 5, 4, 3, 2, 1, 6, 5, 4, 3, 2]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6], [1, 3, 5, 1, 3, 5, 1, 3, 5, 1, 3, 5, 1, 3, 5, 1, 3, 5], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3], [1, 6, 5, 4, 3, 2, 1, 6, 5, 4, 3, 2, 1, 6, 5, 4, 3, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6], [1, 3, 5, 1, 3, 5, 1, 3, 5, 1, 3, 5, 1, 3, 5, 1, 3, 5], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3], [1, 6, 5, 4, 3, 2, 1, 6, 5, 4, 3, 2, 1, 6, 5, 4, 3, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6], [1, 3, 5, 1, 3, 5, 1, 3, 5, 1, 3, 5, 1, 3, 5, 1, 3, 5], [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4], [1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3, 1, 5, 3], [1, 6, 5, 4, 3, 2, 1, 6, 5, 4, 3, 2, 1, 6, 5, 4, 3, 2]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 0, 0, 0, 0, 5, 7], [1, 4, 7, 3, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3], [1, 5, 2, 6, 3, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6], [1, 0, 0, 2, 7, 5, 0, 0, 0, 0, 2, 7, 0, 0, 0, 0, 4, 2], [1, 0, 0, 5, 4, 3, 0, 0, 0, 0, 5, 4, 3, 0, 0, 0, 6, 5], [1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1], [1, 0, 0, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3], [1, 5, 2, 6, 3, 7, 4, 1, 5, 2, 6, 3, 7, 4, 1, 5, 2, 6], [1, 6, 4, 2, 7, 5, 3, 1, 6, 4, 2, 7, 5, 3, 1, 6, 4, 2], [1, 7, 6, 5, 4, 3, 2, 1, 7, 6, 5, 4, 3, 2, 1, 7, 6, 5], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3], [1, 5, 2, 6, 3, 7, 4, 1, 5, 2, 6, 3, 7, 4, 1, 5, 2, 6], [1, 6, 4, 2, 7, 5, 3, 1, 6, 4, 2, 7, 5, 3, 1, 6, 4, 2], [1, 7, 6, 5, 4, 3, 2, 1, 7, 6, 5, 4, 3, 2, 1, 7, 6, 5], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3], [1, 5, 2, 6, 3, 7, 4, 1, 5, 2, 6, 3, 7, 4, 1, 5, 2, 6], [1, 6, 4, 2, 7, 5, 3, 1, 6, 4, 2, 7, 5, 3, 1, 6, 4, 2], [1, 7, 6, 5, 4, 3, 2, 1, 7, 6, 5, 4, 3, 2, 1, 7, 6, 5], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7, 2, 4, 6, 1, 3, 5, 7], [1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 1, 4, 7, 3]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2], [1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 0, 0, 1, 4], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 0, 0, 1, 5], [1, 6, 3, 8, 5, 2, 7, 4, 1, 6, 3, 8, 5, 2, 0, 0, 1, 6], [1, 7, 5, 3, 1, 7, 5, 3, 1, 7, 5, 3, 1, 7, 5, 3, 1, 7], [1, 8, 7, 6, 5, 4, 3, 2, 1, 8, 7, 6, 5, 4, 3, 2, 1, 8], [1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2], [1, 3, 5, 7, 0, 0, 0, 0, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5], [1, 6, 3, 8, 5, 2, 0, 0, 1, 6, 3, 8, 5, 2, 7, 4, 1, 6], [1, 7, 5, 3, 1, 7, 0, 0, 1, 7, 5, 3, 1, 7, 5, 3, 1, 7], [1, 8, 7, 6, 0, 0, 3, 2, 1, 8, 7, 6, 5, 4, 3, 2, 1, 8], [1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2], [1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5], [1, 6, 3, 8, 5, 2, 7, 4, 1, 6, 3, 8, 5, 2, 7, 4, 1, 6], [1, 7, 5, 3, 1, 7, 5, 3, 1, 7, 5, 3, 1, 7, 5, 3, 1, 7], [1, 8, 7, 6, 5, 4, 3, 2, 1, 8, 7, 6, 5, 4, 3, 2, 1, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2], [1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3, 5, 7, 1, 3], [1, 4, 7, 2, 5, 8, 3, 6, 1, 4, 7, 2, 5, 8, 3, 6, 1, 4], [1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5], [1, 6, 3, 8, 5, 2, 7, 4, 1, 6, 3, 8, 5, 2, 7, 4, 1, 6], [1, 7, 5, 3, 1, 7, 5, 3, 1, 7, 5, 3, 1, 7, 5, 3, 1, 7], [1, 8, 7, 6, 5, 4, 3, 2, 1, 8, 7, 6, 5, 4, 3, 2, 1, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/2bcee788.json b/data/arc-agi/training/2bcee788.json
deleted file mode 100644
index f175c89..0000000
--- a/data/arc-agi/training/2bcee788.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 2, 0, 0, 0, 0], [0, 0, 4, 4, 4, 2, 0, 0, 0, 0], [0, 0, 0, 0, 4, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 4, 4, 3, 3, 3, 3], [3, 3, 4, 4, 4, 4, 4, 4, 3, 3], [3, 3, 3, 3, 4, 4, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 6, 6, 3, 3, 3, 3], [3, 3, 3, 3, 6, 3, 3, 3, 3, 3], [3, 3, 3, 6, 6, 3, 3, 3, 3, 3], [3, 3, 3, 6, 6, 3, 3, 3, 3, 3], [3, 3, 3, 3, 6, 3, 3, 3, 3, 3], [3, 3, 3, 3, 6, 6, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 7, 0, 0, 0, 0, 0], [0, 0, 0, 2, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 7, 7, 3, 3, 3, 3, 3], [3, 3, 7, 7, 7, 7, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 8, 3, 3, 3, 3], [3, 3, 3, 3, 3, 8, 3, 3, 3, 3], [3, 3, 3, 3, 3, 8, 3, 3, 3, 3], [3, 3, 3, 8, 8, 8, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 2, 0, 0, 0], [0, 0, 0, 0, 0, 1, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 3, 3, 1, 3, 3], [3, 3, 3, 3, 1, 1, 1, 1, 3, 3], [3, 3, 3, 3, 3, 1, 1, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/2bee17df.json b/data/arc-agi/training/2bee17df.json
deleted file mode 100644
index 35ac431..0000000
--- a/data/arc-agi/training/2bee17df.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [8, 0, 0, 0, 2, 2, 0, 2, 2, 2, 2, 2], [8, 0, 0, 0, 0, 2, 0, 0, 2, 2, 0, 2], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [8, 8, 0, 0, 0, 0, 8, 8, 0, 0, 0, 8], [8, 8, 8, 0, 0, 8, 8, 8, 0, 0, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [8, 0, 0, 3, 2, 2, 0, 2, 2, 2, 2, 2], [8, 0, 0, 3, 0, 2, 0, 0, 2, 2, 0, 2], [8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2], [8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2], [8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2], [8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2], [8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8], [8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8], [8, 8, 0, 3, 0, 0, 8, 8, 0, 0, 0, 8], [8, 8, 8, 3, 0, 8, 8, 8, 0, 0, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [2, 2, 0, 0, 0, 0, 0, 8, 8, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [2, 2, 0, 2, 0, 0, 2, 0, 0, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 0, 0, 0, 3, 3, 8, 8, 8, 8, 8, 8], [2, 2, 0, 0, 3, 3, 0, 8, 8, 0, 0, 8], [2, 0, 0, 0, 3, 3, 0, 8, 0, 0, 0, 8], [2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8], [2, 2, 2, 0, 3, 3, 0, 0, 0, 0, 0, 8], [2, 2, 0, 0, 3, 3, 0, 0, 0, 0, 0, 8], [2, 2, 0, 0, 3, 3, 0, 0, 0, 0, 0, 8], [2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8], [2, 0, 0, 0, 3, 3, 0, 0, 0, 0, 2, 2], [2, 2, 0, 2, 3, 3, 2, 0, 0, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 2], [8, 8, 8, 0, 8, 8, 0, 8, 0, 2], [8, 8, 0, 0, 8, 0, 0, 0, 0, 2], [8, 8, 0, 0, 0, 0, 0, 0, 2, 2], [8, 0, 0, 0, 0, 0, 0, 0, 2, 2], [8, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 0, 0, 0, 0, 0, 2, 2, 0, 2], [8, 2, 0, 0, 0, 2, 2, 2, 2, 2], [8, 2, 2, 2, 2, 2, 2, 2, 2, 2]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 2], [8, 8, 8, 3, 8, 8, 0, 8, 0, 2], [8, 8, 0, 3, 8, 0, 0, 0, 0, 2], [8, 8, 0, 3, 0, 0, 0, 0, 2, 2], [8, 0, 0, 3, 0, 0, 0, 0, 2, 2], [8, 3, 3, 3, 3, 3, 3, 3, 3, 2], [8, 3, 3, 3, 3, 3, 3, 3, 3, 2], [8, 0, 0, 3, 0, 0, 2, 2, 0, 2], [8, 2, 0, 3, 0, 2, 2, 2, 2, 2], [8, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}], "test": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 0, 0, 8, 8, 8, 0, 0, 8, 2, 2], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [8, 8, 0, 2, 0, 2, 2, 0, 0, 0, 0, 2, 2, 2], [8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 3, 0, 8, 8, 8, 3, 3, 8, 2, 2], [8, 8, 8, 0, 3, 0, 0, 0, 0, 3, 3, 0, 0, 2], [8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2], [8, 8, 8, 0, 3, 0, 0, 0, 0, 3, 3, 0, 2, 2], [8, 8, 0, 0, 3, 0, 0, 0, 0, 3, 3, 2, 2, 2], [8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2], [8, 8, 0, 0, 3, 0, 0, 0, 0, 3, 3, 0, 0, 2], [8, 8, 0, 0, 3, 0, 0, 0, 0, 3, 3, 0, 0, 2], [8, 8, 0, 0, 3, 0, 0, 0, 0, 3, 3, 0, 0, 2], [8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2], [8, 8, 0, 0, 3, 0, 0, 0, 0, 3, 3, 0, 2, 2], [8, 8, 0, 2, 3, 2, 2, 0, 0, 3, 3, 2, 2, 2], [8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/2c608aff.json b/data/arc-agi/training/2c608aff.json
deleted file mode 100644
index c57a965..0000000
--- a/data/arc-agi/training/2c608aff.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8], [8, 8, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8], [8, 8, 3, 3, 3, 8, 8, 8, 8, 4, 8, 8], [8, 8, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 4, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8], [8, 8, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8], [8, 8, 3, 3, 3, 4, 4, 4, 4, 4, 8, 8], [8, 8, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 4, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 2, 2, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 2, 2, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 8, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 2, 2, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 2, 2, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 2, 2, 2, 2, 2, 2], [2, 2, 2, 8, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 8, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 8, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 8, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}, {"input": [[1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 4, 4, 4, 4, 1, 1, 1, 1, 1], [1, 1, 1, 4, 4, 4, 4, 1, 1, 1, 1, 1], [1, 1, 1, 4, 4, 4, 4, 1, 1, 1, 2, 1], [1, 1, 1, 4, 4, 4, 4, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 4, 4, 4, 4, 1, 1, 1, 1, 1], [1, 1, 1, 4, 4, 4, 4, 1, 1, 1, 1, 1], [1, 1, 1, 4, 4, 4, 4, 2, 2, 2, 2, 1], [1, 1, 1, 4, 4, 4, 4, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1], [1, 1, 4, 1, 1, 1, 1, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 4, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 4, 1, 1, 1, 4, 1, 1], [1, 1, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}], "test": [{"input": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 1, 2], [2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2], [2, 2, 1, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 2], [2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2], [2, 2, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/2dc579da.json b/data/arc-agi/training/2dc579da.json
deleted file mode 100644
index f9a8d8b..0000000
--- a/data/arc-agi/training/2dc579da.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 3, 8, 8], [8, 8, 3, 8, 8], [3, 3, 3, 3, 3], [8, 8, 3, 8, 8], [4, 8, 3, 8, 8]], "output": [[8, 8], [4, 8]]}, {"input": [[4, 4, 4, 2, 4, 4, 4], [4, 4, 4, 2, 4, 1, 4], [4, 4, 4, 2, 4, 4, 4], [2, 2, 2, 2, 2, 2, 2], [4, 4, 4, 2, 4, 4, 4], [4, 4, 4, 2, 4, 4, 4], [4, 4, 4, 2, 4, 4, 4]], "output": [[4, 4, 4], [4, 1, 4], [4, 4, 4]]}, {"input": [[3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [3, 8, 3, 3, 3, 1, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3]], "output": [[3, 3, 3, 3, 3], [3, 3, 3, 3, 3], [3, 8, 3, 3, 3], [3, 3, 3, 3, 3], [3, 3, 3, 3, 3]]}], "test": [{"input": [[1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1], [1, 2, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/2dd70a9a.json b/data/arc-agi/training/2dd70a9a.json
deleted file mode 100644
index a7ad60e..0000000
--- a/data/arc-agi/training/2dd70a9a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 8, 0, 8, 8, 8, 0, 8, 0, 8], [0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 0, 8, 0, 8, 0, 0, 0, 8, 8, 8, 0, 0, 2, 0, 0], [8, 0, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 2, 0, 0], [8, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 8, 8], [0, 8, 0, 0, 0, 0, 8, 8, 8, 0, 8, 0, 0, 8, 0, 8, 8, 0, 0, 0], [8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 8, 8, 8, 0, 8, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 8], [0, 0, 0, 3, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 8, 0, 0, 8, 0, 8], [0, 0, 0, 3, 0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 8, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 8, 8, 8, 0, 0, 0, 0, 8], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 8, 0, 0, 0, 0, 8, 8, 8, 0, 0]], "output": [[0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 8, 0, 8, 8, 8, 0, 8, 0, 8], [0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 0, 8, 0, 8, 0, 0, 0, 8, 8, 8, 0, 0, 2, 0, 0], [8, 0, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 2, 0, 0], [8, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 3, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0, 0], [8, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 0], [0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [8, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 8], [0, 0, 0, 3, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 8, 8], [0, 8, 0, 3, 0, 0, 8, 8, 8, 0, 8, 0, 0, 8, 0, 8, 8, 0, 0, 0], [8, 0, 0, 3, 0, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 3, 0, 0, 8, 8, 8, 0, 0, 8, 8, 8, 0, 8, 0, 0, 8, 8], [0, 0, 0, 3, 0, 0, 8, 8, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 8], [0, 0, 0, 3, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 8, 0, 0, 8, 0, 8], [0, 0, 0, 3, 0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 8, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 8, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 8, 8, 8, 0, 0, 0, 0, 8], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 8, 0, 0, 0, 0, 8, 8, 8, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 3, 8, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 8], [0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 2, 0, 0, 0, 0], [0, 0, 8, 0, 0, 2, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 3, 8, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 8, 0, 0], [0, 3, 3, 3, 3, 3, 8, 0, 0, 8], [0, 8, 0, 8, 0, 3, 0, 0, 0, 0], [0, 0, 0, 8, 0, 3, 0, 0, 0, 0], [0, 8, 8, 0, 0, 2, 0, 0, 0, 0], [0, 0, 8, 0, 0, 2, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 8, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 8, 0, 8, 8], [8, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 3, 3, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0], [0, 8, 8, 0, 0, 8, 0, 0, 8, 0, 8, 8, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 8, 0, 0, 8, 0, 8, 0, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 8, 0, 0, 8, 0, 0, 8], [0, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 8, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 8, 0, 8, 8], [8, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 3, 3, 3, 3, 3, 3, 3, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 8, 0, 8, 0], [0, 8, 8, 0, 0, 8, 0, 3, 8, 0, 8, 8, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [8, 2, 2, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 8, 0], [8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 8, 0, 0, 8, 0, 8, 0, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 8, 0, 0, 8, 0, 0, 8], [0, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[8, 8, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0], [8, 0, 0, 0, 0, 8, 2, 2, 0, 0, 0, 0, 0], [0, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8], [0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8], [0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [8, 0, 8, 3, 3, 0, 0, 0, 0, 0, 8, 0, 0], [0, 8, 8, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0]], "output": [[8, 8, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0], [8, 0, 0, 0, 0, 8, 2, 2, 3, 3, 0, 0, 0], [0, 8, 0, 0, 8, 8, 0, 0, 0, 3, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 8, 3, 0, 0, 8], [0, 0, 8, 0, 0, 0, 8, 0, 0, 3, 0, 0, 8], [0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 0, 0], [8, 0, 8, 3, 3, 3, 3, 3, 3, 3, 8, 0, 0], [0, 8, 8, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/2dee498d.json b/data/arc-agi/training/2dee498d.json
deleted file mode 100644
index 9d05b01..0000000
--- a/data/arc-agi/training/2dee498d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 5, 1, 1, 5, 4, 4, 5, 1], [5, 5, 5, 5, 5, 5, 5, 5, 5], [1, 5, 4, 4, 5, 1, 1, 5, 4]], "output": [[4, 5, 1], [5, 5, 5], [1, 5, 4]]}, {"input": [[2, 0, 0, 1, 2, 0, 0, 1, 2, 0, 0, 1], [4, 2, 1, 4, 4, 2, 1, 4, 4, 2, 1, 4], [4, 1, 2, 4, 4, 1, 2, 4, 4, 1, 2, 4], [1, 0, 0, 2, 1, 0, 0, 2, 1, 0, 0, 2]], "output": [[2, 0, 0, 1], [4, 2, 1, 4], [4, 1, 2, 4], [1, 0, 0, 2]]}, {"input": [[2, 1, 2, 1, 2, 1], [2, 3, 2, 3, 2, 3]], "output": [[2, 1], [2, 3]]}], "test": [{"input": [[0, 2, 0, 4, 4, 0, 2, 0, 4, 4, 0, 2, 0, 4, 4], [2, 2, 0, 4, 4, 2, 2, 0, 4, 4, 2, 2, 0, 4, 4], [0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0], [1, 1, 0, 2, 2, 1, 1, 0, 2, 2, 1, 1, 0, 2, 2], [1, 1, 0, 2, 0, 1, 1, 0, 2, 0, 1, 1, 0, 2, 0]], "output": [[0, 2, 0, 4, 4], [2, 2, 0, 4, 4], [0, 2, 2, 2, 0], [1, 1, 0, 2, 2], [1, 1, 0, 2, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/31aa019c.json b/data/arc-agi/training/31aa019c.json
deleted file mode 100644
index 14fa1e5..0000000
--- a/data/arc-agi/training/31aa019c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 1, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 2, 0, 0, 0, 1], [0, 0, 1, 0, 0, 0, 0, 0, 0, 5], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 1, 0, 1, 0, 0, 0, 0, 0], [0, 8, 1, 0, 0, 0, 1, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [2, 4, 2, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[2, 7, 7, 1, 0, 3, 0, 0, 0, 3], [0, 0, 0, 9, 0, 0, 0, 0, 3, 7], [0, 0, 0, 1, 0, 0, 0, 6, 0, 9], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [9, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 3, 0], [0, 5, 0, 7, 3, 0, 0, 0, 1, 0], [4, 4, 0, 0, 0, 1, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 5, 3, 0], [0, 0, 0, 0, 4, 5, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 2, 6, 2, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[6, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 8], [0, 7, 0, 0, 2, 0, 5, 0, 2, 0], [0, 9, 0, 1, 0, 0, 0, 0, 0, 0], [0, 9, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 1, 0, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 3, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 2, 5, 7, 0, 0, 0], [0, 0, 0, 5, 6, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 8, 0, 3, 0, 0, 0, 0, 8], [7, 4, 7, 7, 4, 0, 0, 0, 0, 4], [0, 0, 0, 8, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 4, 0, 0], [5, 5, 0, 3, 0, 0, 6, 7, 0, 7], [0, 0, 3, 0, 0, 0, 0, 0, 0, 2], [1, 0, 1, 0, 0, 0, 0, 0, 6, 7]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 2, 9, 2, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/321b1fc6.json b/data/arc-agi/training/321b1fc6.json
deleted file mode 100644
index f5cf275..0000000
--- a/data/arc-agi/training/321b1fc6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 6, 0, 0, 0, 0, 0, 0, 0], [0, 9, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 6, 0, 0, 0], [0, 0, 0, 0, 0, 9, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 6, 0, 0, 0, 0, 0, 0], [0, 0, 9, 4, 0, 0, 0, 0, 7, 6], [0, 0, 0, 0, 0, 0, 0, 0, 9, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 0, 0, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 8, 8, 0, 0], [8, 8, 8, 8, 0, 8, 8, 8, 8, 0], [0, 0, 8, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 0, 0, 0], [3, 4, 3, 3, 0, 0, 8, 8, 0, 0], [0, 0, 3, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 4, 4, 0, 0], [3, 4, 3, 3, 0, 3, 4, 3, 3, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 3, 4, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/32597951.json b/data/arc-agi/training/32597951.json
deleted file mode 100644
index 92cdd84..0000000
--- a/data/arc-agi/training/32597951.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 1, 1, 1, 8, 1, 1, 1, 0, 1, 1, 1, 0, 1], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 1, 8, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 1, 3, 3, 8, 3, 3, 1, 0, 1, 1, 1, 0, 1], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 3, 8, 3, 3, 3, 0, 1, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1], [1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1], [0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0], [0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [1, 8, 1, 8, 8, 8, 8, 8, 8, 1, 0, 0, 1, 0, 1, 1, 0], [0, 8, 1, 8, 1, 1, 1, 8, 8, 0, 1, 1, 0, 0, 0, 0, 0], [0, 1, 1, 8, 1, 1, 8, 1, 8, 0, 0, 1, 1, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0], [0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1], [1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1], [0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0], [0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1], [0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1]], "output": [[1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1], [1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1], [0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0], [0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [1, 8, 3, 8, 8, 8, 8, 8, 8, 1, 0, 0, 1, 0, 1, 1, 0], [0, 8, 3, 8, 3, 3, 3, 8, 8, 0, 1, 1, 0, 0, 0, 0, 0], [0, 3, 3, 8, 3, 3, 8, 3, 8, 0, 0, 1, 1, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0], [0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1], [1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1], [0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0], [0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1], [0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1]]}, {"input": [[0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [1, 0, 1, 1, 8, 1, 1, 8, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 1, 0, 0, 1, 8, 8, 1, 8, 0, 1, 0, 0, 1, 0, 0, 1], [1, 0, 1, 1, 8, 1, 1, 8, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 1, 0, 0, 1, 8, 8, 1, 8, 0, 1, 0, 0, 1, 0, 0, 1], [1, 0, 1, 1, 8, 1, 1, 8, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1]], "output": [[0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [1, 0, 1, 1, 8, 3, 3, 8, 3, 1, 0, 1, 1, 0, 1, 1, 0], [0, 1, 0, 0, 3, 8, 8, 3, 8, 0, 1, 0, 0, 1, 0, 0, 1], [1, 0, 1, 1, 8, 3, 3, 8, 3, 1, 0, 1, 1, 0, 1, 1, 0], [0, 1, 0, 0, 3, 8, 8, 3, 8, 0, 1, 0, 0, 1, 0, 0, 1], [1, 0, 1, 1, 8, 3, 3, 8, 3, 1, 0, 1, 1, 0, 1, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1]]}], "test": [{"input": [[1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [0, 0, 1, 0, 0, 1, 0, 8, 1, 8, 8, 1, 8, 0, 1, 0, 0], [1, 0, 0, 1, 0, 0, 1, 8, 8, 1, 8, 8, 1, 0, 0, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 8, 8, 1, 8, 8, 1, 0, 0, 1], [0, 0, 1, 0, 0, 1, 0, 8, 1, 8, 8, 1, 8, 0, 1, 0, 0], [1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1]], "output": [[1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1], [0, 0, 1, 0, 0, 1, 0, 8, 3, 8, 8, 3, 8, 0, 1, 0, 0], [1, 0, 0, 1, 0, 0, 1, 8, 8, 3, 8, 8, 3, 0, 0, 1, 0], [0, 1, 0, 0, 1, 0, 0, 3, 8, 8, 3, 8, 8, 1, 0, 0, 1], [0, 0, 1, 0, 0, 1, 0, 8, 3, 8, 8, 3, 8, 0, 1, 0, 0], [1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/3345333e.json b/data/arc-agi/training/3345333e.json
deleted file mode 100644
index ea7100f..0000000
--- a/data/arc-agi/training/3345333e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 2, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 2, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 5, 5, 5, 0, 5, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 0, 5, 0, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 5, 5, 5, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 0, 5, 0, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/3428a4f5.json b/data/arc-agi/training/3428a4f5.json
deleted file mode 100644
index a84f45b..0000000
--- a/data/arc-agi/training/3428a4f5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[2, 0, 2, 2, 0], [2, 0, 0, 2, 2], [2, 2, 2, 0, 0], [2, 2, 2, 2, 2], [0, 2, 2, 0, 0], [2, 2, 2, 2, 2], [4, 4, 4, 4, 4], [0, 0, 0, 2, 2], [2, 0, 0, 0, 2], [2, 2, 2, 0, 2], [0, 2, 2, 0, 0], [2, 0, 2, 2, 0], [2, 0, 2, 2, 2]], "output": [[3, 0, 3, 0, 3], [0, 0, 0, 3, 0], [0, 0, 0, 0, 3], [3, 0, 0, 3, 3], [3, 3, 0, 3, 0], [0, 3, 0, 0, 0]]}, {"input": [[2, 0, 2, 0, 2], [2, 0, 2, 0, 2], [0, 0, 0, 2, 0], [0, 2, 2, 2, 0], [2, 0, 2, 2, 0], [2, 2, 2, 0, 2], [4, 4, 4, 4, 4], [2, 2, 0, 0, 0], [0, 2, 2, 2, 2], [0, 0, 2, 2, 0], [0, 2, 0, 0, 0], [0, 2, 2, 0, 2], [2, 0, 0, 0, 0]], "output": [[0, 3, 3, 0, 3], [3, 3, 0, 3, 0], [0, 0, 3, 0, 0], [0, 0, 3, 3, 0], [3, 3, 0, 3, 3], [0, 3, 3, 0, 3]]}], "train": [{"input": [[0, 0, 0, 2, 2], [0, 0, 2, 0, 2], [2, 0, 0, 2, 2], [2, 2, 0, 0, 2], [0, 0, 0, 0, 2], [0, 2, 0, 0, 0], [4, 4, 4, 4, 4], [2, 0, 0, 0, 0], [2, 2, 0, 0, 0], [2, 0, 2, 0, 0], [0, 0, 2, 0, 0], [0, 0, 0, 2, 2], [2, 0, 0, 2, 0]], "output": [[3, 0, 0, 3, 3], [3, 3, 3, 0, 3], [0, 0, 3, 3, 3], [3, 3, 3, 0, 3], [0, 0, 0, 3, 0], [3, 3, 0, 3, 0]]}, {"input": [[0, 2, 2, 2, 2], [0, 0, 0, 0, 2], [2, 0, 2, 2, 2], [0, 0, 2, 2, 0], [2, 2, 2, 2, 0], [2, 2, 0, 0, 2], [4, 4, 4, 4, 4], [0, 0, 0, 0, 0], [0, 0, 2, 0, 0], [2, 0, 0, 0, 2], [0, 0, 0, 2, 0], [0, 2, 0, 2, 0], [0, 2, 2, 2, 0]], "output": [[0, 3, 3, 3, 3], [0, 0, 3, 0, 3], [0, 0, 3, 3, 0], [0, 0, 3, 0, 0], [3, 0, 3, 0, 0], [3, 0, 3, 3, 3]]}, {"input": [[2, 2, 0, 2, 2], [2, 0, 2, 2, 2], [2, 0, 0, 0, 0], [0, 2, 0, 2, 0], [2, 2, 2, 0, 2], [2, 0, 2, 0, 0], [4, 4, 4, 4, 4], [2, 0, 0, 2, 2], [0, 0, 2, 0, 2], [2, 2, 0, 0, 0], [0, 0, 2, 0, 2], [0, 2, 0, 2, 2], [0, 2, 2, 0, 2]], "output": [[0, 3, 0, 0, 0], [3, 0, 0, 3, 0], [0, 3, 0, 0, 0], [0, 3, 3, 3, 3], [3, 0, 3, 3, 0], [3, 3, 0, 0, 3]]}, {"input": [[0, 2, 0, 2, 0], [2, 2, 0, 2, 2], [0, 2, 2, 2, 0], [0, 2, 2, 0, 0], [0, 2, 2, 2, 2], [2, 0, 2, 0, 2], [4, 4, 4, 4, 4], [2, 0, 2, 2, 2], [0, 2, 2, 0, 0], [2, 0, 2, 0, 2], [2, 0, 0, 0, 2], [2, 2, 0, 2, 0], [2, 0, 2, 2, 0]], "output": [[3, 3, 3, 0, 3], [3, 0, 3, 3, 3], [3, 3, 0, 3, 3], [3, 3, 3, 0, 3], [3, 0, 3, 0, 3], [0, 0, 0, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/3618c87e.json b/data/arc-agi/training/3618c87e.json
deleted file mode 100644
index 7b2810d..0000000
--- a/data/arc-agi/training/3618c87e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 1, 0, 0], [0, 0, 5, 0, 0], [5, 5, 5, 5, 5]], "output": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 5, 0, 0], [5, 5, 1, 5, 5]]}, {"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 1, 0, 1, 0], [0, 5, 0, 5, 0], [5, 5, 5, 5, 5]], "output": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 5, 0, 5, 0], [5, 1, 5, 1, 5]]}, {"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 1, 0, 0, 1], [0, 5, 0, 0, 5], [5, 5, 5, 5, 5]], "output": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 5, 0, 0, 5], [5, 1, 5, 5, 1]]}], "test": [{"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 1, 0, 1], [0, 0, 5, 0, 5], [5, 5, 5, 5, 5]], "output": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 5, 0, 5], [5, 5, 1, 5, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/3631a71a.json b/data/arc-agi/training/3631a71a.json
deleted file mode 100644
index 9405428..0000000
--- a/data/arc-agi/training/3631a71a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[8, 0, 7, 0, 7, 7, 1, 1, 0, 3, 0, 6, 0, 8, 0, 0, 0, 0, 8, 0, 6, 0, 3, 0, 1, 1, 7, 7, 0, 7], [0, 8, 0, 0, 7, 7, 1, 1, 3, 3, 6, 6, 8, 8, 0, 0, 0, 0, 8, 8, 6, 6, 3, 3, 1, 1, 7, 7, 0, 0], [9, 9, 9, 9, 9, 9, 9, 8, 0, 6, 7, 7, 0, 0, 0, 6, 6, 0, 0, 0, 7, 7, 6, 0, 8, 0, 1, 1, 0, 2], [9, 9, 9, 9, 9, 9, 9, 0, 6, 6, 7, 7, 0, 0, 6, 0, 0, 6, 0, 0, 9, 9, 9, 9, 9, 8, 1, 1, 0, 0], [9, 9, 9, 9, 9, 9, 9, 6, 0, 8, 0, 0, 6, 6, 0, 0, 0, 0, 6, 6, 9, 9, 9, 9, 9, 0, 0, 0, 1, 1], [7, 7, 1, 1, 0, 5, 6, 6, 8, 8, 0, 0, 6, 6, 0, 0, 0, 0, 6, 6, 9, 9, 9, 9, 9, 6, 5, 0, 1, 1], [1, 1, 0, 8, 0, 6, 2, 0, 0, 0, 0, 6, 0, 0, 5, 5, 5, 5, 0, 0, 9, 9, 9, 9, 9, 2, 6, 0, 8, 0], [1, 1, 8, 0, 6, 6, 0, 2, 0, 0, 6, 0, 0, 0, 5, 0, 0, 5, 0, 0, 9, 9, 9, 9, 9, 9, 9, 6, 0, 8], [0, 3, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 6, 0, 3, 0, 0, 3, 0, 6, 0, 0, 9, 9, 9, 9, 9, 0, 6, 0], [3, 3, 6, 6, 8, 8, 0, 0, 0, 6, 0, 5, 0, 0, 0, 3, 3, 0, 0, 0, 5, 0, 9, 9, 9, 9, 9, 8, 6, 6], [0, 6, 7, 7, 0, 0, 0, 6, 0, 0, 0, 0, 3, 0, 0, 6, 6, 0, 0, 3, 0, 0, 9, 9, 9, 9, 9, 0, 7, 7], [6, 6, 7, 7, 0, 0, 6, 0, 0, 5, 0, 0, 0, 3, 6, 6, 6, 6, 3, 0, 0, 0, 9, 9, 9, 9, 9, 0, 7, 7], [0, 8, 0, 0, 6, 6, 0, 0, 6, 0, 3, 0, 0, 4, 3, 0, 0, 3, 4, 0, 0, 3, 0, 6, 0, 0, 6, 6, 0, 0], [8, 8, 0, 0, 6, 6, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 6, 6, 0, 0], [0, 0, 0, 6, 0, 0, 5, 5, 3, 0, 0, 6, 3, 0, 2, 0, 0, 2, 0, 3, 6, 0, 0, 3, 5, 5, 0, 0, 6, 0], [0, 0, 6, 0, 0, 0, 5, 0, 0, 3, 6, 6, 0, 0, 0, 2, 2, 0, 0, 0, 6, 6, 3, 0, 0, 5, 0, 0, 0, 6], [0, 0, 6, 0, 0, 0, 5, 0, 0, 3, 6, 6, 0, 0, 0, 2, 2, 0, 0, 0, 6, 6, 3, 0, 0, 5, 0, 0, 0, 6], [0, 0, 0, 6, 0, 0, 5, 5, 3, 0, 0, 6, 3, 0, 2, 0, 0, 2, 0, 3, 6, 0, 0, 3, 5, 5, 0, 0, 6, 0], [8, 8, 0, 0, 6, 6, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 6, 6, 0, 0], [0, 8, 0, 0, 6, 6, 0, 0, 6, 0, 3, 0, 0, 4, 3, 0, 0, 3, 4, 0, 0, 3, 0, 6, 0, 0, 6, 6, 0, 0], [6, 6, 7, 7, 0, 0, 6, 0, 0, 5, 0, 0, 0, 3, 6, 6, 6, 6, 3, 0, 0, 0, 5, 0, 0, 6, 0, 0, 7, 7], [0, 6, 7, 7, 0, 0, 0, 6, 0, 0, 0, 0, 3, 0, 0, 6, 6, 0, 0, 3, 0, 0, 0, 0, 6, 0, 0, 0, 7, 7], [3, 3, 6, 6, 8, 8, 0, 0, 0, 6, 0, 5, 0, 0, 0, 3, 3, 0, 0, 0, 5, 0, 6, 0, 0, 0, 8, 8, 6, 6], [0, 3, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 6, 0, 3, 0, 0, 3, 0, 6, 0, 0, 0, 0, 0, 0, 8, 0, 6, 0], [1, 1, 8, 0, 6, 6, 0, 2, 0, 0, 6, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 6, 0, 0, 2, 0, 6, 6, 0, 8], [1, 1, 0, 8, 0, 6, 2, 0, 0, 0, 0, 6, 0, 0, 5, 5, 5, 5, 0, 0, 6, 0, 0, 0, 0, 2, 6, 0, 8, 0], [7, 7, 1, 1, 0, 5, 6, 6, 8, 8, 0, 0, 6, 6, 0, 0, 0, 0, 6, 6, 0, 0, 8, 8, 6, 6, 5, 0, 1, 1], [7, 7, 1, 1, 0, 0, 0, 6, 0, 8, 0, 0, 6, 6, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 1, 1], [0, 0, 0, 0, 1, 1, 8, 0, 6, 6, 7, 7, 0, 0, 6, 0, 0, 6, 9, 9, 9, 9, 9, 9, 9, 8, 1, 1, 0, 0], [7, 0, 2, 0, 1, 1, 0, 8, 0, 6, 7, 7, 0, 0, 0, 6, 6, 0, 0, 0, 7, 7, 6, 0, 8, 0, 1, 1, 0, 2]], "output": [[8, 0, 7, 0, 7, 7, 1, 1, 0, 3, 0, 6, 0, 8, 0, 0, 0, 0, 8, 0, 6, 0, 3, 0, 1, 1, 7, 7, 0, 7], [0, 8, 0, 0, 7, 7, 1, 1, 3, 3, 6, 6, 8, 8, 0, 0, 0, 0, 8, 8, 6, 6, 3, 3, 1, 1, 7, 7, 0, 0], [7, 0, 2, 0, 1, 1, 0, 8, 0, 6, 7, 7, 0, 0, 0, 6, 6, 0, 0, 0, 7, 7, 6, 0, 8, 0, 1, 1, 0, 2], [0, 0, 0, 0, 1, 1, 8, 0, 6, 6, 7, 7, 0, 0, 6, 0, 0, 6, 0, 0, 7, 7, 6, 6, 0, 8, 1, 1, 0, 0], [7, 7, 1, 1, 0, 0, 0, 6, 0, 8, 0, 0, 6, 6, 0, 0, 0, 0, 6, 6, 0, 0, 8, 0, 6, 0, 0, 0, 1, 1], [7, 7, 1, 1, 0, 5, 6, 6, 8, 8, 0, 0, 6, 6, 0, 0, 0, 0, 6, 6, 0, 0, 8, 8, 6, 6, 5, 0, 1, 1], [1, 1, 0, 8, 0, 6, 2, 0, 0, 0, 0, 6, 0, 0, 5, 5, 5, 5, 0, 0, 6, 0, 0, 0, 0, 2, 6, 0, 8, 0], [1, 1, 8, 0, 6, 6, 0, 2, 0, 0, 6, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 6, 0, 0, 2, 0, 6, 6, 0, 8], [0, 3, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 6, 0, 3, 0, 0, 3, 0, 6, 0, 0, 0, 0, 0, 0, 8, 0, 6, 0], [3, 3, 6, 6, 8, 8, 0, 0, 0, 6, 0, 5, 0, 0, 0, 3, 3, 0, 0, 0, 5, 0, 6, 0, 0, 0, 8, 8, 6, 6], [0, 6, 7, 7, 0, 0, 0, 6, 0, 0, 0, 0, 3, 0, 0, 6, 6, 0, 0, 3, 0, 0, 0, 0, 6, 0, 0, 0, 7, 7], [6, 6, 7, 7, 0, 0, 6, 0, 0, 5, 0, 0, 0, 3, 6, 6, 6, 6, 3, 0, 0, 0, 5, 0, 0, 6, 0, 0, 7, 7], [0, 8, 0, 0, 6, 6, 0, 0, 6, 0, 3, 0, 0, 4, 3, 0, 0, 3, 4, 0, 0, 3, 0, 6, 0, 0, 6, 6, 0, 0], [8, 8, 0, 0, 6, 6, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 6, 6, 0, 0], [0, 0, 0, 6, 0, 0, 5, 5, 3, 0, 0, 6, 3, 0, 2, 0, 0, 2, 0, 3, 6, 0, 0, 3, 5, 5, 0, 0, 6, 0], [0, 0, 6, 0, 0, 0, 5, 0, 0, 3, 6, 6, 0, 0, 0, 2, 2, 0, 0, 0, 6, 6, 3, 0, 0, 5, 0, 0, 0, 6], [0, 0, 6, 0, 0, 0, 5, 0, 0, 3, 6, 6, 0, 0, 0, 2, 2, 0, 0, 0, 6, 6, 3, 0, 0, 5, 0, 0, 0, 6], [0, 0, 0, 6, 0, 0, 5, 5, 3, 0, 0, 6, 3, 0, 2, 0, 0, 2, 0, 3, 6, 0, 0, 3, 5, 5, 0, 0, 6, 0], [8, 8, 0, 0, 6, 6, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 6, 6, 0, 0], [0, 8, 0, 0, 6, 6, 0, 0, 6, 0, 3, 0, 0, 4, 3, 0, 0, 3, 4, 0, 0, 3, 0, 6, 0, 0, 6, 6, 0, 0], [6, 6, 7, 7, 0, 0, 6, 0, 0, 5, 0, 0, 0, 3, 6, 6, 6, 6, 3, 0, 0, 0, 5, 0, 0, 6, 0, 0, 7, 7], [0, 6, 7, 7, 0, 0, 0, 6, 0, 0, 0, 0, 3, 0, 0, 6, 6, 0, 0, 3, 0, 0, 0, 0, 6, 0, 0, 0, 7, 7], [3, 3, 6, 6, 8, 8, 0, 0, 0, 6, 0, 5, 0, 0, 0, 3, 3, 0, 0, 0, 5, 0, 6, 0, 0, 0, 8, 8, 6, 6], [0, 3, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 6, 0, 3, 0, 0, 3, 0, 6, 0, 0, 0, 0, 0, 0, 8, 0, 6, 0], [1, 1, 8, 0, 6, 6, 0, 2, 0, 0, 6, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 6, 0, 0, 2, 0, 6, 6, 0, 8], [1, 1, 0, 8, 0, 6, 2, 0, 0, 0, 0, 6, 0, 0, 5, 5, 5, 5, 0, 0, 6, 0, 0, 0, 0, 2, 6, 0, 8, 0], [7, 7, 1, 1, 0, 5, 6, 6, 8, 8, 0, 0, 6, 6, 0, 0, 0, 0, 6, 6, 0, 0, 8, 8, 6, 6, 5, 0, 1, 1], [7, 7, 1, 1, 0, 0, 0, 6, 0, 8, 0, 0, 6, 6, 0, 0, 0, 0, 6, 6, 0, 0, 8, 0, 6, 0, 0, 0, 1, 1], [0, 0, 0, 0, 1, 1, 8, 0, 6, 6, 7, 7, 0, 0, 6, 0, 0, 6, 0, 0, 7, 7, 6, 6, 0, 8, 1, 1, 0, 0], [7, 0, 2, 0, 1, 1, 0, 8, 0, 6, 7, 7, 0, 0, 0, 6, 6, 0, 0, 0, 7, 7, 6, 0, 8, 0, 1, 1, 0, 2]]}], "train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 5, 5, 0, 1, 0, 0, 0, 0, 1, 0, 5, 5, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 6, 6, 5, 0, 1, 0, 0, 7, 7, 0, 0, 1, 0, 5, 6, 6, 0, 0, 5, 0, 0, 0], [0, 0, 7, 7, 0, 0, 0, 7, 5, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 5, 7, 0, 0, 0, 7, 7], [0, 0, 7, 7, 0, 0, 7, 0, 5, 0, 0, 4, 0, 7, 0, 2, 2, 0, 7, 0, 4, 0, 0, 5, 0, 7, 0, 0, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 7, 0, 4, 0, 0, 4, 0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 7, 0, 7, 0, 0, 0, 0, 7, 0, 7, 0, 9, 9, 9, 9, 9, 9, 9, 9], [0, 0, 0, 7, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 8, 0, 0, 8, 0, 4, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9], [0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 7, 0, 8, 0, 0, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 0, 4, 0, 0, 5, 9, 9, 9, 9, 9, 9, 9, 0, 5, 0, 9, 9, 9, 9, 9, 9, 9, 9], [5, 0, 0, 4, 0, 7, 0, 2, 0, 0, 5, 0, 9, 9, 9, 9, 9, 9, 9, 0, 0, 5, 9, 9, 9, 9, 9, 9, 4, 0], [0, 1, 0, 0, 7, 0, 4, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 1, 0, 0, 9, 9, 9, 9, 9, 9, 0, 0], [1, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0], [0, 0, 0, 0, 4, 0, 8, 0, 0, 0, 0, 7, 9, 9, 9, 9, 9, 9, 9, 0, 7, 0, 0, 0, 0, 8, 0, 4, 0, 0], [0, 7, 0, 2, 0, 0, 0, 0, 0, 0, 7, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 7, 0, 0, 0, 0, 0, 0, 2, 0], [0, 7, 0, 2, 0, 0, 0, 0, 0, 0, 7, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 7, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 4, 0, 8, 0, 0, 0, 0, 7, 0, 1, 1, 0, 0, 1, 1, 0, 7, 0, 0, 0, 0, 8, 0, 4, 0, 0], [1, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0], [0, 1, 0, 0, 7, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 4, 0, 7, 0, 0], [5, 0, 0, 4, 0, 7, 0, 2, 0, 0, 5, 0, 0, 0, 7, 0, 0, 7, 0, 0, 0, 5, 0, 0, 2, 0, 7, 0, 4, 0], [5, 5, 4, 0, 0, 0, 0, 0, 4, 0, 0, 5, 0, 0, 0, 7, 7, 0, 0, 0, 5, 0, 0, 4, 0, 0, 0, 0, 0, 4], [6, 6, 5, 0, 1, 0, 0, 7, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 7, 0, 0, 1, 0, 5], [6, 6, 5, 5, 0, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 5, 5], [0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 7, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 7, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 8, 0, 0, 8, 0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 7, 0], [0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 7, 0, 7, 0, 0, 0, 0, 7, 0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 7, 0, 4, 0, 0, 4, 0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 0, 0, 7, 0, 5, 0, 0, 4, 0, 7, 0, 2, 2, 0, 7, 0, 4, 0, 0, 5, 0, 7, 0, 0, 7, 7], [0, 0, 7, 7, 0, 0, 0, 7, 5, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 5, 7, 0, 0, 0, 7, 7]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 5, 5, 0, 1, 0, 0, 0, 0, 1, 0, 5, 5, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 6, 6, 5, 0, 1, 0, 0, 7, 7, 0, 0, 1, 0, 5, 6, 6, 0, 0, 5, 0, 0, 0], [0, 0, 7, 7, 0, 0, 0, 7, 5, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 5, 7, 0, 0, 0, 7, 7], [0, 0, 7, 7, 0, 0, 7, 0, 5, 0, 0, 4, 0, 7, 0, 2, 2, 0, 7, 0, 4, 0, 0, 5, 0, 7, 0, 0, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 7, 0, 4, 0, 0, 4, 0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 7, 0, 7, 0, 0, 0, 0, 7, 0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 8, 0, 0, 8, 0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 7, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 7, 0, 0, 0, 0, 0, 0, 7], [6, 6, 5, 5, 0, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 5, 5], [6, 6, 5, 0, 1, 0, 0, 7, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 7, 0, 0, 1, 0, 5], [5, 5, 4, 0, 0, 0, 0, 0, 4, 0, 0, 5, 0, 0, 0, 7, 7, 0, 0, 0, 5, 0, 0, 4, 0, 0, 0, 0, 0, 4], [5, 0, 0, 4, 0, 7, 0, 2, 0, 0, 5, 0, 0, 0, 7, 0, 0, 7, 0, 0, 0, 5, 0, 0, 2, 0, 7, 0, 4, 0], [0, 1, 0, 0, 7, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 4, 0, 7, 0, 0], [1, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0], [0, 0, 0, 0, 4, 0, 8, 0, 0, 0, 0, 7, 0, 1, 1, 0, 0, 1, 1, 0, 7, 0, 0, 0, 0, 8, 0, 4, 0, 0], [0, 7, 0, 2, 0, 0, 0, 0, 0, 0, 7, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 7, 0, 0, 0, 0, 0, 0, 2, 0], [0, 7, 0, 2, 0, 0, 0, 0, 0, 0, 7, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 7, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 4, 0, 8, 0, 0, 0, 0, 7, 0, 1, 1, 0, 0, 1, 1, 0, 7, 0, 0, 0, 0, 8, 0, 4, 0, 0], [1, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0], [0, 1, 0, 0, 7, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 4, 0, 7, 0, 0], [5, 0, 0, 4, 0, 7, 0, 2, 0, 0, 5, 0, 0, 0, 7, 0, 0, 7, 0, 0, 0, 5, 0, 0, 2, 0, 7, 0, 4, 0], [5, 5, 4, 0, 0, 0, 0, 0, 4, 0, 0, 5, 0, 0, 0, 7, 7, 0, 0, 0, 5, 0, 0, 4, 0, 0, 0, 0, 0, 4], [6, 6, 5, 0, 1, 0, 0, 7, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 7, 0, 0, 1, 0, 5], [6, 6, 5, 5, 0, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 5, 5], [0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 7, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 7, 0, 0, 3, 0, 0, 0, 0, 0, 4, 0, 8, 0, 0, 8, 0, 4, 0, 0, 0, 0, 0, 3, 0, 0, 7, 0], [0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 7, 0, 7, 0, 0, 0, 0, 7, 0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 7, 0, 4, 0, 0, 4, 0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 0, 0, 7, 0, 5, 0, 0, 4, 0, 7, 0, 2, 2, 0, 7, 0, 4, 0, 0, 5, 0, 7, 0, 0, 7, 7], [0, 0, 7, 7, 0, 0, 0, 7, 5, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 5, 7, 0, 0, 0, 7, 7]]}, {"input": [[3, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 3, 1, 0, 8, 0, 0, 8, 0, 1, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 8, 0, 3, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 9, 9, 9, 9, 9, 0, 0, 0, 0], [0, 0, 7, 7, 0, 0, 4, 0, 3, 3, 4, 4, 8, 0, 6, 6, 6, 6, 0, 8, 4, 9, 9, 9, 9, 9, 0, 0, 7, 7], [0, 0, 7, 0, 0, 3, 0, 0, 3, 0, 4, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 9, 9, 9, 9, 9, 3, 0, 0, 7], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 8, 0, 3, 0, 8, 0, 0, 8, 0, 3, 0, 9, 9, 9, 9, 9, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 1, 1, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 1, 1, 0, 0, 3, 0], [0, 0, 4, 0, 1, 1, 0, 2, 8, 0, 6, 6, 8, 0, 1, 1, 1, 1, 0, 8, 6, 6, 0, 8, 2, 0, 1, 1, 0, 4], [0, 3, 0, 0, 1, 1, 2, 2, 0, 0, 6, 6, 0, 0, 1, 0, 0, 1, 0, 0, 6, 6, 0, 0, 2, 2, 1, 1, 0, 0], [0, 8, 3, 3, 1, 0, 8, 0, 0, 0, 1, 0, 0, 5, 7, 0, 0, 7, 5, 0, 0, 1, 0, 0, 0, 8, 0, 1, 3, 3], [8, 0, 3, 0, 0, 1, 0, 0, 0, 8, 0, 0, 5, 0, 0, 7, 7, 0, 0, 5, 0, 0, 8, 0, 0, 0, 1, 0, 0, 3], [3, 3, 4, 4, 8, 0, 6, 6, 1, 0, 2, 2, 7, 0, 0, 7, 7, 0, 0, 7, 2, 2, 0, 1, 6, 6, 0, 8, 4, 4], [3, 0, 4, 0, 0, 0, 6, 6, 0, 0, 2, 0, 0, 7, 7, 0, 0, 7, 7, 0, 0, 2, 0, 0, 6, 6, 0, 0, 0, 4], [1, 0, 8, 0, 3, 0, 8, 0, 0, 5, 7, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 7, 5, 0, 0, 8, 0, 3, 0, 8], [0, 1, 0, 0, 0, 3, 0, 0, 5, 0, 0, 7, 5, 5, 0, 0, 0, 0, 5, 5, 7, 0, 0, 5, 0, 0, 3, 0, 0, 0], [8, 0, 6, 6, 8, 0, 1, 1, 7, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 7, 1, 1, 0, 8, 6, 6], [0, 0, 6, 6, 0, 0, 1, 0, 0, 7, 7, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 7, 7, 0, 0, 1, 0, 0, 6, 6], [0, 0, 6, 6, 0, 0, 1, 0, 0, 9, 9, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 7, 7, 0, 0, 1, 0, 0, 6, 6], [8, 0, 6, 6, 8, 0, 1, 1, 7, 9, 9, 7, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 7, 1, 1, 0, 8, 6, 6], [0, 1, 0, 0, 0, 3, 0, 0, 5, 0, 0, 7, 5, 5, 0, 0, 0, 0, 5, 5, 7, 9, 9, 5, 0, 0, 3, 0, 0, 0], [1, 0, 8, 0, 3, 0, 8, 0, 0, 5, 7, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 9, 9, 0, 0, 8, 0, 3, 0, 8], [3, 0, 4, 0, 0, 0, 6, 6, 0, 0, 2, 0, 0, 7, 7, 0, 0, 7, 7, 0, 0, 9, 9, 0, 6, 6, 0, 0, 0, 4], [3, 3, 4, 4, 8, 0, 6, 6, 1, 0, 2, 2, 7, 0, 0, 7, 7, 0, 0, 7, 2, 2, 0, 1, 6, 6, 0, 8, 4, 4], [8, 0, 3, 0, 0, 1, 0, 0, 0, 8, 0, 0, 5, 0, 0, 7, 7, 0, 0, 5, 0, 0, 8, 0, 0, 0, 1, 0, 0, 3], [0, 8, 3, 3, 1, 0, 8, 0, 0, 0, 1, 0, 0, 5, 7, 0, 0, 7, 5, 0, 0, 1, 0, 0, 0, 8, 0, 1, 3, 3], [0, 3, 0, 0, 1, 1, 2, 2, 0, 0, 6, 6, 0, 0, 1, 0, 0, 1, 0, 0, 6, 6, 0, 0, 2, 2, 1, 1, 0, 0], [0, 0, 4, 0, 1, 1, 0, 2, 8, 0, 6, 6, 8, 0, 1, 1, 1, 1, 0, 8, 9, 9, 9, 9, 9, 9, 1, 1, 0, 4], [0, 0, 0, 3, 0, 0, 1, 1, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 9, 9, 9, 9, 9, 9, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 8, 0, 3, 0, 8, 0, 0, 8, 0, 3, 0, 8, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 7, 0, 0, 3, 0, 0, 3, 0, 4, 0, 0, 0, 6, 6, 6, 9, 9, 9, 9, 9, 9, 9, 0, 0, 3, 0, 0, 7], [0, 0, 7, 7, 0, 0, 4, 0, 3, 3, 4, 4, 8, 0, 6, 6, 6, 9, 9, 9, 9, 9, 9, 9, 0, 4, 0, 0, 7, 7]], "output": [[3, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 3, 1, 0, 8, 0, 0, 8, 0, 1, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 8, 0, 3, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 3, 0, 8, 3, 0, 0, 0, 0, 0], [0, 0, 7, 7, 0, 0, 4, 0, 3, 3, 4, 4, 8, 0, 6, 6, 6, 6, 0, 8, 4, 4, 3, 3, 0, 4, 0, 0, 7, 7], [0, 0, 7, 0, 0, 3, 0, 0, 3, 0, 4, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 4, 0, 3, 0, 0, 3, 0, 0, 7], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 8, 0, 3, 0, 8, 0, 0, 8, 0, 3, 0, 8, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 1, 1, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 1, 1, 0, 0, 3, 0], [0, 0, 4, 0, 1, 1, 0, 2, 8, 0, 6, 6, 8, 0, 1, 1, 1, 1, 0, 8, 6, 6, 0, 8, 2, 0, 1, 1, 0, 4], [0, 3, 0, 0, 1, 1, 2, 2, 0, 0, 6, 6, 0, 0, 1, 0, 0, 1, 0, 0, 6, 6, 0, 0, 2, 2, 1, 1, 0, 0], [0, 8, 3, 3, 1, 0, 8, 0, 0, 0, 1, 0, 0, 5, 7, 0, 0, 7, 5, 0, 0, 1, 0, 0, 0, 8, 0, 1, 3, 3], [8, 0, 3, 0, 0, 1, 0, 0, 0, 8, 0, 0, 5, 0, 0, 7, 7, 0, 0, 5, 0, 0, 8, 0, 0, 0, 1, 0, 0, 3], [3, 3, 4, 4, 8, 0, 6, 6, 1, 0, 2, 2, 7, 0, 0, 7, 7, 0, 0, 7, 2, 2, 0, 1, 6, 6, 0, 8, 4, 4], [3, 0, 4, 0, 0, 0, 6, 6, 0, 0, 2, 0, 0, 7, 7, 0, 0, 7, 7, 0, 0, 2, 0, 0, 6, 6, 0, 0, 0, 4], [1, 0, 8, 0, 3, 0, 8, 0, 0, 5, 7, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 7, 5, 0, 0, 8, 0, 3, 0, 8], [0, 1, 0, 0, 0, 3, 0, 0, 5, 0, 0, 7, 5, 5, 0, 0, 0, 0, 5, 5, 7, 0, 0, 5, 0, 0, 3, 0, 0, 0], [8, 0, 6, 6, 8, 0, 1, 1, 7, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 7, 1, 1, 0, 8, 6, 6], [0, 0, 6, 6, 0, 0, 1, 0, 0, 7, 7, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 7, 7, 0, 0, 1, 0, 0, 6, 6], [0, 0, 6, 6, 0, 0, 1, 0, 0, 7, 7, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 7, 7, 0, 0, 1, 0, 0, 6, 6], [8, 0, 6, 6, 8, 0, 1, 1, 7, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 7, 1, 1, 0, 8, 6, 6], [0, 1, 0, 0, 0, 3, 0, 0, 5, 0, 0, 7, 5, 5, 0, 0, 0, 0, 5, 5, 7, 0, 0, 5, 0, 0, 3, 0, 0, 0], [1, 0, 8, 0, 3, 0, 8, 0, 0, 5, 7, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 7, 5, 0, 0, 8, 0, 3, 0, 8], [3, 0, 4, 0, 0, 0, 6, 6, 0, 0, 2, 0, 0, 7, 7, 0, 0, 7, 7, 0, 0, 2, 0, 0, 6, 6, 0, 0, 0, 4], [3, 3, 4, 4, 8, 0, 6, 6, 1, 0, 2, 2, 7, 0, 0, 7, 7, 0, 0, 7, 2, 2, 0, 1, 6, 6, 0, 8, 4, 4], [8, 0, 3, 0, 0, 1, 0, 0, 0, 8, 0, 0, 5, 0, 0, 7, 7, 0, 0, 5, 0, 0, 8, 0, 0, 0, 1, 0, 0, 3], [0, 8, 3, 3, 1, 0, 8, 0, 0, 0, 1, 0, 0, 5, 7, 0, 0, 7, 5, 0, 0, 1, 0, 0, 0, 8, 0, 1, 3, 3], [0, 3, 0, 0, 1, 1, 2, 2, 0, 0, 6, 6, 0, 0, 1, 0, 0, 1, 0, 0, 6, 6, 0, 0, 2, 2, 1, 1, 0, 0], [0, 0, 4, 0, 1, 1, 0, 2, 8, 0, 6, 6, 8, 0, 1, 1, 1, 1, 0, 8, 6, 6, 0, 8, 2, 0, 1, 1, 0, 4], [0, 0, 0, 3, 0, 0, 1, 1, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 1, 1, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 8, 0, 3, 0, 8, 0, 0, 8, 0, 3, 0, 8, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 7, 0, 0, 3, 0, 0, 3, 0, 4, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 4, 0, 3, 0, 0, 3, 0, 0, 7], [0, 0, 7, 7, 0, 0, 4, 0, 3, 3, 4, 4, 8, 0, 6, 6, 6, 6, 0, 8, 4, 4, 3, 3, 0, 4, 0, 0, 7, 7]]}, {"input": [[0, 5, 0, 0, 0, 5, 0, 0, 8, 8, 0, 4, 4, 4, 0, 0, 0, 9, 9, 9, 9, 0, 8, 8, 0, 0, 5, 0, 0, 0], [5, 0, 0, 0, 5, 0, 0, 0, 8, 0, 4, 4, 4, 4, 0, 3, 3, 9, 9, 9, 9, 4, 0, 8, 0, 0, 0, 5, 0, 0], [0, 0, 0, 1, 0, 0, 4, 4, 0, 4, 2, 0, 0, 0, 8, 8, 8, 9, 9, 9, 9, 2, 4, 0, 4, 4, 0, 0, 1, 0], [0, 0, 1, 1, 0, 0, 4, 0, 4, 4, 0, 0, 0, 3, 8, 0, 0, 9, 9, 9, 9, 0, 4, 4, 0, 4, 0, 0, 1, 1], [0, 5, 0, 0, 1, 0, 0, 0, 4, 4, 0, 0, 8, 8, 0, 7, 7, 9, 9, 9, 9, 0, 4, 4, 0, 0, 0, 1, 0, 0], [5, 0, 0, 0, 0, 1, 0, 0, 4, 4, 0, 3, 8, 8, 7, 7, 7, 9, 9, 9, 9, 0, 4, 4, 0, 0, 1, 0, 0, 0], [0, 0, 4, 4, 0, 0, 1, 0, 0, 0, 8, 8, 0, 7, 0, 5, 5, 9, 9, 9, 9, 8, 0, 0, 0, 1, 0, 0, 4, 4], [9, 9, 9, 0, 0, 0, 0, 1, 0, 3, 8, 0, 7, 7, 5, 0, 0, 5, 7, 7, 0, 8, 3, 0, 1, 0, 0, 0, 0, 4], [9, 9, 9, 4, 4, 4, 0, 0, 2, 2, 1, 0, 4, 0, 5, 0, 0, 5, 0, 4, 0, 1, 2, 2, 0, 0, 4, 4, 4, 0], [9, 9, 9, 4, 4, 4, 0, 3, 2, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 2, 3, 0, 4, 4, 4, 4], [9, 9, 9, 0, 0, 0, 8, 8, 1, 0, 3, 0, 5, 0, 0, 6, 6, 0, 0, 5, 0, 3, 0, 1, 8, 8, 0, 0, 0, 2], [9, 9, 9, 0, 0, 3, 8, 0, 0, 0, 0, 3, 0, 5, 6, 0, 0, 6, 5, 0, 3, 0, 0, 0, 0, 8, 3, 0, 0, 0], [9, 9, 9, 0, 8, 8, 0, 7, 4, 0, 5, 0, 0, 6, 7, 0, 0, 7, 6, 0, 0, 5, 0, 4, 7, 0, 8, 8, 0, 0], [9, 9, 9, 3, 8, 8, 7, 7, 0, 0, 0, 5, 6, 6, 0, 7, 7, 0, 6, 6, 5, 0, 0, 0, 7, 7, 8, 8, 3, 0], [0, 0, 8, 8, 0, 7, 0, 5, 5, 0, 0, 6, 7, 0, 2, 0, 0, 2, 0, 7, 6, 0, 0, 5, 5, 0, 7, 0, 8, 8], [0, 3, 8, 0, 7, 7, 5, 0, 0, 5, 6, 0, 0, 7, 0, 2, 2, 0, 7, 0, 0, 6, 5, 0, 0, 5, 7, 7, 0, 8], [0, 3, 8, 0, 7, 7, 5, 0, 0, 5, 6, 0, 0, 7, 0, 2, 2, 0, 7, 0, 0, 6, 5, 0, 0, 5, 7, 7, 0, 8], [0, 0, 8, 8, 0, 7, 0, 5, 5, 0, 0, 6, 7, 0, 2, 0, 0, 2, 0, 7, 6, 0, 0, 5, 5, 0, 7, 0, 8, 8], [4, 4, 0, 3, 8, 8, 7, 7, 0, 0, 0, 5, 6, 6, 0, 7, 7, 0, 6, 6, 5, 0, 0, 0, 7, 7, 8, 8, 3, 0], [4, 4, 0, 0, 8, 8, 0, 7, 4, 0, 5, 0, 0, 6, 7, 0, 0, 7, 6, 0, 0, 5, 0, 4, 7, 0, 8, 8, 0, 0], [4, 4, 0, 0, 0, 3, 8, 0, 0, 0, 0, 3, 0, 5, 6, 0, 0, 6, 5, 0, 3, 0, 0, 0, 0, 8, 3, 0, 0, 0], [0, 4, 2, 0, 0, 0, 8, 8, 1, 0, 3, 0, 5, 0, 0, 6, 6, 0, 0, 5, 0, 3, 0, 1, 8, 8, 0, 0, 0, 2], [8, 0, 4, 4, 4, 4, 0, 3, 2, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 2, 3, 0, 4, 4, 4, 4], [8, 8, 0, 4, 4, 4, 0, 0, 2, 2, 1, 0, 4, 0, 5, 0, 0, 5, 0, 4, 0, 1, 2, 2, 0, 0, 4, 4, 4, 0], [0, 0, 4, 0, 0, 0, 0, 1, 0, 3, 8, 0, 7, 7, 5, 0, 0, 5, 7, 7, 0, 8, 3, 0, 1, 0, 0, 0, 0, 4], [0, 0, 4, 4, 0, 0, 1, 0, 0, 0, 8, 8, 0, 7, 0, 5, 5, 0, 7, 0, 8, 8, 0, 0, 0, 1, 0, 0, 4, 4], [5, 0, 0, 0, 0, 1, 0, 0, 4, 4, 0, 3, 8, 8, 7, 7, 7, 7, 8, 8, 3, 0, 4, 4, 0, 0, 1, 0, 0, 0], [0, 5, 0, 0, 1, 0, 0, 0, 4, 4, 0, 0, 8, 8, 0, 7, 7, 0, 8, 8, 0, 0, 4, 4, 0, 0, 0, 1, 0, 0], [0, 0, 1, 1, 0, 0, 4, 0, 4, 4, 0, 0, 0, 3, 8, 0, 0, 8, 3, 0, 0, 0, 4, 4, 0, 4, 0, 0, 1, 1], [0, 0, 0, 1, 0, 0, 4, 4, 0, 4, 2, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 2, 4, 0, 4, 4, 0, 0, 1, 0]], "output": [[0, 5, 0, 0, 0, 5, 0, 0, 8, 8, 0, 4, 4, 4, 0, 0, 0, 0, 4, 4, 4, 0, 8, 8, 0, 0, 5, 0, 0, 0], [5, 0, 0, 0, 5, 0, 0, 0, 8, 0, 4, 4, 4, 4, 0, 3, 3, 0, 4, 4, 4, 4, 0, 8, 0, 0, 0, 5, 0, 0], [0, 0, 0, 1, 0, 0, 4, 4, 0, 4, 2, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 2, 4, 0, 4, 4, 0, 0, 1, 0], [0, 0, 1, 1, 0, 0, 4, 0, 4, 4, 0, 0, 0, 3, 8, 0, 0, 8, 3, 0, 0, 0, 4, 4, 0, 4, 0, 0, 1, 1], [0, 5, 0, 0, 1, 0, 0, 0, 4, 4, 0, 0, 8, 8, 0, 7, 7, 0, 8, 8, 0, 0, 4, 4, 0, 0, 0, 1, 0, 0], [5, 0, 0, 0, 0, 1, 0, 0, 4, 4, 0, 3, 8, 8, 7, 7, 7, 7, 8, 8, 3, 0, 4, 4, 0, 0, 1, 0, 0, 0], [0, 0, 4, 4, 0, 0, 1, 0, 0, 0, 8, 8, 0, 7, 0, 5, 5, 0, 7, 0, 8, 8, 0, 0, 0, 1, 0, 0, 4, 4], [0, 0, 4, 0, 0, 0, 0, 1, 0, 3, 8, 0, 7, 7, 5, 0, 0, 5, 7, 7, 0, 8, 3, 0, 1, 0, 0, 0, 0, 4], [8, 8, 0, 4, 4, 4, 0, 0, 2, 2, 1, 0, 4, 0, 5, 0, 0, 5, 0, 4, 0, 1, 2, 2, 0, 0, 4, 4, 4, 0], [8, 0, 4, 4, 4, 4, 0, 3, 2, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 2, 3, 0, 4, 4, 4, 4], [0, 4, 2, 0, 0, 0, 8, 8, 1, 0, 3, 0, 5, 0, 0, 6, 6, 0, 0, 5, 0, 3, 0, 1, 8, 8, 0, 0, 0, 2], [4, 4, 0, 0, 0, 3, 8, 0, 0, 0, 0, 3, 0, 5, 6, 0, 0, 6, 5, 0, 3, 0, 0, 0, 0, 8, 3, 0, 0, 0], [4, 4, 0, 0, 8, 8, 0, 7, 4, 0, 5, 0, 0, 6, 7, 0, 0, 7, 6, 0, 0, 5, 0, 4, 7, 0, 8, 8, 0, 0], [4, 4, 0, 3, 8, 8, 7, 7, 0, 0, 0, 5, 6, 6, 0, 7, 7, 0, 6, 6, 5, 0, 0, 0, 7, 7, 8, 8, 3, 0], [0, 0, 8, 8, 0, 7, 0, 5, 5, 0, 0, 6, 7, 0, 2, 0, 0, 2, 0, 7, 6, 0, 0, 5, 5, 0, 7, 0, 8, 8], [0, 3, 8, 0, 7, 7, 5, 0, 0, 5, 6, 0, 0, 7, 0, 2, 2, 0, 7, 0, 0, 6, 5, 0, 0, 5, 7, 7, 0, 8], [0, 3, 8, 0, 7, 7, 5, 0, 0, 5, 6, 0, 0, 7, 0, 2, 2, 0, 7, 0, 0, 6, 5, 0, 0, 5, 7, 7, 0, 8], [0, 0, 8, 8, 0, 7, 0, 5, 5, 0, 0, 6, 7, 0, 2, 0, 0, 2, 0, 7, 6, 0, 0, 5, 5, 0, 7, 0, 8, 8], [4, 4, 0, 3, 8, 8, 7, 7, 0, 0, 0, 5, 6, 6, 0, 7, 7, 0, 6, 6, 5, 0, 0, 0, 7, 7, 8, 8, 3, 0], [4, 4, 0, 0, 8, 8, 0, 7, 4, 0, 5, 0, 0, 6, 7, 0, 0, 7, 6, 0, 0, 5, 0, 4, 7, 0, 8, 8, 0, 0], [4, 4, 0, 0, 0, 3, 8, 0, 0, 0, 0, 3, 0, 5, 6, 0, 0, 6, 5, 0, 3, 0, 0, 0, 0, 8, 3, 0, 0, 0], [0, 4, 2, 0, 0, 0, 8, 8, 1, 0, 3, 0, 5, 0, 0, 6, 6, 0, 0, 5, 0, 3, 0, 1, 8, 8, 0, 0, 0, 2], [8, 0, 4, 4, 4, 4, 0, 3, 2, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 2, 3, 0, 4, 4, 4, 4], [8, 8, 0, 4, 4, 4, 0, 0, 2, 2, 1, 0, 4, 0, 5, 0, 0, 5, 0, 4, 0, 1, 2, 2, 0, 0, 4, 4, 4, 0], [0, 0, 4, 0, 0, 0, 0, 1, 0, 3, 8, 0, 7, 7, 5, 0, 0, 5, 7, 7, 0, 8, 3, 0, 1, 0, 0, 0, 0, 4], [0, 0, 4, 4, 0, 0, 1, 0, 0, 0, 8, 8, 0, 7, 0, 5, 5, 0, 7, 0, 8, 8, 0, 0, 0, 1, 0, 0, 4, 4], [5, 0, 0, 0, 0, 1, 0, 0, 4, 4, 0, 3, 8, 8, 7, 7, 7, 7, 8, 8, 3, 0, 4, 4, 0, 0, 1, 0, 0, 0], [0, 5, 0, 0, 1, 0, 0, 0, 4, 4, 0, 0, 8, 8, 0, 7, 7, 0, 8, 8, 0, 0, 4, 4, 0, 0, 0, 1, 0, 0], [0, 0, 1, 1, 0, 0, 4, 0, 4, 4, 0, 0, 0, 3, 8, 0, 0, 8, 3, 0, 0, 0, 4, 4, 0, 4, 0, 0, 1, 1], [0, 0, 0, 1, 0, 0, 4, 4, 0, 4, 2, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 2, 4, 0, 4, 4, 0, 0, 1, 0]]}, {"input": [[0, 0, 0, 1, 7, 0, 6, 0, 0, 0, 0, 6, 3, 3, 0, 2, 2, 0, 3, 3, 6, 0, 0, 0, 0, 6, 0, 7, 1, 0], [0, 7, 1, 0, 0, 7, 0, 0, 0, 4, 6, 6, 3, 0, 2, 0, 0, 2, 0, 3, 6, 6, 4, 0, 0, 0, 7, 0, 0, 1], [0, 1, 5, 0, 6, 0, 0, 0, 0, 6, 3, 3, 0, 2, 7, 7, 7, 7, 2, 0, 3, 3, 6, 0, 0, 0, 0, 6, 0, 5], [1, 0, 0, 5, 0, 0, 0, 0, 6, 6, 3, 3, 2, 0, 7, 0, 0, 7, 0, 2, 3, 3, 6, 6, 0, 0, 0, 0, 5, 0], [7, 0, 6, 0, 8, 8, 6, 0, 3, 9, 9, 9, 4, 4, 1, 0, 0, 1, 4, 4, 2, 0, 3, 3, 0, 6, 8, 8, 0, 6], [0, 7, 0, 0, 8, 0, 0, 0, 3, 9, 9, 9, 4, 4, 0, 0, 0, 0, 4, 4, 0, 2, 0, 3, 0, 0, 0, 8, 0, 0], [6, 0, 0, 0, 6, 0, 2, 0, 0, 9, 9, 9, 1, 0, 0, 0, 0, 0, 0, 1, 7, 7, 2, 0, 0, 2, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 7, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 7, 0, 2, 2, 0, 0, 9, 9, 9], [0, 0, 0, 6, 3, 3, 0, 2, 0, 8, 1, 1, 7, 7, 0, 2, 2, 0, 7, 7, 1, 1, 8, 0, 2, 0, 3, 9, 9, 9], [0, 4, 6, 6, 3, 0, 2, 0, 8, 8, 1, 1, 7, 0, 2, 2, 2, 2, 0, 7, 1, 1, 8, 8, 0, 2, 0, 9, 9, 9], [0, 6, 3, 3, 0, 2, 7, 7, 1, 1, 0, 0, 0, 2, 4, 4, 4, 4, 2, 0, 0, 0, 1, 1, 7, 7, 2, 9, 9, 9], [6, 6, 3, 3, 2, 9, 9, 9, 9, 9, 9, 9, 9, 2, 4, 0, 0, 4, 2, 2, 0, 0, 1, 1, 0, 7, 0, 2, 3, 3], [3, 3, 0, 2, 4, 9, 9, 9, 9, 9, 9, 9, 9, 2, 0, 2, 2, 0, 2, 0, 2, 0, 7, 7, 0, 1, 4, 4, 2, 0], [3, 0, 2, 0, 4, 9, 9, 9, 9, 9, 9, 9, 9, 0, 2, 2, 2, 2, 0, 2, 2, 2, 0, 7, 0, 0, 4, 4, 0, 2], [0, 2, 7, 7, 1, 9, 9, 9, 9, 9, 9, 9, 9, 2, 6, 6, 6, 6, 2, 0, 4, 4, 2, 0, 0, 0, 0, 1, 7, 7], [2, 0, 7, 0, 0, 9, 9, 9, 2, 2, 4, 0, 2, 2, 6, 0, 0, 6, 2, 2, 0, 4, 2, 2, 4, 0, 0, 0, 0, 7], [2, 0, 7, 0, 0, 9, 9, 9, 2, 2, 4, 0, 2, 2, 6, 0, 0, 6, 2, 2, 0, 4, 2, 2, 4, 0, 0, 0, 0, 7], [0, 2, 7, 7, 1, 9, 9, 9, 0, 2, 4, 4, 0, 2, 6, 6, 6, 6, 2, 0, 4, 4, 2, 0, 0, 0, 0, 1, 7, 7], [3, 0, 2, 0, 4, 4, 0, 0, 7, 0, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 0, 7, 0, 0, 4, 4, 0, 2], [3, 3, 0, 2, 4, 4, 1, 0, 7, 7, 0, 2, 0, 2, 0, 2, 2, 0, 2, 0, 2, 0, 7, 7, 0, 1, 4, 4, 2, 0], [6, 6, 3, 3, 2, 0, 7, 0, 1, 1, 0, 0, 2, 2, 4, 0, 0, 4, 2, 2, 0, 0, 1, 1, 0, 7, 0, 2, 3, 3], [0, 6, 3, 3, 0, 2, 7, 7, 1, 1, 0, 0, 0, 2, 4, 4, 4, 4, 2, 0, 0, 0, 1, 1, 7, 7, 2, 0, 3, 3], [0, 4, 6, 6, 3, 0, 2, 0, 8, 8, 1, 1, 7, 0, 2, 2, 2, 2, 0, 7, 1, 1, 8, 8, 0, 2, 0, 3, 6, 6], [0, 0, 0, 6, 3, 3, 0, 2, 0, 9, 9, 1, 7, 7, 0, 2, 2, 0, 7, 7, 1, 1, 8, 0, 2, 0, 3, 3, 6, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 9, 9, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 7, 0, 2, 2, 0, 0, 0, 0, 0], [6, 0, 0, 0, 6, 0, 2, 0, 0, 9, 9, 7, 1, 0, 0, 0, 0, 0, 0, 1, 7, 7, 2, 0, 0, 2, 0, 6, 0, 0], [0, 7, 0, 0, 8, 0, 0, 0, 3, 9, 9, 0, 4, 4, 0, 0, 0, 0, 4, 4, 0, 2, 0, 3, 0, 0, 0, 8, 0, 0], [7, 0, 6, 0, 8, 8, 6, 0, 3, 9, 9, 2, 4, 4, 1, 0, 0, 1, 4, 4, 2, 0, 3, 3, 0, 6, 8, 8, 0, 6], [1, 0, 0, 5, 0, 0, 0, 0, 6, 9, 9, 3, 2, 0, 7, 0, 0, 7, 0, 2, 3, 3, 6, 6, 0, 0, 0, 0, 5, 0], [0, 1, 5, 0, 6, 0, 0, 0, 0, 9, 9, 3, 0, 2, 7, 7, 7, 7, 2, 0, 3, 3, 6, 0, 0, 0, 0, 6, 0, 5]], "output": [[0, 0, 0, 1, 7, 0, 6, 0, 0, 0, 0, 6, 3, 3, 0, 2, 2, 0, 3, 3, 6, 0, 0, 0, 0, 6, 0, 7, 1, 0], [0, 7, 1, 0, 0, 7, 0, 0, 0, 4, 6, 6, 3, 0, 2, 0, 0, 2, 0, 3, 6, 6, 4, 0, 0, 0, 7, 0, 0, 1], [0, 1, 5, 0, 6, 0, 0, 0, 0, 6, 3, 3, 0, 2, 7, 7, 7, 7, 2, 0, 3, 3, 6, 0, 0, 0, 0, 6, 0, 5], [1, 0, 0, 5, 0, 0, 0, 0, 6, 6, 3, 3, 2, 0, 7, 0, 0, 7, 0, 2, 3, 3, 6, 6, 0, 0, 0, 0, 5, 0], [7, 0, 6, 0, 8, 8, 6, 0, 3, 3, 0, 2, 4, 4, 1, 0, 0, 1, 4, 4, 2, 0, 3, 3, 0, 6, 8, 8, 0, 6], [0, 7, 0, 0, 8, 0, 0, 0, 3, 0, 2, 0, 4, 4, 0, 0, 0, 0, 4, 4, 0, 2, 0, 3, 0, 0, 0, 8, 0, 0], [6, 0, 0, 0, 6, 0, 2, 0, 0, 2, 7, 7, 1, 0, 0, 0, 0, 0, 0, 1, 7, 7, 2, 0, 0, 2, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 7, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 7, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 6, 3, 3, 0, 2, 0, 8, 1, 1, 7, 7, 0, 2, 2, 0, 7, 7, 1, 1, 8, 0, 2, 0, 3, 3, 6, 0], [0, 4, 6, 6, 3, 0, 2, 0, 8, 8, 1, 1, 7, 0, 2, 2, 2, 2, 0, 7, 1, 1, 8, 8, 0, 2, 0, 3, 6, 6], [0, 6, 3, 3, 0, 2, 7, 7, 1, 1, 0, 0, 0, 2, 4, 4, 4, 4, 2, 0, 0, 0, 1, 1, 7, 7, 2, 0, 3, 3], [6, 6, 3, 3, 2, 0, 7, 0, 1, 1, 0, 0, 2, 2, 4, 0, 0, 4, 2, 2, 0, 0, 1, 1, 0, 7, 0, 2, 3, 3], [3, 3, 0, 2, 4, 4, 1, 0, 7, 7, 0, 2, 0, 2, 0, 2, 2, 0, 2, 0, 2, 0, 7, 7, 0, 1, 4, 4, 2, 0], [3, 0, 2, 0, 4, 4, 0, 0, 7, 0, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 0, 7, 0, 0, 4, 4, 0, 2], [0, 2, 7, 7, 1, 0, 0, 0, 0, 2, 4, 4, 0, 2, 6, 6, 6, 6, 2, 0, 4, 4, 2, 0, 0, 0, 0, 1, 7, 7], [2, 0, 7, 0, 0, 0, 0, 4, 2, 2, 4, 0, 2, 2, 6, 0, 0, 6, 2, 2, 0, 4, 2, 2, 4, 0, 0, 0, 0, 7], [2, 0, 7, 0, 0, 0, 0, 4, 2, 2, 4, 0, 2, 2, 6, 0, 0, 6, 2, 2, 0, 4, 2, 2, 4, 0, 0, 0, 0, 7], [0, 2, 7, 7, 1, 0, 0, 0, 0, 2, 4, 4, 0, 2, 6, 6, 6, 6, 2, 0, 4, 4, 2, 0, 0, 0, 0, 1, 7, 7], [3, 0, 2, 0, 4, 4, 0, 0, 7, 0, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 0, 7, 0, 0, 4, 4, 0, 2], [3, 3, 0, 2, 4, 4, 1, 0, 7, 7, 0, 2, 0, 2, 0, 2, 2, 0, 2, 0, 2, 0, 7, 7, 0, 1, 4, 4, 2, 0], [6, 6, 3, 3, 2, 0, 7, 0, 1, 1, 0, 0, 2, 2, 4, 0, 0, 4, 2, 2, 0, 0, 1, 1, 0, 7, 0, 2, 3, 3], [0, 6, 3, 3, 0, 2, 7, 7, 1, 1, 0, 0, 0, 2, 4, 4, 4, 4, 2, 0, 0, 0, 1, 1, 7, 7, 2, 0, 3, 3], [0, 4, 6, 6, 3, 0, 2, 0, 8, 8, 1, 1, 7, 0, 2, 2, 2, 2, 0, 7, 1, 1, 8, 8, 0, 2, 0, 3, 6, 6], [0, 0, 0, 6, 3, 3, 0, 2, 0, 8, 1, 1, 7, 7, 0, 2, 2, 0, 7, 7, 1, 1, 8, 0, 2, 0, 3, 3, 6, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 7, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 7, 0, 2, 2, 0, 0, 0, 0, 0], [6, 0, 0, 0, 6, 0, 2, 0, 0, 2, 7, 7, 1, 0, 0, 0, 0, 0, 0, 1, 7, 7, 2, 0, 0, 2, 0, 6, 0, 0], [0, 7, 0, 0, 8, 0, 0, 0, 3, 0, 2, 0, 4, 4, 0, 0, 0, 0, 4, 4, 0, 2, 0, 3, 0, 0, 0, 8, 0, 0], [7, 0, 6, 0, 8, 8, 6, 0, 3, 3, 0, 2, 4, 4, 1, 0, 0, 1, 4, 4, 2, 0, 3, 3, 0, 6, 8, 8, 0, 6], [1, 0, 0, 5, 0, 0, 0, 0, 6, 6, 3, 3, 2, 0, 7, 0, 0, 7, 0, 2, 3, 3, 6, 6, 0, 0, 0, 0, 5, 0], [0, 1, 5, 0, 6, 0, 0, 0, 0, 6, 3, 3, 0, 2, 7, 7, 7, 7, 2, 0, 3, 3, 6, 0, 0, 0, 0, 6, 0, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/363442ee.json b/data/arc-agi/training/363442ee.json
deleted file mode 100644
index 4ecbf33..0000000
--- a/data/arc-agi/training/363442ee.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 2, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 6, 2, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0], [6, 4, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 2, 2, 5, 4, 2, 2, 0, 0, 0, 0, 0, 0], [2, 6, 2, 5, 2, 6, 2, 0, 0, 0, 0, 0, 0], [6, 4, 4, 5, 6, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 4, 2, 2, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 2, 6, 2, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 6, 4, 4, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 4, 2, 2, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 2, 6, 2, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 6, 4, 4, 0, 0, 0]]}, {"input": [[2, 7, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 3, 5, 0, 0, 0, 0, 1, 0, 0, 0, 0], [3, 7, 7, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 7, 3, 5, 0, 0, 0, 2, 7, 3, 0, 0, 0], [2, 3, 3, 5, 0, 0, 0, 2, 3, 3, 0, 0, 0], [3, 7, 7, 5, 0, 0, 0, 3, 7, 7, 0, 0, 0], [0, 0, 0, 5, 2, 7, 3, 0, 0, 0, 2, 7, 3], [0, 0, 0, 5, 2, 3, 3, 0, 0, 0, 2, 3, 3], [0, 0, 0, 5, 3, 7, 7, 0, 0, 0, 3, 7, 7], [0, 0, 0, 5, 2, 7, 3, 2, 7, 3, 0, 0, 0], [0, 0, 0, 5, 2, 3, 3, 2, 3, 3, 0, 0, 0], [0, 0, 0, 5, 3, 7, 7, 3, 7, 7, 0, 0, 0]]}, {"input": [[3, 8, 6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [9, 8, 2, 5, 0, 1, 0, 0, 0, 0, 0, 1, 0], [9, 9, 9, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 1, 0, 0, 1, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 8, 6, 5, 3, 8, 6, 0, 0, 0, 3, 8, 6], [9, 8, 2, 5, 9, 8, 2, 0, 0, 0, 9, 8, 2], [9, 9, 9, 5, 9, 9, 9, 0, 0, 0, 9, 9, 9], [0, 0, 0, 5, 0, 0, 0, 3, 8, 6, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 9, 8, 2, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 9, 9, 9, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 3, 8, 6, 3, 8, 6], [0, 0, 0, 5, 0, 0, 0, 9, 8, 2, 9, 8, 2], [0, 0, 0, 5, 0, 0, 0, 9, 9, 9, 9, 9, 9]]}], "test": [{"input": [[3, 3, 9, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 4, 4, 5, 0, 0, 0, 0, 1, 0, 0, 1, 0], [8, 9, 8, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 9, 5, 0, 0, 0, 3, 3, 9, 3, 3, 9], [8, 4, 4, 5, 0, 0, 0, 8, 4, 4, 8, 4, 4], [8, 9, 8, 5, 0, 0, 0, 8, 9, 8, 8, 9, 8], [0, 0, 0, 5, 3, 3, 9, 0, 0, 0, 3, 3, 9], [0, 0, 0, 5, 8, 4, 4, 0, 0, 0, 8, 4, 4], [0, 0, 0, 5, 8, 9, 8, 0, 0, 0, 8, 9, 8], [0, 0, 0, 5, 3, 3, 9, 3, 3, 9, 0, 0, 0], [0, 0, 0, 5, 8, 4, 4, 8, 4, 4, 0, 0, 0], [0, 0, 0, 5, 8, 9, 8, 8, 9, 8, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/36d67576.json b/data/arc-agi/training/36d67576.json
deleted file mode 100644
index fffa37f..0000000
--- a/data/arc-agi/training/36d67576.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 4, 0, 0], [0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 3, 4, 0, 0], [0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 4, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 2, 0], [0, 0, 0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 4, 3, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 4, 3, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 2, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0], [0, 0, 4, 0, 4, 3, 0, 0, 0, 0, 4, 0, 4, 0, 0], [0, 0, 0, 4, 4, 1, 0, 0, 0, 0, 4, 4, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 0, 2, 4, 4, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0], [0, 2, 4, 4, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 2, 0, 0, 0, 0, 0, 0, 4, 4, 1, 0], [0, 0, 4, 0, 4, 3, 0, 0, 0, 0, 4, 0, 4, 3, 0], [0, 0, 0, 4, 4, 1, 0, 0, 0, 0, 4, 4, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0], [1, 4, 4, 0, 0, 0, 0, 0, 2, 4, 4, 0, 0, 0, 0], [3, 4, 0, 4, 0, 0, 0, 3, 4, 0, 4, 0, 0, 0, 0], [0, 2, 4, 4, 0, 0, 0, 1, 4, 4, 0, 0, 0, 0, 0], [0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/36fdfd69.json b/data/arc-agi/training/36fdfd69.json
deleted file mode 100644
index f34c663..0000000
--- a/data/arc-agi/training/36fdfd69.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1], [1, 1, 2, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 0], [1, 1, 1, 2, 1, 2, 2, 2, 2, 0, 1, 1, 1, 0, 0, 1, 1, 0], [1, 0, 2, 1, 2, 2, 2, 2, 2, 0, 1, 0, 0, 0, 1, 1, 1, 1], [0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0], [1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1], [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 1, 0], [0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 1, 1, 0, 1, 1, 2, 1, 2, 1, 2, 1, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1], [0, 0, 0, 0, 0, 1, 1, 2, 1, 2, 2, 0, 0, 1, 0, 1, 1, 1], [0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1], [1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1]], "output": [[1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1], [1, 1, 2, 4, 4, 4, 4, 4, 4, 0, 0, 1, 0, 1, 1, 1, 0, 0], [1, 1, 4, 2, 4, 2, 2, 2, 2, 0, 1, 1, 1, 0, 0, 1, 1, 0], [1, 0, 2, 4, 2, 2, 2, 2, 2, 0, 1, 0, 0, 0, 1, 1, 1, 1], [0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0], [1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1], [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 4, 2, 1, 0], [0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 1, 1, 0, 1, 1, 2, 4, 2, 4, 2, 1, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 1, 1, 0, 0, 1], [0, 0, 0, 0, 0, 1, 4, 2, 4, 2, 2, 0, 0, 1, 0, 1, 1, 1], [0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1], [1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1]]}, {"input": [[8, 0, 0, 0, 0, 8, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0], [0, 0, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 0, 8, 0, 8], [0, 0, 8, 0, 8, 0, 0, 0, 0, 8, 0, 8, 8, 2, 8, 0], [0, 0, 2, 8, 2, 2, 2, 8, 0, 0, 0, 2, 8, 2, 8, 0], [8, 0, 2, 8, 2, 8, 8, 8, 0, 0, 0, 8, 0, 0, 8, 8], [8, 0, 0, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 0, 0, 0], [8, 0, 8, 0, 8, 0, 8, 0, 8, 8, 0, 8, 8, 8, 0, 8], [8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 8, 2, 8, 8, 8, 0, 8, 0, 0, 0, 8, 8, 8], [8, 0, 2, 8, 8, 2, 8, 8, 0, 8, 0, 0, 8, 8, 0, 8], [0, 8, 0, 0, 0, 8, 8, 0, 0, 2, 8, 8, 0, 8, 8, 8], [8, 0, 0, 8, 8, 8, 8, 0, 0, 2, 8, 2, 0, 0, 0, 8], [0, 8, 8, 0, 8, 8, 8, 0, 0, 0, 8, 0, 8, 8, 8, 8], [8, 8, 8, 0, 8, 0, 8, 0, 0, 0, 8, 8, 8, 8, 8, 8]], "output": [[8, 0, 0, 0, 0, 8, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0], [0, 0, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 0, 8, 0, 8], [0, 0, 8, 0, 8, 0, 0, 0, 0, 8, 0, 4, 4, 2, 8, 0], [0, 0, 2, 4, 2, 2, 2, 8, 0, 0, 0, 2, 4, 2, 8, 0], [8, 0, 2, 4, 2, 4, 4, 8, 0, 0, 0, 8, 0, 0, 8, 8], [8, 0, 0, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 0, 0, 0], [8, 0, 8, 0, 8, 0, 8, 0, 8, 8, 0, 8, 8, 8, 0, 8], [8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 4, 4, 2, 4, 8, 8, 0, 8, 0, 0, 0, 8, 8, 8], [8, 0, 2, 4, 4, 2, 8, 8, 0, 8, 0, 0, 8, 8, 0, 8], [0, 8, 0, 0, 0, 8, 8, 0, 0, 2, 4, 4, 0, 8, 8, 8], [8, 0, 0, 8, 8, 8, 8, 0, 0, 2, 4, 2, 0, 0, 0, 8], [0, 8, 8, 0, 8, 8, 8, 0, 0, 0, 8, 0, 8, 8, 8, 8], [8, 8, 8, 0, 8, 0, 8, 0, 0, 0, 8, 8, 8, 8, 8, 8]]}, {"input": [[3, 3, 0, 0, 0, 0, 0, 3, 0, 3, 3, 0, 0, 0], [0, 0, 3, 0, 0, 3, 3, 0, 3, 0, 0, 0, 3, 0], [0, 0, 3, 3, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 3, 3], [0, 0, 0, 2, 2, 2, 2, 3, 0, 0, 0, 3, 0, 3], [0, 3, 3, 2, 2, 3, 3, 2, 0, 0, 0, 3, 3, 0], [0, 3, 0, 2, 2, 2, 3, 2, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 3, 0, 0, 0, 0, 3], [0, 0, 3, 3, 0, 3, 3, 0, 3, 3, 0, 0, 3, 3], [3, 3, 3, 2, 0, 3, 3, 0, 0, 0, 3, 0, 3, 0], [0, 3, 2, 3, 0, 0, 0, 3, 3, 0, 0, 0, 3, 0], [0, 3, 3, 0, 3, 3, 0, 0, 3, 3, 0, 3, 0, 3], [0, 0, 3, 0, 3, 3, 0, 0, 3, 0, 3, 3, 0, 3], [0, 3, 3, 0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 0], [3, 0, 0, 3, 0, 0, 0, 0, 0, 3, 3, 0, 3, 3]], "output": [[3, 3, 0, 0, 0, 0, 0, 3, 0, 3, 3, 0, 0, 0], [0, 0, 3, 0, 0, 3, 3, 0, 3, 0, 0, 0, 3, 0], [0, 0, 3, 3, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 3, 3], [0, 0, 0, 2, 2, 2, 2, 4, 0, 0, 0, 3, 0, 3], [0, 3, 3, 2, 2, 4, 4, 2, 0, 0, 0, 3, 3, 0], [0, 3, 0, 2, 2, 2, 4, 2, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 3, 0, 0, 0, 0, 3], [0, 0, 3, 3, 0, 3, 3, 0, 3, 3, 0, 0, 3, 3], [3, 3, 4, 2, 0, 3, 3, 0, 0, 0, 3, 0, 3, 0], [0, 3, 2, 4, 0, 0, 0, 3, 3, 0, 0, 0, 3, 0], [0, 3, 3, 0, 3, 3, 0, 0, 3, 3, 0, 3, 0, 3], [0, 0, 3, 0, 3, 3, 0, 0, 3, 0, 3, 3, 0, 3], [0, 3, 3, 0, 3, 0, 3, 0, 3, 0, 0, 0, 0, 0], [3, 0, 0, 3, 0, 0, 0, 0, 0, 3, 3, 0, 3, 3]]}], "test": [{"input": [[0, 0, 0, 9, 9, 9, 0, 0, 9, 9, 0, 0, 0, 0, 0, 0, 9, 0], [9, 2, 9, 2, 2, 9, 0, 0, 0, 9, 0, 0, 9, 0, 0, 0, 0, 0], [0, 2, 2, 9, 9, 2, 0, 0, 9, 9, 9, 0, 0, 9, 0, 0, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 0, 9, 0], [0, 9, 9, 0, 0, 0, 9, 0, 9, 9, 0, 9, 0, 0, 9, 9, 9, 9], [9, 9, 9, 9, 0, 9, 2, 9, 2, 2, 9, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 2, 2, 2, 2, 9, 0, 9, 9, 0, 0, 0, 0], [9, 0, 9, 9, 0, 9, 0, 0, 9, 0, 9, 9, 0, 9, 9, 9, 0, 9], [0, 0, 0, 9, 0, 0, 0, 9, 9, 9, 9, 9, 0, 9, 0, 0, 0, 0], [9, 9, 0, 9, 0, 9, 0, 9, 9, 0, 0, 9, 9, 0, 0, 0, 0, 9], [0, 9, 9, 0, 9, 0, 9, 2, 9, 0, 0, 9, 0, 0, 9, 9, 9, 9], [0, 9, 9, 0, 0, 9, 2, 9, 9, 9, 0, 0, 0, 9, 9, 9, 0, 9], [9, 0, 9, 9, 0, 9, 9, 9, 0, 0, 9, 0, 0, 0, 9, 9, 9, 0], [9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 9, 2, 2, 9, 2, 2, 9, 0], [0, 9, 9, 9, 9, 9, 9, 0, 9, 0, 0, 2, 9, 2, 9, 9, 2, 9], [0, 9, 0, 9, 0, 0, 9, 9, 0, 9, 0, 2, 2, 9, 2, 2, 9, 0], [9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 9, 9, 9, 0]], "output": [[0, 0, 0, 9, 9, 9, 0, 0, 9, 9, 0, 0, 0, 0, 0, 0, 9, 0], [9, 2, 4, 2, 2, 4, 0, 0, 0, 9, 0, 0, 9, 0, 0, 0, 0, 0], [0, 2, 2, 4, 4, 2, 0, 0, 9, 9, 9, 0, 0, 9, 0, 0, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 0, 9, 0], [0, 9, 9, 0, 0, 0, 9, 0, 9, 9, 0, 9, 0, 0, 9, 9, 9, 9], [9, 9, 9, 9, 0, 9, 2, 4, 2, 2, 9, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 2, 2, 2, 2, 9, 0, 9, 9, 0, 0, 0, 0], [9, 0, 9, 9, 0, 9, 0, 0, 9, 0, 9, 9, 0, 9, 9, 9, 0, 9], [0, 0, 0, 9, 0, 0, 0, 9, 9, 9, 9, 9, 0, 9, 0, 0, 0, 0], [9, 9, 0, 9, 0, 9, 0, 9, 9, 0, 0, 9, 9, 0, 0, 0, 0, 9], [0, 9, 9, 0, 9, 0, 4, 2, 9, 0, 0, 9, 0, 0, 9, 9, 9, 9], [0, 9, 9, 0, 0, 9, 2, 4, 9, 9, 0, 0, 0, 9, 9, 9, 0, 9], [9, 0, 9, 9, 0, 9, 9, 9, 0, 0, 9, 0, 0, 0, 9, 9, 9, 0], [9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 9, 2, 2, 4, 2, 2, 4, 0], [0, 9, 9, 9, 9, 9, 9, 0, 9, 0, 0, 2, 4, 2, 4, 4, 2, 9], [0, 9, 0, 9, 0, 0, 9, 9, 0, 9, 0, 2, 2, 4, 2, 2, 4, 0], [9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 9, 9, 9, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/3906de3d.json b/data/arc-agi/training/3906de3d.json
deleted file mode 100644
index a386005..0000000
--- a/data/arc-agi/training/3906de3d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 0, 1, 1, 0, 0, 0], [0, 0, 1, 1, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 2, 1, 1, 0, 0, 0], [0, 0, 1, 1, 2, 1, 1, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 0, 1, 1, 1, 1, 0], [0, 0, 1, 1, 0, 1, 0, 1, 1, 0], [0, 0, 1, 1, 0, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 2, 0, 0, 0]], "output": [[0, 0, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 2, 1, 1, 1, 1, 0], [0, 0, 1, 1, 0, 1, 2, 1, 1, 0], [0, 0, 1, 1, 0, 1, 2, 1, 1, 0], [0, 0, 0, 0, 0, 0, 2, 1, 1, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 1, 0, 1, 1, 1, 1, 1, 1], [0, 1, 1, 0, 1, 1, 1, 1, 0, 1], [0, 1, 1, 0, 0, 1, 0, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 2, 0], [0, 0, 0, 2, 2, 0, 2, 0, 2, 0], [0, 0, 0, 2, 2, 0, 2, 0, 2, 0]], "output": [[0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 1, 2, 1, 1, 1, 1, 1, 1], [0, 1, 1, 2, 1, 1, 1, 1, 2, 1], [0, 1, 1, 2, 2, 1, 2, 1, 2, 1], [0, 0, 0, 0, 2, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 0, 1, 1, 1, 1, 1, 0, 1], [0, 1, 0, 1, 0, 1, 0, 1, 0, 1], [0, 1, 0, 1, 0, 0, 0, 1, 0, 1], [0, 0, 0, 1, 0, 0, 0, 0, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0], [0, 0, 2, 0, 0, 2, 0, 0, 2, 0], [0, 0, 2, 0, 2, 2, 0, 0, 2, 0], [0, 0, 2, 0, 2, 2, 2, 0, 2, 0]], "output": [[0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 2, 1, 1, 1, 1, 1, 2, 1], [0, 1, 2, 1, 2, 1, 2, 1, 2, 1], [0, 1, 2, 1, 2, 2, 0, 1, 2, 1], [0, 0, 0, 1, 0, 2, 0, 0, 2, 1], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/39a8645d.json b/data/arc-agi/training/39a8645d.json
deleted file mode 100644
index 76fdc84..0000000
--- a/data/arc-agi/training/39a8645d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0], [0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 0, 0, 2, 0, 2, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 2, 0, 2, 0, 0], [0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 0, 8], [0, 8, 0], [8, 0, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4], [0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 4, 0, 0], [0, 1, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 1, 0, 1], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]], "output": [[4, 0, 0], [0, 4, 4], [4, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0], [0, 0, 8, 8, 8, 0, 0, 0, 0, 6, 6, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0], [8, 8, 8], [0, 8, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 3, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 3, 0, 3, 0, 0]], "output": [[0, 2, 0], [2, 2, 2], [2, 2, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/39e1d7f9.json b/data/arc-agi/training/39e1d7f9.json
deleted file mode 100644
index 16e4393..0000000
--- a/data/arc-agi/training/39e1d7f9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [3, 3, 3, 3, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [3, 3, 3, 3, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [3, 3, 3, 3, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [3, 3, 3, 3, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 6, 6, 6, 6, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 6, 6, 6, 6, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 6, 6, 6, 6, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 6, 6, 6, 6, 8, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [3, 3, 3, 3, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [3, 3, 3, 3, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [3, 3, 3, 3, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [3, 3, 3, 3, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3, 8, 6, 6, 6, 6, 8, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 4, 4, 4], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 4, 4, 4], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 4, 4, 4], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 6, 6, 6, 3, 4, 4, 4, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 6, 6, 6, 3, 4, 4, 4, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 6, 6, 6, 3, 4, 4, 4, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 4, 4, 4, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 4, 4, 4, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 4, 4, 4, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0]], "output": [[0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 4, 4, 4], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 4, 4, 4], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 4, 4, 4], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6], [0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6], [0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 6, 6, 6, 3, 4, 4, 4, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 6, 6, 6, 3, 4, 4, 4, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 6, 6, 6, 3, 4, 4, 4, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 4, 4, 4, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 4, 4, 4, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 4, 4, 4, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 6, 6, 6, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0]]}, {"input": [[0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 2, 2, 2], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 2, 2, 2], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 2, 2, 2], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 2, 2, 2, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 2, 2, 2, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 2, 2, 2, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 2, 2, 2, 8, 4, 4, 4, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 2, 2, 2, 8, 4, 4, 4, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 2, 2, 2, 8, 4, 4, 4, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0]], "output": [[4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 2, 2, 2], [4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 2, 2, 2], [4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 2, 2, 2], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [4, 4, 4, 8, 2, 2, 2, 8, 4, 4, 4, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 4, 4, 4], [4, 4, 4, 8, 2, 2, 2, 8, 4, 4, 4, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 4, 4, 4], [4, 4, 4, 8, 2, 2, 2, 8, 4, 4, 4, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 4, 4, 4], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 2, 2, 2, 8, 4, 4, 4, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 2, 2, 2, 8, 4, 4, 4, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 2, 2, 2, 8, 4, 4, 4, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 4, 4, 4, 8, 4, 4, 4, 8, 4, 4, 4, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0]]}], "test": [{"input": [[0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 6, 6, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 6, 6, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 8, 8, 4, 3, 3, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 8, 8, 4, 3, 3, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 3, 3, 4, 6, 6, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 3, 3, 4, 6, 6, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 8, 8, 4, 3, 3, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 8, 8, 4, 3, 3, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 6, 6, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 6, 6, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [6, 6, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [6, 6, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0]], "output": [[0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 8, 8, 4, 3, 3, 4, 8, 8, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 8, 8, 4, 3, 3, 4, 8, 8, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 3, 3, 4, 6, 6, 4, 3, 3, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 3, 3, 4, 6, 6, 4, 3, 3, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 8, 8, 4, 3, 3, 4, 8, 8, 4, 0, 0, 4, 8, 8, 4, 3, 3, 4, 8, 8, 4, 0, 0], [0, 0, 4, 0, 0, 4, 8, 8, 4, 3, 3, 4, 8, 8, 4, 0, 0, 4, 8, 8, 4, 3, 3, 4, 8, 8, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 3, 3, 4, 6, 6, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 3, 3, 4, 6, 6, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 8, 8, 4, 3, 3, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 8, 8, 4, 3, 3, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 8, 8, 4, 3, 3, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 8, 8, 4, 3, 3, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [3, 3, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 3, 3, 4, 6, 6, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0], [3, 3, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 3, 3, 4, 6, 6, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [6, 6, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 8, 8, 4, 3, 3, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 0, 0], [6, 6, 4, 3, 3, 4, 0, 0, 4, 0, 0, 4, 8, 8, 4, 3, 3, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [3, 3, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [3, 3, 4, 8, 8, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/3aa6fb7a.json b/data/arc-agi/training/3aa6fb7a.json
deleted file mode 100644
index 6948dbb..0000000
--- a/data/arc-agi/training/3aa6fb7a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 8, 1, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0], [0, 0, 0, 0, 1, 8, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 8, 0], [0, 0, 8, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 8, 0, 0]], "output": [[0, 0, 0, 0, 8, 8, 0], [0, 0, 0, 0, 1, 8, 0], [0, 0, 8, 1, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 8, 0, 0], [0, 0, 0, 8, 8, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 8, 8], [8, 8, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0], [0, 8, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 8, 8], [8, 8, 0, 0, 0, 1, 8], [8, 1, 0, 0, 0, 0, 0], [0, 0, 0, 8, 1, 0, 0], [0, 0, 0, 8, 8, 0, 0], [1, 8, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/3ac3eb23.json b/data/arc-agi/training/3ac3eb23.json
deleted file mode 100644
index 2bf1ba6..0000000
--- a/data/arc-agi/training/3ac3eb23.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 2, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 0, 0, 0, 8, 0, 0, 0, 0], [2, 0, 2, 0, 8, 0, 8, 0, 0, 0], [0, 2, 0, 0, 0, 8, 0, 0, 0, 0], [2, 0, 2, 0, 8, 0, 8, 0, 0, 0], [0, 2, 0, 0, 0, 8, 0, 0, 0, 0], [2, 0, 2, 0, 8, 0, 8, 0, 0, 0]]}, {"input": [[0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 4, 0, 0, 0, 0, 0], [4, 0, 4, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0], [4, 0, 4, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0], [4, 0, 4, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 3, 0, 0, 0, 6, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 3, 0, 0, 0, 6, 0, 0, 7, 0, 0], [0, 3, 0, 3, 0, 6, 0, 6, 7, 0, 7, 0], [0, 0, 3, 0, 0, 0, 6, 0, 0, 7, 0, 0], [0, 3, 0, 3, 0, 6, 0, 6, 7, 0, 7, 0], [0, 0, 3, 0, 0, 0, 6, 0, 0, 7, 0, 0], [0, 3, 0, 3, 0, 6, 0, 6, 7, 0, 7, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/3af2c5a8.json b/data/arc-agi/training/3af2c5a8.json
deleted file mode 100644
index e31fd61..0000000
--- a/data/arc-agi/training/3af2c5a8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[4, 0, 0, 0], [0, 0, 0, 4], [4, 4, 0, 0]], "output": [[4, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 4, 4, 0, 0, 0], [4, 4, 0, 0, 0, 0, 4, 4], [4, 4, 0, 0, 0, 0, 4, 4], [0, 0, 0, 4, 4, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 4]]}], "train": [{"input": [[0, 0, 8, 0], [0, 8, 0, 8], [0, 0, 8, 0]], "output": [[0, 0, 8, 0, 0, 8, 0, 0], [0, 8, 0, 8, 8, 0, 8, 0], [0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0], [0, 8, 0, 8, 8, 0, 8, 0], [0, 0, 8, 0, 0, 8, 0, 0]]}, {"input": [[0, 0, 3, 3], [0, 3, 0, 3], [3, 3, 3, 0]], "output": [[0, 0, 3, 3, 3, 3, 0, 0], [0, 3, 0, 3, 3, 0, 3, 0], [3, 3, 3, 0, 0, 3, 3, 3], [3, 3, 3, 0, 0, 3, 3, 3], [0, 3, 0, 3, 3, 0, 3, 0], [0, 0, 3, 3, 3, 3, 0, 0]]}, {"input": [[3, 3, 3, 3], [3, 0, 0, 0], [3, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3], [3, 0, 0, 0, 0, 0, 0, 3], [3, 0, 0, 0, 0, 0, 0, 3], [3, 0, 0, 0, 0, 0, 0, 3], [3, 0, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/3bd67248.json b/data/arc-agi/training/3bd67248.json
deleted file mode 100644
index 5cc4897..0000000
--- a/data/arc-agi/training/3bd67248.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]]}, {"input": [[5, 0, 0], [5, 0, 0], [5, 0, 0]], "output": [[5, 0, 2], [5, 2, 0], [5, 4, 4]]}, {"input": [[8, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0]], "output": [[8, 0, 0, 0, 0, 0, 2], [8, 0, 0, 0, 0, 2, 0], [8, 0, 0, 0, 2, 0, 0], [8, 0, 0, 2, 0, 0, 0], [8, 0, 2, 0, 0, 0, 0], [8, 2, 0, 0, 0, 0, 0], [8, 4, 4, 4, 4, 4, 4]]}], "test": [{"input": [[3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 0, 0, 0, 0, 0, 0, 0, 0, 2], [3, 0, 0, 0, 0, 0, 0, 0, 2, 0], [3, 0, 0, 0, 0, 0, 0, 2, 0, 0], [3, 0, 0, 0, 0, 0, 2, 0, 0, 0], [3, 0, 0, 0, 0, 2, 0, 0, 0, 0], [3, 0, 0, 0, 2, 0, 0, 0, 0, 0], [3, 0, 0, 2, 0, 0, 0, 0, 0, 0], [3, 0, 2, 0, 0, 0, 0, 0, 0, 0], [3, 2, 0, 0, 0, 0, 0, 0, 0, 0], [3, 4, 4, 4, 4, 4, 4, 4, 4, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/3bdb4ada.json b/data/arc-agi/training/3bdb4ada.json
deleted file mode 100644
index d03b69b..0000000
--- a/data/arc-agi/training/3bdb4ada.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/3befdf3e.json b/data/arc-agi/training/3befdf3e.json
deleted file mode 100644
index 31d93c7..0000000
--- a/data/arc-agi/training/3befdf3e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 4, 6, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 4, 6, 6, 6, 4, 0, 0, 0], [0, 0, 4, 6, 4, 6, 4, 0, 0, 0], [0, 0, 4, 6, 6, 6, 4, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 2, 7, 7, 2, 0, 0, 0], [0, 0, 0, 2, 7, 7, 2, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 2, 2, 7, 7, 7, 7, 2, 2, 0], [0, 2, 2, 7, 2, 2, 7, 2, 2, 0], [0, 2, 2, 7, 2, 2, 7, 2, 2, 0], [0, 2, 2, 7, 7, 7, 7, 2, 2, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 3, 1, 1, 3, 0, 0, 0, 0], [0, 0, 3, 1, 1, 3, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [3, 3, 1, 1, 1, 1, 3, 3, 0, 0], [3, 3, 1, 3, 3, 1, 3, 3, 0, 0], [3, 3, 1, 3, 3, 1, 3, 3, 0, 0], [3, 3, 1, 1, 1, 1, 3, 3, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 3, 3, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 3, 3, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [8, 3, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0], [8, 3, 8, 3, 8, 0, 0, 0, 0, 0, 0, 0], [8, 3, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 8, 8, 3, 3, 3, 3, 8, 8], [0, 0, 0, 0, 8, 8, 3, 8, 8, 3, 8, 8], [0, 0, 0, 0, 8, 8, 3, 8, 8, 3, 8, 8], [0, 0, 0, 0, 8, 8, 3, 3, 3, 3, 8, 8], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/3c9b0459.json b/data/arc-agi/training/3c9b0459.json
deleted file mode 100644
index bc5aef8..0000000
--- a/data/arc-agi/training/3c9b0459.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[6, 4, 4], [6, 6, 4], [4, 6, 7]], "output": [[7, 6, 4], [4, 6, 6], [4, 4, 6]]}], "train": [{"input": [[2, 2, 1], [2, 1, 2], [2, 8, 1]], "output": [[1, 8, 2], [2, 1, 2], [1, 2, 2]]}, {"input": [[9, 2, 4], [2, 4, 4], [2, 9, 2]], "output": [[2, 9, 2], [4, 4, 2], [4, 2, 9]]}, {"input": [[8, 8, 8], [5, 5, 8], [8, 5, 5]], "output": [[5, 5, 8], [8, 5, 5], [8, 8, 8]]}, {"input": [[3, 2, 9], [9, 9, 9], [2, 3, 3]], "output": [[3, 3, 2], [9, 9, 9], [9, 2, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/3de23699.json b/data/arc-agi/training/3de23699.json
deleted file mode 100644
index 5868756..0000000
--- a/data/arc-agi/training/3de23699.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 4, 0], [0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 2, 2, 0, 0], [0, 4, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 4, 0], [4, 4, 4], [0, 4, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 2, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 3, 3, 0, 0], [0, 3, 3, 0, 3], [3, 0, 0, 3, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 6, 0, 0], [0, 6, 0, 0], [6, 6, 6, 0], [0, 6, 6, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 8, 0, 8, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/3e980e27.json b/data/arc-agi/training/3e980e27.json
deleted file mode 100644
index 411fcb7..0000000
--- a/data/arc-agi/training/3e980e27.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 3, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 3, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 3, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 3, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 2, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0], [0, 0, 3, 8, 8, 0, 0, 0, 0, 4, 4, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 2, 0, 0, 0, 0, 0], [0, 3, 8, 8, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 4, 2, 0, 0, 0, 0, 2, 4, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 3, 1, 0], [0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0], [0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 8, 8, 8, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 3, 8, 0, 0, 2, 1, 0, 0], [0, 1, 2, 0, 0, 8, 0, 0, 0, 1, 1, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 1, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 3, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/3eda0437.json b/data/arc-agi/training/3eda0437.json
deleted file mode 100644
index 9056b0f..0000000
--- a/data/arc-agi/training/3eda0437.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 1, 1, 1, 1, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0], [0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1], [1, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0]], "output": [[5, 1, 1, 1, 1, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0], [0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 6, 6, 6, 6, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1], [1, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 6, 6, 6, 6, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0]]}, {"input": [[1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1], [1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1], [0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0], [0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1]], "output": [[1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 6, 6, 6, 1, 0, 1], [1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 6, 6, 6, 1, 1, 1], [0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0], [0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1]]}, {"input": [[1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1], [0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0]], "output": [[1, 1, 6, 6, 6, 6, 6, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1], [0, 1, 6, 6, 6, 6, 6, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1]], "output": [[0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 6, 6, 6], [1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 6, 6, 6], [1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 6, 6, 6], [0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1]]}], "test": [{"input": [[0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0], [1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1], [0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0, 1]], "output": [[0, 6, 6, 6, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0], [1, 6, 6, 6, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0], [0, 6, 6, 6, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1], [0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0, 1]]}]}
diff --git a/data/arc-agi/training/3f7978a0.json b/data/arc-agi/training/3f7978a0.json
deleted file mode 100644
index 880ba00..0000000
--- a/data/arc-agi/training/3f7978a0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 8, 0, 0, 8], [0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 5, 0, 8, 0, 5, 0, 8, 0], [0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 0, 0, 0, 8], [5, 0, 0, 0, 5], [5, 0, 8, 0, 5], [5, 0, 0, 0, 5], [8, 0, 0, 0, 8]]}, {"input": [[0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [8, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 8, 8, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 8, 0, 8, 0, 0, 0, 8, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 8, 8, 0]], "output": [[8, 0, 0, 0, 0, 0, 8], [5, 0, 0, 0, 0, 0, 5], [5, 0, 0, 8, 8, 0, 5], [5, 0, 0, 0, 0, 0, 5], [8, 0, 8, 0, 0, 0, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 8, 0, 0, 0], [0, 0, 8, 5, 0, 8, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 8, 0, 0, 0, 0], [0, 0, 8, 5, 0, 8, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 8, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0]], "output": [[8, 0, 0, 0, 8], [5, 0, 0, 0, 5], [5, 0, 8, 0, 5], [5, 0, 0, 0, 5], [5, 0, 8, 0, 5], [8, 0, 0, 0, 8]]}], "test": [{"input": [[8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 8, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 8], [5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 5, 0, 0, 8, 0, 0, 8, 0, 0, 0], [5, 0, 8, 5, 8, 0, 0, 0, 0, 0, 0, 0, 8], [5, 0, 0, 5, 0, 8, 0, 0, 0, 0, 0, 0, 0], [5, 8, 0, 5, 0, 0, 0, 0, 0, 0, 8, 0, 8], [5, 0, 0, 5, 0, 0, 0, 8, 0, 0, 0, 0, 0], [8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8]], "output": [[8, 0, 0, 8], [5, 8, 0, 5], [5, 0, 0, 5], [5, 0, 0, 5], [5, 0, 0, 5], [5, 0, 8, 5], [5, 0, 0, 5], [5, 8, 0, 5], [5, 0, 0, 5], [8, 0, 0, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/40853293.json b/data/arc-agi/training/40853293.json
deleted file mode 100644
index fb9a9c7..0000000
--- a/data/arc-agi/training/40853293.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 6, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 3, 4, 3, 3, 3, 3, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 7, 4, 7, 7, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 8, 8, 8, 8, 9, 8, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 3, 2, 2, 2, 2, 2, 5, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 7, 7, 5, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/4093f84a.json b/data/arc-agi/training/4093f84a.json
deleted file mode 100644
index 9298ba4..0000000
--- a/data/arc-agi/training/4093f84a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 0, 5, 0, 0, 0, 0, 5, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 3, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 3, 0, 0, 0, 0], [0, 0, 0, 3, 5, 5, 5, 5, 5, 0, 0, 3, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [3, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 3, 0, 3, 0], [0, 3, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 3, 0, 5, 5, 5, 5, 5, 0, 0, 0, 3, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 3, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 5, 0, 0, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 5, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 5, 5, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 4, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 5, 5, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 4, 0]], "output": [[0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/41e4d17e.json b/data/arc-agi/training/41e4d17e.json
deleted file mode 100644
index 053132e..0000000
--- a/data/arc-agi/training/41e4d17e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 8, 6, 8, 1, 8, 8, 8, 8, 8, 8, 8], [6, 6, 6, 1, 6, 6, 6, 1, 6, 6, 6, 6, 6, 6, 6], [8, 8, 8, 1, 8, 6, 8, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 1, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 1, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 1, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 6, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 6, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 6, 8, 8, 8, 8], [8, 8, 8, 1, 1, 1, 1, 1, 8, 8, 6, 8, 8, 8, 8], [8, 8, 8, 1, 8, 6, 8, 1, 8, 8, 6, 8, 8, 8, 8], [6, 6, 6, 1, 6, 6, 6, 1, 6, 6, 6, 6, 6, 6, 6], [8, 8, 8, 1, 8, 6, 8, 1, 8, 8, 6, 8, 8, 8, 8], [8, 8, 8, 1, 1, 1, 1, 1, 8, 8, 6, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 6, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 1, 1, 1, 1, 1, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 1, 8, 6, 8, 1, 8, 8], [6, 6, 6, 6, 6, 6, 6, 6, 1, 6, 6, 6, 1, 6, 6], [8, 8, 8, 8, 8, 6, 8, 8, 1, 8, 6, 8, 1, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 1, 1, 1, 1, 1, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 6, 8, 8, 8, 8]]}], "test": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 6, 8, 8, 6, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 1, 1, 1, 1, 1, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 1, 8, 6, 8, 1, 8, 8, 8, 8], [6, 6, 6, 6, 6, 6, 1, 6, 6, 6, 1, 6, 6, 6, 6], [8, 8, 8, 8, 8, 6, 1, 8, 6, 8, 1, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 1, 1, 1, 1, 1, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 6, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 6, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 6, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 1, 1, 1, 1, 6, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 8, 6, 8, 1, 6, 8, 8, 8, 8, 8, 8], [6, 6, 6, 1, 6, 6, 6, 1, 6, 6, 6, 6, 6, 6, 6], [8, 8, 8, 1, 8, 6, 8, 1, 6, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 1, 1, 1, 1, 6, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 8, 8, 6, 8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/4258a5f9.json b/data/arc-agi/training/4258a5f9.json
deleted file mode 100644
index 5fbec8c..0000000
--- a/data/arc-agi/training/4258a5f9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 1, 5, 1, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 1, 5, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 5, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 1, 1, 1], [0, 0, 1, 1, 1, 0, 1, 5, 1], [0, 0, 1, 5, 1, 0, 1, 1, 1], [0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 1, 5, 1], [0, 0, 1, 1, 1, 0, 1, 1, 1], [0, 0, 1, 5, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 5, 1, 0, 0, 0, 1, 1, 1], [1, 1, 1, 0, 0, 0, 1, 5, 1], [0, 0, 1, 1, 1, 0, 1, 1, 1], [0, 0, 1, 5, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0], [1, 1, 1, 0, 1, 1, 1, 0, 0], [1, 5, 1, 0, 1, 5, 1, 0, 0], [1, 1, 1, 0, 1, 1, 1, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/4290ef0e.json b/data/arc-agi/training/4290ef0e.json
deleted file mode 100644
index ac58db3..0000000
--- a/data/arc-agi/training/4290ef0e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 4, 4], [4, 4, 4, 1, 1, 4, 1, 1, 4, 4, 4, 4, 3, 4, 3, 4, 4], [4, 4, 4, 1, 4, 4, 4, 1, 4, 4, 4, 4, 3, 3, 3, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 1, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 1, 1, 4, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 6, 6, 4, 4, 4, 6, 6], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 6, 4, 4, 4, 4, 4, 6], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 6, 4, 4, 4, 4, 4, 6]], "output": [[6, 6, 4, 4, 4, 6, 6], [6, 1, 1, 4, 1, 1, 6], [4, 1, 3, 3, 3, 1, 4], [4, 4, 3, 4, 3, 4, 4], [4, 1, 3, 3, 3, 1, 4], [6, 1, 1, 4, 1, 1, 6], [6, 6, 4, 4, 4, 6, 6]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 1, 1, 8, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 0, 8, 8, 8, 8], [8, 8, 1, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 1, 1, 8, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 4, 8, 4, 8, 8, 8, 2, 2, 8, 2, 2, 8, 8, 8, 8, 8, 8], [8, 4, 4, 4, 8, 8, 8, 2, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 2, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 2, 2, 8, 2, 2, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[1, 1, 1, 8, 1, 1, 1], [1, 2, 2, 8, 2, 2, 1], [1, 2, 4, 4, 4, 2, 1], [8, 8, 4, 0, 4, 8, 8], [1, 2, 4, 4, 4, 2, 1], [1, 2, 2, 8, 2, 2, 1], [1, 1, 1, 8, 1, 1, 1]]}, {"input": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 2, 3, 3, 1, 1, 1, 3, 3, 3, 1, 1, 1, 3, 8, 8, 3], [3, 3, 2, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 1, 3, 8, 3, 3], [3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3], [3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 3, 3], [3, 3, 2, 3, 3, 3, 3, 7, 7, 7, 3, 3, 3, 3, 3, 8, 8, 3], [2, 2, 2, 3, 3, 3, 3, 7, 3, 7, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 1, 3, 7, 7, 7, 3, 3, 3, 1, 3, 3, 3, 3], [3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3], [3, 3, 3, 3, 3, 1, 1, 1, 3, 3, 3, 1, 1, 1, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 4, 4, 3, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 3, 3], [3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]], "output": [[4, 4, 3, 3, 3, 3, 3, 3, 3, 4, 4], [4, 1, 1, 1, 3, 3, 3, 1, 1, 1, 4], [3, 1, 2, 2, 2, 3, 2, 2, 2, 1, 3], [3, 1, 2, 8, 8, 3, 8, 8, 2, 1, 3], [3, 3, 2, 8, 7, 7, 7, 8, 2, 3, 3], [3, 3, 3, 3, 7, 6, 7, 3, 3, 3, 3], [3, 3, 2, 8, 7, 7, 7, 8, 2, 3, 3], [3, 1, 2, 8, 8, 3, 8, 8, 2, 1, 3], [3, 1, 2, 2, 2, 3, 2, 2, 2, 1, 3], [4, 1, 1, 1, 3, 3, 3, 1, 1, 1, 4], [4, 4, 3, 3, 3, 3, 3, 3, 3, 4, 4]]}], "test": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 1, 1, 1, 4, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 8, 1, 8, 1, 1, 1, 4, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 1, 1, 1, 4, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 3, 3, 1, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 3, 3, 1, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 1, 1, 1, 1], [1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 1, 1, 1, 1]], "output": [[4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 2, 2, 2, 1, 1, 1, 2, 2, 2, 4], [4, 2, 6, 6, 1, 1, 1, 6, 6, 2, 4], [4, 2, 6, 3, 3, 1, 3, 3, 6, 2, 4], [4, 1, 1, 3, 8, 8, 8, 3, 1, 1, 4], [1, 1, 1, 1, 8, 1, 8, 1, 1, 1, 1], [4, 1, 1, 3, 8, 8, 8, 3, 1, 1, 4], [4, 2, 6, 3, 3, 1, 3, 3, 6, 2, 4], [4, 2, 6, 6, 1, 1, 1, 6, 6, 2, 4], [4, 2, 2, 2, 1, 1, 1, 2, 2, 2, 4], [4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/42a50994.json b/data/arc-agi/training/42a50994.json
deleted file mode 100644
index 33c5e88..0000000
--- a/data/arc-agi/training/42a50994.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 8, 0, 8, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0]], "output": [[0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 6, 0, 0, 6, 0, 6, 0, 0, 0, 6, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 6, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 5, 0, 0, 0, 5, 0, 0], [0, 5, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 5, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 5, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 5, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 5]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 5, 0, 0, 0, 5, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 5, 5, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5]]}, {"input": [[0, 0, 0, 0, 0, 4, 0, 4, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 4, 0, 0, 4, 4], [4, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 4, 0, 4], [4, 0, 4, 0, 4, 0, 0, 4, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 0], [4, 0, 4, 0, 4, 0, 0, 4, 4], [0, 0, 4, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 4, 4], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 4, 0, 4], [4, 0, 4, 0, 0, 0, 0, 4, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 0], [0, 0, 4, 0, 4, 0, 0, 4, 4], [0, 0, 4, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 3], [3, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 3], [3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 3, 0, 0, 0, 0, 3, 3, 3, 0, 0], [3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 3, 3, 0, 0, 0, 0, 0], [3, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0], [3, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0], [3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 3, 3]], "output": [[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3], [3, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 3], [3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 3, 3, 0, 0, 0, 0, 0], [3, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0], [3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 3, 0, 0, 0, 0, 0, 3, 3]]}]}
diff --git a/data/arc-agi/training/4347f46a.json b/data/arc-agi/training/4347f46a.json
deleted file mode 100644
index 5098179..0000000
--- a/data/arc-agi/training/4347f46a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 7, 7, 7, 0], [0, 0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 7, 7, 7, 0], [0, 0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 7, 7, 7, 0], [0, 0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 7, 7, 7, 0], [0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 7, 0, 7, 0], [0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 7, 0, 7, 0], [0, 0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 7, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0], [0, 2, 2, 2, 2, 2, 0], [0, 2, 2, 2, 2, 2, 0], [0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0], [0, 2, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 2, 0], [0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 6, 0, 0, 6, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/444801d8.json b/data/arc-agi/training/444801d8.json
deleted file mode 100644
index 527d29f..0000000
--- a/data/arc-agi/training/444801d8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 1, 1, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 1, 0, 2, 0, 1, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 1, 1, 2, 1, 1, 0, 0, 0, 0], [0, 1, 2, 2, 2, 1, 0, 0, 0, 0], [0, 1, 2, 2, 2, 1, 0, 0, 0, 0], [0, 1, 2, 2, 2, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 1, 1, 0, 0, 0, 0], [0, 1, 0, 2, 0, 1, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 1, 0, 3, 0, 1, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 1, 1, 2, 1, 1, 0, 0, 0, 0], [0, 1, 2, 2, 2, 1, 0, 0, 0, 0], [0, 1, 2, 2, 2, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 1, 1, 3, 1, 1, 0], [0, 0, 0, 0, 1, 3, 3, 3, 1, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 1, 1, 0, 0, 0, 0], [0, 1, 0, 6, 0, 1, 0, 0, 0, 0], [0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 1, 0, 8, 0, 1, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 0]], "output": [[0, 6, 6, 6, 6, 6, 0, 0, 0, 0], [0, 1, 1, 6, 1, 1, 0, 0, 0, 0], [0, 1, 6, 6, 6, 1, 0, 0, 0, 0], [0, 1, 6, 6, 6, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 1, 1, 8, 1, 1, 0], [0, 0, 0, 0, 1, 8, 8, 8, 1, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 0, 0, 0, 0], [1, 0, 4, 0, 1, 0, 0, 0, 0, 0], [1, 0, 0, 0, 1, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 1, 0, 7, 0, 1, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 0]], "output": [[4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [1, 1, 4, 1, 1, 0, 0, 0, 0, 0], [1, 4, 4, 4, 1, 0, 0, 0, 0, 0], [1, 4, 4, 4, 1, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7, 0], [0, 0, 0, 0, 1, 1, 7, 1, 1, 0], [0, 0, 0, 0, 1, 7, 7, 7, 1, 0], [0, 0, 0, 0, 1, 7, 7, 7, 1, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/445eab21.json b/data/arc-agi/training/445eab21.json
deleted file mode 100644
index b0b61a7..0000000
--- a/data/arc-agi/training/445eab21.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 7, 7, 7, 7, 0, 0, 0, 0, 0], [0, 7, 0, 0, 7, 0, 0, 0, 0, 0], [0, 7, 0, 0, 7, 0, 0, 0, 0, 0], [0, 7, 7, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8], [8, 8]]}, {"input": [[6, 6, 6, 6, 6, 0, 0, 0, 0, 0], [6, 0, 0, 0, 6, 0, 0, 0, 0, 0], [6, 0, 0, 0, 6, 0, 0, 0, 0, 0], [6, 6, 6, 6, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 7, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[7, 7], [7, 7]]}, {"input": [[0, 4, 4, 4, 4, 4, 4, 0, 0, 0], [0, 4, 0, 0, 0, 0, 4, 0, 0, 0], [0, 4, 0, 0, 0, 0, 4, 0, 0, 0], [0, 4, 0, 0, 0, 0, 4, 0, 0, 0], [0, 4, 0, 0, 0, 0, 4, 0, 0, 0], [0, 4, 0, 0, 0, 0, 4, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 2, 0, 2], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2]], "output": [[4, 4], [4, 4]]}], "test": [{"input": [[3, 3, 3, 3, 3, 0, 9, 9, 9, 9], [3, 0, 0, 0, 3, 0, 9, 0, 0, 9], [3, 0, 0, 0, 3, 0, 9, 0, 0, 9], [3, 0, 0, 0, 3, 0, 9, 0, 0, 9], [3, 0, 0, 0, 3, 0, 9, 0, 0, 9], [3, 0, 0, 0, 3, 0, 9, 0, 0, 9], [3, 0, 0, 0, 3, 0, 9, 0, 0, 9], [3, 0, 0, 0, 3, 0, 9, 0, 0, 9], [3, 3, 3, 3, 3, 0, 9, 0, 0, 9], [0, 0, 0, 0, 0, 0, 9, 9, 9, 9]], "output": [[3, 3], [3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/447fd412.json b/data/arc-agi/training/447fd412.json
deleted file mode 100644
index abb827a..0000000
--- a/data/arc-agi/training/447fd412.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 1, 1, 1, 1, 2, 2, 0], [0, 0, 0, 2, 2, 1, 1, 1, 1, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 0, 0], [1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 0, 0], [1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 2, 2, 2, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 2, 2, 2, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 2, 2, 2, 0], [0, 1, 1, 0, 0, 2, 2, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 1, 1, 0, 0, 2, 2, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/44d8ac46.json b/data/arc-agi/training/44d8ac46.json
deleted file mode 100644
index 1012664..0000000
--- a/data/arc-agi/training/44d8ac46.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 0, 0, 5, 0, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 2, 2, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 2, 2, 5, 0, 0, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 0, 0, 5, 0, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 5, 2, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 5], [0, 5, 5, 5, 5, 0, 5, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5], [5, 5, 5, 5, 5, 0, 5, 0, 0, 0, 0, 5], [5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 5], [5, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 2, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 5], [0, 5, 5, 5, 5, 0, 5, 2, 2, 2, 2, 5], [0, 0, 0, 0, 0, 0, 5, 2, 2, 2, 2, 5], [0, 0, 0, 0, 0, 0, 5, 2, 2, 2, 2, 5], [5, 5, 5, 5, 5, 0, 5, 2, 2, 2, 2, 5], [5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 5], [5, 2, 2, 5, 5, 0, 0, 0, 0, 0, 0, 0], [5, 2, 2, 5, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 5, 5, 5, 5, 0], [0, 5, 0, 0, 0, 5, 0, 5, 0, 0, 5, 0], [0, 5, 0, 0, 0, 5, 0, 5, 0, 0, 5, 0], [0, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 5, 5, 5, 5, 0], [0, 5, 0, 0, 0, 5, 0, 5, 2, 2, 5, 0], [0, 5, 0, 0, 0, 5, 0, 5, 2, 2, 5, 0], [0, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0], [5, 0, 0, 0, 5, 0, 0, 5, 5, 0, 5, 0], [5, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0], [5, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0], [5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0], [5, 2, 2, 2, 5, 0, 0, 5, 5, 0, 5, 0], [5, 2, 2, 2, 5, 0, 0, 5, 0, 0, 5, 0], [5, 2, 2, 2, 5, 0, 0, 5, 0, 0, 5, 0], [5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/44f52bb0.json b/data/arc-agi/training/44f52bb0.json
deleted file mode 100644
index 871e405..0000000
--- a/data/arc-agi/training/44f52bb0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 0, 2], [0, 2, 0], [2, 0, 2]], "output": [[1]]}, {"input": [[2, 0, 0], [2, 0, 0], [0, 2, 0]], "output": [[7]]}, {"input": [[2, 0, 2], [2, 0, 2], [2, 0, 2]], "output": [[1]]}, {"input": [[0, 0, 0], [2, 0, 2], [0, 0, 0]], "output": [[1]]}, {"input": [[2, 2, 0], [0, 2, 2], [0, 0, 0]], "output": [[7]]}, {"input": [[2, 2, 0], [0, 2, 0], [0, 0, 0]], "output": [[7]]}], "test": [{"input": [[2, 0, 2], [2, 2, 2], [2, 0, 2]], "output": [[1]]}, {"input": [[0, 0, 0], [2, 0, 0], [2, 0, 0]], "output": [[7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/4522001f.json b/data/arc-agi/training/4522001f.json
deleted file mode 100644
index 6ada5e0..0000000
--- a/data/arc-agi/training/4522001f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 3, 0], [3, 2, 0], [0, 0, 0]], "output": [[3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0], [0, 2, 3], [0, 3, 3]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 0, 0, 3, 3, 3, 3]]}], "test": [{"input": [[0, 3, 3], [0, 2, 3], [0, 0, 0]], "output": [[0, 0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 0, 0, 3, 3, 3, 3], [0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/4612dd53.json b/data/arc-agi/training/4612dd53.json
deleted file mode 100644
index 487ebd0..0000000
--- a/data/arc-agi/training/4612dd53.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 2, 1, 2, 2, 1, 1, 2, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 1, 2, 2, 1, 1, 2, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 2, 2, 1, 1, 0, 0, 0, 0], [0, 0, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 2, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 2, 1, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 2, 1, 1, 2, 1, 1, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 1, 2, 1, 2, 1, 1, 2, 2, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 1, 2, 1, 1, 2, 2, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 2, 1, 1, 2, 1, 2, 1, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 2, 1, 2, 1, 2, 2, 1, 1, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 2, 1, 1, 2, 1, 2, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/46442a0e.json b/data/arc-agi/training/46442a0e.json
deleted file mode 100644
index c19d9fd..0000000
--- a/data/arc-agi/training/46442a0e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 6], [6, 8]], "output": [[8, 6, 6, 8], [6, 8, 8, 6], [6, 8, 8, 6], [8, 6, 6, 8]]}, {"input": [[7, 7, 8], [7, 7, 8], [8, 8, 8]], "output": [[7, 7, 8, 8, 7, 7], [7, 7, 8, 8, 7, 7], [8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8], [7, 7, 8, 8, 7, 7], [7, 7, 8, 8, 7, 7]]}, {"input": [[6, 9, 9], [6, 4, 4], [6, 4, 4]], "output": [[6, 9, 9, 6, 6, 6], [6, 4, 4, 4, 4, 9], [6, 4, 4, 4, 4, 9], [9, 4, 4, 4, 4, 6], [9, 4, 4, 4, 4, 6], [6, 6, 6, 9, 9, 6]]}], "test": [{"input": [[1, 4, 1], [4, 9, 4], [9, 1, 9]], "output": [[1, 4, 1, 9, 4, 1], [4, 9, 4, 1, 9, 4], [9, 1, 9, 9, 4, 1], [1, 4, 9, 9, 1, 9], [4, 9, 1, 4, 9, 4], [1, 4, 9, 1, 4, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/469497ad.json b/data/arc-agi/training/469497ad.json
deleted file mode 100644
index 719a51d..0000000
--- a/data/arc-agi/training/469497ad.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 3], [0, 8, 8, 0, 3], [0, 8, 8, 0, 3], [0, 0, 0, 0, 3], [3, 3, 3, 3, 3]], "output": [[2, 0, 0, 0, 0, 0, 0, 2, 3, 3], [0, 2, 0, 0, 0, 0, 2, 0, 3, 3], [0, 0, 8, 8, 8, 8, 0, 0, 3, 3], [0, 0, 8, 8, 8, 8, 0, 0, 3, 3], [0, 0, 8, 8, 8, 8, 0, 0, 3, 3], [0, 0, 8, 8, 8, 8, 0, 0, 3, 3], [0, 2, 0, 0, 0, 0, 2, 0, 3, 3], [2, 0, 0, 0, 0, 0, 0, 2, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 7], [4, 4, 0, 0, 7], [4, 4, 0, 0, 6], [0, 0, 0, 0, 6], [7, 7, 6, 6, 6]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 7, 7, 7], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 7, 7, 7], [4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 7, 7, 7], [4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 7, 7, 7], [4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 7, 7, 7], [4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 6, 6, 6], [4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 6, 6, 6], [4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 6, 6, 6], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 6, 6, 6], [7, 7, 7, 7, 7, 7, 6, 6, 6, 6, 6, 6, 6, 6, 6], [7, 7, 7, 7, 7, 7, 6, 6, 6, 6, 6, 6, 6, 6, 6], [7, 7, 7, 7, 7, 7, 6, 6, 6, 6, 6, 6, 6, 6, 6]]}, {"input": [[0, 0, 0, 0, 9], [0, 1, 1, 0, 9], [0, 1, 1, 0, 3], [0, 0, 0, 0, 3], [9, 9, 3, 3, 4]], "output": [[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 9, 9, 9, 9], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 9, 9, 9, 9], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 9, 9, 9, 9], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 9, 9, 9, 9], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 9, 9, 9, 9], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 9, 9, 9, 9], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 9, 9, 9, 9], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 9, 9, 9, 9], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 3, 3, 3], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 3, 3, 3], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 3, 3, 3], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 3], [9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4], [9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4], [9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4], [9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4]]}], "test": [{"input": [[0, 6, 6, 0, 8], [0, 6, 6, 0, 8], [0, 0, 0, 0, 1], [0, 0, 0, 0, 7], [8, 8, 1, 7, 9]], "output": [[0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 1, 1, 1, 1], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 1, 1, 1, 1], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 1, 1, 1], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 1, 1, 1, 1], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9]]}]}
diff --git a/data/arc-agi/training/46f33fce.json b/data/arc-agi/training/46f33fce.json
deleted file mode 100644
index cbc4892..0000000
--- a/data/arc-agi/training/46f33fce.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3]], "output": [[2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 2]], "output": [[1, 1, 1, 1, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 4]], "output": [[3, 3, 3, 3, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4], [1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4], [1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4], [1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/47c1f68c.json b/data/arc-agi/training/47c1f68c.json
deleted file mode 100644
index 38e3ac3..0000000
--- a/data/arc-agi/training/47c1f68c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0], [2, 2, 0, 0, 0, 0, 0, 0, 2, 2], [0, 2, 2, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 2, 2, 0], [2, 2, 0, 0, 0, 0, 0, 0, 2, 2], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[3, 0, 3, 0, 8, 0, 0, 0, 0], [3, 3, 0, 0, 8, 0, 0, 0, 0], [3, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0]], "output": [[8, 0, 8, 0, 0, 8, 0, 8], [8, 8, 0, 0, 0, 0, 8, 8], [8, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 8], [8, 8, 0, 0, 0, 0, 8, 8], [8, 0, 8, 0, 0, 8, 0, 8]]}, {"input": [[2, 0, 0, 4, 0, 0, 0], [0, 2, 2, 4, 0, 0, 0], [0, 2, 0, 4, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0]], "output": [[4, 0, 0, 0, 0, 4], [0, 4, 4, 4, 4, 0], [0, 4, 0, 0, 4, 0], [0, 4, 0, 0, 4, 0], [0, 4, 4, 4, 4, 0], [4, 0, 0, 0, 0, 4]]}], "test": [{"input": [[0, 0, 8, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [8, 0, 8, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [3, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 3], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0], [3, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 3], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/484b58aa.json b/data/arc-agi/training/484b58aa.json
deleted file mode 100644
index 43a7c05..0000000
--- a/data/arc-agi/training/484b58aa.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[8, 1, 2, 6, 1, 2, 0, 0, 0, 0, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1], [1, 8, 2, 1, 5, 9, 0, 0, 0, 0, 8, 9, 1, 5, 0, 0, 0, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8], [5, 3, 1, 8, 2, 1, 0, 0, 0, 0, 8, 1, 8, 9, 0, 0, 0, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8], [5, 1, 2, 9, 1, 2, 0, 0, 0, 0, 1, 2, 2, 1, 0, 0, 0, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1], [1, 5, 2, 1, 2, 9, 0, 0, 0, 0, 5, 9, 1, 2, 0, 0, 0, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5], [8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 0, 0, 0, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2], [2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 0, 0, 0, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1], [1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 0, 0, 0, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2], [2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5], [8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1], [1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8], [5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8], [5, 1, 0, 0, 1, 2, 8, 1, 2, 6, 1, 2, 2, 0, 0, 0, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1], [1, 5, 0, 0, 2, 9, 1, 8, 2, 1, 5, 9, 1, 0, 0, 0, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5], [8, 9, 0, 0, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2], [2, 1, 0, 0, 0, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1], [1, 2, 0, 0, 0, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2], [2, 6, 1, 0, 0, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5], [8, 1, 2, 0, 0, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1], [1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8], [5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8], [5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1], [1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5], [8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2], [2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1], [1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2], [2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5], [8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1], [1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8]], "output": [[8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1], [1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8], [5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8], [5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1], [1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5], [8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2], [2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1], [1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2], [2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5], [8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1], [1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8], [5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8], [5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1], [1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5], [8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2], [2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1], [1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2], [2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5], [8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1], [1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8], [5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8], [5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1], [1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5], [8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2], [2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1], [1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2], [2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5, 1, 5, 3, 1, 8, 2, 1, 2, 6, 1, 5, 8, 1, 8, 9, 1, 2, 5], [8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1, 2, 5, 1, 2, 9, 1, 2, 8, 1, 2, 6, 1, 2, 2, 1, 2, 3, 1], [1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8, 9, 1, 5, 2, 1, 2, 9, 1, 8, 2, 1, 5, 9, 1, 2, 2, 1, 8]]}], "train": [{"input": [[5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1], [4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2], [5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5], [2, 1, 2, 3, 4, 5, 0, 0, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4], [1, 2, 5, 4, 5, 6, 0, 0, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5], [2, 0, 0, 0, 0, 1, 0, 0, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2], [5, 0, 0, 0, 0, 2, 0, 0, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 0, 0, 0, 6, 1], [4, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 0, 0, 0, 1, 2], [5, 6, 1, 2, 0, 0, 0, 0, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 0, 0, 0, 2, 5], [2, 1, 2, 3, 0, 0, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 0, 0, 0, 3, 4], [1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 0, 0, 0, 4, 5], [2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 0, 0, 0, 5, 2], [5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1], [4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2], [5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5], [2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4], [1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5], [2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2], [5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1], [4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2], [5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5], [2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 0, 0, 0, 0, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4], [1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 0, 0, 0, 0, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5], [2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 0, 0, 0, 0, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2], [5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1], [4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2], [5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5], [2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4], [1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5]], "output": [[5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1], [4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2], [5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5], [2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4], [1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5], [2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2], [5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1], [4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2], [5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5], [2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4], [1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5], [2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2], [5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1], [4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2], [5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5], [2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4], [1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5], [2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2], [5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1], [4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2], [5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5], [2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4], [1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5], [2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2], [5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1], [4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2], [5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5], [2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4, 5, 2, 1, 2, 3, 4], [1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5, 6, 1, 2, 5, 4, 5]]}, {"input": [[5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3], [0, 0, 0, 0, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5], [0, 0, 0, 0, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2], [0, 0, 0, 0, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1], [0, 0, 0, 0, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2], [3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5], [5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3], [5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3], [3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5], [2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2], [1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1], [2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 0, 0, 0, 0, 0, 5, 4, 2, 1, 2], [3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 0, 0, 0, 0, 0, 3, 7, 1, 2, 5], [5, 3, 2, 7, 1, 2, 3, 6, 2, 0, 0, 0, 0, 0, 2, 5, 5, 7, 1, 0, 0, 0, 0, 0, 2, 1, 2, 3, 3], [5, 4, 2, 1, 2, 2, 5, 3, 2, 0, 0, 0, 0, 0, 2, 6, 2, 1, 2, 0, 0, 0, 0, 0, 1, 2, 2, 4, 3], [3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 0, 0, 0, 0, 1, 2, 5, 2, 5, 5], [2, 1, 2, 3, 0, 0, 0, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 0, 0, 0, 0, 2, 3, 6, 2, 6, 2], [1, 2, 2, 4, 0, 0, 0, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1], [2, 5, 2, 5, 0, 0, 0, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2], [3, 6, 2, 6, 0, 0, 0, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5], [5, 3, 2, 7, 0, 0, 0, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3], [5, 4, 2, 1, 0, 0, 0, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3], [3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5], [2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2], [1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1], [2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2], [3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5], [5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3], [5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3]], "output": [[5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3], [3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5], [2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2], [1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1], [2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2], [3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5], [5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3], [5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3], [3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5], [2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2], [1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1], [2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2], [3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5], [5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3], [5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3], [3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5], [2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2], [1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1], [2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2], [3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5], [5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3], [5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3], [3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5], [2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2], [1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1], [2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5, 7, 5, 4, 2, 1, 2], [3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3, 2, 3, 7, 1, 2, 5], [5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3, 7, 2, 1, 2, 3, 3], [5, 4, 2, 1, 2, 2, 5, 3, 2, 7, 1, 2, 3, 6, 2, 6, 2, 1, 2, 5, 2, 5, 5, 7, 1, 2, 2, 4, 3]]}, {"input": [[1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 6, 1, 8, 1, 2, 0, 0, 0, 0, 0, 0, 0, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1], [2, 1, 2, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 8, 1, 2, 1, 4, 0, 0, 0, 0, 0, 0, 0, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1], [2, 1, 2, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 2, 1, 4, 1, 6, 0, 0, 0, 0, 0, 0, 0, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1], [2, 1, 2, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 4, 1, 6, 1, 8, 0, 0, 0, 0, 0, 0, 0, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 0, 0, 0, 0, 4, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 0, 0, 0, 0, 1, 2], [1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 0, 0, 0, 0, 6, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 2], [1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 2], [1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 0, 0, 0, 0, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 0, 0, 0, 0, 2], [1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1]], "output": [[1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1], [2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2], [1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1, 2, 1, 4, 1, 6, 1, 8, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/48d8fb45.json b/data/arc-agi/training/48d8fb45.json
deleted file mode 100644
index 11b4f40..0000000
--- a/data/arc-agi/training/48d8fb45.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1], [0, 0, 0, 5, 0, 0, 0, 1, 1, 0], [0, 0, 0, 1, 0, 0, 0, 0, 1, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0]], "output": [[0, 1, 0], [1, 1, 1], [0, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 4, 0], [0, 4, 0, 4, 0, 0, 0, 4, 0, 0], [0, 0, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 4, 0], [0, 0, 4], [0, 4, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 2], [2, 2, 0], [0, 2, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 3, 0], [3, 3, 0], [0, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/4938f0c2.json b/data/arc-agi/training/4938f0c2.json
deleted file mode 100644
index ee27aab..0000000
--- a/data/arc-agi/training/4938f0c2.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 2, 0, 0, 0, 0, 2, 2, 0], [0, 2, 0, 2, 0, 0, 2, 0, 2, 0], [0, 0, 2, 2, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 2, 2, 0, 0], [0, 2, 0, 2, 0, 0, 2, 0, 2, 0], [0, 2, 2, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/496994bd.json b/data/arc-agi/training/496994bd.json
deleted file mode 100644
index d623e47..0000000
--- a/data/arc-agi/training/496994bd.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 2], [2, 2, 2], [3, 3, 3], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]], "output": [[2, 2, 2], [2, 2, 2], [3, 3, 3], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [3, 3, 3], [2, 2, 2], [2, 2, 2]]}, {"input": [[2, 2, 2, 2, 2], [8, 8, 8, 8, 8], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2], [8, 8, 8, 8, 8], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [8, 8, 8, 8, 8], [2, 2, 2, 2, 2]]}], "test": [{"input": [[3, 3, 3, 3, 3, 3], [5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3], [5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5], [3, 3, 3, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/49d1d64f.json b/data/arc-agi/training/49d1d64f.json
deleted file mode 100644
index a87c709..0000000
--- a/data/arc-agi/training/49d1d64f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 2], [3, 8]], "output": [[0, 1, 2, 0], [1, 1, 2, 2], [3, 3, 8, 8], [0, 3, 8, 0]]}, {"input": [[1, 8, 4], [8, 3, 8]], "output": [[0, 1, 8, 4, 0], [1, 1, 8, 4, 4], [8, 8, 3, 8, 8], [0, 8, 3, 8, 0]]}, {"input": [[2, 1, 4], [8, 0, 2], [3, 2, 8]], "output": [[0, 2, 1, 4, 0], [2, 2, 1, 4, 4], [8, 8, 0, 2, 2], [3, 3, 2, 8, 8], [0, 3, 2, 8, 0]]}], "test": [{"input": [[2, 8], [1, 4], [3, 4]], "output": [[0, 2, 8, 0], [2, 2, 8, 8], [1, 1, 4, 4], [3, 3, 4, 4], [0, 3, 4, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/4be741c5.json b/data/arc-agi/training/4be741c5.json
deleted file mode 100644
index 5ac51da..0000000
--- a/data/arc-agi/training/4be741c5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8], [4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 8, 8, 8], [4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8], [4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8], [4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8], [4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8], [4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8]], "output": [[4, 2, 8]]}, {"input": [[2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2], [2, 8, 8, 8, 2, 2, 8], [8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 5, 5, 8, 8], [5, 8, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5]], "output": [[2], [8], [5]]}, {"input": [[6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 4, 4, 6, 6, 6, 6, 6], [6, 4, 4, 4, 6, 4, 6, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 2, 2, 4, 4, 4, 2, 2, 4], [2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 3, 2, 2, 2, 2, 2, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3]], "output": [[6], [4], [2], [3]]}], "test": [{"input": [[3, 3, 3, 3, 2, 2, 2, 2, 2, 1, 1, 1, 8, 8], [3, 3, 3, 2, 2, 2, 2, 2, 1, 1, 1, 8, 8, 8], [3, 3, 3, 3, 3, 2, 2, 1, 1, 1, 8, 8, 8, 8], [3, 3, 3, 3, 3, 2, 2, 1, 1, 1, 1, 8, 8, 8], [3, 3, 3, 3, 2, 2, 2, 2, 2, 1, 1, 1, 8, 8], [3, 3, 3, 3, 3, 2, 2, 2, 2, 1, 1, 1, 1, 8], [3, 3, 3, 2, 2, 2, 2, 2, 1, 1, 1, 1, 8, 8], [3, 3, 3, 3, 2, 2, 2, 2, 1, 1, 1, 8, 8, 8], [3, 3, 3, 3, 2, 2, 2, 2, 1, 1, 1, 1, 8, 8], [3, 3, 3, 2, 2, 2, 2, 2, 2, 1, 1, 1, 8, 8], [3, 3, 3, 2, 2, 2, 2, 2, 2, 1, 1, 8, 8, 8], [3, 3, 3, 3, 2, 2, 2, 2, 1, 1, 1, 1, 8, 8], [3, 3, 3, 3, 3, 2, 2, 2, 1, 1, 1, 1, 8, 8], [3, 3, 3, 3, 3, 3, 2, 2, 2, 1, 1, 1, 8, 8]], "output": [[3, 2, 1, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/4c4377d9.json b/data/arc-agi/training/4c4377d9.json
deleted file mode 100644
index 3fe9066..0000000
--- a/data/arc-agi/training/4c4377d9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[4, 4, 9, 9], [4, 4, 4, 4], [4, 4, 9, 9]], "output": [[4, 4, 9, 9], [4, 4, 4, 4], [4, 4, 9, 9], [4, 4, 9, 9], [4, 4, 4, 4], [4, 4, 9, 9]]}], "train": [{"input": [[9, 9, 5, 9], [5, 5, 9, 9], [9, 5, 9, 9]], "output": [[9, 5, 9, 9], [5, 5, 9, 9], [9, 9, 5, 9], [9, 9, 5, 9], [5, 5, 9, 9], [9, 5, 9, 9]]}, {"input": [[4, 1, 1, 4], [1, 1, 1, 1], [4, 4, 4, 1]], "output": [[4, 4, 4, 1], [1, 1, 1, 1], [4, 1, 1, 4], [4, 1, 1, 4], [1, 1, 1, 1], [4, 4, 4, 1]]}, {"input": [[9, 4, 9, 4], [9, 9, 4, 4], [4, 4, 4, 4]], "output": [[4, 4, 4, 4], [9, 9, 4, 4], [9, 4, 9, 4], [9, 4, 9, 4], [9, 9, 4, 4], [4, 4, 4, 4]]}, {"input": [[3, 3, 5, 5], [3, 5, 5, 3], [5, 5, 3, 3]], "output": [[5, 5, 3, 3], [3, 5, 5, 3], [3, 3, 5, 5], [3, 3, 5, 5], [3, 5, 5, 3], [5, 5, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/4c5c2cf0.json b/data/arc-agi/training/4c5c2cf0.json
deleted file mode 100644
index 34b3bfd..0000000
--- a/data/arc-agi/training/4c5c2cf0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 0], [0, 0, 0, 2, 2, 0, 2, 0, 2, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 4, 0, 4, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 4, 0, 4, 0, 0, 2, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 2, 0, 2, 0, 2, 2, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0], [0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 7, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 4, 4, 0, 4, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 4, 0, 7, 0, 7, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 7, 0, 7, 0, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 4, 4, 0, 4, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/50846271.json b/data/arc-agi/training/50846271.json
deleted file mode 100644
index e8f41fe..0000000
--- a/data/arc-agi/training/50846271.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 5, 0, 0, 0], [0, 5, 0, 0, 5, 5, 5, 5, 0, 0, 5, 0, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5], [5, 0, 5, 5, 0, 5, 5, 5, 0, 0, 5, 5, 2, 0, 0, 0, 0, 0, 0, 0, 5, 0], [5, 0, 0, 5, 5, 0, 0, 0, 5, 0, 0, 0, 2, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 2, 5, 5, 0, 0, 5, 0, 5, 5, 0], [0, 5, 0, 0, 5, 0, 0, 0, 5, 2, 5, 2, 5, 5, 5, 2, 5, 0, 5, 0, 0, 0], [0, 5, 5, 0, 5, 0, 0, 0, 0, 0, 5, 0, 2, 5, 0, 0, 5, 0, 0, 5, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 5, 0, 2, 5, 0, 5, 5, 0, 5, 0, 0, 0], [5, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 5, 0, 5], [5, 0, 0, 5, 0, 0, 0, 0, 0, 5, 5, 0, 5, 5, 0, 0, 0, 0, 0, 5, 0, 0], [0, 5, 0, 5, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 5, 0, 5, 5, 5, 0, 5, 5], [0, 5, 5, 0, 0, 5, 0, 0, 5, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 0, 5, 5], [0, 0, 5, 5, 0, 2, 5, 5, 5, 0, 0, 5, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], [5, 0, 5, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 0, 5], [0, 0, 2, 5, 5, 2, 2, 2, 2, 0, 0, 0, 5, 5, 0, 5, 0, 0, 5, 0, 5, 0], [0, 5, 5, 0, 0, 5, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0], [5, 0, 0, 0, 5, 2, 0, 5, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5, 5, 0, 0, 0], [0, 0, 5, 5, 0, 2, 5, 0, 0, 0, 5, 0, 0, 0, 5, 5, 0, 0, 0, 5, 5, 5], [0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0, 0, 5, 5, 0, 5, 0, 0, 0, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 0, 0, 0, 5]], "output": [[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 5, 0, 0, 0], [0, 5, 0, 0, 5, 5, 5, 5, 0, 0, 5, 0, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5], [5, 0, 5, 5, 0, 5, 5, 5, 0, 0, 5, 5, 2, 0, 0, 0, 0, 0, 0, 0, 5, 0], [5, 0, 0, 5, 5, 0, 0, 0, 5, 0, 0, 0, 2, 5, 5, 5, 0, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 2, 5, 5, 0, 0, 5, 0, 5, 5, 0], [0, 5, 0, 0, 5, 0, 0, 0, 5, 2, 8, 2, 8, 8, 8, 2, 5, 0, 5, 0, 0, 0], [0, 5, 5, 0, 5, 0, 0, 0, 0, 0, 5, 0, 2, 5, 0, 0, 5, 0, 0, 5, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 5, 0, 2, 5, 0, 5, 5, 0, 5, 0, 0, 0], [5, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 5, 0, 5], [5, 0, 0, 5, 0, 0, 0, 0, 0, 5, 5, 0, 5, 5, 0, 0, 0, 0, 0, 5, 0, 0], [0, 5, 0, 5, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 5, 0, 5, 5, 5, 0, 5, 5], [0, 5, 5, 0, 0, 8, 0, 0, 5, 0, 5, 5, 0, 5, 5, 0, 5, 5, 0, 0, 5, 5], [0, 0, 5, 5, 0, 2, 5, 5, 5, 0, 0, 5, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], [5, 0, 5, 0, 0, 8, 5, 5, 0, 0, 0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 0, 5], [0, 0, 2, 8, 8, 2, 2, 2, 2, 0, 0, 0, 5, 5, 0, 5, 0, 0, 5, 0, 5, 0], [0, 5, 5, 0, 0, 8, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0], [5, 0, 0, 0, 5, 2, 0, 5, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5, 5, 0, 0, 0], [0, 0, 5, 5, 0, 2, 5, 0, 0, 0, 5, 0, 0, 0, 5, 5, 0, 0, 0, 5, 5, 5], [0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0, 0, 5, 5, 0, 5, 0, 0, 0, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 0, 0, 0, 5]]}, {"input": [[0, 5, 0, 5, 0, 0, 0, 5, 5, 0, 5, 5, 0, 0, 0, 5, 5, 0, 5, 5], [5, 5, 0, 5, 5, 5, 0, 5, 5, 0, 5, 0, 0, 5, 0, 0, 0, 5, 5, 0], [0, 5, 0, 5, 5, 0, 5, 5, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 5, 5], [5, 0, 0, 5, 5, 0, 2, 5, 0, 5, 0, 5, 0, 0, 0, 5, 5, 5, 5, 5], [0, 5, 0, 5, 2, 5, 2, 2, 2, 0, 5, 5, 0, 5, 0, 5, 5, 0, 0, 0], [5, 5, 0, 0, 5, 5, 2, 5, 5, 5, 0, 5, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 5, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 5, 0, 5], [0, 0, 0, 5, 0, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0, 5, 5, 0, 5], [5, 0, 0, 0, 5, 0, 0, 5, 5, 5, 5, 0, 5, 5, 5, 0, 0, 5, 0, 5], [5, 0, 0, 5, 0, 5, 5, 5, 0, 5, 5, 0, 5, 0, 5, 5, 5, 5, 5, 5], [5, 0, 5, 5, 0, 5, 5, 5, 5, 5, 0, 5, 2, 5, 2, 2, 2, 0, 0, 5], [0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 5, 0, 0, 5, 0, 5], [0, 0, 5, 0, 0, 5, 0, 5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [5, 5, 0, 0, 5, 5, 0, 5, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 0, 0, 0, 5, 5, 5, 0, 5, 5, 0, 5, 5, 5, 5, 0, 0, 5, 5], [0, 0, 5, 0, 5, 5, 5, 2, 2, 5, 5, 0, 0, 5, 0, 0, 5, 5, 0, 0], [0, 5, 5, 0, 0, 5, 5, 2, 5, 0, 5, 5, 0, 0, 5, 0, 5, 5, 0, 0], [0, 0, 5, 0, 5, 0, 5, 5, 0, 5, 5, 5, 0, 0, 5, 0, 0, 0, 5, 0], [0, 0, 5, 0, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 0, 0, 5, 5], [5, 5, 5, 0, 5, 0, 5, 0, 5, 5, 0, 0, 5, 5, 0, 0, 0, 0, 0, 5]], "output": [[0, 5, 0, 5, 0, 0, 0, 5, 5, 0, 5, 5, 0, 0, 0, 5, 5, 0, 5, 5], [5, 5, 0, 5, 5, 5, 0, 5, 5, 0, 5, 0, 0, 5, 0, 0, 0, 5, 5, 0], [0, 5, 0, 5, 5, 0, 8, 5, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 5, 5], [5, 0, 0, 5, 5, 0, 2, 5, 0, 5, 0, 5, 0, 0, 0, 5, 5, 5, 5, 5], [0, 5, 0, 5, 2, 8, 2, 2, 2, 0, 5, 5, 0, 5, 0, 5, 5, 0, 0, 0], [5, 5, 0, 0, 5, 5, 2, 5, 5, 5, 0, 5, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 8, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 5, 0, 5], [0, 0, 0, 5, 0, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0, 5, 5, 0, 5], [5, 0, 0, 0, 5, 0, 0, 5, 5, 5, 5, 0, 5, 5, 8, 0, 0, 5, 0, 5], [5, 0, 0, 5, 0, 5, 5, 5, 0, 5, 5, 0, 5, 0, 8, 5, 5, 5, 5, 5], [5, 0, 5, 5, 0, 5, 5, 5, 5, 5, 0, 5, 2, 8, 2, 2, 2, 0, 0, 5], [0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 8, 0, 0, 5, 0, 5], [0, 0, 5, 0, 0, 5, 0, 5, 5, 0, 5, 5, 5, 5, 8, 5, 5, 5, 5, 0], [5, 5, 0, 0, 5, 5, 0, 8, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 0, 0, 0, 5, 5, 8, 0, 5, 5, 0, 5, 5, 5, 5, 0, 0, 5, 5], [0, 0, 5, 0, 5, 8, 8, 2, 2, 8, 5, 0, 0, 5, 0, 0, 5, 5, 0, 0], [0, 5, 5, 0, 0, 5, 5, 2, 5, 0, 5, 5, 0, 0, 5, 0, 5, 5, 0, 0], [0, 0, 5, 0, 5, 0, 5, 8, 0, 5, 5, 5, 0, 0, 5, 0, 0, 0, 5, 0], [0, 0, 5, 0, 5, 5, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 0, 0, 5, 5], [5, 5, 5, 0, 5, 0, 5, 0, 5, 5, 0, 0, 5, 5, 0, 0, 0, 0, 0, 5]]}, {"input": [[0, 0, 5, 0, 5, 0, 5, 5, 5, 5, 0, 5, 5, 0, 0, 0, 5, 5, 0], [0, 0, 5, 5, 5, 0, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5, 0, 5], [0, 5, 5, 5, 0, 5, 0, 5, 5, 0, 0, 0, 5, 5, 5, 0, 5, 0, 0], [5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 5, 0, 0], [5, 5, 0, 0, 0, 5, 5, 5, 0, 5, 5, 5, 5, 0, 0, 0, 5, 0, 0], [5, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 2, 5, 0, 0, 5, 0, 5, 5], [5, 0, 5, 0, 0, 5, 5, 0, 5, 2, 2, 5, 2, 2, 5, 5, 0, 5, 0], [0, 5, 0, 5, 5, 5, 5, 5, 0, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5], [5, 5, 5, 0, 5, 5, 5, 5, 0, 0, 5, 2, 5, 5, 5, 0, 0, 0, 0], [5, 2, 2, 5, 0, 0, 5, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [5, 2, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0, 5], [0, 2, 5, 0, 5, 5, 0, 0, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 5, 0, 0, 5, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 5, 0, 0, 0], [5, 0, 0, 5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5], [0, 5, 5, 5, 0, 0, 5, 0, 0, 0, 5, 0, 5, 5, 5, 5, 0, 0, 0], [5, 5, 0, 0, 5, 5, 5, 5, 0, 5, 5, 0, 5, 0, 5, 0, 0, 0, 0], [5, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 5, 0, 5], [0, 5, 5, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 5, 5, 5, 5]], "output": [[0, 0, 5, 0, 5, 0, 5, 5, 5, 5, 0, 5, 5, 0, 0, 0, 5, 5, 0], [0, 0, 5, 5, 5, 0, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5, 0, 5], [0, 5, 5, 5, 0, 5, 0, 5, 5, 0, 0, 0, 5, 5, 5, 0, 5, 0, 0], [5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 5, 0, 0], [5, 5, 0, 0, 0, 5, 5, 5, 0, 5, 5, 8, 5, 0, 0, 0, 5, 0, 0], [5, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 2, 5, 0, 0, 5, 0, 5, 5], [5, 0, 5, 0, 0, 5, 5, 0, 5, 2, 2, 8, 2, 2, 5, 5, 0, 5, 0], [0, 8, 0, 5, 5, 5, 5, 5, 0, 5, 0, 8, 5, 5, 5, 0, 5, 5, 5], [5, 8, 5, 0, 5, 5, 5, 5, 0, 0, 5, 2, 5, 5, 5, 0, 0, 0, 0], [8, 2, 2, 8, 0, 0, 5, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0], [5, 2, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0, 5], [0, 2, 5, 0, 5, 5, 0, 0, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0], [0, 5, 0, 0, 5, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 5, 0, 0, 0], [5, 0, 0, 5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5], [0, 5, 5, 5, 0, 0, 5, 0, 0, 0, 5, 0, 5, 5, 5, 5, 0, 0, 0], [5, 5, 0, 0, 5, 5, 5, 5, 0, 5, 5, 0, 5, 0, 5, 0, 0, 0, 0], [5, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 5, 0, 5], [0, 5, 5, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 5, 5, 5, 5]]}, {"input": [[0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5], [5, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 5], [5, 0, 5, 0, 0, 5, 5, 0, 2, 0, 5, 0], [5, 5, 0, 0, 5, 0, 5, 0, 2, 5, 0, 5], [5, 0, 0, 5, 5, 5, 2, 5, 2, 2, 2, 0], [5, 5, 5, 0, 5, 5, 0, 5, 2, 0, 0, 5], [5, 5, 5, 0, 5, 0, 0, 5, 5, 0, 0, 0], [5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 5, 0, 0, 0, 0, 5, 0, 0], [5, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0], [5, 0, 0, 0, 0, 5, 0, 0, 5, 5, 5, 5]], "output": [[0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5], [5, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 5], [5, 0, 5, 0, 0, 5, 5, 0, 2, 0, 5, 0], [5, 5, 0, 0, 5, 0, 5, 0, 2, 5, 0, 5], [5, 0, 0, 5, 5, 5, 2, 8, 2, 2, 2, 0], [5, 5, 5, 0, 5, 5, 0, 5, 2, 0, 0, 5], [5, 5, 5, 0, 5, 0, 0, 5, 8, 0, 0, 0], [5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 5, 0, 0, 0, 0, 5, 0, 0], [5, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0], [5, 0, 0, 0, 0, 5, 0, 0, 5, 5, 5, 5]]}], "test": [{"input": [[0, 5, 0, 5, 0, 0, 5, 5, 0, 5, 0, 0, 0, 5, 0, 5, 0, 0, 0, 5, 5, 0], [0, 5, 0, 5, 5, 0, 0, 0, 5, 5, 0, 0, 5, 5, 0, 0, 0, 0, 0, 5, 5, 5], [0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 5, 5, 0, 0, 5, 5, 0, 0, 5, 5, 5], [0, 0, 5, 5, 0, 5, 5, 5, 0, 5, 0, 5, 0, 5, 0, 5, 5, 0, 5, 5, 5, 0], [0, 5, 0, 5, 2, 2, 5, 2, 2, 5, 0, 0, 5, 0, 5, 5, 5, 0, 0, 5, 5, 0], [0, 0, 0, 5, 0, 5, 2, 5, 5, 5, 0, 5, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0], [5, 5, 0, 0, 5, 5, 2, 0, 5, 5, 0, 0, 0, 5, 0, 0, 0, 5, 5, 5, 5, 5], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 5, 0, 0, 5, 0, 5, 0], [5, 5, 5, 5, 5, 0, 0, 5, 5, 0, 5, 2, 5, 2, 5, 5, 0, 0, 5, 5, 5, 0], [0, 0, 0, 5, 5, 5, 0, 0, 5, 0, 0, 0, 5, 5, 0, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 5, 0, 5, 0, 5, 5, 2, 5, 0, 5, 0, 0, 5, 5, 0], [0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0, 0, 5, 0, 5, 5, 0, 0, 0, 5, 5], [5, 5, 0, 0, 5, 5, 5, 0, 0, 5, 5, 0, 5, 0, 5, 5, 0, 0, 5, 5, 0, 5], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5, 0, 0, 5, 0, 5], [5, 5, 0, 5, 5, 2, 2, 2, 5, 5, 5, 0, 5, 5, 5, 0, 5, 0, 0, 5, 5, 0], [5, 0, 0, 0, 5, 2, 5, 0, 5, 0, 5, 0, 5, 5, 5, 5, 0, 0, 0, 0, 5, 5], [5, 5, 5, 0, 0, 2, 0, 5, 5, 0, 0, 2, 2, 2, 2, 2, 5, 0, 5, 0, 5, 5], [5, 0, 5, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 5, 0, 5, 5, 5, 0, 5, 5, 0], [5, 5, 5, 5, 5, 0, 5, 0, 5, 5, 5, 5, 0, 5, 0, 0, 5, 5, 0, 5, 0, 5]], "output": [[0, 5, 0, 5, 0, 0, 5, 5, 0, 5, 0, 0, 0, 5, 0, 5, 0, 0, 0, 5, 5, 0], [0, 5, 0, 5, 5, 0, 0, 0, 5, 5, 0, 0, 5, 5, 0, 0, 0, 0, 0, 5, 5, 5], [0, 0, 0, 0, 5, 5, 8, 0, 0, 0, 0, 5, 5, 0, 0, 5, 5, 0, 0, 5, 5, 5], [0, 0, 5, 5, 0, 5, 8, 5, 0, 5, 0, 5, 0, 5, 0, 5, 5, 0, 5, 5, 5, 0], [0, 5, 0, 5, 2, 2, 8, 2, 2, 5, 0, 0, 5, 0, 5, 5, 5, 0, 0, 5, 5, 0], [0, 0, 0, 5, 0, 5, 2, 5, 5, 5, 0, 5, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0], [5, 5, 0, 0, 5, 5, 2, 0, 5, 5, 0, 0, 0, 8, 0, 0, 0, 5, 5, 5, 5, 5], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 8, 0, 5, 0, 0, 5, 0, 5, 0], [5, 5, 5, 5, 5, 0, 0, 5, 5, 0, 5, 2, 8, 2, 8, 8, 0, 0, 5, 5, 5, 0], [0, 0, 0, 5, 5, 5, 0, 0, 5, 0, 0, 0, 5, 8, 0, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 5, 0, 5, 0, 5, 5, 2, 5, 0, 5, 0, 0, 5, 5, 0], [0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0, 0, 5, 0, 5, 5, 0, 0, 0, 5, 5], [5, 5, 0, 0, 5, 8, 5, 0, 0, 5, 5, 0, 5, 0, 5, 5, 0, 0, 5, 5, 0, 5], [0, 0, 5, 5, 5, 8, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5, 0, 0, 5, 0, 5], [5, 5, 0, 8, 8, 2, 2, 2, 5, 5, 5, 0, 5, 8, 5, 0, 5, 0, 0, 5, 5, 0], [5, 0, 0, 0, 5, 2, 5, 0, 5, 0, 5, 0, 5, 8, 5, 5, 0, 0, 0, 0, 5, 5], [5, 5, 5, 0, 0, 2, 0, 5, 5, 0, 0, 2, 2, 2, 2, 2, 5, 0, 5, 0, 5, 5], [5, 0, 5, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 8, 0, 5, 5, 5, 0, 5, 5, 0], [5, 5, 5, 5, 5, 0, 5, 0, 5, 5, 5, 5, 0, 8, 0, 0, 5, 5, 0, 5, 0, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/508bd3b6.json b/data/arc-agi/training/508bd3b6.json
deleted file mode 100644
index 986bfff..0000000
--- a/data/arc-agi/training/508bd3b6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 2, 2]], "output": [[0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}, {"input": [[2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0]], "output": [[2, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 8, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 8, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2]], "output": [[0, 0, 0, 8, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 8, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 3, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 3, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 3, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 3, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 3, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 3, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 3, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 3, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 3, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [3, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/50cb2852.json b/data/arc-agi/training/50cb2852.json
deleted file mode 100644
index d3b179e..0000000
--- a/data/arc-agi/training/50cb2852.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 2, 8, 8, 8, 2, 0, 0, 0, 1, 8, 1, 0, 0], [0, 0, 2, 8, 8, 8, 2, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 2, 8, 8, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 8, 8, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 8, 8, 8, 8, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 8, 8, 8, 8, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 8, 8, 8, 8, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 8, 8, 2, 0, 0, 0, 0, 0, 0], [0, 2, 8, 8, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 8, 8, 8, 8, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [3, 3, 3, 3, 0, 0, 2, 2, 2, 2, 0, 0, 0], [3, 3, 3, 3, 0, 0, 2, 2, 2, 2, 0, 0, 0], [3, 3, 3, 3, 0, 0, 2, 2, 2, 2, 0, 0, 0], [3, 3, 3, 3, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [3, 3, 3, 3, 0, 0, 2, 8, 8, 2, 0, 0, 0], [3, 8, 8, 3, 0, 0, 2, 8, 8, 2, 0, 0, 0], [3, 8, 8, 3, 0, 0, 2, 8, 8, 2, 0, 0, 0], [3, 3, 3, 3, 0, 0, 2, 8, 8, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0], [0, 0, 1, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0]]}], "test": [{"input": [[0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 3, 3, 3, 3], [0, 0, 2, 2, 2, 2, 2, 2, 0, 3, 3, 3, 3], [0, 0, 2, 2, 2, 2, 2, 2, 0, 3, 3, 3, 3], [0, 0, 2, 2, 2, 2, 2, 2, 0, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3]], "output": [[0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 8, 8, 8, 1, 0, 0, 1, 1, 1, 0, 0], [0, 1, 8, 8, 8, 1, 0, 0, 1, 8, 1, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 8, 8, 8, 8, 2, 0, 0, 0, 0, 0], [0, 0, 2, 8, 8, 8, 8, 2, 0, 3, 3, 3, 3], [0, 0, 2, 8, 8, 8, 8, 2, 0, 3, 8, 8, 3], [0, 0, 2, 8, 8, 8, 8, 2, 0, 3, 8, 8, 3], [0, 0, 2, 2, 2, 2, 2, 2, 0, 3, 8, 8, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 8, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 8, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/5117e062.json b/data/arc-agi/training/5117e062.json
deleted file mode 100644
index 0e254eb..0000000
--- a/data/arc-agi/training/5117e062.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 3, 3, 3, 0, 0, 0, 0, 0, 4, 8, 4, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 4, 0], [4, 4, 4], [0, 4, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 3, 3], [3, 3, 0], [0, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2], [0, 2, 0], [2, 2, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 7, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 7, 7], [7, 7, 7], [0, 7, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/5168d44c.json b/data/arc-agi/training/5168d44c.json
deleted file mode 100644
index 3564e94..0000000
--- a/data/arc-agi/training/5168d44c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 2, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 2, 3, 2, 3, 0, 3, 0, 3, 0, 3, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 2, 3, 2, 0], [0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0]], "output": [[0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 2, 3, 2, 0], [0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0]]}, {"input": [[0, 0, 3, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0], [0, 2, 3, 2, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0]], "output": [[0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0], [0, 2, 3, 2, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [3, 0, 3, 0, 3, 0, 3, 2, 3, 2, 3, 0, 3, 0, 3, 0, 3], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [3, 0, 3, 0, 3, 0, 3, 0, 3, 2, 3, 2, 3, 0, 3, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/539a4f51.json b/data/arc-agi/training/539a4f51.json
deleted file mode 100644
index 3e1f1f7..0000000
--- a/data/arc-agi/training/539a4f51.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 2, 3, 0], [2, 2, 2, 3, 0], [2, 2, 2, 3, 0], [3, 3, 3, 3, 0], [0, 0, 0, 0, 0]], "output": [[2, 2, 2, 3, 2, 2, 2, 3, 2, 2], [2, 2, 2, 3, 2, 2, 2, 3, 2, 2], [2, 2, 2, 3, 2, 2, 2, 3, 2, 2], [3, 3, 3, 3, 2, 2, 2, 3, 2, 2], [2, 2, 2, 2, 2, 2, 2, 3, 2, 2], [2, 2, 2, 2, 2, 2, 2, 3, 2, 2], [2, 2, 2, 2, 2, 2, 2, 3, 2, 2], [3, 3, 3, 3, 3, 3, 3, 3, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}, {"input": [[1, 1, 4, 6, 0], [1, 1, 4, 6, 0], [4, 4, 4, 6, 0], [6, 6, 6, 6, 0], [0, 0, 0, 0, 0]], "output": [[1, 1, 4, 6, 1, 1, 4, 6, 1, 1], [1, 1, 4, 6, 1, 1, 4, 6, 1, 1], [4, 4, 4, 6, 1, 1, 4, 6, 1, 1], [6, 6, 6, 6, 1, 1, 4, 6, 1, 1], [1, 1, 1, 1, 1, 1, 4, 6, 1, 1], [1, 1, 1, 1, 1, 1, 4, 6, 1, 1], [4, 4, 4, 4, 4, 4, 4, 6, 1, 1], [6, 6, 6, 6, 6, 6, 6, 6, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[2, 3, 4, 1, 6], [3, 3, 4, 1, 6], [4, 4, 4, 1, 6], [1, 1, 1, 1, 6], [6, 6, 6, 6, 6]], "output": [[2, 3, 4, 1, 6, 2, 3, 4, 1, 6], [3, 3, 4, 1, 6, 2, 3, 4, 1, 6], [4, 4, 4, 1, 6, 2, 3, 4, 1, 6], [1, 1, 1, 1, 6, 2, 3, 4, 1, 6], [6, 6, 6, 6, 6, 2, 3, 4, 1, 6], [2, 2, 2, 2, 2, 2, 3, 4, 1, 6], [3, 3, 3, 3, 3, 3, 3, 4, 1, 6], [4, 4, 4, 4, 4, 4, 4, 4, 1, 6], [1, 1, 1, 1, 1, 1, 1, 1, 1, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6]]}], "test": [{"input": [[7, 7, 3, 2, 2], [7, 7, 3, 2, 2], [3, 3, 3, 2, 2], [2, 2, 2, 2, 2], [2, 2, 2, 2, 2]], "output": [[7, 7, 3, 2, 2, 7, 7, 3, 2, 2], [7, 7, 3, 2, 2, 7, 7, 3, 2, 2], [3, 3, 3, 2, 2, 7, 7, 3, 2, 2], [2, 2, 2, 2, 2, 7, 7, 3, 2, 2], [2, 2, 2, 2, 2, 7, 7, 3, 2, 2], [7, 7, 7, 7, 7, 7, 7, 3, 2, 2], [7, 7, 7, 7, 7, 7, 7, 3, 2, 2], [3, 3, 3, 3, 3, 3, 3, 3, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/53b68214.json b/data/arc-agi/training/53b68214.json
deleted file mode 100644
index 0d6ae2d..0000000
--- a/data/arc-agi/training/53b68214.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0]], "output": [[1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/543a7ed5.json b/data/arc-agi/training/543a7ed5.json
deleted file mode 100644
index bd783e1..0000000
--- a/data/arc-agi/training/543a7ed5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 6, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8, 6, 8, 8, 8], [8, 8, 8, 6, 6, 8, 8, 8, 6, 8, 8, 6, 8, 8, 8], [8, 8, 8, 6, 6, 8, 8, 8, 6, 8, 8, 6, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 6, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8], [8, 8, 8, 8, 8, 8, 8, 3, 6, 6, 6, 6, 3, 8, 8], [8, 8, 3, 3, 3, 3, 8, 3, 6, 4, 4, 6, 3, 8, 8], [8, 8, 3, 6, 6, 3, 8, 3, 6, 4, 4, 6, 3, 8, 8], [8, 8, 3, 6, 6, 3, 8, 3, 6, 4, 4, 6, 3, 8, 8], [8, 8, 3, 3, 3, 3, 8, 3, 6, 6, 6, 6, 3, 8, 8], [8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8], [8, 8, 8, 8, 3, 6, 6, 6, 6, 3, 8, 8, 8, 8, 8], [8, 8, 8, 8, 3, 6, 6, 6, 6, 3, 8, 8, 8, 8, 8], [8, 8, 8, 8, 3, 6, 6, 6, 6, 3, 8, 8, 8, 8, 8], [8, 8, 8, 8, 3, 6, 6, 6, 6, 3, 8, 8, 8, 8, 8], [8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 8, 8, 8, 8], [8, 8, 6, 6, 6, 6, 8, 8, 6, 6, 6, 8, 8, 8, 8], [8, 8, 6, 8, 6, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 6, 8, 6, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 6, 6, 6, 8], [8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 6, 8], [8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 6, 8], [8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 6, 8], [8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 8, 8, 8, 6, 8], [8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 6, 6, 6, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 3, 6, 6, 6, 3, 8, 8, 8], [8, 3, 3, 3, 3, 3, 3, 3, 6, 6, 6, 3, 8, 8, 8], [8, 3, 6, 6, 6, 6, 3, 3, 6, 6, 6, 3, 8, 8, 8], [8, 3, 6, 4, 6, 6, 3, 3, 3, 3, 3, 3, 8, 8, 8], [8, 3, 6, 4, 6, 6, 3, 8, 8, 8, 8, 8, 8, 8, 8], [8, 3, 6, 6, 6, 6, 3, 8, 8, 8, 8, 8, 8, 8, 8], [8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [8, 8, 8, 8, 8, 8, 8, 3, 6, 6, 6, 6, 6, 6, 3], [8, 8, 8, 8, 8, 8, 8, 3, 6, 4, 4, 4, 4, 6, 3], [8, 8, 8, 8, 8, 8, 8, 3, 6, 4, 4, 4, 4, 6, 3], [8, 8, 8, 8, 8, 8, 8, 3, 6, 4, 4, 4, 4, 6, 3], [8, 8, 8, 8, 8, 8, 8, 3, 6, 4, 4, 4, 4, 6, 3], [8, 8, 8, 8, 8, 8, 8, 3, 6, 6, 6, 6, 6, 6, 3], [8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3]]}], "test": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 8, 8, 8], [8, 8, 6, 6, 6, 6, 8, 8, 8, 6, 6, 6, 8, 8, 8], [8, 8, 6, 8, 8, 6, 8, 8, 8, 6, 8, 6, 8, 8, 8], [8, 8, 6, 8, 8, 6, 8, 8, 8, 6, 8, 6, 8, 8, 8], [8, 8, 6, 6, 6, 6, 8, 8, 8, 6, 8, 6, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 6, 6, 6, 6, 6, 6, 6, 8, 8, 8, 8], [8, 8, 8, 8, 6, 6, 8, 8, 6, 6, 6, 8, 8, 8, 8], [8, 8, 8, 8, 6, 6, 6, 6, 6, 6, 6, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 8, 8], [8, 3, 3, 3, 3, 3, 3, 8, 3, 6, 6, 6, 3, 8, 8], [8, 3, 6, 6, 6, 6, 3, 8, 3, 6, 6, 6, 3, 8, 8], [8, 3, 6, 4, 4, 6, 3, 8, 3, 6, 4, 6, 3, 8, 8], [8, 3, 6, 4, 4, 6, 3, 8, 3, 6, 4, 6, 3, 8, 8], [8, 3, 6, 6, 6, 6, 3, 8, 3, 6, 4, 6, 3, 8, 8], [8, 3, 3, 3, 3, 3, 3, 8, 3, 6, 6, 6, 3, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8], [8, 8, 8, 3, 6, 6, 6, 6, 6, 6, 6, 3, 8, 8, 8], [8, 8, 8, 3, 6, 6, 4, 4, 6, 6, 6, 3, 8, 8, 8], [8, 8, 8, 3, 6, 6, 6, 6, 6, 6, 6, 3, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/54d82841.json b/data/arc-agi/training/54d82841.json
deleted file mode 100644
index 0338f08..0000000
--- a/data/arc-agi/training/54d82841.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 6, 6, 6, 0, 0, 0, 0], [0, 6, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6], [0, 0, 0, 0, 0, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 6, 6, 6, 0, 0, 0, 0], [0, 6, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 6], [0, 0, 0, 0, 0, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 4, 0]]}, {"input": [[0, 3, 3, 3, 0], [0, 3, 0, 3, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[0, 3, 3, 3, 0], [0, 3, 0, 3, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 4, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0], [0, 8, 0, 8, 6, 6, 6], [0, 0, 0, 0, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0], [0, 8, 0, 8, 6, 6, 6], [0, 0, 0, 0, 6, 0, 6], [0, 0, 4, 0, 0, 4, 0]]}], "test": [{"input": [[0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 5, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 8, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 5, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 8, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 4, 0, 0, 4, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/54d9e175.json b/data/arc-agi/training/54d9e175.json
deleted file mode 100644
index d1f0c69..0000000
--- a/data/arc-agi/training/54d9e175.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 1, 0, 5, 0, 2, 0, 5, 0, 1, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0]], "output": [[6, 6, 6, 5, 7, 7, 7, 5, 6, 6, 6], [6, 6, 6, 5, 7, 7, 7, 5, 6, 6, 6], [6, 6, 6, 5, 7, 7, 7, 5, 6, 6, 6]]}, {"input": [[0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 2, 0, 5, 0, 3, 0, 5, 0, 1, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0]], "output": [[7, 7, 7, 5, 8, 8, 8, 5, 6, 6, 6], [7, 7, 7, 5, 8, 8, 8, 5, 6, 6, 6], [7, 7, 7, 5, 8, 8, 8, 5, 6, 6, 6]]}, {"input": [[0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 3, 0, 5, 0, 1, 0, 5, 0, 4, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0]], "output": [[8, 8, 8, 5, 6, 6, 6, 5, 9, 9, 9], [8, 8, 8, 5, 6, 6, 6, 5, 9, 9, 9], [8, 8, 8, 5, 6, 6, 6, 5, 9, 9, 9]]}, {"input": [[0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 4, 0, 5, 0, 1, 0, 5, 0, 2, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 2, 0, 5, 0, 3, 0, 5, 0, 4, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0]], "output": [[9, 9, 9, 5, 6, 6, 6, 5, 7, 7, 7], [9, 9, 9, 5, 6, 6, 6, 5, 7, 7, 7], [9, 9, 9, 5, 6, 6, 6, 5, 7, 7, 7], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [7, 7, 7, 5, 8, 8, 8, 5, 9, 9, 9], [7, 7, 7, 5, 8, 8, 8, 5, 9, 9, 9], [7, 7, 7, 5, 8, 8, 8, 5, 9, 9, 9]]}], "test": [{"input": [[0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 2, 0, 5, 0, 3, 0, 5, 0, 4, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 1, 0, 5, 0, 1, 0, 5, 0, 3, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0]], "output": [[7, 7, 7, 5, 8, 8, 8, 5, 9, 9, 9], [7, 7, 7, 5, 8, 8, 8, 5, 9, 9, 9], [7, 7, 7, 5, 8, 8, 8, 5, 9, 9, 9], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [6, 6, 6, 5, 6, 6, 6, 5, 8, 8, 8], [6, 6, 6, 5, 6, 6, 6, 5, 8, 8, 8], [6, 6, 6, 5, 6, 6, 6, 5, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/5521c0d9.json b/data/arc-agi/training/5521c0d9.json
deleted file mode 100644
index 1aae991..0000000
--- a/data/arc-agi/training/5521c0d9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0], [0, 1, 1, 0, 2, 2, 2, 2, 0, 4, 4, 4, 4, 0, 0], [0, 1, 1, 0, 2, 2, 2, 2, 0, 4, 4, 4, 4, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 4, 4, 4, 4, 0, 0, 1, 1, 0, 0, 2, 2, 0, 0], [0, 4, 4, 4, 4, 0, 0, 1, 1, 0, 0, 2, 2, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 4, 0, 0], [0, 2, 2, 2, 2, 0, 0, 1, 0, 0, 0, 4, 4, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 4, 4, 4, 0, 0, 1, 1, 1, 1, 1], [2, 2, 2, 2, 0, 4, 4, 4, 0, 0, 1, 1, 1, 1, 1], [2, 2, 2, 2, 0, 4, 4, 4, 0, 0, 1, 1, 1, 1, 1]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/5582e5ca.json b/data/arc-agi/training/5582e5ca.json
deleted file mode 100644
index b3c2831..0000000
--- a/data/arc-agi/training/5582e5ca.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 4, 8], [6, 4, 3], [6, 3, 0]], "output": [[4, 4, 4], [4, 4, 4], [4, 4, 4]]}, {"input": [[6, 8, 9], [1, 8, 1], [9, 4, 9]], "output": [[9, 9, 9], [9, 9, 9], [9, 9, 9]]}, {"input": [[4, 6, 9], [6, 4, 1], [8, 8, 6]], "output": [[6, 6, 6], [6, 6, 6], [6, 6, 6]]}], "test": [{"input": [[8, 8, 6], [4, 6, 9], [8, 3, 0]], "output": [[8, 8, 8], [8, 8, 8], [8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/5614dbcf.json b/data/arc-agi/training/5614dbcf.json
deleted file mode 100644
index aef4261..0000000
--- a/data/arc-agi/training/5614dbcf.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 3, 3, 0, 0, 0, 8, 8, 8], [3, 3, 3, 0, 0, 0, 8, 5, 8], [3, 3, 3, 0, 0, 0, 8, 8, 8], [0, 0, 0, 7, 5, 7, 0, 0, 0], [0, 0, 0, 7, 7, 7, 0, 0, 0], [0, 0, 0, 7, 7, 7, 0, 0, 0], [6, 6, 6, 0, 0, 5, 9, 9, 9], [6, 6, 6, 0, 0, 0, 9, 9, 9], [6, 5, 6, 0, 5, 0, 9, 9, 5]], "output": [[3, 0, 8], [0, 7, 0], [6, 0, 9]]}, {"input": [[0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 5, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 7, 7, 7, 0, 0, 0], [0, 0, 0, 7, 7, 5, 0, 0, 0], [0, 0, 0, 7, 7, 7, 0, 0, 0]], "output": [[0, 2, 0], [0, 0, 0], [0, 7, 0]]}], "test": [{"input": [[4, 4, 4, 0, 0, 0, 0, 5, 0], [5, 4, 4, 0, 0, 0, 0, 0, 0], [4, 4, 4, 0, 5, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 5, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 5, 9, 9, 9, 0, 0, 0], [0, 0, 0, 9, 5, 9, 0, 0, 0], [0, 0, 0, 9, 9, 9, 0, 0, 0]], "output": [[4, 0, 0], [0, 3, 0], [0, 9, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/56dc2b01.json b/data/arc-agi/training/56dc2b01.json
deleted file mode 100644
index 12df578..0000000
--- a/data/arc-agi/training/56dc2b01.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 3, 3, 3, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 3, 3, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 3, 3, 3, 2, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0], [3, 3, 0, 0, 0], [3, 0, 0, 0, 0], [3, 3, 0, 3, 3], [0, 3, 3, 3, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [2, 2, 2, 2, 2], [0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [8, 8, 8, 8, 8], [3, 3, 0, 0, 0], [3, 0, 0, 0, 0], [3, 3, 0, 3, 3], [0, 3, 3, 3, 0], [2, 2, 2, 2, 2], [0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [2, 2, 2, 2, 2], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [3, 3, 3, 3, 0], [3, 0, 0, 3, 0], [3, 3, 0, 3, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [2, 2, 2, 2, 2], [3, 3, 3, 3, 0], [3, 0, 0, 3, 0], [3, 3, 0, 3, 0], [8, 8, 8, 8, 8], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 2, 0, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 3, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 3, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 3, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/56ff96f3.json b/data/arc-agi/training/56ff96f3.json
deleted file mode 100644
index 73ee791..0000000
--- a/data/arc-agi/training/56ff96f3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 3, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0], [0, 3, 3, 0, 7, 7, 7, 7], [0, 3, 3, 0, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0], [0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0], [0, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 0, 0], [0, 6, 6, 6, 6, 6, 0, 0], [0, 6, 6, 6, 6, 6, 0, 0], [0, 6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/57aa92db.json b/data/arc-agi/training/57aa92db.json
deleted file mode 100644
index 73a6619..0000000
--- a/data/arc-agi/training/57aa92db.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 1, 1, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 4, 4, 4, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 4, 4, 4, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 4, 4, 4, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 1, 8, 0, 0, 0, 0, 4, 4, 4, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 4, 4, 4, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 1, 8, 0, 0, 0, 0, 4, 4, 4, 1, 1, 1, 4, 4, 4, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 4, 4, 4, 1, 1, 1, 4, 4, 4, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 1, 1, 1, 4, 4, 4, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 2, 2, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 0, 2, 2, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 0], [0, 0, 0, 0, 3, 3, 1, 1, 3, 3, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 0], [0, 0, 0, 0, 3, 3, 1, 1, 3, 3, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/5ad4f10b.json b/data/arc-agi/training/5ad4f10b.json
deleted file mode 100644
index f96f21e..0000000
--- a/data/arc-agi/training/5ad4f10b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 8, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 8, 8, 0, 8, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 8, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 8, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0]], "output": [[8, 0, 8], [0, 8, 0], [8, 8, 8]]}, {"input": [[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 2, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 1, 1, 1, 0, 0, 2, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 1, 1, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 2], [0, 2, 0], [2, 0, 0]]}, {"input": [[0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 3, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 3, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 0, 3, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 0, 3, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0]], "output": [[0, 3, 0], [0, 3, 3], [3, 0, 3]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 4, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 4, 0, 0, 0, 0, 4, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 4], [0, 4, 0, 4, 4, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0]], "output": [[4, 0, 4], [0, 4, 4], [0, 0, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/5bd6f4ac.json b/data/arc-agi/training/5bd6f4ac.json
deleted file mode 100644
index c121d92..0000000
--- a/data/arc-agi/training/5bd6f4ac.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 0, 0, 7, 0, 0, 9, 7, 0], [8, 4, 0, 6, 6, 0, 4, 8, 4], [1, 7, 0, 0, 0, 0, 4, 0, 0], [1, 1, 0, 9, 1, 0, 7, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0], [8, 0, 0, 1, 7, 0, 8, 4, 0], [0, 7, 0, 9, 9, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 2, 4, 0, 8, 0, 0]], "output": [[9, 7, 0], [4, 8, 4], [4, 0, 0]]}, {"input": [[9, 0, 0, 0, 0, 0, 0, 6, 0], [0, 4, 0, 7, 0, 5, 0, 8, 1], [0, 2, 0, 0, 7, 1, 4, 4, 5], [0, 6, 0, 0, 4, 0, 0, 0, 0], [8, 3, 0, 4, 2, 0, 0, 9, 7], [0, 0, 2, 3, 0, 2, 0, 6, 7], [4, 0, 4, 0, 3, 4, 7, 0, 7], [7, 1, 0, 0, 0, 0, 3, 0, 0], [3, 2, 0, 0, 4, 0, 0, 0, 0]], "output": [[0, 6, 0], [0, 8, 1], [4, 4, 5]]}, {"input": [[2, 5, 0, 0, 6, 0, 0, 0, 0], [2, 5, 5, 7, 0, 0, 6, 0, 1], [0, 3, 0, 0, 0, 1, 9, 4, 0], [0, 7, 0, 6, 0, 0, 0, 0, 0], [0, 9, 0, 0, 0, 1, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 4], [0, 5, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0], [6, 0, 1], [9, 4, 0]]}, {"input": [[0, 5, 0, 0, 8, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 2, 1, 0, 0, 3], [0, 1, 0, 0, 0, 0, 3, 0, 0], [1, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 4, 0, 0, 0, 0, 0], [3, 0, 7, 0, 0, 2, 0, 0, 6]], "output": [[0, 0, 4], [3, 0, 0], [0, 0, 3]]}], "test": [{"input": [[6, 9, 0, 0, 1, 0, 5, 8, 9], [2, 9, 0, 6, 0, 8, 0, 9, 0], [0, 0, 0, 0, 0, 9, 9, 2, 0], [9, 2, 6, 0, 0, 8, 0, 6, 8], [7, 7, 4, 0, 7, 0, 9, 0, 0], [0, 0, 7, 0, 0, 1, 5, 7, 4], [4, 1, 0, 0, 7, 5, 0, 0, 9], [9, 9, 0, 0, 0, 0, 1, 0, 0], [4, 9, 2, 0, 0, 0, 8, 4, 0]], "output": [[5, 8, 9], [0, 9, 0], [9, 2, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/5c0a986e.json b/data/arc-agi/training/5c0a986e.json
deleted file mode 100644
index e319b27..0000000
--- a/data/arc-agi/training/5c0a986e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0]]}, {"input": [[0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [1, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 2], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 1, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 2, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/5c2c9af4.json b/data/arc-agi/training/5c2c9af4.json
deleted file mode 100644
index 6432f4c..0000000
--- a/data/arc-agi/training/5c2c9af4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 2, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 0, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 0, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 2, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0], [0, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/5daaa586.json b/data/arc-agi/training/5daaa586.json
deleted file mode 100644
index b026326..0000000
--- a/data/arc-agi/training/5daaa586.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 8, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 0]], "output": [[3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8], [3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 8], [3, 0, 0, 0, 2, 0, 0, 0, 0, 2, 2, 8], [3, 0, 0, 0, 2, 0, 0, 0, 0, 2, 2, 8], [3, 0, 0, 0, 2, 0, 0, 0, 0, 2, 2, 8], [3, 0, 0, 0, 2, 0, 0, 0, 0, 2, 2, 8], [3, 0, 2, 0, 2, 0, 0, 0, 0, 2, 2, 8], [3, 0, 2, 0, 2, 0, 0, 0, 0, 2, 2, 8], [3, 2, 2, 0, 2, 0, 0, 0, 0, 2, 2, 8], [3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8]]}, {"input": [[0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0], [8, 8, 4, 8, 8, 8, 8, 8, 8, 1, 8, 8], [0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 4, 0, 0, 0, 8, 0, 0, 1, 0, 8], [0, 0, 4, 8, 0, 0, 8, 0, 0, 1, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 4, 0, 0, 0, 0, 8, 0, 1, 0, 8], [6, 6, 6, 6, 6, 6, 6, 6, 6, 1, 6, 6], [0, 0, 4, 0, 0, 0, 8, 0, 0, 1, 0, 0], [0, 8, 4, 0, 0, 0, 0, 8, 0, 1, 0, 0]], "output": [[4, 8, 8, 8, 8, 8, 8, 1], [4, 8, 0, 0, 8, 8, 0, 1], [4, 8, 0, 0, 8, 8, 0, 1], [4, 8, 0, 0, 8, 8, 0, 1], [4, 8, 0, 0, 8, 8, 0, 1], [4, 0, 0, 0, 0, 8, 0, 1], [4, 0, 0, 0, 0, 8, 0, 1], [6, 6, 6, 6, 6, 6, 6, 1]]}, {"input": [[0, 0, 4, 3, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 3, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 3, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 3, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 4], [2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 4, 2, 2, 2], [4, 0, 0, 3, 4, 4, 0, 4, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [4, 0, 0, 3, 0, 0, 0, 0, 4, 0, 4, 4, 0, 0, 0], [4, 0, 0, 3, 0, 0, 4, 0, 0, 0, 4, 4, 0, 0, 0], [8, 8, 8, 3, 8, 8, 8, 8, 8, 8, 8, 4, 8, 8, 8], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 4], [0, 0, 0, 3, 4, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0], [0, 0, 4, 3, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0]], "output": [[3, 2, 2, 2, 2, 2, 2, 2, 4], [3, 4, 4, 4, 4, 4, 4, 4, 4], [3, 0, 0, 0, 0, 0, 0, 0, 4], [3, 0, 0, 0, 0, 4, 4, 4, 4], [3, 0, 0, 4, 4, 4, 4, 4, 4], [3, 8, 8, 8, 8, 8, 8, 8, 4]]}], "test": [{"input": [[0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 2, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0], [3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3], [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 2, 0, 0], [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0], [0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 2, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0]], "output": [[1, 3, 3, 3, 3, 3, 3, 3, 3, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 1, 1, 1, 1, 1, 1, 1, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 1, 1, 1, 1, 1, 0, 0, 0, 2], [1, 1, 1, 1, 1, 1, 1, 1, 0, 2], [1, 1, 1, 1, 1, 1, 1, 0, 0, 2], [1, 1, 0, 0, 0, 0, 0, 0, 0, 2], [1, 1, 1, 1, 1, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/60b61512.json b/data/arc-agi/training/60b61512.json
deleted file mode 100644
index a5e5d1f..0000000
--- a/data/arc-agi/training/60b61512.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 0, 0, 0, 0, 0, 0], [4, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 0], [0, 0, 0, 0, 0, 4, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 0, 0, 0, 0, 0, 0], [4, 7, 4, 0, 0, 0, 0, 0, 0], [7, 7, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 7, 0], [0, 0, 0, 0, 0, 7, 4, 4, 0], [0, 0, 0, 0, 0, 4, 7, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 0, 0], [4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 0, 0, 0, 0, 0, 0], [7, 4, 4, 0, 0, 0, 0, 0, 0], [4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 0, 0, 0, 0, 7, 4, 7, 0], [0, 0, 0, 0, 0, 7, 4, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 4, 0, 0, 0, 0], [0, 0, 4, 4, 7, 0, 0, 0, 0], [0, 0, 4, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 7, 7, 0], [0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 0, 0, 0, 0, 7, 4, 7, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6150a2bd.json b/data/arc-agi/training/6150a2bd.json
deleted file mode 100644
index 88b20f5..0000000
--- a/data/arc-agi/training/6150a2bd.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 3, 8], [3, 7, 0], [5, 0, 0]], "output": [[0, 0, 5], [0, 7, 3], [8, 3, 3]]}, {"input": [[5, 5, 2], [1, 0, 0], [0, 0, 0]], "output": [[0, 0, 0], [0, 0, 1], [2, 5, 5]]}], "test": [{"input": [[6, 3, 5], [6, 8, 0], [4, 0, 0]], "output": [[0, 0, 4], [0, 8, 6], [5, 3, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/623ea044.json b/data/arc-agi/training/623ea044.json
deleted file mode 100644
index 0e79a56..0000000
--- a/data/arc-agi/training/623ea044.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 8, 0], [8, 0, 0, 0, 8, 0, 0], [0, 8, 0, 8, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0], [0, 8, 0, 8, 0, 0, 0], [8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/62c24649.json b/data/arc-agi/training/62c24649.json
deleted file mode 100644
index b3d58f7..0000000
--- a/data/arc-agi/training/62c24649.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 3, 3], [0, 2, 2], [1, 1, 0]], "output": [[3, 3, 3, 3, 3, 3], [0, 2, 2, 2, 2, 0], [1, 1, 0, 0, 1, 1], [1, 1, 0, 0, 1, 1], [0, 2, 2, 2, 2, 0], [3, 3, 3, 3, 3, 3]]}, {"input": [[3, 3, 1], [1, 3, 0], [0, 2, 2]], "output": [[3, 3, 1, 1, 3, 3], [1, 3, 0, 0, 3, 1], [0, 2, 2, 2, 2, 0], [0, 2, 2, 2, 2, 0], [1, 3, 0, 0, 3, 1], [3, 3, 1, 1, 3, 3]]}, {"input": [[2, 1, 0], [0, 2, 3], [0, 3, 0]], "output": [[2, 1, 0, 0, 1, 2], [0, 2, 3, 3, 2, 0], [0, 3, 0, 0, 3, 0], [0, 3, 0, 0, 3, 0], [0, 2, 3, 3, 2, 0], [2, 1, 0, 0, 1, 2]]}], "test": [{"input": [[1, 1, 0], [0, 3, 2], [3, 3, 0]], "output": [[1, 1, 0, 0, 1, 1], [0, 3, 2, 2, 3, 0], [3, 3, 0, 0, 3, 3], [3, 3, 0, 0, 3, 3], [0, 3, 2, 2, 3, 0], [1, 1, 0, 0, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/63613498.json b/data/arc-agi/training/63613498.json
deleted file mode 100644
index d52a85f..0000000
--- a/data/arc-agi/training/63613498.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 0, 5, 0, 0, 0, 7, 0, 0], [0, 1, 1, 5, 0, 0, 7, 7, 7, 0], [0, 0, 1, 5, 0, 0, 0, 7, 0, 0], [5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 6, 0, 0, 0], [7, 7, 7, 0, 0, 0, 6, 6, 0, 0], [0, 0, 7, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0]], "output": [[1, 1, 0, 5, 0, 0, 0, 7, 0, 0], [0, 1, 1, 5, 0, 0, 7, 7, 7, 0], [0, 0, 1, 5, 0, 0, 0, 7, 0, 0], [5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0], [7, 7, 7, 0, 0, 0, 5, 5, 0, 0], [0, 0, 7, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0]]}, {"input": [[0, 3, 0, 5, 0, 0, 0, 0, 0, 0], [3, 3, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 4, 4, 0, 0], [5, 5, 5, 5, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 9, 0], [8, 8, 0, 0, 0, 0, 0, 9, 9, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 3, 0, 5, 0, 0, 0, 0, 0, 0], [3, 3, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 4, 4, 0, 0], [5, 5, 5, 5, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [8, 8, 0, 0, 0, 0, 0, 5, 5, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 4, 0, 5, 0, 0, 0, 1, 0, 0], [4, 4, 4, 5, 0, 0, 1, 1, 1, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 4, 0, 5, 0, 0, 0, 5, 0, 0], [4, 4, 4, 5, 0, 0, 5, 5, 5, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 5, 0, 0, 0, 6, 0, 0], [2, 2, 2, 5, 0, 0, 0, 6, 6, 0], [0, 0, 2, 5, 0, 0, 0, 6, 0, 0], [5, 5, 5, 5, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 4, 0], [8, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 7, 7, 7, 0, 4, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0]], "output": [[0, 0, 0, 5, 0, 0, 0, 6, 0, 0], [2, 2, 2, 5, 0, 0, 0, 6, 6, 0], [0, 0, 2, 5, 0, 0, 0, 6, 0, 0], [5, 5, 5, 5, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 4, 0], [8, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 5, 5, 5, 0, 4, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6430c8c4.json b/data/arc-agi/training/6430c8c4.json
deleted file mode 100644
index d3065cd..0000000
--- a/data/arc-agi/training/6430c8c4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[7, 7, 7, 7], [0, 7, 7, 7], [7, 0, 0, 0], [7, 0, 7, 0], [4, 4, 4, 4], [0, 2, 2, 2], [0, 0, 0, 0], [2, 0, 2, 2], [0, 2, 0, 0]], "output": [[0, 0, 0, 0], [3, 0, 0, 0], [0, 3, 0, 0], [0, 0, 0, 3]]}], "train": [{"input": [[7, 7, 0, 7], [0, 7, 7, 0], [0, 7, 7, 7], [0, 7, 7, 0], [4, 4, 4, 4], [0, 0, 0, 0], [0, 2, 0, 2], [2, 2, 2, 0], [2, 0, 0, 2]], "output": [[0, 0, 3, 0], [3, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]}, {"input": [[0, 0, 7, 7], [0, 0, 7, 7], [0, 7, 7, 0], [7, 7, 0, 0], [4, 4, 4, 4], [2, 0, 2, 0], [0, 2, 0, 2], [0, 2, 2, 0], [0, 0, 2, 0]], "output": [[0, 3, 0, 0], [3, 0, 0, 0], [3, 0, 0, 3], [0, 0, 0, 3]]}, {"input": [[0, 0, 0, 7], [0, 7, 7, 7], [0, 7, 0, 0], [0, 7, 7, 7], [4, 4, 4, 4], [0, 0, 2, 0], [0, 2, 2, 2], [2, 2, 0, 0], [0, 2, 0, 2]], "output": [[3, 3, 0, 0], [3, 0, 0, 0], [0, 0, 3, 3], [3, 0, 0, 0]]}, {"input": [[7, 0, 7, 0], [0, 0, 7, 7], [7, 0, 7, 7], [7, 7, 0, 0], [4, 4, 4, 4], [0, 0, 2, 2], [0, 0, 0, 0], [2, 0, 0, 2], [0, 2, 0, 2]], "output": [[0, 3, 0, 0], [3, 3, 0, 0], [0, 3, 0, 0], [0, 0, 3, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6455b5f5.json b/data/arc-agi/training/6455b5f5.json
deleted file mode 100644
index f9efe83..0000000
--- a/data/arc-agi/training/6455b5f5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2], [0, 2, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 0, 0, 2, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2], [0, 2, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 0, 0, 2, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 8], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 2, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 2, 8, 8, 8, 2, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 2, 8, 8, 8, 2, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 2, 8, 8, 8, 2, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 2, 8, 8, 8, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 2, 8, 8, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 8, 8, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 8, 8, 2, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0]], "output": [[0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 8, 8], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 8, 8], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0], [2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [8, 8, 8, 2, 0, 0, 0, 0, 0, 0, 2, 8, 2, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 8, 2, 0, 0, 0], [8, 8, 8, 2, 0, 0, 0, 0, 0, 0, 2, 8, 2, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/662c240a.json b/data/arc-agi/training/662c240a.json
deleted file mode 100644
index b7289e9..0000000
--- a/data/arc-agi/training/662c240a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 9, 8], [9, 8, 8], [8, 8, 8], [2, 2, 1], [2, 2, 1], [1, 1, 2], [4, 4, 4], [4, 4, 3], [3, 3, 3]], "output": [[4, 4, 4], [4, 4, 3], [3, 3, 3]]}, {"input": [[1, 5, 5], [5, 1, 1], [5, 1, 1], [3, 3, 3], [3, 6, 3], [3, 6, 6], [7, 7, 7], [7, 2, 2], [7, 2, 2]], "output": [[3, 3, 3], [3, 6, 3], [3, 6, 6]]}, {"input": [[2, 2, 2], [2, 2, 3], [2, 3, 3], [5, 7, 7], [7, 5, 5], [7, 5, 5], [8, 8, 1], [1, 8, 1], [1, 8, 1]], "output": [[8, 8, 1], [1, 8, 1], [1, 8, 1]]}, {"input": [[8, 8, 4], [4, 4, 4], [4, 4, 8], [1, 1, 3], [1, 3, 3], [3, 3, 1], [6, 2, 2], [2, 2, 2], [2, 2, 6]], "output": [[8, 8, 4], [4, 4, 4], [4, 4, 8]]}], "test": [{"input": [[5, 4, 4], [4, 5, 4], [4, 5, 4], [3, 3, 2], [3, 3, 2], [2, 2, 3], [1, 1, 1], [1, 8, 8], [1, 8, 8]], "output": [[5, 4, 4], [4, 5, 4], [4, 5, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/67385a82.json b/data/arc-agi/training/67385a82.json
deleted file mode 100644
index e41a5ae..0000000
--- a/data/arc-agi/training/67385a82.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 3, 0], [0, 3, 0], [3, 0, 3]], "output": [[8, 8, 0], [0, 8, 0], [3, 0, 3]]}, {"input": [[0, 3, 0, 0, 0, 3], [0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 3, 0], [0, 3, 0, 0, 0, 0]], "output": [[0, 8, 0, 0, 0, 3], [0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 3, 0], [0, 3, 0, 0, 0, 0]]}, {"input": [[3, 3, 0, 3], [3, 3, 0, 0], [3, 0, 0, 3], [0, 0, 3, 3]], "output": [[8, 8, 0, 3], [8, 8, 0, 0], [8, 0, 0, 8], [0, 0, 8, 8]]}, {"input": [[3, 3, 0, 0, 0, 0], [0, 3, 0, 0, 3, 0], [3, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0], [0, 3, 3, 0, 0, 3]], "output": [[8, 8, 0, 0, 0, 0], [0, 8, 0, 0, 3, 0], [3, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0], [0, 8, 8, 0, 0, 3]]}], "test": [{"input": [[3, 0, 3, 0, 3], [3, 3, 3, 0, 0], [0, 0, 0, 0, 3], [0, 3, 3, 0, 0], [0, 3, 3, 0, 0]], "output": [[8, 0, 8, 0, 3], [8, 8, 8, 0, 0], [0, 0, 0, 0, 3], [0, 8, 8, 0, 0], [0, 8, 8, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/673ef223.json b/data/arc-agi/training/673ef223.json
deleted file mode 100644
index ad4c2ae..0000000
--- a/data/arc-agi/training/673ef223.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 8, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0], [2, 8, 8, 8, 4, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 2], [8, 8, 8, 8, 8, 8, 8, 2], [0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 8, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 8, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 8, 8, 8, 8, 8, 8, 4, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 8, 8, 8, 8, 4, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 8, 8, 8, 8, 8, 8, 8, 8, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 8, 8, 8, 8, 8, 8, 8, 8, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 8, 0, 0, 2], [0, 0, 8, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 8, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 4, 8, 8, 2], [0, 0, 4, 8, 8, 8, 8, 8, 8, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 4, 8, 8, 8, 8, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 8, 8, 8, 8, 8, 8, 8, 4, 0, 0, 0], [2, 8, 8, 8, 8, 8, 8, 4, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 8, 8, 8, 4, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6773b310.json b/data/arc-agi/training/6773b310.json
deleted file mode 100644
index 93f2561..0000000
--- a/data/arc-agi/training/6773b310.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [6, 0, 0, 8, 0, 6, 0, 8, 0, 0, 6], [0, 0, 6, 8, 0, 0, 0, 8, 0, 6, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 6, 0, 8, 0, 0, 6, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 6, 0, 8, 0, 0, 0, 8, 6, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 6, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 6, 0], [0, 0, 0, 8, 6, 0, 0, 8, 0, 0, 0]], "output": [[1, 0, 1], [1, 0, 0], [0, 0, 0]]}, {"input": [[6, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 6, 8, 0, 0, 6], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [6, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 6, 0], [0, 0, 0, 8, 0, 0, 6, 8, 6, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [6, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 6, 0, 8, 0, 6, 0, 8, 0, 0, 6]], "output": [[0, 0, 0], [0, 0, 1], [1, 0, 0]]}, {"input": [[0, 0, 0, 8, 0, 6, 0, 8, 0, 0, 6], [0, 0, 0, 8, 0, 0, 0, 8, 0, 6, 0], [0, 6, 0, 8, 0, 6, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 6, 0, 8, 0, 0, 0], [6, 0, 0, 8, 0, 0, 0, 8, 0, 6, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 6, 0, 0], [0, 6, 0, 8, 0, 0, 0, 8, 0, 0, 6], [0, 0, 0, 8, 6, 0, 0, 8, 0, 0, 0]], "output": [[0, 1, 1], [0, 0, 0], [0, 0, 1]]}, {"input": [[0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 6], [0, 0, 6, 8, 0, 0, 0, 8, 6, 0, 0], [0, 0, 0, 8, 0, 6, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 6, 0, 8, 0, 0, 0], [6, 0, 0, 8, 0, 0, 6, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 6, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 6, 8, 0, 0, 0, 8, 6, 0, 0], [0, 0, 0, 8, 0, 6, 0, 8, 0, 0, 0]], "output": [[0, 0, 1], [0, 1, 0], [0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 8, 0, 0, 0, 8, 6, 0, 6], [0, 6, 0, 8, 0, 0, 6, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 6, 0], [0, 0, 6, 8, 0, 6, 0, 8, 0, 0, 0], [0, 0, 0, 8, 6, 0, 0, 8, 0, 0, 6], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 6, 8, 0, 0, 0, 8, 0, 0, 0], [6, 0, 0, 8, 0, 0, 0, 8, 0, 6, 0], [0, 0, 0, 8, 0, 6, 0, 8, 0, 0, 0]], "output": [[0, 0, 1], [0, 1, 1], [1, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/67a3c6ac.json b/data/arc-agi/training/67a3c6ac.json
deleted file mode 100644
index 3f269a7..0000000
--- a/data/arc-agi/training/67a3c6ac.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[7, 6, 1], [6, 7, 6], [6, 2, 2]], "output": [[1, 6, 7], [6, 7, 6], [2, 2, 6]]}], "train": [{"input": [[6, 6, 6, 2], [6, 1, 6, 2], [7, 2, 7, 2], [1, 7, 2, 2]], "output": [[2, 6, 6, 6], [2, 6, 1, 6], [2, 7, 2, 7], [2, 2, 7, 1]]}, {"input": [[7, 7, 7, 6, 6, 6, 2], [6, 7, 1, 1, 7, 7, 1], [7, 7, 2, 1, 2, 6, 6], [2, 2, 7, 7, 7, 2, 2], [7, 2, 7, 1, 2, 7, 2], [6, 6, 6, 2, 2, 1, 1], [6, 2, 6, 6, 6, 6, 6]], "output": [[2, 6, 6, 6, 7, 7, 7], [1, 7, 7, 1, 1, 7, 6], [6, 6, 2, 1, 2, 7, 7], [2, 2, 7, 7, 7, 2, 2], [2, 7, 2, 1, 7, 2, 7], [1, 1, 2, 2, 6, 6, 6], [6, 6, 6, 6, 6, 2, 6]]}, {"input": [[1, 2, 7, 1, 1, 1], [2, 1, 7, 7, 2, 6], [2, 1, 2, 6, 2, 1], [1, 2, 1, 7, 6, 2], [2, 7, 1, 2, 7, 1], [2, 1, 6, 2, 7, 7]], "output": [[1, 1, 1, 7, 2, 1], [6, 2, 7, 7, 1, 2], [1, 2, 6, 2, 1, 2], [2, 6, 7, 1, 2, 1], [1, 7, 2, 1, 7, 2], [7, 7, 2, 6, 1, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/67a423a3.json b/data/arc-agi/training/67a423a3.json
deleted file mode 100644
index 2d62c48..0000000
--- a/data/arc-agi/training/67a423a3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 3, 0, 0], [2, 2, 2, 2], [0, 3, 0, 0], [0, 3, 0, 0]], "output": [[4, 4, 4, 0], [4, 2, 4, 2], [4, 4, 4, 0], [0, 3, 0, 0]]}, {"input": [[0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0], [8, 8, 8, 8, 6, 8, 8, 8], [0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0]], "output": [[0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0], [8, 8, 8, 4, 6, 4, 8, 8], [0, 0, 0, 4, 4, 4, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0]]}, {"input": [[0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0], [9, 9, 1, 9, 9, 9], [0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0]], "output": [[0, 0, 1, 0, 0, 0], [0, 4, 4, 4, 0, 0], [9, 4, 1, 4, 9, 9], [0, 4, 4, 4, 0, 0], [0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 5, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0], [3, 3, 3, 3, 3, 3, 3, 4, 5, 4, 3, 3], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/67e8384a.json b/data/arc-agi/training/67e8384a.json
deleted file mode 100644
index 5a9780f..0000000
--- a/data/arc-agi/training/67e8384a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[1, 6, 6], [5, 2, 2], [2, 2, 2]], "output": [[1, 6, 6, 6, 6, 1], [5, 2, 2, 2, 2, 5], [2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2], [5, 2, 2, 2, 2, 5], [1, 6, 6, 6, 6, 1]]}], "train": [{"input": [[5, 3, 4], [3, 4, 5], [3, 4, 4]], "output": [[5, 3, 4, 4, 3, 5], [3, 4, 5, 5, 4, 3], [3, 4, 4, 4, 4, 3], [3, 4, 4, 4, 4, 3], [3, 4, 5, 5, 4, 3], [5, 3, 4, 4, 3, 5]]}, {"input": [[7, 1, 5], [7, 7, 1], [5, 3, 1]], "output": [[7, 1, 5, 5, 1, 7], [7, 7, 1, 1, 7, 7], [5, 3, 1, 1, 3, 5], [5, 3, 1, 1, 3, 5], [7, 7, 1, 1, 7, 7], [7, 1, 5, 5, 1, 7]]}, {"input": [[2, 5, 2], [2, 6, 4], [2, 2, 2]], "output": [[2, 5, 2, 2, 5, 2], [2, 6, 4, 4, 6, 2], [2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2], [2, 6, 4, 4, 6, 2], [2, 5, 2, 2, 5, 2]]}, {"input": [[1, 2, 1], [2, 8, 1], [8, 1, 6]], "output": [[1, 2, 1, 1, 2, 1], [2, 8, 1, 1, 8, 2], [8, 1, 6, 6, 1, 8], [8, 1, 6, 6, 1, 8], [2, 8, 1, 1, 8, 2], [1, 2, 1, 1, 2, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/681b3aeb.json b/data/arc-agi/training/681b3aeb.json
deleted file mode 100644
index 071e114..0000000
--- a/data/arc-agi/training/681b3aeb.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 7, 7]], "output": [[3, 3, 7], [3, 7, 7], [3, 7, 7]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 4], [0, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 6, 6], [4, 6, 6], [4, 4, 6]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1], [1, 3, 1], [3, 3, 3]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 2], [8, 2, 2], [8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6855a6e4.json b/data/arc-agi/training/6855a6e4.json
deleted file mode 100644
index 3c21961..0000000
--- a/data/arc-agi/training/6855a6e4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0], [5, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 5, 5], [5, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 5, 5], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 5, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 5, 5, 0, 5, 5, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 5, 5, 0, 5, 5, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 5, 0, 2, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 0], [5, 5, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 5, 5, 0], [0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 5, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 5, 0, 0, 5, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 5, 5, 5, 5, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 5, 0, 5, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/68b16354.json b/data/arc-agi/training/68b16354.json
deleted file mode 100644
index 5f7e58e..0000000
--- a/data/arc-agi/training/68b16354.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[2, 8, 1, 3, 2, 4, 1], [4, 4, 1, 1, 4, 3, 4], [1, 1, 1, 1, 4, 7, 3], [1, 1, 2, 3, 8, 1, 3], [4, 1, 1, 1, 7, 8, 4], [3, 2, 8, 4, 1, 8, 4], [1, 4, 7, 1, 2, 3, 4]], "output": [[1, 4, 7, 1, 2, 3, 4], [3, 2, 8, 4, 1, 8, 4], [4, 1, 1, 1, 7, 8, 4], [1, 1, 2, 3, 8, 1, 3], [1, 1, 1, 1, 4, 7, 3], [4, 4, 1, 1, 4, 3, 4], [2, 8, 1, 3, 2, 4, 1]]}], "train": [{"input": [[8, 1, 2, 1, 4], [4, 4, 2, 4, 8], [3, 7, 2, 4, 8], [2, 7, 7, 8, 7], [8, 7, 7, 4, 8]], "output": [[8, 7, 7, 4, 8], [2, 7, 7, 8, 7], [3, 7, 2, 4, 8], [4, 4, 2, 4, 8], [8, 1, 2, 1, 4]]}, {"input": [[7, 3, 3, 1, 2], [1, 8, 2, 4, 1], [2, 7, 8, 7, 2], [7, 7, 4, 1, 8], [8, 1, 7, 7, 1]], "output": [[8, 1, 7, 7, 1], [7, 7, 4, 1, 8], [2, 7, 8, 7, 2], [1, 8, 2, 4, 1], [7, 3, 3, 1, 2]]}, {"input": [[2, 7, 4, 3, 4, 8, 3], [2, 3, 7, 1, 2, 3, 3], [8, 7, 4, 3, 2, 2, 4], [1, 1, 2, 1, 4, 4, 7], [2, 4, 3, 1, 1, 4, 1], [4, 8, 7, 4, 4, 8, 2], [7, 3, 8, 4, 3, 2, 8]], "output": [[7, 3, 8, 4, 3, 2, 8], [4, 8, 7, 4, 4, 8, 2], [2, 4, 3, 1, 1, 4, 1], [1, 1, 2, 1, 4, 4, 7], [8, 7, 4, 3, 2, 2, 4], [2, 3, 7, 1, 2, 3, 3], [2, 7, 4, 3, 4, 8, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/694f12f3.json b/data/arc-agi/training/694f12f3.json
deleted file mode 100644
index 44ba60a..0000000
--- a/data/arc-agi/training/694f12f3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 4, 1, 1, 4, 0, 0, 0, 0, 0], [0, 4, 1, 1, 4, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 0], [0, 0, 0, 4, 2, 2, 2, 2, 4, 0], [0, 0, 0, 4, 2, 2, 2, 2, 4, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 4, 4, 4, 4, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 4, 2, 2, 2, 4, 0, 0, 0, 0], [0, 4, 2, 2, 2, 4, 0, 0, 0, 0], [0, 4, 2, 2, 2, 4, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 4, 0], [0, 0, 0, 0, 0, 4, 1, 1, 4, 0], [0, 0, 0, 0, 0, 4, 4, 4, 4, 0]]}], "test": [{"input": [[4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4]], "output": [[4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [4, 2, 2, 2, 2, 4, 0, 0, 0, 0], [4, 2, 2, 2, 2, 4, 0, 0, 0, 0], [4, 2, 2, 2, 2, 4, 0, 0, 0, 0], [4, 2, 2, 2, 2, 4, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 4, 1, 1, 1, 1, 4], [0, 0, 0, 0, 4, 4, 4, 4, 4, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6a1e5592.json b/data/arc-agi/training/6a1e5592.json
deleted file mode 100644
index 150f57b..0000000
--- a/data/arc-agi/training/6a1e5592.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [2, 0, 0, 2, 2, 2, 0, 0, 0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 5, 5, 0, 0, 5, 5, 0, 0, 0, 0, 0, 5, 0], [0, 5, 5, 5, 0, 0, 5, 5, 5, 0, 0, 0, 0, 5, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1], [2, 1, 1, 2, 2, 2, 1, 1, 1, 2, 2, 2, 2, 2, 1], [0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 0, 2, 2, 2, 0, 2, 2, 0, 0, 2, 2], [2, 0, 0, 2, 0, 2, 2, 0, 0, 0, 2, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [5, 5, 5, 5, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5, 5], [0, 5, 5, 0, 0, 0, 5, 5, 5, 0, 5, 0, 5, 5, 5]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 1, 1, 2, 2], [2, 1, 1, 2, 1, 2, 2, 1, 1, 1, 2, 1, 1, 2, 2], [1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 2, 2, 2, 2, 0, 2, 0, 2, 2, 0, 2, 2, 2], [2, 0, 0, 2, 2, 2, 0, 0, 0, 2, 2, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 5, 5, 0, 0, 5, 5, 5, 0], [0, 5, 5, 5, 0, 0, 0, 5, 0, 0, 0, 5, 5, 5, 0], [0, 5, 5, 5, 5, 0, 0, 5, 5, 0, 0, 5, 5, 5, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 1, 2, 2, 2, 2, 1, 2, 1, 2, 2, 1, 2, 2, 2], [2, 1, 1, 2, 2, 2, 1, 1, 1, 2, 2, 1, 1, 1, 2], [0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1], [0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
diff --git a/data/arc-agi/training/6aa20dc0.json b/data/arc-agi/training/6aa20dc0.json
deleted file mode 100644
index 8cf0935..0000000
--- a/data/arc-agi/training/6aa20dc0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1], [1, 1, 1, 1, 1, 2, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 8, 8, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 1, 3, 1, 1, 1], [1, 1, 1, 1, 1, 2, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 8, 8, 8, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 8, 8, 8, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 3, 3, 1, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 3, 3, 1, 1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 1, 1, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 1, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 2, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 6, 6, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 6, 6, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 6, 6, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 1, 1, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 1, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 2, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 1, 1, 4, 4, 4, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 1, 1, 4, 4, 4, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 1, 1, 4, 4, 4, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 6, 6, 6, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 6, 6, 6, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 6, 6, 6, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 2, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 3, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 2, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 3, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 3, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 2, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 3, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 4, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}], "test": [{"input": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 8, 3, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 1, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 3, 3, 3, 3, 3], [3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 8, 8, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 8, 8, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 8, 8, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 4, 3, 3, 8, 8, 8, 3, 3, 3, 8, 8, 8, 3, 3, 3], [3, 3, 3, 3, 3, 8, 3, 8, 3, 3, 8, 8, 8, 3, 3, 3, 8, 8, 8, 3, 3, 3], [3, 3, 3, 3, 3, 1, 8, 3, 3, 3, 8, 8, 8, 3, 3, 3, 8, 8, 8, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 1, 1, 1, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 1, 1, 1, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 1, 1, 1, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 1, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 1, 1, 3, 3, 3, 3, 3], [3, 8, 3, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 1, 1, 3, 3, 3, 3, 3], [3, 3, 8, 4, 3, 3, 3, 3, 3, 3, 3, 8, 8, 3, 3, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 3, 3, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 8, 8, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 8, 8, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6b9890af.json b/data/arc-agi/training/6b9890af.json
deleted file mode 100644
index 302c51f..0000000
--- a/data/arc-agi/training/6b9890af.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 0, 8, 8, 0, 0, 2], [2, 0, 0, 8, 8, 0, 0, 2], [2, 8, 8, 8, 8, 8, 8, 2], [2, 8, 8, 8, 8, 8, 8, 2], [2, 0, 0, 8, 8, 0, 0, 2], [2, 0, 0, 8, 8, 0, 0, 2], [2, 2, 2, 2, 2, 2, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2], [2, 0, 1, 1, 2], [2, 1, 0, 0, 2], [2, 0, 1, 1, 2], [2, 2, 2, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 0, 0, 4, 4, 4, 4, 4, 4, 2], [2, 0, 0, 0, 4, 4, 4, 4, 4, 4, 2], [2, 0, 0, 0, 4, 4, 4, 4, 4, 4, 2], [2, 4, 4, 4, 0, 0, 0, 4, 4, 4, 2], [2, 4, 4, 4, 0, 0, 0, 4, 4, 4, 2], [2, 4, 4, 4, 0, 0, 0, 4, 4, 4, 2], [2, 0, 0, 0, 0, 0, 0, 4, 4, 4, 2], [2, 0, 0, 0, 0, 0, 0, 4, 4, 4, 2], [2, 0, 0, 0, 0, 0, 0, 4, 4, 4, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 2], [2, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 2], [2, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 2], [2, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 2], [2, 3, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 2], [2, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6c434453.json b/data/arc-agi/training/6c434453.json
deleted file mode 100644
index e251bb1..0000000
--- a/data/arc-agi/training/6c434453.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 0, 0, 0, 0, 1, 0, 0], [1, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 1, 0, 1, 0, 0, 1, 1], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 1, 0, 0], [0, 2, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 1, 1], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [1, 1, 0, 0, 1, 0, 1, 0, 0, 0], [1, 1, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1], [0, 1, 1, 1, 0, 0, 0, 0, 1, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [1, 1, 0, 0, 2, 2, 2, 0, 0, 0], [1, 1, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1], [0, 0, 2, 0, 0, 0, 0, 0, 1, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1], [0, 1, 1, 1, 0, 0, 0, 0, 1, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 1, 1], [0, 1, 1, 1, 0, 0, 0, 0, 1, 1]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1], [0, 0, 2, 0, 0, 0, 0, 0, 1, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 1, 1], [0, 0, 2, 0, 0, 0, 0, 0, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6cdd2623.json b/data/arc-agi/training/6cdd2623.json
deleted file mode 100644
index a8dcd44..0000000
--- a/data/arc-agi/training/6cdd2623.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 2, 0, 5, 2, 0, 5, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0], [5, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 5, 0, 0, 0, 0, 0, 2, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [3, 0, 0, 5, 5, 0, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 5, 0, 5, 0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 5, 0, 0, 3, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 4, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 8, 0, 4, 0], [0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 5], [4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 5], [0, 4, 0, 0, 0, 5, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0], [4, 0, 4, 0, 4, 0, 0, 0, 4, 5, 0, 0, 0, 8, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 7, 8, 0], [7, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 7, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 7, 6], [0, 7, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 8, 0, 8, 0, 0, 0, 7], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 0, 0, 0, 0, 0], [7, 0, 0, 6, 7, 0, 8, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6cf79266.json b/data/arc-agi/training/6cf79266.json
deleted file mode 100644
index 7809b04..0000000
--- a/data/arc-agi/training/6cf79266.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 0, 0, 5, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0, 0], [5, 0, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0, 5, 5, 0, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5], [0, 5, 5, 5, 5, 5, 0, 0, 0, 5, 0, 5, 5, 0, 5, 5, 0, 0, 0, 5], [5, 5, 5, 5, 5, 5, 0, 5, 0, 0, 5, 5, 5, 0, 0, 0, 5, 5, 0, 5], [0, 5, 0, 5, 0, 5, 0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 0, 5, 5, 5, 0, 0, 0, 5], [0, 0, 0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 5, 0, 5, 0, 0, 0, 5], [5, 5, 0, 0, 5, 0, 0, 5, 5, 5, 5, 0, 0, 5, 0, 5, 0, 0, 0, 5], [0, 0, 5, 0, 0, 0, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5], [5, 5, 5, 0, 5, 5, 5, 5, 5, 0, 0, 5, 0, 0, 5, 5, 5, 5, 5, 5], [5, 0, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 0, 5, 5, 5, 0, 5], [5, 0, 0, 5, 5, 5, 5, 0, 0, 5, 5, 5, 0, 5, 5, 5, 5, 5, 5, 5], [5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 0, 5], [0, 0, 5, 5, 5, 5, 0, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5], [5, 0, 0, 5, 0, 5, 0, 0, 0, 5, 5, 5, 0, 5, 0, 5, 5, 0, 5, 0], [0, 5, 0, 5, 0, 5, 5, 0, 0, 5, 0, 0, 5, 0, 5, 0, 0, 0, 5, 0], [5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 0, 0, 0, 5, 0, 5, 5, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5, 0, 5, 5], [5, 5, 5, 0, 0, 5, 5, 5, 5, 0, 5, 5, 0, 5, 0, 5, 0, 0, 0, 5]], "output": [[5, 0, 0, 5, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0, 0], [5, 0, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0, 5, 5, 0, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5], [0, 5, 5, 5, 5, 5, 0, 0, 0, 5, 0, 5, 5, 0, 5, 5, 0, 0, 0, 5], [5, 5, 5, 5, 5, 5, 0, 5, 0, 0, 5, 5, 5, 0, 0, 0, 5, 5, 0, 5], [0, 5, 0, 5, 0, 5, 0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 0, 5, 5, 5, 1, 1, 1, 5], [0, 0, 0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 5, 0, 5, 1, 1, 1, 5], [5, 5, 0, 0, 5, 0, 0, 5, 5, 5, 5, 0, 0, 5, 0, 5, 1, 1, 1, 5], [0, 0, 5, 0, 0, 0, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5], [5, 5, 5, 0, 5, 5, 5, 5, 5, 0, 0, 5, 0, 0, 5, 5, 5, 5, 5, 5], [5, 0, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 0, 5, 5, 5, 0, 5], [5, 0, 0, 5, 5, 5, 5, 0, 0, 5, 5, 5, 0, 5, 5, 5, 5, 5, 5, 5], [5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 0, 5], [0, 0, 5, 5, 5, 5, 0, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5], [5, 0, 0, 5, 0, 5, 0, 0, 0, 5, 5, 5, 0, 5, 0, 5, 5, 0, 5, 0], [0, 5, 0, 5, 0, 5, 5, 0, 0, 5, 0, 0, 5, 0, 5, 0, 0, 0, 5, 0], [5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 0, 0, 0, 5, 0, 5, 5, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5, 0, 5, 5], [5, 5, 5, 0, 0, 5, 5, 5, 5, 0, 5, 5, 0, 5, 0, 5, 0, 0, 0, 5]]}, {"input": [[3, 3, 3, 3, 0, 3, 0, 3, 0, 3, 3, 0, 0, 3, 3, 3, 0, 3, 0, 0], [0, 0, 3, 3, 0, 0, 3, 0, 3, 3, 0, 3, 0, 3, 3, 0, 0, 3, 3, 0], [3, 3, 3, 3, 3, 0, 0, 3, 0, 0, 0, 3, 0, 3, 3, 0, 3, 3, 3, 3], [3, 0, 3, 3, 0, 0, 0, 0, 3, 0, 3, 3, 0, 3, 3, 3, 0, 3, 3, 0], [0, 0, 0, 3, 0, 3, 0, 3, 3, 3, 0, 3, 3, 3, 0, 3, 3, 3, 0, 0], [3, 3, 0, 0, 3, 3, 0, 3, 3, 3, 3, 0, 0, 3, 0, 3, 3, 3, 3, 0], [0, 3, 0, 0, 0, 0, 3, 3, 0, 3, 0, 0, 3, 0, 0, 0, 3, 0, 3, 0], [3, 0, 3, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3], [0, 3, 3, 0, 0, 0, 0, 3, 0, 3, 3, 0, 3, 3, 0, 0, 3, 3, 3, 3], [0, 0, 0, 3, 3, 0, 0, 3, 3, 3, 3, 3, 0, 3, 0, 3, 0, 3, 3, 3], [3, 0, 3, 3, 0, 3, 3, 3, 0, 0, 3, 0, 3, 0, 0, 0, 3, 3, 0, 3], [3, 0, 0, 3, 0, 0, 0, 3, 3, 3, 3, 0, 0, 3, 0, 3, 0, 3, 3, 3], [0, 3, 3, 0, 0, 0, 3, 3, 0, 3, 3, 3, 3, 0, 0, 3, 0, 0, 3, 3], [0, 0, 3, 0, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 0, 0, 3, 0, 3, 0], [3, 0, 3, 3, 3, 0, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 3], [0, 0, 3, 0, 3, 3, 0, 0, 3, 0, 3, 0, 3, 3, 0, 3, 3, 3, 0, 0], [3, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 3, 3], [0, 3, 0, 3, 0, 0, 3, 3, 3, 0, 3, 3, 3, 0, 0, 3, 3, 0, 0, 0], [3, 0, 0, 3, 0, 3, 3, 0, 3, 0, 0, 3, 0, 0, 3, 3, 3, 3, 3, 3], [3, 0, 3, 3, 0, 3, 3, 3, 0, 0, 0, 3, 0, 3, 0, 3, 3, 3, 0, 3]], "output": [[3, 3, 3, 3, 0, 3, 0, 3, 0, 3, 3, 0, 0, 3, 3, 3, 0, 3, 0, 0], [0, 0, 3, 3, 0, 0, 3, 0, 3, 3, 0, 3, 0, 3, 3, 0, 0, 3, 3, 0], [3, 3, 3, 3, 3, 0, 0, 3, 0, 0, 0, 3, 0, 3, 3, 0, 3, 3, 3, 3], [3, 0, 3, 3, 0, 0, 0, 0, 3, 0, 3, 3, 0, 3, 3, 3, 0, 3, 3, 0], [0, 0, 0, 3, 0, 3, 0, 3, 3, 3, 0, 3, 3, 3, 0, 3, 3, 3, 0, 0], [3, 3, 0, 0, 3, 3, 0, 3, 3, 3, 3, 0, 0, 3, 0, 3, 3, 3, 3, 0], [0, 3, 0, 1, 1, 1, 3, 3, 0, 3, 0, 0, 3, 0, 0, 0, 3, 0, 3, 0], [3, 0, 3, 1, 1, 1, 0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3], [0, 3, 3, 1, 1, 1, 0, 3, 0, 3, 3, 0, 3, 3, 0, 0, 3, 3, 3, 3], [0, 0, 0, 3, 3, 0, 0, 3, 3, 3, 3, 3, 0, 3, 0, 3, 0, 3, 3, 3], [3, 0, 3, 3, 0, 3, 3, 3, 0, 0, 3, 0, 3, 0, 0, 0, 3, 3, 0, 3], [3, 0, 0, 3, 0, 0, 0, 3, 3, 3, 3, 0, 0, 3, 0, 3, 0, 3, 3, 3], [0, 3, 3, 0, 0, 0, 3, 3, 0, 3, 3, 3, 3, 0, 0, 3, 0, 0, 3, 3], [0, 0, 3, 0, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 0, 0, 3, 0, 3, 0], [3, 0, 3, 3, 3, 0, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 3], [0, 0, 3, 0, 3, 3, 0, 0, 3, 0, 3, 0, 3, 3, 0, 3, 3, 3, 0, 0], [3, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 3, 3], [0, 3, 0, 3, 0, 0, 3, 3, 3, 0, 3, 3, 3, 0, 0, 3, 3, 0, 0, 0], [3, 0, 0, 3, 0, 3, 3, 0, 3, 0, 0, 3, 0, 0, 3, 3, 3, 3, 3, 3], [3, 0, 3, 3, 0, 3, 3, 3, 0, 0, 0, 3, 0, 3, 0, 3, 3, 3, 0, 3]]}, {"input": [[7, 0, 7, 7, 7, 7, 0, 7, 7, 0, 0, 7, 7, 0, 0, 7, 0, 7, 7, 7], [0, 0, 7, 0, 7, 0, 7, 0, 7, 7, 7, 0, 0, 0, 0, 7, 7, 0, 0, 7], [0, 0, 0, 0, 0, 7, 0, 0, 7, 7, 7, 7, 0, 7, 0, 0, 0, 0, 7, 0], [7, 0, 7, 0, 7, 0, 7, 7, 0, 0, 0, 7, 7, 0, 0, 7, 7, 0, 7, 0], [0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 7, 7, 7, 7, 0, 0, 7, 0, 0, 7], [7, 7, 7, 7, 7, 7, 7, 7, 0, 7, 7, 0, 7, 7, 0, 0, 0, 7, 0, 7], [0, 0, 0, 7, 0, 7, 0, 0, 7, 7, 0, 7, 0, 7, 0, 0, 0, 0, 7, 7], [0, 7, 7, 7, 7, 0, 7, 0, 7, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0, 7], [0, 0, 0, 7, 0, 0, 0, 0, 7, 7, 7, 0, 0, 7, 7, 0, 0, 0, 7, 7], [7, 7, 0, 7, 7, 7, 0, 7, 0, 0, 7, 0, 7, 7, 0, 7, 7, 0, 7, 0], [7, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0, 7, 7, 0], [7, 7, 0, 0, 7, 7, 7, 0, 7, 7, 7, 7, 0, 7, 0, 0, 7, 7, 7, 7], [0, 7, 0, 7, 7, 7, 0, 0, 0, 7, 7, 0, 7, 7, 0, 7, 0, 0, 7, 7], [0, 0, 7, 7, 0, 7, 7, 7, 7, 7, 0, 7, 7, 0, 7, 7, 7, 0, 7, 7], [0, 0, 7, 7, 7, 0, 7, 0, 7, 7, 0, 7, 0, 7, 7, 7, 0, 7, 7, 7], [7, 0, 7, 7, 7, 0, 7, 0, 7, 7, 7, 7, 7, 0, 0, 7, 7, 7, 0, 0], [7, 7, 7, 0, 0, 0, 7, 7, 7, 0, 7, 7, 0, 7, 0, 7, 0, 0, 0, 0], [7, 7, 7, 0, 0, 0, 7, 0, 7, 7, 0, 7, 0, 0, 7, 0, 0, 0, 0, 0], [7, 0, 0, 0, 0, 0, 7, 7, 0, 7, 0, 0, 0, 7, 0, 7, 7, 7, 0, 7], [0, 7, 7, 0, 7, 7, 0, 7, 0, 0, 7, 7, 7, 7, 0, 0, 7, 0, 7, 7]], "output": [[7, 0, 7, 7, 7, 7, 0, 7, 7, 0, 0, 7, 7, 0, 0, 7, 0, 7, 7, 7], [0, 0, 7, 0, 7, 0, 7, 0, 7, 7, 7, 0, 0, 0, 0, 7, 7, 0, 0, 7], [0, 0, 0, 0, 0, 7, 0, 0, 7, 7, 7, 7, 0, 7, 0, 0, 0, 0, 7, 0], [7, 0, 7, 0, 7, 0, 7, 7, 0, 0, 0, 7, 7, 0, 0, 7, 7, 0, 7, 0], [0, 0, 7, 0, 0, 7, 0, 0, 7, 0, 7, 7, 7, 7, 0, 0, 7, 0, 0, 7], [7, 7, 7, 7, 7, 7, 7, 7, 0, 7, 7, 0, 7, 7, 1, 1, 1, 7, 0, 7], [0, 0, 0, 7, 0, 7, 0, 0, 7, 7, 0, 7, 0, 7, 1, 1, 1, 0, 7, 7], [0, 7, 7, 7, 7, 0, 7, 0, 7, 0, 0, 7, 7, 7, 1, 1, 1, 0, 0, 7], [0, 0, 0, 7, 0, 0, 0, 0, 7, 7, 7, 0, 0, 7, 7, 0, 0, 0, 7, 7], [7, 7, 0, 7, 7, 7, 0, 7, 0, 0, 7, 0, 7, 7, 0, 7, 7, 0, 7, 0], [7, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0, 7, 7, 0], [7, 7, 0, 0, 7, 7, 7, 0, 7, 7, 7, 7, 0, 7, 0, 0, 7, 7, 7, 7], [0, 7, 0, 7, 7, 7, 0, 0, 0, 7, 7, 0, 7, 7, 0, 7, 0, 0, 7, 7], [0, 0, 7, 7, 0, 7, 7, 7, 7, 7, 0, 7, 7, 0, 7, 7, 7, 0, 7, 7], [0, 0, 7, 7, 7, 0, 7, 0, 7, 7, 0, 7, 0, 7, 7, 7, 0, 7, 7, 7], [7, 0, 7, 7, 7, 0, 7, 0, 7, 7, 7, 7, 7, 0, 0, 7, 7, 7, 0, 0], [7, 7, 7, 1, 1, 1, 7, 7, 7, 0, 7, 7, 0, 7, 0, 7, 0, 0, 0, 0], [7, 7, 7, 1, 1, 1, 7, 0, 7, 7, 0, 7, 0, 0, 7, 0, 0, 0, 0, 0], [7, 0, 0, 1, 1, 1, 7, 7, 0, 7, 0, 0, 0, 7, 0, 7, 7, 7, 0, 7], [0, 7, 7, 0, 7, 7, 0, 7, 0, 0, 7, 7, 7, 7, 0, 0, 7, 0, 7, 7]]}], "test": [{"input": [[0, 4, 0, 4, 4, 0, 4, 4, 4, 0, 0, 0, 4, 0, 4, 4, 4, 4, 4, 0], [0, 0, 4, 4, 0, 0, 4, 0, 4, 4, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0], [4, 4, 4, 0, 0, 4, 0, 4, 0, 4, 0, 4, 4, 4, 4, 4, 4, 0, 4, 0], [4, 4, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 4, 0, 0], [4, 0, 0, 4, 4, 0, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 0, 4, 0, 4], [4, 4, 0, 0, 4, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 4, 4, 0, 4, 0], [0, 0, 0, 4, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 4, 0, 4, 4, 0, 4], [4, 0, 4, 4, 0, 0, 0, 4, 4, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 4, 4, 4, 0, 0, 4, 0, 4, 4, 4, 0, 0, 0], [4, 0, 0, 0, 4, 4, 0, 0, 4, 0, 0, 4, 0, 4, 4, 4, 0, 4, 0, 4], [0, 0, 0, 4, 0, 4, 0, 4, 4, 4, 0, 0, 4, 0, 4, 4, 4, 0, 4, 4], [0, 4, 4, 0, 0, 4, 4, 4, 4, 0, 0, 0, 4, 4, 4, 4, 4, 0, 4, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 4, 4, 0, 0, 0, 4, 4], [4, 0, 4, 4, 0, 4, 0, 0, 4, 4, 4, 0, 0, 0, 0, 4, 4, 4, 0, 0], [0, 4, 4, 4, 4, 0, 0, 4, 0, 4, 0, 0, 4, 4, 0, 4, 4, 4, 4, 4], [4, 0, 0, 4, 4, 0, 4, 0, 4, 0, 0, 4, 0, 4, 0, 4, 0, 4, 0, 0], [4, 4, 0, 4, 0, 4, 0, 4, 4, 0, 0, 4, 4, 4, 0, 0, 0, 0, 4, 4], [4, 0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 4, 0, 4, 0, 0, 0, 4, 4, 4], [0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0], [4, 4, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 4, 0, 4, 0, 4, 0, 4, 4]], "output": [[0, 4, 0, 4, 4, 0, 4, 4, 4, 0, 0, 0, 4, 0, 4, 4, 4, 4, 4, 0], [0, 0, 4, 4, 0, 0, 4, 0, 4, 4, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0], [4, 4, 4, 0, 0, 4, 0, 4, 0, 4, 0, 4, 4, 4, 4, 4, 4, 0, 4, 0], [4, 4, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 4, 0, 0], [4, 0, 0, 4, 4, 0, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 0, 4, 0, 4], [4, 4, 0, 0, 4, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 4, 4, 0, 4, 0], [0, 0, 0, 4, 1, 1, 1, 0, 4, 4, 4, 4, 4, 0, 4, 0, 4, 4, 0, 4], [4, 0, 4, 4, 1, 1, 1, 4, 4, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 4, 1, 1, 1, 4, 4, 4, 0, 0, 4, 0, 4, 4, 4, 0, 0, 0], [4, 0, 0, 0, 4, 4, 0, 0, 4, 0, 0, 4, 0, 4, 4, 4, 0, 4, 0, 4], [0, 0, 0, 4, 0, 4, 0, 4, 4, 4, 0, 0, 4, 0, 4, 4, 4, 0, 4, 4], [0, 4, 4, 0, 0, 4, 4, 4, 4, 0, 0, 0, 4, 4, 4, 4, 4, 0, 4, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 4, 4, 0, 0, 0, 4, 4], [4, 0, 4, 4, 0, 4, 0, 0, 4, 4, 4, 0, 0, 0, 0, 4, 4, 4, 0, 0], [0, 4, 4, 4, 4, 0, 0, 4, 0, 4, 0, 0, 4, 4, 0, 4, 4, 4, 4, 4], [4, 0, 0, 4, 4, 0, 4, 0, 4, 0, 0, 4, 0, 4, 0, 4, 0, 4, 0, 0], [4, 4, 0, 4, 0, 4, 0, 4, 4, 0, 0, 4, 4, 4, 1, 1, 1, 0, 4, 4], [4, 0, 1, 1, 1, 4, 4, 0, 4, 4, 0, 4, 0, 4, 1, 1, 1, 4, 4, 4], [0, 0, 1, 1, 1, 4, 4, 4, 4, 0, 4, 0, 0, 4, 1, 1, 1, 0, 0, 0], [4, 4, 1, 1, 1, 0, 0, 4, 4, 0, 0, 0, 4, 0, 4, 0, 4, 0, 4, 4]]}]}
diff --git a/data/arc-agi/training/6d0160f0.json b/data/arc-agi/training/6d0160f0.json
deleted file mode 100644
index e01dcac..0000000
--- a/data/arc-agi/training/6d0160f0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 0, 0, 5, 7, 0, 6, 5, 8, 0, 7], [0, 0, 9, 5, 0, 3, 0, 5, 0, 6, 0], [7, 2, 0, 5, 0, 0, 2, 5, 0, 3, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [7, 0, 2, 5, 8, 7, 0, 5, 0, 2, 3], [0, 0, 6, 5, 0, 0, 3, 5, 0, 0, 7], [3, 0, 0, 5, 2, 0, 0, 5, 0, 6, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 3, 4, 5, 0, 2, 0, 5, 2, 0, 7], [7, 0, 0, 5, 7, 0, 3, 5, 0, 0, 1], [0, 0, 2, 5, 0, 6, 0, 5, 0, 3, 0]], "output": [[0, 0, 0, 5, 0, 0, 0, 5, 0, 3, 4], [0, 0, 0, 5, 0, 0, 0, 5, 7, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 2], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0]]}, {"input": [[3, 0, 0, 5, 0, 2, 0, 5, 0, 6, 0], [0, 0, 7, 5, 0, 0, 0, 5, 0, 0, 9], [0, 6, 0, 5, 0, 1, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 3, 0, 5, 0, 0, 0, 5, 0, 0, 0], [1, 0, 9, 5, 0, 0, 6, 5, 0, 7, 3], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [9, 0, 0, 5, 0, 9, 0, 5, 0, 9, 0], [0, 6, 0, 5, 0, 0, 4, 5, 0, 0, 1], [0, 0, 0, 5, 7, 0, 0, 5, 0, 0, 0]], "output": [[0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 9, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 4], [0, 0, 0, 5, 0, 0, 0, 5, 7, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0]]}, {"input": [[0, 7, 0, 5, 0, 6, 0, 5, 7, 0, 0], [8, 3, 6, 5, 0, 0, 0, 5, 0, 8, 0], [0, 0, 0, 5, 0, 3, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 8, 7, 5, 0, 3, 0, 5, 0, 0, 7], [0, 0, 0, 5, 8, 0, 0, 5, 0, 8, 6], [0, 0, 6, 5, 0, 0, 0, 5, 3, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 6, 0, 5, 0, 8, 0, 5, 0, 0, 0], [8, 0, 0, 5, 3, 0, 0, 5, 4, 0, 8], [0, 7, 0, 5, 0, 6, 0, 5, 0, 6, 7]], "output": [[0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [4, 0, 8, 5, 0, 0, 0, 5, 0, 0, 0], [0, 6, 7, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0]]}, {"input": [[3, 0, 0, 5, 0, 1, 0, 5, 0, 0, 2], [0, 2, 0, 5, 0, 3, 0, 5, 0, 6, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 1, 0, 5, 0, 0, 0, 5, 0, 3, 0], [7, 0, 6, 5, 2, 0, 7, 5, 0, 7, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 6, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [7, 0, 0, 5, 0, 4, 0, 5, 0, 0, 3], [0, 0, 0, 5, 0, 7, 0, 5, 2, 0, 0], [0, 3, 0, 5, 0, 3, 0, 5, 0, 0, 6]], "output": [[0, 0, 0, 5, 0, 4, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 7, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 3, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0]]}], "test": [{"input": [[2, 0, 3, 5, 2, 0, 0, 5, 0, 3, 0], [7, 6, 0, 5, 0, 7, 0, 5, 6, 7, 0], [0, 0, 0, 5, 6, 0, 3, 5, 0, 0, 2], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [7, 0, 0, 5, 0, 0, 0, 5, 6, 0, 4], [0, 6, 0, 5, 0, 2, 7, 5, 0, 2, 0], [6, 0, 2, 5, 0, 3, 0, 5, 0, 7, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [7, 0, 0, 5, 0, 6, 0, 5, 2, 3, 0], [0, 0, 6, 5, 0, 2, 0, 5, 0, 0, 0], [2, 0, 0, 5, 0, 7, 0, 5, 0, 6, 7]], "output": [[0, 0, 0, 5, 0, 0, 0, 5, 6, 0, 4], [0, 0, 0, 5, 0, 0, 0, 5, 0, 2, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 7, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0]]}]}
diff --git a/data/arc-agi/training/6d0aefbc.json b/data/arc-agi/training/6d0aefbc.json
deleted file mode 100644
index 20cab77..0000000
--- a/data/arc-agi/training/6d0aefbc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[6, 8, 6], [8, 6, 8], [1, 6, 1]], "output": [[6, 8, 6, 6, 8, 6], [8, 6, 8, 8, 6, 8], [1, 6, 1, 1, 6, 1]]}], "train": [{"input": [[6, 6, 6], [1, 6, 1], [8, 8, 6]], "output": [[6, 6, 6, 6, 6, 6], [1, 6, 1, 1, 6, 1], [8, 8, 6, 6, 8, 8]]}, {"input": [[6, 8, 1], [6, 1, 1], [1, 1, 6]], "output": [[6, 8, 1, 1, 8, 6], [6, 1, 1, 1, 1, 6], [1, 1, 6, 6, 1, 1]]}, {"input": [[1, 1, 1], [8, 1, 6], [6, 8, 8]], "output": [[1, 1, 1, 1, 1, 1], [8, 1, 6, 6, 1, 8], [6, 8, 8, 8, 8, 6]]}, {"input": [[1, 1, 1], [1, 6, 6], [6, 6, 6]], "output": [[1, 1, 1, 1, 1, 1], [1, 6, 6, 6, 6, 1], [6, 6, 6, 6, 6, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6d58a25d.json b/data/arc-agi/training/6d58a25d.json
deleted file mode 100644
index 777ecfc..0000000
--- a/data/arc-agi/training/6d58a25d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 9, 9, 0, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 9, 9, 8, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 9, 0, 0, 8, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 2, 0, 0, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 3, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 3, 0, 3, 3, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 3, 3, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [6, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0], [0, 0, 0, 1, 6, 6, 0, 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [6, 0, 0, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 6, 6, 0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 6, 6, 0, 6, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6d75e8bb.json b/data/arc-agi/training/6d75e8bb.json
deleted file mode 100644
index c05532d..0000000
--- a/data/arc-agi/training/6d75e8bb.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 2, 0, 0, 0, 0, 0], [0, 8, 2, 2, 2, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 8, 8, 2, 2, 0, 0, 0, 0, 0], [0, 8, 8, 8, 2, 0, 0, 0, 0, 0], [0, 8, 2, 2, 2, 0, 0, 0, 0, 0], [0, 8, 8, 8, 2, 0, 0, 0, 0, 0], [0, 8, 8, 8, 2, 0, 0, 0, 0, 0], [0, 8, 8, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0], [0, 8, 0, 8, 8, 0, 8, 0], [0, 8, 0, 8, 0, 0, 8, 0], [0, 0, 0, 8, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0], [0, 8, 2, 8, 8, 2, 8, 0], [0, 8, 2, 8, 2, 2, 8, 0], [0, 2, 2, 8, 2, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 8, 0, 8, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 0], [0, 2, 2, 8, 2, 8, 0, 0], [0, 2, 8, 8, 8, 8, 0, 0], [0, 2, 2, 8, 8, 8, 0, 0], [0, 2, 2, 2, 8, 8, 0, 0], [0, 2, 2, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 8, 0, 8, 0, 0, 8, 0, 0, 0], [0, 0, 8, 8, 8, 0, 0, 8, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 8, 8, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 8, 2, 2, 2, 8, 8, 2, 0, 0], [0, 0, 8, 2, 8, 2, 2, 8, 2, 0, 0], [0, 0, 8, 8, 8, 2, 2, 8, 2, 0, 0], [0, 0, 8, 8, 8, 8, 2, 8, 8, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6e02f1e3.json b/data/arc-agi/training/6e02f1e3.json
deleted file mode 100644
index 76c0725..0000000
--- a/data/arc-agi/training/6e02f1e3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 2], [3, 2, 3], [3, 3, 3]], "output": [[5, 0, 0], [0, 5, 0], [0, 0, 5]]}, {"input": [[3, 3, 3], [4, 2, 2], [4, 4, 2]], "output": [[0, 0, 5], [0, 5, 0], [5, 0, 0]]}, {"input": [[4, 4, 4], [4, 4, 4], [4, 4, 4]], "output": [[5, 5, 5], [0, 0, 0], [0, 0, 0]]}, {"input": [[3, 3, 3], [3, 3, 3], [3, 3, 3]], "output": [[5, 5, 5], [0, 0, 0], [0, 0, 0]]}, {"input": [[4, 4, 4], [4, 4, 4], [3, 3, 3]], "output": [[5, 0, 0], [0, 5, 0], [0, 0, 5]]}], "test": [{"input": [[4, 4, 4], [2, 3, 2], [3, 2, 3]], "output": [[0, 0, 5], [0, 5, 0], [5, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6e19193c.json b/data/arc-agi/training/6e19193c.json
deleted file mode 100644
index c60794f..0000000
--- a/data/arc-agi/training/6e19193c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 9, 9, 0, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 9, 0, 0, 0, 0, 0, 0], [0, 0, 0, 9, 9, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 9, 9, 0, 0, 0, 0, 9], [0, 0, 0, 0, 9, 0, 0, 0, 9, 0], [0, 0, 9, 0, 0, 0, 0, 9, 0, 0], [0, 9, 0, 0, 0, 0, 9, 0, 0, 0], [9, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 9, 0, 0, 0, 0, 0, 0], [0, 0, 0, 9, 9, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 8], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6e82a1ae.json b/data/arc-agi/training/6e82a1ae.json
deleted file mode 100644
index 9b5d667..0000000
--- a/data/arc-agi/training/6e82a1ae.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 0], [0, 5, 5, 0, 0, 0, 0, 5, 5, 0], [0, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 5, 5, 0, 0, 5], [0, 5, 0, 0, 0, 0, 0, 0, 0, 5], [0, 5, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0], [0, 1, 1, 0, 0, 0, 0, 1, 1, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 3, 3, 0, 0, 2], [0, 3, 0, 0, 0, 0, 0, 0, 0, 2], [0, 3, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 5, 5, 0, 0, 0, 5, 5, 5, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 1, 1, 0, 0, 0, 1, 1, 1, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 5, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 2, 2, 0, 0], [0, 0, 3, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 5, 5, 0, 5, 5, 0, 0, 5], [0, 5, 5, 0, 0, 0, 5, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 5, 5, 0, 0, 5, 0, 0], [5, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 1, 1, 0, 2, 2, 0, 0, 1], [0, 1, 1, 0, 0, 0, 2, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 3, 3, 0, 0, 3, 0, 0], [2, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6ecd11f4.json b/data/arc-agi/training/6ecd11f4.json
deleted file mode 100644
index 33cb81e..0000000
--- a/data/arc-agi/training/6ecd11f4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 0, 7], [0, 8, 0], [3, 0, 6]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 7], [4, 8, 0], [0, 6, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 4, 1, 9, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 3, 6, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 7, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 2, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 0, 9, 4], [6, 0, 6, 0], [3, 0, 0, 5], [2, 4, 2, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 6, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 3, 3, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 7, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 8, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 0, 6, 3], [0, 3, 3, 0], [6, 7, 7, 4], [1, 0, 0, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6f8cd79b.json b/data/arc-agi/training/6f8cd79b.json
deleted file mode 100644
index 25f8e8b..0000000
--- a/data/arc-agi/training/6f8cd79b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0], [0, 0, 0], [0, 0, 0]], "output": [[8, 8, 8], [8, 0, 8], [8, 8, 8]]}, {"input": [[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]], "output": [[8, 8, 8], [8, 0, 8], [8, 0, 8], [8, 8, 8]]}, {"input": [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "output": [[8, 8, 8, 8], [8, 0, 0, 8], [8, 0, 0, 8], [8, 0, 0, 8], [8, 8, 8, 8]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8, 8], [8, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 8], [8, 8, 8, 8, 8, 8]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8, 8], [8, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 8], [8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/6fa7a44f.json b/data/arc-agi/training/6fa7a44f.json
deleted file mode 100644
index 07f7d23..0000000
--- a/data/arc-agi/training/6fa7a44f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[2, 9, 2], [8, 5, 2], [2, 2, 8]], "output": [[2, 9, 2], [8, 5, 2], [2, 2, 8], [2, 2, 8], [8, 5, 2], [2, 9, 2]]}], "train": [{"input": [[9, 1, 4], [9, 1, 4], [2, 1, 1]], "output": [[9, 1, 4], [9, 1, 4], [2, 1, 1], [2, 1, 1], [9, 1, 4], [9, 1, 4]]}, {"input": [[4, 8, 4], [7, 6, 7], [8, 7, 8]], "output": [[4, 8, 4], [7, 6, 7], [8, 7, 8], [8, 7, 8], [7, 6, 7], [4, 8, 4]]}, {"input": [[7, 7, 7], [9, 5, 5], [5, 1, 7]], "output": [[7, 7, 7], [9, 5, 5], [5, 1, 7], [5, 1, 7], [9, 5, 5], [7, 7, 7]]}, {"input": [[2, 6, 9], [2, 6, 9], [2, 9, 2]], "output": [[2, 6, 9], [2, 6, 9], [2, 9, 2], [2, 9, 2], [2, 6, 9], [2, 6, 9]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/72322fa7.json b/data/arc-agi/training/72322fa7.json
deleted file mode 100644
index 26c9be9..0000000
--- a/data/arc-agi/training/72322fa7.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 6, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 8, 6, 8, 0, 0, 0, 0, 8, 6, 8, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 8, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 2, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 2, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 7, 3, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 4, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 2, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 3, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 4, 2, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 2, 4, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/72ca375d.json b/data/arc-agi/training/72ca375d.json
deleted file mode 100644
index 7a1fdb1..0000000
--- a/data/arc-agi/training/72ca375d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 7, 7, 0], [0, 0, 0, 0, 0, 0, 7, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 6, 6, 6], [0, 6, 6, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 8, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 4], [4, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 5, 0, 0, 5, 0], [0, 0, 3, 0, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [8, 8, 8, 8, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 0, 0, 5], [5, 5, 5, 5]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 3, 0], [0, 9, 9, 0, 0, 3, 3, 3, 3, 0], [0, 9, 9, 0, 0, 0, 0, 0, 3, 0], [9, 9, 9, 9, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 4, 0], [0, 0, 0, 0, 4, 0, 0, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 9, 9, 0], [0, 9, 9, 0], [9, 9, 9, 9]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/73251a56.json b/data/arc-agi/training/73251a56.json
deleted file mode 100644
index 44839d3..0000000
--- a/data/arc-agi/training/73251a56.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[4, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 1, 1, 2, 2, 3, 3, 4], [3, 4, 3, 3, 4, 4, 4, 5, 5, 5, 0, 0, 6, 7, 7, 7, 8, 8, 8, 9, 9], [4, 3, 4, 3, 3, 3, 4, 4, 4, 4, 0, 0, 5, 5, 6, 6, 6, 6, 7, 7, 7], [4, 3, 3, 4, 3, 3, 3, 3, 4, 4, 0, 0, 4, 5, 5, 5, 5, 5, 6, 6, 6], [5, 4, 3, 3, 4, 3, 3, 3, 3, 3, 0, 0, 4, 4, 4, 4, 5, 5, 5, 5, 5], [5, 4, 3, 3, 3, 4, 3, 3, 3, 3, 0, 0, 4, 4, 4, 4, 4, 4, 4, 5, 5], [6, 4, 4, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4], [6, 5, 4, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4], [0, 0, 0, 0, 0, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4], [8, 6, 5, 4, 4, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [8, 6, 5, 4, 4, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3], [9, 6, 5, 4, 4, 4, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3], [9, 7, 5, 5, 4, 4, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3], [1, 7, 6, 5, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3], [1, 7, 6, 5, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3], [2, 8, 6, 5, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3], [2, 8, 6, 5, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3], [3, 8, 7, 6, 5, 4, 4, 4, 4, 3, 3, 3, 0, 0, 0, 0, 0, 3, 4, 3, 3], [3, 9, 7, 6, 5, 5, 4, 4, 4, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 4, 3], [4, 9, 7, 6, 5, 5, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4]], "output": [[4, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 1, 1, 2, 2, 3, 3, 4], [3, 4, 3, 3, 4, 4, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, 8, 8, 8, 9, 9], [4, 3, 4, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7], [4, 3, 3, 4, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 6, 6, 6], [5, 4, 3, 3, 4, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5], [5, 4, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 5, 5], [6, 4, 4, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4], [6, 5, 4, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4], [7, 5, 4, 4, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4], [7, 5, 4, 4, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4], [8, 6, 5, 4, 4, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [8, 6, 5, 4, 4, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3], [9, 6, 5, 4, 4, 4, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3], [9, 7, 5, 5, 4, 4, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3], [1, 7, 6, 5, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3], [1, 7, 6, 5, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3], [2, 8, 6, 5, 5, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3], [2, 8, 6, 5, 5, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3], [3, 8, 7, 6, 5, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3], [3, 9, 7, 6, 5, 5, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3], [4, 9, 7, 6, 5, 5, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4]]}], "train": [{"input": [[1, 6, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 1, 1, 2, 2, 3, 3, 4], [6, 1, 6, 6, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5, 6, 6], [1, 6, 1, 6, 6, 6, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4], [1, 6, 6, 1, 6, 6, 6, 6, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3], [2, 1, 6, 6, 1, 6, 6, 6, 6, 6, 1, 0, 0, 0, 1, 1, 2, 2, 2, 2, 2], [2, 1, 6, 6, 6, 1, 6, 6, 6, 6, 6, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2], [3, 1, 1, 6, 6, 6, 1, 6, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 1], [3, 2, 1, 6, 6, 6, 6, 1, 0, 0, 0, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1], [4, 2, 1, 1, 6, 6, 6, 6, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 1, 1, 1], [4, 2, 1, 1, 6, 6, 6, 6, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1], [5, 3, 2, 1, 1, 6, 6, 6, 6, 6, 1, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [5, 3, 2, 1, 1, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6], [6, 3, 2, 1, 1, 1, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6], [6, 4, 2, 2, 1, 1, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 6, 6, 6, 6], [1, 4, 3, 2, 1, 1, 1, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 6, 6, 6, 6], [1, 4, 3, 2, 1, 1, 1, 6, 6, 6, 6, 6, 6, 6, 6, 1, 6, 6, 6, 6, 6], [2, 5, 3, 2, 2, 1, 1, 1, 6, 6, 6, 6, 6, 6, 6, 6, 1, 6, 6, 6, 6], [2, 5, 3, 2, 2, 1, 1, 1, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1, 6, 6, 6], [3, 5, 4, 3, 2, 1, 1, 1, 1, 6, 0, 0, 0, 0, 6, 6, 6, 6, 1, 6, 6], [3, 6, 4, 3, 2, 2, 1, 1, 1, 6, 0, 0, 0, 0, 6, 6, 6, 6, 6, 1, 6], [4, 6, 4, 3, 2, 2, 1, 1, 1, 1, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1]], "output": [[1, 6, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 1, 1, 2, 2, 3, 3, 4], [6, 1, 6, 6, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5, 6, 6], [1, 6, 1, 6, 6, 6, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4], [1, 6, 6, 1, 6, 6, 6, 6, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3], [2, 1, 6, 6, 1, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2], [2, 1, 6, 6, 6, 1, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 1, 2, 2], [3, 1, 1, 6, 6, 6, 1, 6, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 1], [3, 2, 1, 6, 6, 6, 6, 1, 6, 6, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1], [4, 2, 1, 1, 6, 6, 6, 6, 1, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1, 1, 1], [4, 2, 1, 1, 6, 6, 6, 6, 6, 1, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1], [5, 3, 2, 1, 1, 6, 6, 6, 6, 6, 1, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [5, 3, 2, 1, 1, 6, 6, 6, 6, 6, 6, 1, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 3, 2, 1, 1, 1, 6, 6, 6, 6, 6, 6, 1, 6, 6, 6, 6, 6, 6, 6, 6], [6, 4, 2, 2, 1, 1, 6, 6, 6, 6, 6, 6, 6, 1, 6, 6, 6, 6, 6, 6, 6], [1, 4, 3, 2, 1, 1, 1, 6, 6, 6, 6, 6, 6, 6, 1, 6, 6, 6, 6, 6, 6], [1, 4, 3, 2, 1, 1, 1, 6, 6, 6, 6, 6, 6, 6, 6, 1, 6, 6, 6, 6, 6], [2, 5, 3, 2, 2, 1, 1, 1, 6, 6, 6, 6, 6, 6, 6, 6, 1, 6, 6, 6, 6], [2, 5, 3, 2, 2, 1, 1, 1, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1, 6, 6, 6], [3, 5, 4, 3, 2, 1, 1, 1, 1, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1, 6, 6], [3, 6, 4, 3, 2, 2, 1, 1, 1, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1, 6], [4, 6, 4, 3, 2, 2, 1, 1, 1, 1, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1]]}, {"input": [[6, 5, 6, 6, 7, 7, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 1], [5, 6, 5, 5, 6, 6, 6, 7, 7, 7, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4], [6, 5, 6, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 1, 1, 1, 1, 2, 2, 2], [6, 5, 5, 0, 0, 0, 5, 5, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 1, 1, 1], [7, 6, 5, 0, 0, 0, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7], [7, 6, 5, 0, 0, 0, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 7, 7], [1, 6, 6, 0, 0, 0, 6, 5, 5, 0, 0, 0, 5, 5, 6, 6, 6, 6, 6, 6, 6], [1, 7, 6, 0, 0, 0, 5, 6, 5, 0, 0, 0, 5, 5, 5, 5, 6, 6, 6, 6, 6], [2, 7, 6, 6, 5, 5, 5, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 5, 6, 6, 6], [2, 7, 6, 6, 5, 5, 5, 5, 5, 6, 5, 5, 0, 0, 0, 0, 0, 5, 5, 5, 6], [3, 1, 7, 6, 6, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [3, 1, 7, 6, 6, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5], [4, 1, 7, 6, 6, 6, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 5], [4, 2, 7, 7, 6, 6, 5, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5], [5, 2, 0, 0, 0, 0, 6, 5, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5], [5, 2, 0, 0, 0, 0, 6, 5, 5, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5], [6, 3, 1, 7, 7, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5], [6, 3, 1, 7, 7, 6, 6, 6, 0, 0, 0, 0, 5, 5, 5, 5, 5, 6, 5, 5, 5], [7, 3, 2, 1, 7, 6, 6, 6, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 6, 5, 5], [7, 4, 2, 1, 7, 7, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 5], [1, 4, 2, 1, 7, 7, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6]], "output": [[6, 5, 6, 6, 7, 7, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 1], [5, 6, 5, 5, 6, 6, 6, 7, 7, 7, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4], [6, 5, 6, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 1, 1, 1, 1, 2, 2, 2], [6, 5, 5, 6, 5, 5, 5, 5, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 1, 1, 1], [7, 6, 5, 5, 6, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7], [7, 6, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 7, 7], [1, 6, 6, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6], [1, 7, 6, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6], [2, 7, 6, 6, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6], [2, 7, 6, 6, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6], [3, 1, 7, 6, 6, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [3, 1, 7, 6, 6, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5], [4, 1, 7, 6, 6, 6, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 5], [4, 2, 7, 7, 6, 6, 5, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5], [5, 2, 1, 7, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5], [5, 2, 1, 7, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5], [6, 3, 1, 7, 7, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5], [6, 3, 1, 7, 7, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5], [7, 3, 2, 1, 7, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 5, 5], [7, 4, 2, 1, 7, 7, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 5], [1, 4, 2, 1, 7, 7, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6]]}, {"input": [[5, 4, 5, 5, 6, 6, 7, 7, 8, 8, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6], [4, 5, 4, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, 8, 8, 8, 1, 1, 1, 2, 2], [5, 4, 5, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, 7, 7, 0, 0, 8, 8, 8], [5, 4, 4, 5, 4, 4, 4, 4, 5, 5, 5, 5, 5, 6, 6, 6, 0, 0, 7, 7, 7], [6, 5, 4, 4, 5, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 0, 0, 6, 6, 6], [6, 5, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 0, 0, 5, 6, 6], [7, 5, 5, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 5, 5, 0, 0, 5, 5, 5], [7, 6, 5, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5], [8, 6, 5, 5, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5], [8, 6, 5, 5, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5], [1, 7, 6, 5, 5, 4, 4, 4, 4, 4, 5, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4], [1, 7, 6, 5, 5, 4, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4], [2, 7, 6, 5, 5, 5, 4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4], [2, 8, 6, 6, 5, 5, 4, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4], [3, 8, 7, 6, 5, 5, 5, 4, 4, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4], [3, 8, 7, 6, 5, 5, 5, 4, 4, 0, 0, 0, 0, 0, 0, 5, 4, 4, 4, 4, 4], [4, 1, 7, 6, 6, 5, 5, 5, 4, 0, 0, 0, 4, 4, 4, 4, 5, 4, 4, 4, 4], [4, 1, 7, 6, 6, 5, 5, 5, 4, 0, 0, 0, 4, 4, 4, 4, 4, 5, 4, 4, 4], [5, 1, 8, 7, 6, 5, 5, 5, 5, 0, 0, 0, 4, 4, 4, 4, 4, 4, 5, 4, 4], [5, 2, 8, 7, 6, 6, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 4], [6, 2, 8, 7, 6, 6, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5]], "output": [[5, 4, 5, 5, 6, 6, 7, 7, 8, 8, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6], [4, 5, 4, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, 8, 8, 8, 1, 1, 1, 2, 2], [5, 4, 5, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8], [5, 4, 4, 5, 4, 4, 4, 4, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 7, 7, 7], [6, 5, 4, 4, 5, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6], [6, 5, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 6, 6], [7, 5, 5, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5], [7, 6, 5, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5], [8, 6, 5, 5, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5], [8, 6, 5, 5, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5], [1, 7, 6, 5, 5, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 7, 6, 5, 5, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4], [2, 7, 6, 5, 5, 5, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 4], [2, 8, 6, 6, 5, 5, 4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4], [3, 8, 7, 6, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4], [3, 8, 7, 6, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4], [4, 1, 7, 6, 6, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4], [4, 1, 7, 6, 6, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4], [5, 1, 8, 7, 6, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 4, 4], [5, 2, 8, 7, 6, 6, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 4], [6, 2, 8, 7, 6, 6, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/7447852a.json b/data/arc-agi/training/7447852a.json
deleted file mode 100644
index 2cc48b4..0000000
--- a/data/arc-agi/training/7447852a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 0, 0, 0, 2, 0, 0, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0]], "output": [[2, 0, 0, 0, 2, 4, 4, 4, 2, 0], [4, 2, 0, 2, 0, 2, 4, 2, 0, 2], [4, 4, 2, 0, 0, 0, 2, 0, 0, 0]]}, {"input": [[2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2]], "output": [[2, 0, 0, 0, 2, 4, 4, 4, 2, 0, 0, 0, 2, 0, 0], [4, 2, 0, 2, 0, 2, 4, 2, 0, 2, 0, 2, 4, 2, 0], [4, 4, 2, 0, 0, 0, 2, 0, 0, 0, 2, 4, 4, 4, 2]]}, {"input": [[2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0]], "output": [[2, 0, 0, 0, 2, 4, 4, 4, 2, 0, 0, 0, 2, 0, 0, 0, 2, 4], [4, 2, 0, 2, 0, 2, 4, 2, 0, 2, 0, 2, 4, 2, 0, 2, 0, 2], [4, 4, 2, 0, 0, 0, 2, 0, 0, 0, 2, 4, 4, 4, 2, 0, 0, 0]]}], "test": [{"input": [[2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0]], "output": [[2, 0, 0, 0, 2, 4, 4, 4, 2, 0, 0, 0, 2, 0, 0, 0, 2, 4, 4, 4, 2, 0, 0, 0, 2], [4, 2, 0, 2, 0, 2, 4, 2, 0, 2, 0, 2, 4, 2, 0, 2, 0, 2, 4, 2, 0, 2, 0, 2, 4], [4, 4, 2, 0, 0, 0, 2, 0, 0, 0, 2, 4, 4, 4, 2, 0, 0, 0, 2, 0, 0, 0, 2, 4, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/7468f01a.json b/data/arc-agi/training/7468f01a.json
deleted file mode 100644
index 524d76c..0000000
--- a/data/arc-agi/training/7468f01a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 2, 8, 0, 0, 0, 0, 0], [0, 0, 8, 2, 2, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 2, 2, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 2, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 2, 2, 8], [8, 8, 8, 8, 2, 2, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 1, 1, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 1, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 1, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 4, 4, 4, 4], [4, 4, 4, 4, 4], [4, 4, 1, 1, 4], [4, 1, 1, 4, 4], [4, 4, 1, 4, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 3, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 3, 3, 3, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 6, 3, 6, 6, 6], [6, 6, 3, 3, 3, 6], [6, 3, 6, 6, 6, 6], [6, 3, 6, 6, 6, 6]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 8, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 8, 8, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 8, 8, 8, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 8, 1, 1, 1, 1], [1, 8, 8, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 8, 8, 8, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/746b3537.json b/data/arc-agi/training/746b3537.json
deleted file mode 100644
index da7b33e..0000000
--- a/data/arc-agi/training/746b3537.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1], [2, 2, 2], [1, 1, 1]], "output": [[1], [2], [1]]}, {"input": [[3, 4, 6], [3, 4, 6], [3, 4, 6]], "output": [[3, 4, 6]]}, {"input": [[2, 3, 3, 8, 1], [2, 3, 3, 8, 1], [2, 3, 3, 8, 1]], "output": [[2, 3, 8, 1]]}, {"input": [[2, 2], [6, 6], [8, 8], [8, 8]], "output": [[2], [6], [8]]}, {"input": [[4, 4, 4, 4], [4, 4, 4, 4], [2, 2, 2, 2], [2, 2, 2, 2], [8, 8, 8, 8], [3, 3, 3, 3]], "output": [[4], [2], [8], [3]]}], "test": [{"input": [[1, 1, 2, 3, 3, 3, 8, 8, 4], [1, 1, 2, 3, 3, 3, 8, 8, 4], [1, 1, 2, 3, 3, 3, 8, 8, 4], [1, 1, 2, 3, 3, 3, 8, 8, 4]], "output": [[1, 2, 3, 8, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/74dd1130.json b/data/arc-agi/training/74dd1130.json
deleted file mode 100644
index 817d8b2..0000000
--- a/data/arc-agi/training/74dd1130.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[9, 3, 4], [9, 4, 4], [9, 3, 4]], "output": [[9, 9, 9], [3, 4, 3], [4, 4, 4]]}], "train": [{"input": [[2, 2, 1], [1, 5, 1], [5, 2, 2]], "output": [[2, 1, 5], [2, 5, 2], [1, 1, 2]]}, {"input": [[2, 2, 5], [6, 2, 2], [5, 5, 5]], "output": [[2, 6, 5], [2, 2, 5], [5, 2, 5]]}, {"input": [[9, 9, 5], [5, 5, 8], [5, 8, 9]], "output": [[9, 5, 5], [9, 5, 8], [5, 8, 9]]}, {"input": [[2, 6, 6], [2, 1, 1], [2, 6, 2]], "output": [[2, 2, 2], [6, 1, 6], [6, 1, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/75b8110e.json b/data/arc-agi/training/75b8110e.json
deleted file mode 100644
index c4e51ba..0000000
--- a/data/arc-agi/training/75b8110e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[0, 4, 0, 4, 5, 0, 0, 0], [0, 4, 4, 4, 5, 0, 5, 5], [4, 4, 4, 0, 0, 5, 5, 5], [0, 0, 0, 0, 5, 0, 0, 0], [6, 0, 6, 6, 9, 9, 9, 0], [0, 0, 0, 6, 0, 9, 0, 0], [0, 6, 0, 0, 0, 0, 9, 9], [6, 0, 0, 0, 0, 9, 0, 0]], "output": [[5, 9, 6, 6], [5, 9, 5, 5], [4, 5, 5, 5], [5, 9, 0, 0]]}], "train": [{"input": [[4, 4, 0, 0, 0, 0, 5, 0], [4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 5, 0], [0, 4, 0, 0, 5, 5, 0, 0], [0, 0, 6, 0, 0, 0, 9, 0], [6, 6, 6, 0, 0, 0, 0, 9], [6, 0, 6, 6, 9, 9, 0, 0], [0, 6, 6, 0, 9, 0, 0, 0]], "output": [[4, 4, 5, 0], [6, 6, 6, 9], [6, 9, 5, 6], [5, 5, 6, 0]]}, {"input": [[4, 0, 0, 4, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5], [4, 4, 0, 4, 0, 5, 0, 0], [4, 0, 4, 4, 0, 5, 5, 5], [0, 0, 0, 6, 0, 9, 0, 9], [0, 0, 6, 0, 0, 9, 0, 0], [6, 0, 0, 6, 0, 9, 0, 9], [0, 0, 6, 6, 0, 0, 0, 9]], "output": [[5, 5, 0, 6], [0, 9, 5, 5], [6, 5, 0, 6], [4, 5, 5, 5]]}, {"input": [[0, 0, 0, 4, 5, 0, 0, 0], [4, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 4, 0, 0, 5, 0], [0, 4, 0, 4, 0, 0, 5, 0], [6, 0, 0, 0, 0, 9, 9, 0], [6, 0, 0, 0, 0, 9, 0, 9], [6, 0, 6, 0, 9, 9, 9, 0], [6, 0, 6, 0, 0, 0, 0, 0]], "output": [[5, 9, 9, 4], [6, 5, 0, 9], [6, 9, 5, 4], [6, 4, 5, 4]]}, {"input": [[4, 0, 0, 4, 0, 5, 0, 5], [0, 0, 4, 0, 5, 0, 0, 5], [0, 0, 4, 4, 0, 0, 5, 5], [4, 0, 0, 0, 5, 0, 0, 5], [6, 6, 6, 0, 9, 0, 9, 9], [6, 6, 6, 0, 0, 9, 9, 9], [6, 0, 0, 6, 9, 9, 0, 9], [6, 6, 0, 6, 9, 0, 9, 9]], "output": [[6, 5, 6, 5], [5, 6, 6, 5], [6, 9, 5, 5], [5, 6, 9, 5]]}, {"input": [[0, 4, 4, 4, 0, 5, 5, 5], [0, 0, 4, 0, 5, 5, 0, 5], [0, 0, 0, 0, 5, 0, 0, 0], [4, 0, 0, 0, 5, 0, 0, 0], [6, 6, 0, 6, 0, 0, 9, 9], [0, 0, 0, 6, 9, 0, 9, 0], [0, 0, 0, 6, 9, 0, 9, 9], [6, 6, 0, 6, 0, 9, 0, 9]], "output": [[6, 5, 5, 5], [5, 5, 9, 5], [5, 0, 9, 6], [5, 6, 0, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/760b3cac.json b/data/arc-agi/training/760b3cac.json
deleted file mode 100644
index 344becd..0000000
--- a/data/arc-agi/training/760b3cac.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 8, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0]], "output": [[8, 0, 8, 8, 0, 8, 0, 0, 0], [8, 8, 0, 0, 8, 8, 0, 0, 0], [8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 8, 0, 8, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0]], "output": [[0, 0, 0, 8, 0, 8, 8, 0, 8], [0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 8, 0, 0, 8, 8], [0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0]], "output": [[0, 0, 8, 8, 0, 0, 0, 0, 0], [8, 8, 0, 0, 8, 8, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 8, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0]], "output": [[0, 0, 0, 8, 0, 8, 8, 0, 8], [0, 0, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 8, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/776ffc46.json b/data/arc-agi/training/776ffc46.json
deleted file mode 100644
index c3befd0..0000000
--- a/data/arc-agi/training/776ffc46.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [5, 0, 0, 2, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [5, 0, 2, 2, 2, 0, 5, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [5, 0, 0, 2, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [5, 0, 0, 2, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [5, 0, 2, 2, 2, 0, 5, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [5, 0, 0, 2, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 3, 3, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 3, 3, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 3, 3, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 3, 3, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 3, 3, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 3, 3, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5], [0, 0, 2, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5], [0, 0, 2, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 2, 2, 2, 0, 5], [0, 0, 2, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 2, 2, 2, 0, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5], [0, 0, 2, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5], [0, 0, 2, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 2, 2, 2, 0, 5], [0, 0, 2, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 2, 2, 2, 0, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 3, 3, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 5, 0, 3, 3, 3, 3, 0], [0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 3, 3, 3, 0, 5, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 3, 3, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 3, 3, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 3, 3, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 5, 0, 3, 3, 3, 3, 0], [0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 3, 3, 3, 0, 5, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 3, 3, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 3, 3, 3, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 3, 3, 3, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 5, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0], [0, 0, 2, 2, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 2, 0, 0, 5, 0], [0, 2, 2, 2, 2, 0, 5, 0, 0, 0, 0, 0, 5, 0, 2, 2, 2, 0, 5, 0], [0, 2, 2, 2, 2, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 2, 0, 0, 5, 0], [0, 0, 2, 2, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 5, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0], [0, 0, 2, 2, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 2, 0, 0, 5, 0], [0, 2, 2, 2, 2, 0, 5, 0, 0, 0, 0, 0, 5, 0, 2, 2, 2, 0, 5, 0], [0, 2, 2, 2, 2, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 2, 0, 0, 5, 0], [0, 0, 2, 2, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/77fdfe62.json b/data/arc-agi/training/77fdfe62.json
deleted file mode 100644
index cfbbd1d..0000000
--- a/data/arc-agi/training/77fdfe62.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 1, 0, 0, 0, 0, 1, 3], [1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 0, 8, 0, 0, 1, 0], [0, 1, 8, 8, 0, 8, 1, 0], [0, 1, 0, 0, 8, 0, 1, 0], [0, 1, 8, 0, 8, 8, 1, 0], [1, 1, 1, 1, 1, 1, 1, 1], [4, 1, 0, 0, 0, 0, 1, 6]], "output": [[0, 2, 0, 0], [2, 2, 0, 3], [0, 0, 6, 0], [4, 0, 6, 6]]}, {"input": [[9, 1, 0, 0, 1, 4], [1, 1, 1, 1, 1, 1], [0, 1, 8, 8, 1, 0], [0, 1, 8, 0, 1, 0], [1, 1, 1, 1, 1, 1], [2, 1, 0, 0, 1, 3]], "output": [[9, 4], [2, 0]]}, {"input": [[6, 1, 0, 0, 0, 0, 1, 2], [1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 0, 8, 0, 8, 1, 0], [0, 1, 8, 8, 8, 0, 1, 0], [0, 1, 8, 0, 8, 8, 1, 0], [0, 1, 8, 8, 8, 0, 1, 0], [1, 1, 1, 1, 1, 1, 1, 1], [7, 1, 0, 0, 0, 0, 1, 4]], "output": [[0, 6, 0, 2], [6, 6, 2, 0], [7, 0, 4, 4], [7, 7, 4, 0]]}], "test": [{"input": [[3, 1, 0, 0, 0, 0, 0, 0, 1, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 0, 8, 8, 0, 0, 0, 1, 0], [0, 1, 8, 8, 8, 0, 8, 0, 1, 0], [0, 1, 0, 0, 8, 0, 8, 0, 1, 0], [0, 1, 0, 8, 0, 8, 8, 0, 1, 0], [0, 1, 8, 8, 0, 8, 0, 8, 1, 0], [0, 1, 0, 8, 0, 0, 8, 0, 1, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [7, 1, 0, 0, 0, 0, 0, 0, 1, 5]], "output": [[0, 3, 3, 0, 0, 0], [3, 3, 3, 0, 4, 0], [0, 0, 3, 0, 4, 0], [0, 7, 0, 5, 5, 0], [7, 7, 0, 5, 0, 5], [0, 7, 0, 0, 5, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/780d0b14.json b/data/arc-agi/training/780d0b14.json
deleted file mode 100644
index b905191..0000000
--- a/data/arc-agi/training/780d0b14.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8], [1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 0, 1, 1, 1, 0, 1, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8], [0, 1, 1, 0, 1, 1, 1, 1, 0, 8, 0, 8, 8, 0, 8, 8, 8, 0, 8, 8], [1, 0, 1, 1, 1, 1, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8], [1, 1, 0, 1, 1, 1, 1, 1, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 8, 8, 0, 8, 8, 8, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 6, 6, 0, 6, 6, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0], [0, 6, 0, 6, 6, 6, 0, 6, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1], [6, 6, 6, 0, 6, 6, 6, 6, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1], [6, 0, 6, 6, 0, 6, 0, 6, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1], [6, 6, 6, 6, 6, 0, 6, 6, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1], [6, 6, 6, 6, 6, 0, 6, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1], [6, 6, 6, 0, 6, 6, 0, 6, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1], [0, 6, 6, 6, 0, 0, 6, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0], [6, 0, 0, 0, 6, 0, 6, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1], [6, 6, 0, 6, 0, 6, 6, 6, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0]], "output": [[1, 8], [6, 1]]}, {"input": [[4, 4, 4, 4, 4, 0, 0, 8, 0, 8, 8, 8, 0, 0, 3, 3, 3, 0, 0, 3, 3, 3], [4, 4, 4, 0, 0, 4, 0, 8, 8, 8, 8, 8, 0, 0, 3, 3, 3, 3, 0, 3, 3, 0], [4, 4, 4, 4, 0, 0, 0, 8, 8, 0, 0, 8, 0, 0, 3, 3, 3, 0, 3, 0, 3, 3], [4, 4, 0, 0, 4, 4, 0, 8, 8, 8, 8, 8, 8, 0, 3, 3, 3, 3, 0, 3, 3, 3], [4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 8, 8, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 0, 4, 4, 4, 4, 0, 8, 0, 8, 0, 8, 0, 0, 3, 0, 3, 3, 3, 3, 3, 3], [4, 4, 0, 4, 4, 0, 0, 8, 8, 8, 8, 0, 8, 0, 3, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 2, 0, 2, 2, 2, 2, 0, 8, 0, 8, 0, 0, 8, 8, 8], [1, 0, 1, 1, 0, 1, 0, 2, 0, 2, 2, 2, 0, 0, 8, 8, 8, 0, 0, 8, 8, 8], [1, 1, 1, 0, 1, 0, 0, 2, 0, 2, 2, 2, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 0, 1, 0, 1, 0, 2, 2, 2, 2, 0, 2, 0, 0, 0, 8, 8, 8, 0, 8, 8], [1, 1, 1, 0, 1, 0, 0, 2, 2, 0, 2, 2, 0, 0, 0, 8, 0, 8, 8, 8, 8, 0], [1, 1, 1, 1, 1, 1, 0, 0, 2, 2, 2, 0, 2, 0, 8, 8, 0, 0, 8, 0, 8, 8], [1, 1, 1, 0, 0, 0, 0, 2, 0, 2, 2, 2, 2, 0, 8, 8, 0, 0, 0, 8, 8, 8], [1, 0, 0, 1, 0, 1, 0, 2, 2, 0, 2, 2, 0, 0, 8, 0, 8, 8, 0, 0, 0, 8], [1, 1, 1, 1, 0, 1, 0, 0, 2, 2, 2, 0, 2, 0, 0, 8, 8, 0, 0, 0, 8, 0], [1, 1, 0, 1, 1, 1, 0, 2, 2, 2, 0, 2, 0, 0, 8, 0, 8, 8, 0, 0, 8, 8]], "output": [[4, 8, 3], [1, 2, 8]]}, {"input": [[2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 7, 0, 0, 7, 0, 0], [2, 2, 0, 0, 2, 0, 2, 0, 7, 0, 7, 0, 7, 7, 7, 7, 0], [2, 2, 2, 2, 0, 2, 2, 0, 0, 7, 7, 0, 0, 7, 7, 0, 7], [2, 0, 2, 2, 0, 2, 2, 0, 0, 0, 7, 7, 7, 7, 7, 7, 0], [2, 2, 2, 0, 2, 2, 2, 0, 0, 7, 0, 7, 7, 7, 0, 0, 0], [2, 0, 2, 0, 2, 2, 2, 0, 7, 7, 0, 7, 7, 0, 0, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0, 0, 8, 0, 8, 8, 8, 8, 8, 8], [4, 0, 4, 4, 0, 4, 0, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8], [4, 0, 0, 4, 0, 4, 4, 0, 0, 8, 0, 8, 8, 0, 8, 0, 8], [4, 4, 0, 0, 0, 0, 4, 0, 8, 8, 0, 8, 8, 8, 8, 8, 8], [4, 4, 4, 4, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0], [4, 4, 4, 4, 0, 4, 4, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 0, 0, 8, 8, 8, 0, 0, 8, 8, 8, 0], [0, 4, 4, 4, 0, 4, 4, 0, 8, 8, 0, 8, 8, 8, 8, 0, 8], [0, 0, 0, 0, 4, 4, 4, 0, 0, 8, 0, 0, 8, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 6, 6, 0, 6, 6, 0, 6, 6, 6], [0, 1, 1, 1, 1, 1, 0, 0, 6, 6, 6, 0, 6, 6, 6, 6, 0], [1, 1, 1, 1, 1, 0, 1, 0, 6, 6, 6, 6, 0, 6, 6, 6, 6], [1, 0, 0, 0, 1, 1, 1, 0, 6, 6, 6, 0, 6, 6, 6, 6, 6], [1, 0, 1, 1, 1, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 6, 6], [1, 1, 1, 1, 1, 1, 1, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6]], "output": [[2, 7], [4, 8], [1, 6]]}], "test": [{"input": [[3, 3, 3, 0, 3, 3, 3, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4], [3, 3, 3, 3, 3, 3, 3, 0, 2, 2, 0, 2, 2, 2, 2, 0, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 3, 0, 0, 3, 3, 0, 0, 2, 2, 0, 0, 2, 2, 2, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [3, 0, 3, 3, 3, 3, 3, 0, 2, 0, 2, 2, 2, 2, 2, 0, 4, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8, 0], [1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 8, 8, 8, 8, 8, 8, 0, 8, 0, 8, 8, 0], [1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8], [1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 0, 8], [0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 8, 8, 8, 0, 8, 8, 0, 8, 8, 8], [1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 8, 8, 8, 8, 8, 8, 0, 8, 0, 8, 8, 0], [1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 8, 8, 8, 8, 8, 0, 0, 0, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 8], [1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 0], [1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 8, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 8, 8, 8, 8, 8, 8, 0, 8, 0, 8, 8, 8], [1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8], [0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 7, 0, 7, 7, 0, 7, 0, 3, 3, 0, 0, 3, 3, 3, 0, 2, 0, 2, 2, 2, 2, 0, 2, 2, 0, 2, 2], [7, 7, 7, 0, 7, 7, 7, 0, 0, 3, 3, 0, 3, 0, 0, 0, 2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 0], [7, 7, 7, 7, 7, 7, 7, 0, 3, 3, 3, 3, 3, 3, 3, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]], "output": [[3, 2, 4], [1, 1, 8], [7, 3, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/7837ac64.json b/data/arc-agi/training/7837ac64.json
deleted file mode 100644
index dd92f3f..0000000
--- a/data/arc-agi/training/7837ac64.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 1, 4, 4, 1, 4, 4, 3, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 1, 4, 4, 1, 4, 4, 3, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 1, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 1, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0]], "output": [[1, 0, 3], [1, 0, 0], [1, 0, 0]]}, {"input": [[0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 2, 3, 3, 3, 2, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 2, 3, 3, 3, 2, 3, 3, 3, 8, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0]], "output": [[0, 2, 0], [2, 0, 0], [0, 0, 8]]}, {"input": [[0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 1, 1, 6, 1, 1, 6, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 1, 1, 6, 1, 1, 6, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0]], "output": [[6, 6, 0], [0, 0, 0], [3, 3, 3]]}, {"input": [[0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 8, 2, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 8, 2, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 2, 8, 8, 8, 2, 8, 8, 8, 2, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 2, 8, 8, 8, 2, 8, 8, 8, 2, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0]], "output": [[1, 0, 2], [0, 0, 2], [2, 2, 2]]}], "test": [{"input": [[0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [2, 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 4, 2, 2, 2, 2, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [2, 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 4, 2, 2, 2, 2, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [2, 2, 2, 2, 8, 2, 2, 2, 2, 8, 2, 2, 2, 2, 8, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [2, 2, 2, 2, 8, 2, 2, 2, 2, 8, 2, 2, 2, 2, 8, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0]], "output": [[1, 0, 4], [0, 0, 0], [8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/794b24be.json b/data/arc-agi/training/794b24be.json
deleted file mode 100644
index 6b0f630..0000000
--- a/data/arc-agi/training/794b24be.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0], [1, 0, 0], [0, 0, 0]], "output": [[2, 0, 0], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 1, 0], [1, 0, 0], [0, 0, 0]], "output": [[2, 2, 0], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 0, 1], [0, 0, 0], [1, 0, 0]], "output": [[2, 2, 0], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 1, 0], [0, 0, 1], [0, 0, 0]], "output": [[2, 2, 0], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 0, 1], [0, 0, 0], [0, 0, 0]], "output": [[2, 0, 0], [0, 0, 0], [0, 0, 0]]}, {"input": [[1, 1, 0], [0, 0, 0], [1, 0, 0]], "output": [[2, 2, 2], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 1, 0], [1, 1, 0], [0, 0, 0]], "output": [[2, 2, 2], [0, 0, 0], [0, 0, 0]]}, {"input": [[1, 1, 0], [0, 0, 0], [1, 0, 1]], "output": [[2, 2, 2], [0, 2, 0], [0, 0, 0]]}, {"input": [[0, 1, 0], [1, 1, 0], [1, 0, 0]], "output": [[2, 2, 2], [0, 2, 0], [0, 0, 0]]}, {"input": [[1, 0, 0], [0, 0, 1], [0, 1, 1]], "output": [[2, 2, 2], [0, 2, 0], [0, 0, 0]]}], "test": [{"input": [[0, 1, 0], [0, 0, 0], [0, 1, 0]], "output": [[2, 2, 0], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 1, 0], [0, 1, 1], [1, 0, 0]], "output": [[2, 2, 2], [0, 2, 0], [0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/7b6016b9.json b/data/arc-agi/training/7b6016b9.json
deleted file mode 100644
index d7811b9..0000000
--- a/data/arc-agi/training/7b6016b9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 8, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 2, 2, 2, 8, 3, 3, 3, 3, 3, 8, 3, 3, 3, 8, 3, 3], [3, 3, 3, 3, 3, 3, 8, 2, 2, 2, 8, 3, 3, 3, 3, 3, 8, 3, 3, 3, 8, 3, 3], [3, 3, 3, 3, 3, 3, 8, 2, 2, 2, 8, 3, 3, 3, 3, 3, 8, 3, 3, 3, 8, 3, 3], [3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3], [3, 3, 3, 3, 3, 3, 8, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 3, 3, 3, 8, 3, 3], [3, 3, 3, 3, 3, 3, 8, 2, 2, 2, 8, 2, 2, 2, 2, 2, 8, 3, 3, 3, 8, 3, 3], [3, 3, 3, 3, 3, 3, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 3, 3, 3, 8, 3, 3], [3, 3, 3, 3, 3, 3, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 3, 3, 3, 3, 3, 3], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 8, 2, 2, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 8, 2, 2, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3, 8, 2, 2, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 3, 3, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 3, 3, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 3, 3, 3, 1, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 2, 2, 2, 2, 2, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 2, 2, 2, 2, 2, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 2, 2, 2, 2, 2, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 2, 2, 2, 2, 2, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3], [3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3], [3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3], [3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3], [3, 3, 3, 3, 4, 2, 2, 2, 2, 2, 2, 2, 2, 4, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 4, 2, 2, 2, 2, 2, 2, 2, 2, 4, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 4, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3], [3, 3, 3, 3, 4, 2, 2, 2, 2, 2, 2, 2, 2, 4, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 4, 2, 2, 2, 2, 2, 2, 2, 2, 4, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 4, 2, 2, 2, 2, 2, 2, 2, 2, 4, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 4, 2, 2, 2, 2, 2, 2, 2, 2, 4, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 4, 2, 2, 4, 2, 2, 2, 2, 2, 4, 3, 3, 3, 3, 4, 3, 3], [3, 3, 3, 3, 4, 2, 2, 4, 2, 2, 2, 2, 2, 4, 3, 3, 3, 3, 4, 3, 3], [3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3], [3, 3, 3, 3, 4, 2, 2, 4, 3, 3, 3, 3, 3, 4, 2, 2, 2, 2, 4, 3, 3], [3, 3, 3, 3, 4, 2, 2, 4, 3, 3, 3, 3, 3, 4, 2, 2, 2, 2, 4, 3, 3], [3, 3, 3, 3, 4, 2, 2, 4, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4], [3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 4, 3, 3, 3, 3, 4, 3, 3], [3, 3, 3, 3, 4, 3, 3, 4, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 4, 3, 3], [3, 3, 3, 3, 4, 3, 3, 4, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 4, 3, 3], [3, 3, 3, 3, 4, 3, 3, 4, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0], [0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 7, 3, 3, 3, 3, 3, 7, 3, 3, 3, 3, 7, 3, 3, 3, 3, 3, 7, 3, 3], [3, 3, 3, 3, 3, 7, 3, 3, 3, 3, 3, 7, 3, 3, 3, 3, 7, 3, 3, 3, 3, 3, 7, 3, 3], [3, 3, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 3], [3, 3, 3, 3, 3, 7, 2, 2, 2, 2, 2, 7, 2, 2, 2, 2, 7, 2, 2, 2, 2, 2, 7, 3, 3], [3, 3, 3, 3, 3, 7, 2, 2, 2, 2, 2, 7, 2, 2, 2, 2, 7, 2, 2, 2, 2, 2, 7, 3, 3], [3, 3, 3, 3, 3, 7, 2, 2, 2, 2, 2, 7, 2, 2, 2, 2, 7, 2, 2, 2, 2, 2, 7, 3, 3], [3, 3, 3, 3, 3, 7, 2, 2, 2, 2, 2, 7, 2, 2, 2, 2, 7, 2, 2, 2, 2, 2, 7, 3, 3], [3, 3, 3, 3, 3, 7, 2, 2, 2, 2, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 3], [3, 3, 3, 3, 3, 7, 2, 2, 2, 2, 2, 7, 2, 2, 2, 2, 7, 3, 3, 3, 3, 3, 7, 3, 3], [3, 3, 3, 3, 3, 7, 2, 2, 2, 2, 2, 7, 2, 2, 2, 2, 7, 3, 3, 3, 3, 3, 7, 3, 3], [3, 3, 3, 3, 3, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 7, 3, 3, 3, 3, 3, 7, 3, 3], [3, 3, 3, 3, 3, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 7, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 7, 3, 3, 3, 3, 3, 3, 7, 7, 7, 7, 7, 7, 7, 7, 7, 3, 3, 3, 3], [3, 3, 3, 7, 7, 7, 7, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/7b7f7511.json b/data/arc-agi/training/7b7f7511.json
deleted file mode 100644
index 274e297..0000000
--- a/data/arc-agi/training/7b7f7511.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 3, 2, 1, 1, 3, 2], [1, 1, 3, 3, 1, 1, 3, 3], [3, 3, 1, 1, 3, 3, 1, 1], [2, 3, 1, 1, 2, 3, 1, 1]], "output": [[1, 1, 3, 2], [1, 1, 3, 3], [3, 3, 1, 1], [2, 3, 1, 1]]}, {"input": [[4, 4, 4, 4, 4, 4], [6, 4, 8, 6, 4, 8], [6, 6, 8, 6, 6, 8]], "output": [[4, 4, 4], [6, 4, 8], [6, 6, 8]]}, {"input": [[2, 3], [3, 2], [4, 4], [2, 3], [3, 2], [4, 4]], "output": [[2, 3], [3, 2], [4, 4]]}], "test": [{"input": [[5, 4, 5], [4, 5, 4], [6, 6, 4], [2, 6, 2], [5, 4, 5], [4, 5, 4], [6, 6, 4], [2, 6, 2]], "output": [[5, 4, 5], [4, 5, 4], [6, 6, 4], [2, 6, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/7c008303.json b/data/arc-agi/training/7c008303.json
deleted file mode 100644
index 2b355ad..0000000
--- a/data/arc-agi/training/7c008303.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 4, 8, 0, 0, 0, 0, 0, 0], [1, 6, 8, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 0, 3, 0, 0, 3, 0], [0, 0, 8, 3, 3, 3, 3, 3, 3], [0, 0, 8, 0, 3, 0, 0, 3, 0], [0, 0, 8, 0, 3, 0, 0, 3, 0], [0, 0, 8, 3, 3, 3, 3, 3, 3], [0, 0, 8, 0, 3, 0, 0, 3, 0]], "output": [[0, 2, 0, 0, 4, 0], [2, 2, 2, 4, 4, 4], [0, 2, 0, 0, 4, 0], [0, 1, 0, 0, 6, 0], [1, 1, 1, 6, 6, 6], [0, 1, 0, 0, 6, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 8, 1, 2], [0, 0, 0, 0, 0, 0, 8, 4, 1], [8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 3, 3, 0, 3, 8, 0, 0], [3, 3, 0, 0, 0, 0, 8, 0, 0], [3, 3, 0, 3, 0, 3, 8, 0, 0], [0, 0, 0, 0, 3, 0, 8, 0, 0], [3, 3, 3, 3, 3, 3, 8, 0, 0], [0, 0, 0, 0, 3, 0, 8, 0, 0]], "output": [[0, 0, 1, 2, 0, 2], [1, 1, 0, 0, 0, 0], [1, 1, 0, 2, 0, 2], [0, 0, 0, 0, 1, 0], [4, 4, 4, 1, 1, 1], [0, 0, 0, 0, 1, 0]]}, {"input": [[0, 0, 8, 0, 0, 3, 0, 0, 3], [0, 0, 8, 0, 0, 3, 0, 0, 3], [0, 0, 8, 3, 3, 0, 3, 3, 0], [0, 0, 8, 0, 0, 0, 0, 3, 0], [0, 0, 8, 0, 3, 0, 3, 0, 0], [0, 0, 8, 0, 3, 0, 0, 0, 3], [8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 4, 8, 0, 0, 0, 0, 0, 0], [6, 5, 8, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 2, 0, 0, 4], [0, 0, 2, 0, 0, 4], [2, 2, 0, 4, 4, 0], [0, 0, 0, 0, 5, 0], [0, 6, 0, 5, 0, 0], [0, 6, 0, 0, 0, 5]]}], "test": [{"input": [[0, 0, 0, 3, 0, 0, 8, 0, 0], [3, 3, 0, 3, 0, 3, 8, 0, 0], [0, 3, 0, 3, 0, 3, 8, 0, 0], [0, 3, 3, 3, 0, 0, 8, 0, 0], [0, 3, 0, 0, 0, 3, 8, 0, 0], [0, 0, 3, 0, 0, 0, 8, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 8, 2, 1], [0, 0, 0, 0, 0, 0, 8, 4, 7]], "output": [[0, 0, 0, 1, 0, 0], [2, 2, 0, 1, 0, 1], [0, 2, 0, 1, 0, 1], [0, 4, 4, 7, 0, 0], [0, 4, 0, 0, 0, 7], [0, 0, 4, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/7ddcd7ec.json b/data/arc-agi/training/7ddcd7ec.json
deleted file mode 100644
index 43f6c12..0000000
--- a/data/arc-agi/training/7ddcd7ec.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/7df24a62.json b/data/arc-agi/training/7df24a62.json
deleted file mode 100644
index 74d3af9..0000000
--- a/data/arc-agi/training/7df24a62.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 4, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 4, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 4, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 4, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 1, 1, 1, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 4, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 1, 1, 1, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 4, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 4, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [4, 0, 4, 0, 0, 1, 1, 1, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 4, 1, 4, 4, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 4, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 4, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 1, 4, 4, 1, 1, 4, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 4, 1, 0, 0, 0], [4, 0, 4, 0, 0, 1, 1, 1, 1, 1, 4, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 4], [0, 0, 0, 0, 4, 1, 4, 4, 1, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0]]}, {"input": [[0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 4, 4, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 4, 1, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0]], "output": [[0, 1, 4, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 4, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1, 1, 4, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 4, 0, 0], [0, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 4, 4, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 4, 1, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 1, 4, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 1, 4, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 1, 4, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 1, 4, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 4, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 4, 1, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 4, 0, 0, 0, 1, 4, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/7e0986d6.json b/data/arc-agi/training/7e0986d6.json
deleted file mode 100644
index a55863c..0000000
--- a/data/arc-agi/training/7e0986d6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 0, 0, 0, 8, 0, 3, 3, 3, 3, 3, 8, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 8, 3, 8, 0, 0, 0], [0, 0, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 0, 3, 8, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3], [0, 8, 0, 3, 3, 3, 8, 3, 0, 3, 3, 3, 8, 3], [0, 0, 0, 3, 8, 3, 3, 3, 0, 3, 3, 3, 3, 3], [0, 0, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3], [3, 3, 3, 3, 8, 3, 3, 3, 8, 0, 0, 0, 0, 0], [3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 8, 3, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8]], "output": [[0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3], [0, 0, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3], [0, 0, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3], [0, 0, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 2, 1, 2, 2, 2, 2, 2], [0, 2, 2, 1, 2, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2], [0, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2], [0, 2, 2, 2, 2, 1, 0, 0, 0, 2, 2, 2, 2, 2, 1, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 1, 0, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 0, 0, 0], [0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 1], [0, 0, 0, 2, 2, 2, 2, 2, 2, 1, 2, 2, 1, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2], [0, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2], [0, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2], [0, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 4, 5, 0], [0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0], [0, 5, 4, 5, 5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 4], [0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 4, 5, 0, 0, 0, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 4, 5, 0], [0, 5, 5, 5, 5, 4, 5, 5, 5, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 4, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 5, 5, 5, 4, 5, 5, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/7f4411dc.json b/data/arc-agi/training/7f4411dc.json
deleted file mode 100644
index 3ed3ac4..0000000
--- a/data/arc-agi/training/7f4411dc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 7, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7], [0, 0, 0, 0, 7, 0, 0, 0, 7, 7, 7, 7, 7], [0, 0, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 7, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7], [0, 0, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 6], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 6, 0, 6, 6, 6, 6, 6, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5], [0, 5, 5, 5, 5, 0, 0], [0, 5, 5, 5, 5, 0, 0], [0, 5, 5, 5, 5, 5, 0], [5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0], [0, 5, 5, 5, 5, 0, 0], [0, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 8, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 8, 8, 8, 8, 0], [8, 0, 0, 0, 8, 8, 8, 8, 8, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/7fe24cdd.json b/data/arc-agi/training/7fe24cdd.json
deleted file mode 100644
index 64c41d9..0000000
--- a/data/arc-agi/training/7fe24cdd.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 5, 0], [8, 5, 3], [0, 3, 2]], "output": [[8, 5, 0, 0, 8, 8], [8, 5, 3, 3, 5, 5], [0, 3, 2, 2, 3, 0], [0, 3, 2, 2, 3, 0], [5, 5, 3, 3, 5, 8], [8, 8, 0, 0, 5, 8]]}, {"input": [[3, 8, 2], [3, 2, 2], [8, 5, 2]], "output": [[3, 8, 2, 8, 3, 3], [3, 2, 2, 5, 2, 8], [8, 5, 2, 2, 2, 2], [2, 2, 2, 2, 5, 8], [8, 2, 5, 2, 2, 3], [3, 3, 8, 2, 8, 3]]}, {"input": [[0, 3, 0], [6, 6, 6], [0, 3, 0]], "output": [[0, 3, 0, 0, 6, 0], [6, 6, 6, 3, 6, 3], [0, 3, 0, 0, 6, 0], [0, 6, 0, 0, 3, 0], [3, 6, 3, 6, 6, 6], [0, 6, 0, 0, 3, 0]]}], "test": [{"input": [[2, 5, 0], [2, 5, 1], [3, 1, 1]], "output": [[2, 5, 0, 3, 2, 2], [2, 5, 1, 1, 5, 5], [3, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 3], [5, 5, 1, 1, 5, 2], [2, 2, 3, 0, 5, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/80af3007.json b/data/arc-agi/training/80af3007.json
deleted file mode 100644
index 994e468..0000000
--- a/data/arc-agi/training/80af3007.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 0, 5, 0, 0, 0, 5, 0, 5], [0, 5, 0, 0, 0, 0, 0, 5, 0], [5, 0, 5, 0, 0, 0, 5, 0, 5], [0, 0, 0, 5, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 5, 0, 5, 0, 0, 0], [5, 0, 5, 0, 0, 0, 5, 0, 5], [0, 5, 0, 0, 0, 0, 0, 5, 0], [5, 0, 5, 0, 0, 0, 5, 0, 5]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 5, 0, 5, 5, 0, 0, 0, 0], [0, 0, 5, 0, 0, 5, 0, 0, 0], [5, 5, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 5, 5, 0], [5, 5, 0, 5, 5, 0, 0, 0, 0], [0, 0, 5, 0, 0, 5, 0, 0, 0], [5, 5, 0, 5, 5, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 5, 0, 5, 5, 0, 5, 5], [5, 0, 5, 5, 0, 5, 5, 0, 5], [0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 5, 5, 0, 5, 5], [0, 0, 0, 5, 0, 5, 5, 0, 5], [5, 5, 5, 0, 0, 0, 5, 5, 5], [0, 5, 5, 0, 0, 0, 0, 5, 5], [5, 0, 5, 0, 0, 0, 5, 0, 5]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 0, 5, 0, 0, 5, 0], [5, 0, 5, 5, 0, 5, 5, 0, 5], [0, 0, 0, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 5, 0, 5, 0, 0, 0], [5, 5, 5, 0, 0, 0, 5, 5, 5], [0, 5, 0, 0, 0, 0, 0, 5, 0], [5, 0, 5, 0, 0, 0, 5, 0, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/810b9b61.json b/data/arc-agi/training/810b9b61.json
deleted file mode 100644
index 12f4d3e..0000000
--- a/data/arc-agi/training/810b9b61.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0], [1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 1, 0, 1, 0, 0], [0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 1, 0, 1, 0, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 1, 0, 0, 3, 3, 3, 3, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0], [3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0], [3, 3, 3, 0, 0, 1, 1, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 1, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 1, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1], [0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1], [0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1], [0, 3, 3, 3, 3, 0, 0, 1, 0, 0, 0, 1], [0, 3, 0, 0, 3, 0, 0, 1, 0, 0, 0, 1], [0, 3, 3, 3, 3, 0, 0, 1, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 1, 0, 0, 3, 0, 0, 0, 3, 0, 0, 1], [0, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/82819916.json b/data/arc-agi/training/82819916.json
deleted file mode 100644
index 4c3f98a..0000000
--- a/data/arc-agi/training/82819916.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 2, 3, 3, 2, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 2, 3, 3, 2, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 4, 8, 8, 4, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 6, 1, 1, 6, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 1, 2, 1, 2, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 1, 2, 1, 2, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 1, 3, 1, 3, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 2, 8, 2, 8, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [1, 4, 1, 4, 4, 1, 4, 1], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [8, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [6, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [1, 4, 1, 4, 4, 1, 4, 1], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 2, 3, 3, 2, 3, 2], [0, 0, 0, 0, 0, 0, 0, 0], [8, 2, 8, 2, 2, 8, 2, 8], [0, 0, 0, 0, 0, 0, 0, 0], [6, 5, 6, 5, 5, 6, 5, 6], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 4, 4, 4, 3, 4, 3], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 4, 4, 4, 3, 4, 3], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 2, 2, 2, 8, 2, 8], [0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 1, 2, 1, 2, 1, 1, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 1, 2, 1, 2, 1, 1, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 3, 8, 3, 8, 3, 3, 8, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 4, 1, 4, 1, 4, 4, 1, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 8, 6, 8, 6, 8, 8, 6, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 6, 1, 6, 1, 6, 6, 1, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/83302e8f.json b/data/arc-agi/training/83302e8f.json
deleted file mode 100644
index d5abbac..0000000
--- a/data/arc-agi/training/83302e8f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 4, 4, 4, 4, 8, 3, 3, 3, 3], [3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 4, 4, 4, 4, 8, 3, 3, 3, 3], [3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 4, 4, 4, 4, 8, 3, 3, 3, 3], [3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 4, 4, 4, 4, 8, 3, 3, 3, 3], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 8, 8, 8, 8, 8, 8], [4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4], [4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4], [4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4], [8, 8, 8, 8, 8, 8, 8, 8, 4, 8, 8, 8, 8, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 4, 4, 4, 4], [4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4], [4, 4, 4, 4, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 8, 8, 4], [3, 3, 3, 3, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 3, 3, 3, 3, 8, 4, 4, 4, 4], [3, 3, 3, 3, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 3, 3, 3, 3, 8, 4, 4, 4, 4], [3, 3, 3, 3, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 3, 3, 3, 3, 8, 4, 4, 4, 4], [3, 3, 3, 3, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 3, 3, 3, 3, 8, 4, 4, 4, 4], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3], [3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3], [3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3], [3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3, 8, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1], [4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 4, 1, 1, 1], [4, 4, 4, 4, 4, 1, 3, 3, 3, 3, 3, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 3, 3, 3, 3, 3, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 3, 3, 3, 3, 3, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 3, 3, 3, 3, 3, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 1, 3, 3, 3, 3, 3, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 4], [4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [4, 4, 4, 4, 4, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [4, 4, 4, 4, 4, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [4, 4, 4, 4, 4, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [4, 4, 4, 4, 4, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3], [4, 4, 4, 4, 4, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0], [9, 9, 9, 9, 9, 9, 9, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 9, 9, 9, 9, 9, 9, 9, 9], [0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 0]], "output": [[4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 3, 3, 3, 3], [4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 3, 3, 3, 3], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 9, 3, 3, 3, 3], [4, 4, 4, 4, 4, 4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 3, 3, 3, 3], [9, 9, 9, 9, 9, 9, 9, 4, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 3, 3, 3, 3], [4, 4, 4, 4, 4, 4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 3, 3, 3, 3], [4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 3, 3, 3, 3], [4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 3, 3, 3, 3], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 9, 9, 9, 9, 9, 9, 9, 9], [3, 3, 3, 3, 9, 3, 3, 3, 3, 9, 4, 4, 4, 4, 9, 4, 4, 4, 4], [3, 3, 3, 3, 9, 3, 3, 3, 3, 9, 4, 4, 4, 4, 9, 4, 4, 4, 4], [3, 3, 3, 3, 9, 3, 3, 3, 3, 9, 4, 4, 4, 4, 9, 4, 4, 4, 4], [3, 3, 3, 3, 9, 3, 3, 3, 3, 9, 4, 4, 4, 4, 9, 4, 4, 4, 4], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4], [4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 4, 4, 4, 4], [4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 4, 4, 4, 4, 9, 4, 4, 4, 4]]}], "test": [{"input": [[0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 0, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0]], "output": [[3, 3, 3, 5, 4, 4, 4, 5, 4, 4, 4, 5, 3, 3, 3, 5, 3, 3, 3, 5, 3, 3, 3, 5, 4, 4, 4], [3, 3, 3, 5, 4, 4, 4, 5, 4, 4, 4, 5, 3, 3, 3, 5, 3, 3, 3, 5, 3, 3, 3, 5, 4, 4, 4], [3, 3, 3, 5, 4, 4, 4, 4, 4, 4, 4, 5, 3, 3, 3, 5, 3, 3, 3, 5, 3, 3, 3, 5, 4, 4, 4], [5, 5, 5, 5, 5, 5, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4], [4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 5, 3, 3, 3, 5, 4, 4, 4], [4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 3, 3, 3, 5, 4, 4, 4], [4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 5, 3, 3, 3, 5, 4, 4, 4], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [3, 3, 3, 5, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 5, 3, 3, 3, 5, 3, 3, 3, 5, 3, 3, 3], [3, 3, 3, 5, 4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4, 5, 3, 3, 3, 5, 3, 3, 3, 5, 3, 3, 3], [3, 3, 3, 5, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 5, 3, 3, 3, 5, 3, 3, 3, 5, 3, 3, 3], [5, 5, 5, 5, 5, 4, 4, 5, 5, 5, 4, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 5, 3, 3, 3], [4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 5, 3, 3, 3], [4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 5, 3, 3, 3], [5, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 5, 5, 5, 5, 5], [4, 4, 4, 5, 3, 3, 3, 5, 4, 4, 4, 5, 4, 4, 4, 5, 3, 3, 3, 5, 4, 4, 4, 5, 3, 3, 3], [4, 4, 4, 5, 3, 3, 3, 5, 4, 4, 4, 5, 4, 4, 4, 5, 3, 3, 3, 5, 4, 4, 4, 5, 3, 3, 3], [4, 4, 4, 5, 3, 3, 3, 5, 4, 4, 4, 4, 4, 4, 4, 5, 3, 3, 3, 5, 4, 4, 4, 5, 3, 3, 3], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 5, 5, 5, 5], [3, 3, 3, 5, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4], [3, 3, 3, 5, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4], [3, 3, 3, 5, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4], [5, 5, 5, 5, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5], [4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4, 5, 3, 3, 3, 5, 3, 3, 3], [4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 5, 4, 4, 4, 5, 3, 3, 3, 5, 3, 3, 3], [4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 4, 4, 5, 3, 3, 3, 5, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/834ec97d.json b/data/arc-agi/training/834ec97d.json
deleted file mode 100644
index d8886d6..0000000
--- a/data/arc-agi/training/834ec97d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 2, 0], [0, 0, 0], [0, 0, 0]], "output": [[0, 4, 0], [0, 2, 0], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 6, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[4, 0, 4, 0, 4], [4, 0, 4, 0, 4], [4, 0, 4, 0, 4], [0, 0, 6, 0, 0], [0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 0, 4, 0, 4, 0, 4, 0, 4], [4, 0, 4, 0, 4, 0, 4, 0, 4], [4, 0, 4, 0, 4, 0, 4, 0, 4], [4, 0, 4, 0, 4, 0, 4, 0, 4], [4, 0, 4, 0, 4, 0, 4, 0, 4], [0, 0, 9, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4], [0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4], [0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4], [0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/8403a5d5.json b/data/arc-agi/training/8403a5d5.json
deleted file mode 100644
index a58ba53..0000000
--- a/data/arc-agi/training/8403a5d5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 5, 2, 0, 2, 5, 2, 0, 2], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 2, 0, 2, 5, 2, 0, 2, 5, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 3, 5, 3, 0, 3], [0, 0, 0, 0, 0, 3, 0, 3, 0, 3], [0, 0, 0, 0, 0, 3, 0, 3, 0, 3], [0, 0, 0, 0, 0, 3, 0, 3, 0, 3], [0, 0, 0, 0, 0, 3, 0, 3, 0, 3], [0, 0, 0, 0, 0, 3, 0, 3, 0, 3], [0, 0, 0, 0, 0, 3, 0, 3, 0, 3], [0, 0, 0, 0, 0, 3, 0, 3, 0, 3], [0, 0, 0, 0, 0, 3, 0, 3, 0, 3], [0, 0, 0, 0, 0, 3, 0, 3, 5, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 4, 5, 4, 0, 4, 5], [0, 0, 0, 0, 4, 0, 4, 0, 4, 0], [0, 0, 0, 0, 4, 0, 4, 0, 4, 0], [0, 0, 0, 0, 4, 0, 4, 0, 4, 0], [0, 0, 0, 0, 4, 0, 4, 0, 4, 0], [0, 0, 0, 0, 4, 0, 4, 0, 4, 0], [0, 0, 0, 0, 4, 0, 4, 0, 4, 0], [0, 0, 0, 0, 4, 0, 4, 0, 4, 0], [0, 0, 0, 0, 4, 0, 4, 0, 4, 0], [0, 0, 0, 0, 4, 0, 4, 5, 4, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 1, 5, 1, 0, 1, 5, 1, 0], [0, 0, 1, 0, 1, 0, 1, 0, 1, 0], [0, 0, 1, 0, 1, 0, 1, 0, 1, 0], [0, 0, 1, 0, 1, 0, 1, 0, 1, 0], [0, 0, 1, 0, 1, 0, 1, 0, 1, 0], [0, 0, 1, 0, 1, 0, 1, 0, 1, 0], [0, 0, 1, 0, 1, 0, 1, 0, 1, 0], [0, 0, 1, 0, 1, 0, 1, 0, 1, 0], [0, 0, 1, 0, 1, 0, 1, 0, 1, 0], [0, 0, 1, 0, 1, 5, 1, 0, 1, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/846bdb03.json b/data/arc-agi/training/846bdb03.json
deleted file mode 100644
index 40586e0..0000000
--- a/data/arc-agi/training/846bdb03.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4]], "output": [[4, 0, 0, 0, 0, 0, 0, 4], [2, 2, 2, 0, 1, 0, 0, 1], [2, 0, 2, 0, 1, 1, 1, 1], [2, 0, 2, 2, 1, 0, 0, 1], [2, 0, 0, 2, 0, 0, 0, 1], [4, 0, 0, 0, 0, 0, 0, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 8, 0, 8, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 8, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0]], "output": [[4, 0, 0, 0, 0, 0, 0, 4], [8, 8, 0, 8, 0, 3, 0, 3], [8, 8, 8, 8, 3, 3, 3, 3], [8, 8, 0, 8, 0, 3, 0, 3], [8, 8, 8, 8, 3, 3, 0, 3], [8, 8, 0, 8, 0, 0, 0, 3], [4, 0, 0, 0, 0, 0, 0, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 0, 0, 0, 0, 4], [2, 0, 2, 1, 1, 1], [2, 2, 2, 1, 0, 1], [4, 0, 0, 0, 0, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 0, 0, 0, 0, 4], [7, 7, 7, 0, 3, 3], [7, 7, 7, 3, 3, 3], [7, 0, 7, 0, 3, 3], [4, 0, 0, 0, 0, 4]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0]], "output": [[4, 0, 0, 0, 0, 0, 0, 4], [2, 0, 0, 2, 8, 0, 8, 8], [2, 2, 2, 2, 8, 8, 8, 8], [2, 0, 2, 0, 0, 0, 8, 8], [2, 2, 2, 0, 0, 0, 8, 8], [4, 0, 0, 0, 0, 0, 0, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/855e0971.json b/data/arc-agi/training/855e0971.json
deleted file mode 100644
index d3e7122..0000000
--- a/data/arc-agi/training/855e0971.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4], [8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 0, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 0, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]], "output": [[8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8], [8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8], [8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8], [8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8], [8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8], [2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2], [3, 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3]]}, {"input": [[2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 0, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 0, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 0, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4]], "output": [[2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4]]}], "test": [{"input": [[8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]], "output": [[8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8], [8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8], [8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8], [8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0, 8, 8], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4], [2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/85c4e7cd.json b/data/arc-agi/training/85c4e7cd.json
deleted file mode 100644
index b0592d1..0000000
--- a/data/arc-agi/training/85c4e7cd.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4], [4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4], [4, 2, 1, 3, 3, 3, 3, 3, 3, 1, 2, 4], [4, 2, 1, 3, 5, 5, 5, 5, 3, 1, 2, 4], [4, 2, 1, 3, 5, 8, 8, 5, 3, 1, 2, 4], [4, 2, 1, 3, 5, 8, 8, 5, 3, 1, 2, 4], [4, 2, 1, 3, 5, 5, 5, 5, 3, 1, 2, 4], [4, 2, 1, 3, 3, 3, 3, 3, 3, 1, 2, 4], [4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4], [4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8], [8, 5, 3, 3, 3, 3, 3, 3, 3, 3, 5, 8], [8, 5, 3, 1, 1, 1, 1, 1, 1, 3, 5, 8], [8, 5, 3, 1, 2, 2, 2, 2, 1, 3, 5, 8], [8, 5, 3, 1, 2, 4, 4, 2, 1, 3, 5, 8], [8, 5, 3, 1, 2, 4, 4, 2, 1, 3, 5, 8], [8, 5, 3, 1, 2, 2, 2, 2, 1, 3, 5, 8], [8, 5, 3, 1, 1, 1, 1, 1, 1, 3, 5, 8], [8, 5, 3, 3, 3, 3, 3, 3, 3, 3, 5, 8], [8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[2, 2, 2, 2, 2, 2], [2, 1, 1, 1, 1, 2], [2, 1, 6, 6, 1, 2], [2, 1, 6, 6, 1, 2], [2, 1, 1, 1, 1, 2], [2, 2, 2, 2, 2, 2]], "output": [[6, 6, 6, 6, 6, 6], [6, 1, 1, 1, 1, 6], [6, 1, 2, 2, 1, 6], [6, 1, 2, 2, 1, 6], [6, 1, 1, 1, 1, 6], [6, 6, 6, 6, 6, 6]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8], [8, 1, 1, 1, 1, 1, 1, 8], [8, 1, 2, 2, 2, 2, 1, 8], [8, 1, 2, 4, 4, 2, 1, 8], [8, 1, 2, 4, 4, 2, 1, 8], [8, 1, 2, 2, 2, 2, 1, 8], [8, 1, 1, 1, 1, 1, 1, 8], [8, 8, 8, 8, 8, 8, 8, 8]], "output": [[4, 4, 4, 4, 4, 4, 4, 4], [4, 2, 2, 2, 2, 2, 2, 4], [4, 2, 1, 1, 1, 1, 2, 4], [4, 2, 1, 8, 8, 1, 2, 4], [4, 2, 1, 8, 8, 1, 2, 4], [4, 2, 1, 1, 1, 1, 2, 4], [4, 2, 2, 2, 2, 2, 2, 4], [4, 4, 4, 4, 4, 4, 4, 4]]}, {"input": [[7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 2, 2, 2, 2, 2, 2, 2, 2, 7], [7, 2, 4, 4, 4, 4, 4, 4, 2, 7], [7, 2, 4, 1, 1, 1, 1, 4, 2, 7], [7, 2, 4, 1, 3, 3, 1, 4, 2, 7], [7, 2, 4, 1, 3, 3, 1, 4, 2, 7], [7, 2, 4, 1, 1, 1, 1, 4, 2, 7], [7, 2, 4, 4, 4, 4, 4, 4, 2, 7], [7, 2, 2, 2, 2, 2, 2, 2, 2, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 1, 1, 1, 1, 1, 1, 1, 1, 3], [3, 1, 4, 4, 4, 4, 4, 4, 1, 3], [3, 1, 4, 2, 2, 2, 2, 4, 1, 3], [3, 1, 4, 2, 7, 7, 2, 4, 1, 3], [3, 1, 4, 2, 7, 7, 2, 4, 1, 3], [3, 1, 4, 2, 2, 2, 2, 4, 1, 3], [3, 1, 4, 4, 4, 4, 4, 4, 1, 3], [3, 1, 1, 1, 1, 1, 1, 1, 1, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}], "test": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8], [8, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 8], [8, 2, 4, 3, 3, 3, 3, 3, 3, 3, 3, 4, 2, 8], [8, 2, 4, 3, 7, 7, 7, 7, 7, 7, 3, 4, 2, 8], [8, 2, 4, 3, 7, 6, 6, 6, 6, 7, 3, 4, 2, 8], [8, 2, 4, 3, 7, 6, 5, 5, 6, 7, 3, 4, 2, 8], [8, 2, 4, 3, 7, 6, 5, 5, 6, 7, 3, 4, 2, 8], [8, 2, 4, 3, 7, 6, 6, 6, 6, 7, 3, 4, 2, 8], [8, 2, 4, 3, 7, 7, 7, 7, 7, 7, 3, 4, 2, 8], [8, 2, 4, 3, 3, 3, 3, 3, 3, 3, 3, 4, 2, 8], [8, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 8], [8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5], [5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 6, 5], [5, 6, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 6, 5], [5, 6, 7, 3, 4, 4, 4, 4, 4, 4, 3, 7, 6, 5], [5, 6, 7, 3, 4, 2, 2, 2, 2, 4, 3, 7, 6, 5], [5, 6, 7, 3, 4, 2, 8, 8, 2, 4, 3, 7, 6, 5], [5, 6, 7, 3, 4, 2, 8, 8, 2, 4, 3, 7, 6, 5], [5, 6, 7, 3, 4, 2, 2, 2, 2, 4, 3, 7, 6, 5], [5, 6, 7, 3, 4, 4, 4, 4, 4, 4, 3, 7, 6, 5], [5, 6, 7, 3, 3, 3, 3, 3, 3, 3, 3, 7, 6, 5], [5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 6, 5], [5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/868de0fa.json b/data/arc-agi/training/868de0fa.json
deleted file mode 100644
index 2c14a0c..0000000
--- a/data/arc-agi/training/868de0fa.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 1, 0, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [1, 0, 0, 0, 1, 0, 0, 0, 0, 0], [1, 0, 0, 0, 1, 0, 0, 0, 0, 0], [1, 0, 0, 0, 1, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 2, 2, 1, 0, 0, 0, 0, 0, 0], [1, 2, 2, 1, 0, 0, 1, 1, 1, 0], [1, 1, 1, 1, 0, 0, 1, 7, 1, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [1, 7, 7, 7, 1, 0, 0, 0, 0, 0], [1, 7, 7, 7, 1, 0, 0, 0, 0, 0], [1, 7, 7, 7, 1, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0]]}, {"input": [[1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [1, 0, 1, 0, 1, 0, 0, 0, 0, 1], [1, 1, 1, 0, 1, 0, 0, 0, 0, 1], [0, 0, 0, 0, 1, 0, 0, 0, 0, 1], [0, 0, 0, 0, 1, 0, 0, 0, 0, 1], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [1, 7, 1, 0, 1, 2, 2, 2, 2, 1], [1, 1, 1, 0, 1, 2, 2, 2, 2, 1], [0, 0, 0, 0, 1, 2, 2, 2, 2, 1], [0, 0, 0, 0, 1, 2, 2, 2, 2, 1], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0], [1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 7, 7, 7, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 7, 7, 7, 1, 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 7, 7, 7, 1, 0, 1, 2, 2, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0], [1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 2, 2, 2, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 7, 7, 7, 7, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 7, 7, 7, 7, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 7, 7, 7, 7, 7, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 7, 7, 7, 7, 7, 1, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 1], [0, 0, 1, 7, 7, 7, 7, 7, 1, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 1], [0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 7, 1, 0, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 0, 1, 2, 2, 1, 0, 0], [0, 0, 0, 0, 0, 1, 2, 2, 1, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 7, 7, 7, 1, 0, 0, 0, 0, 0, 0], [1, 7, 7, 7, 1, 0, 0, 0, 0, 0, 0], [1, 7, 7, 7, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 7, 7, 7, 7, 7, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 7, 7, 7, 7, 7, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 7, 7, 7, 7, 7, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 7, 7, 7, 7, 7, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 7, 7, 7, 7, 7, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7, 7, 7, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 7, 7, 7, 1, 0, 0, 0], [0, 1, 2, 2, 2, 2, 2, 2, 1, 0, 0, 0, 1, 7, 7, 7, 1, 0, 0, 0], [0, 1, 2, 2, 2, 2, 2, 2, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 2, 2, 2, 2, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 2, 2, 2, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 2, 2, 2, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 2, 2, 2, 2, 2, 2, 1, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1], [0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1], [0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1], [0, 1, 7, 7, 7, 7, 7, 1, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1], [0, 1, 7, 7, 7, 7, 7, 1, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1], [0, 1, 7, 7, 7, 7, 7, 1, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1], [0, 1, 7, 7, 7, 7, 7, 1, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1], [0, 1, 7, 7, 7, 7, 7, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
diff --git a/data/arc-agi/training/8731374e.json b/data/arc-agi/training/8731374e.json
deleted file mode 100644
index 2281f47..0000000
--- a/data/arc-agi/training/8731374e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[6, 1, 2, 4, 8, 3, 7, 2, 6, 5, 7, 7, 4, 9, 2, 5, 9, 4, 5, 9, 3, 8, 7], [6, 0, 1, 0, 4, 8, 6, 1, 1, 2, 1, 2, 6, 6, 6, 5, 8, 7, 4, 1, 7, 5, 6], [6, 8, 3, 1, 9, 8, 7, 1, 2, 3, 9, 2, 6, 2, 1, 0, 5, 7, 7, 7, 8, 1, 3], [2, 2, 9, 5, 5, 6, 6, 9, 3, 8, 6, 2, 4, 1, 8, 3, 5, 7, 5, 5, 6, 1, 6], [1, 7, 6, 4, 7, 0, 1, 7, 9, 1, 7, 6, 9, 6, 6, 8, 4, 6, 8, 8, 9, 8, 0], [2, 9, 2, 3, 9, 6, 8, 8, 1, 1, 1, 1, 1, 1, 9, 7, 2, 4, 0, 1, 6, 4, 5], [8, 3, 9, 5, 6, 5, 6, 8, 1, 1, 1, 1, 1, 1, 3, 0, 1, 3, 1, 6, 3, 5, 1], [0, 7, 2, 6, 5, 2, 0, 7, 1, 1, 1, 1, 2, 1, 2, 2, 3, 0, 7, 5, 1, 8, 8], [2, 4, 7, 2, 7, 0, 9, 3, 1, 1, 1, 1, 1, 1, 4, 7, 7, 6, 2, 0, 0, 0, 4], [5, 1, 3, 2, 7, 5, 2, 8, 1, 2, 1, 1, 1, 1, 4, 6, 4, 7, 5, 2, 8, 9, 6], [6, 8, 2, 6, 8, 4, 6, 7, 1, 1, 1, 1, 1, 1, 8, 2, 1, 7, 9, 1, 2, 9, 1], [1, 1, 9, 9, 4, 7, 2, 2, 1, 1, 1, 1, 1, 1, 3, 9, 2, 4, 9, 3, 6, 4, 5], [5, 9, 4, 8, 5, 8, 8, 1, 5, 3, 8, 8, 4, 7, 6, 4, 1, 1, 8, 5, 6, 2, 2], [1, 1, 4, 7, 9, 1, 5, 6, 8, 2, 3, 2, 2, 4, 4, 8, 6, 5, 6, 8, 5, 8, 3], [9, 4, 2, 5, 1, 7, 4, 8, 1, 8, 5, 5, 7, 9, 1, 8, 5, 3, 1, 8, 0, 2, 0], [2, 9, 2, 7, 1, 5, 2, 2, 8, 6, 9, 3, 9, 6, 6, 3, 6, 2, 2, 6, 1, 4, 6], [6, 5, 3, 7, 0, 9, 1, 3, 2, 6, 5, 0, 6, 1, 0, 5, 2, 7, 1, 4, 8, 4, 1]], "output": [[1, 2, 1, 1, 2, 1], [1, 2, 1, 1, 2, 1], [2, 2, 2, 2, 2, 2], [1, 2, 1, 1, 2, 1], [2, 2, 2, 2, 2, 2], [1, 2, 1, 1, 2, 1], [1, 2, 1, 1, 2, 1]]}, {"input": [[3, 1, 8, 2, 5, 1, 9, 5, 0, 5, 1, 2, 4, 2, 9, 7, 4, 4, 5, 8, 6, 7, 6], [5, 6, 8, 3, 9, 8, 4, 1, 2, 1, 5, 3, 2, 4, 6, 1, 8, 7, 6, 6, 9, 9, 0], [6, 8, 6, 0, 2, 0, 2, 5, 2, 8, 0, 2, 1, 9, 5, 8, 1, 2, 9, 4, 7, 4, 4], [8, 5, 7, 4, 4, 4, 1, 9, 8, 2, 5, 7, 6, 6, 0, 8, 3, 7, 8, 1, 0, 9, 9], [0, 3, 8, 2, 6, 4, 9, 5, 3, 5, 4, 9, 5, 5, 4, 0, 8, 1, 5, 2, 1, 1, 0], [8, 4, 7, 9, 5, 2, 3, 0, 8, 0, 1, 7, 6, 4, 2, 0, 8, 7, 3, 9, 5, 5, 6], [5, 6, 0, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 6, 4, 9, 8, 2, 6, 3, 8, 2], [0, 0, 1, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 6, 7, 7, 0, 4, 4, 0, 4, 1, 4], [7, 3, 3, 1, 4, 4, 1, 4, 4, 4, 4, 4, 4, 6, 5, 0, 8, 5, 9, 7, 3, 9, 1], [9, 3, 0, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 6, 1, 4, 0, 4, 6, 4, 7, 0], [5, 0, 8, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 7, 4, 8, 3, 6, 4, 3, 4, 3, 5], [4, 6, 4, 3, 4, 4, 4, 4, 4, 4, 1, 4, 4, 2, 6, 1, 0, 8, 1, 1, 8, 8, 1], [7, 4, 8, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 2, 1, 5, 7, 9, 2, 5, 0], [2, 5, 2, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4, 1, 4, 3, 3, 1, 2, 8, 7, 9, 9], [6, 4, 5, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 9, 6, 1, 7, 9, 9, 7, 8], [3, 8, 6, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 3, 4, 3, 7, 4, 6, 3, 7, 6], [1, 0, 1, 4, 5, 0, 7, 9, 1, 9, 6, 5, 6, 1, 6, 4, 5, 1, 3, 0, 2, 3, 9], [4, 6, 4, 6, 2, 7, 0, 8, 5, 9, 4, 1, 7, 0, 9, 1, 3, 7, 7, 5, 4, 1, 7], [2, 0, 6, 6, 0, 3, 8, 6, 7, 3, 3, 8, 2, 6, 8, 5, 7, 1, 1, 8, 4, 3, 9], [9, 4, 3, 8, 6, 2, 9, 0, 7, 1, 3, 5, 7, 8, 7, 6, 1, 0, 2, 2, 2, 5, 3], [3, 8, 2, 2, 3, 6, 2, 4, 0, 2, 3, 9, 9, 1, 6, 3, 4, 6, 7, 9, 7, 0, 8], [1, 9, 4, 5, 8, 3, 8, 3, 7, 6, 6, 6, 9, 2, 3, 4, 7, 9, 6, 1, 3, 3, 3], [2, 3, 9, 3, 9, 6, 6, 3, 2, 8, 0, 3, 6, 4, 5, 0, 9, 9, 8, 1, 4, 4, 0], [7, 6, 6, 4, 1, 9, 6, 8, 5, 3, 2, 5, 6, 8, 9, 6, 4, 2, 6, 3, 4, 7, 9], [4, 1, 7, 6, 6, 7, 4, 3, 0, 2, 0, 7, 1, 7, 3, 0, 2, 0, 3, 8, 6, 2, 7], [2, 5, 4, 4, 0, 8, 2, 8, 9, 8, 9, 7, 8, 5, 3, 3, 2, 5, 7, 4, 0, 3, 7], [2, 5, 5, 0, 0, 4, 2, 4, 9, 9, 3, 1, 6, 1, 1, 6, 5, 9, 8, 3, 7, 4, 2]], "output": [[4, 4, 1, 4, 1, 4, 1, 4, 4], [4, 4, 1, 4, 1, 4, 1, 4, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1], [4, 4, 1, 4, 1, 4, 1, 4, 4], [4, 4, 1, 4, 1, 4, 1, 4, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1], [4, 4, 1, 4, 1, 4, 1, 4, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1], [4, 4, 1, 4, 1, 4, 1, 4, 4], [4, 4, 1, 4, 1, 4, 1, 4, 4]]}, {"input": [[0, 0, 7, 9, 8, 8, 0, 8, 9, 9, 3, 1, 4, 5, 2, 7, 6], [6, 0, 9, 2, 7, 2, 8, 4, 3, 3, 2, 7, 7, 5, 9, 4, 0], [1, 9, 4, 5, 4, 8, 8, 8, 8, 8, 8, 8, 8, 2, 0, 7, 9], [5, 5, 6, 8, 3, 8, 8, 8, 8, 8, 8, 8, 8, 2, 0, 2, 7], [8, 2, 3, 2, 9, 8, 8, 8, 8, 8, 8, 8, 8, 0, 7, 6, 4], [1, 7, 3, 3, 5, 8, 8, 8, 2, 8, 8, 8, 8, 7, 1, 1, 4], [7, 2, 3, 5, 6, 8, 8, 8, 8, 8, 8, 8, 8, 5, 8, 5, 6], [5, 2, 7, 3, 5, 8, 8, 8, 8, 8, 8, 8, 8, 1, 4, 4, 6], [1, 4, 0, 0, 9, 9, 4, 0, 2, 6, 5, 5, 0, 8, 6, 4, 7], [8, 7, 8, 3, 3, 8, 0, 9, 0, 4, 8, 9, 8, 5, 2, 7, 3], [2, 0, 2, 8, 2, 0, 8, 4, 4, 3, 2, 6, 8, 7, 4, 7, 2], [2, 7, 8, 3, 7, 4, 2, 4, 8, 4, 2, 3, 9, 9, 2, 0, 8], [4, 8, 8, 5, 3, 2, 0, 1, 8, 9, 3, 9, 8, 1, 8, 8, 7], [3, 9, 9, 9, 1, 6, 1, 9, 4, 7, 5, 5, 3, 2, 9, 3, 0], [5, 8, 2, 5, 4, 2, 2, 4, 0, 9, 2, 8, 1, 3, 5, 7, 3], [8, 0, 9, 5, 3, 8, 4, 5, 0, 2, 5, 2, 9, 6, 0, 1, 0]], "output": [[8, 8, 8, 2, 8, 8, 8, 8], [8, 8, 8, 2, 8, 8, 8, 8], [8, 8, 8, 2, 8, 8, 8, 8], [2, 2, 2, 2, 2, 2, 2, 2], [8, 8, 8, 2, 8, 8, 8, 8], [8, 8, 8, 2, 8, 8, 8, 8]]}], "test": [{"input": [[2, 7, 2, 0, 2, 6, 3, 0, 3, 9, 1, 3, 5, 3, 0, 4, 5], [4, 4, 8, 7, 0, 7, 9, 1, 4, 9, 5, 2, 0, 8, 5, 3, 2], [8, 7, 9, 8, 8, 8, 8, 8, 8, 8, 8, 7, 6, 1, 5, 2, 1], [6, 9, 3, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7, 8, 1, 3, 6], [0, 2, 9, 8, 8, 8, 8, 8, 8, 1, 8, 9, 5, 1, 9, 4, 1], [5, 2, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 6, 7, 9, 5], [8, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 1, 7, 3, 7], [8, 6, 2, 8, 8, 1, 8, 8, 8, 8, 8, 6, 3, 1, 1, 2, 9], [9, 4, 0, 8, 8, 8, 8, 8, 8, 8, 8, 6, 4, 0, 6, 7, 6], [6, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 4, 7, 1, 5, 8, 4], [4, 0, 3, 8, 8, 8, 8, 8, 8, 8, 8, 4, 2, 4, 3, 4, 5], [3, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 4, 8, 7, 7, 1, 8], [6, 6, 4, 7, 6, 8, 1, 8, 1, 9, 2, 6, 8, 7, 2, 8, 8], [7, 3, 5, 1, 4, 1, 6, 4, 9, 6, 7, 7, 9, 2, 3, 0, 2], [9, 2, 2, 5, 4, 8, 3, 9, 9, 9, 5, 9, 6, 1, 4, 6, 9], [6, 1, 9, 6, 3, 1, 6, 6, 8, 6, 0, 1, 3, 4, 8, 7, 7], [2, 1, 2, 4, 9, 2, 1, 5, 1, 7, 0, 7, 9, 3, 8, 2, 1], [7, 1, 9, 4, 2, 8, 4, 3, 6, 2, 8, 0, 8, 5, 3, 5, 9], [1, 2, 5, 7, 8, 7, 1, 6, 5, 8, 0, 9, 2, 8, 9, 1, 5]], "output": [[8, 8, 1, 8, 8, 8, 1, 8], [8, 8, 1, 8, 8, 8, 1, 8], [1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 1, 8, 8, 8, 1, 8], [8, 8, 1, 8, 8, 8, 1, 8], [1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 1, 8, 8, 8, 1, 8], [8, 8, 1, 8, 8, 8, 1, 8], [8, 8, 1, 8, 8, 8, 1, 8], [8, 8, 1, 8, 8, 8, 1, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/88a10436.json b/data/arc-agi/training/88a10436.json
deleted file mode 100644
index 8dcf152..0000000
--- a/data/arc-agi/training/88a10436.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 2, 0, 0, 0, 0, 0, 0, 0], [2, 2, 1, 0, 0, 0, 0, 0, 0], [0, 1, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 0, 0, 0, 0, 0, 0, 0], [2, 2, 1, 0, 0, 0, 0, 0, 0], [0, 1, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 2, 1, 0, 0], [0, 0, 0, 0, 0, 1, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 3, 1, 0, 0, 0, 0], [0, 3, 3, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 3, 1, 0, 0], [0, 0, 0, 3, 3, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 3, 1, 0, 0, 0, 0], [0, 3, 3, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/88a62173.json b/data/arc-agi/training/88a62173.json
deleted file mode 100644
index 5ed0e3b..0000000
--- a/data/arc-agi/training/88a62173.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 2, 0, 0, 2], [2, 2, 0, 2, 2], [0, 0, 0, 0, 0], [0, 2, 0, 2, 2], [2, 2, 0, 2, 0]], "output": [[2, 2], [2, 0]]}, {"input": [[1, 0, 0, 1, 0], [0, 1, 0, 0, 1], [0, 0, 0, 0, 0], [1, 0, 0, 1, 0], [1, 1, 0, 0, 1]], "output": [[1, 0], [1, 1]]}, {"input": [[8, 8, 0, 0, 8], [8, 0, 0, 8, 0], [0, 0, 0, 0, 0], [8, 8, 0, 8, 8], [8, 0, 0, 8, 0]], "output": [[0, 8], [8, 0]]}], "test": [{"input": [[5, 5, 0, 5, 0], [0, 5, 0, 0, 5], [0, 0, 0, 0, 0], [5, 5, 0, 5, 5], [0, 5, 0, 0, 5]], "output": [[5, 0], [0, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/890034e9.json b/data/arc-agi/training/890034e9.json
deleted file mode 100644
index 946a47f..0000000
--- a/data/arc-agi/training/890034e9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 8, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1], [1, 1, 0, 8, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [1, 0, 0, 1, 0, 0, 2, 2, 2, 2, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 2, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 8, 1, 0, 1], [1, 1, 1, 1, 1, 0, 2, 0, 0, 2, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0], [1, 0, 0, 0, 0, 1, 2, 0, 0, 2, 1, 8, 1, 1, 1, 1, 1, 0, 1, 1, 1], [0, 0, 1, 1, 0, 1, 2, 2, 2, 2, 1, 0, 1, 0, 0, 1, 1, 8, 0, 0, 8], [0, 1, 8, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 8, 1, 1, 0, 0], [1, 1, 1, 8, 8, 1, 1, 1, 0, 0, 8, 1, 1, 1, 1, 1, 8, 1, 0, 0, 1], [8, 1, 0, 1, 1, 1, 1, 0, 8, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1], [8, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 8, 1, 1, 8, 1], [1, 1, 1, 8, 1, 0, 1, 1, 8, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1], [1, 0, 8, 1, 1, 8, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 8, 1, 1, 1], [1, 1, 8, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 8, 1, 0, 1, 0, 1, 1, 8], [1, 1, 1, 1, 1, 1, 0, 0, 8, 1, 0, 0, 1, 1, 8, 1, 1, 8, 1, 0, 1], [8, 8, 8, 1, 1, 1, 1, 8, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1], [1, 1, 0, 1, 8, 0, 0, 8, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0], [1, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0], [1, 1, 8, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1], [1, 1, 0, 0, 8, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 8, 0, 0, 0, 0], [1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 8, 1, 8, 0]], "output": [[0, 8, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1], [1, 1, 0, 8, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [1, 0, 0, 1, 0, 0, 2, 2, 2, 2, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 0], [0, 1, 1, 1, 1, 1, 2, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 8, 1, 0, 1], [1, 1, 1, 1, 1, 0, 2, 0, 0, 2, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0], [1, 0, 0, 0, 0, 1, 2, 0, 0, 2, 1, 8, 1, 1, 1, 1, 1, 0, 1, 1, 1], [0, 0, 1, 1, 0, 1, 2, 2, 2, 2, 1, 0, 1, 0, 0, 1, 1, 8, 0, 0, 8], [0, 1, 8, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 8, 1, 1, 0, 0], [1, 1, 1, 8, 8, 1, 1, 1, 0, 0, 8, 1, 1, 1, 1, 1, 8, 1, 0, 0, 1], [8, 1, 0, 1, 1, 1, 1, 0, 8, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1], [8, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 8, 1, 1, 8, 1], [1, 1, 1, 8, 1, 0, 1, 1, 8, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1], [1, 0, 8, 1, 1, 8, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 8, 1, 1, 1], [1, 1, 8, 1, 1, 1, 0, 1, 0, 2, 2, 2, 2, 8, 1, 0, 1, 0, 1, 1, 8], [1, 1, 1, 1, 1, 1, 0, 0, 8, 2, 0, 0, 2, 1, 8, 1, 1, 8, 1, 0, 1], [8, 8, 8, 1, 1, 1, 1, 8, 1, 2, 0, 0, 2, 1, 0, 1, 1, 1, 1, 0, 1], [1, 1, 0, 1, 8, 0, 0, 8, 1, 2, 0, 0, 2, 1, 1, 1, 0, 1, 0, 1, 0], [1, 8, 8, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 1, 1, 1, 0, 0, 1, 1, 0], [1, 1, 8, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1], [1, 1, 0, 0, 8, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 8, 0, 0, 0, 0], [1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 8, 1, 8, 0]]}, {"input": [[3, 0, 3, 4, 3, 3, 3, 3, 0, 3, 3, 4, 0, 3, 0, 4, 3, 4, 4, 0, 0], [3, 3, 0, 0, 3, 3, 3, 4, 0, 0, 4, 4, 4, 3, 0, 0, 3, 3, 4, 0, 3], [4, 4, 4, 3, 4, 3, 0, 3, 0, 0, 4, 3, 0, 3, 3, 4, 3, 0, 0, 3, 0], [0, 4, 4, 4, 3, 0, 3, 3, 3, 0, 3, 0, 3, 0, 0, 0, 0, 3, 4, 3, 3], [3, 3, 0, 4, 3, 3, 0, 0, 0, 0, 3, 0, 4, 4, 4, 3, 0, 3, 0, 0, 0], [0, 3, 0, 0, 3, 0, 0, 3, 0, 3, 0, 0, 0, 3, 3, 3, 3, 4, 3, 0, 3], [0, 3, 0, 0, 3, 4, 0, 3, 4, 0, 4, 4, 0, 0, 3, 4, 0, 0, 0, 3, 3], [0, 3, 3, 3, 0, 4, 4, 3, 4, 3, 0, 3, 3, 3, 4, 0, 3, 0, 3, 3, 3], [4, 0, 4, 3, 4, 3, 4, 4, 0, 0, 4, 0, 0, 0, 0, 3, 0, 3, 3, 0, 0], [0, 0, 4, 0, 0, 0, 0, 3, 4, 4, 3, 4, 0, 0, 0, 4, 0, 0, 4, 3, 3], [3, 0, 0, 8, 8, 8, 8, 8, 4, 3, 0, 3, 3, 0, 4, 4, 0, 4, 4, 4, 4], [3, 3, 0, 8, 0, 0, 0, 8, 3, 0, 0, 0, 0, 4, 0, 3, 3, 0, 4, 3, 3], [0, 0, 0, 8, 0, 0, 0, 8, 3, 3, 0, 3, 3, 4, 3, 0, 4, 0, 3, 0, 0], [3, 0, 4, 8, 8, 8, 8, 8, 0, 3, 0, 3, 0, 0, 3, 3, 3, 0, 4, 3, 0], [4, 0, 0, 0, 0, 3, 0, 4, 0, 0, 3, 0, 0, 3, 3, 3, 4, 0, 4, 0, 3], [0, 0, 4, 3, 0, 0, 0, 3, 0, 0, 3, 4, 0, 0, 4, 0, 0, 3, 4, 3, 4], [4, 4, 0, 0, 3, 0, 3, 4, 4, 3, 4, 3, 4, 0, 4, 4, 0, 3, 4, 3, 4], [3, 4, 3, 3, 0, 0, 0, 0, 3, 0, 3, 4, 0, 0, 0, 3, 3, 3, 3, 0, 3], [0, 0, 0, 0, 0, 3, 0, 3, 3, 4, 0, 3, 3, 3, 4, 0, 4, 0, 3, 4, 0], [3, 3, 3, 0, 4, 0, 4, 3, 0, 0, 0, 3, 0, 0, 3, 3, 0, 0, 4, 3, 0], [0, 4, 3, 3, 3, 0, 4, 4, 3, 4, 3, 4, 0, 4, 3, 4, 4, 0, 0, 4, 0]], "output": [[3, 0, 3, 4, 3, 3, 3, 3, 0, 3, 3, 4, 0, 3, 0, 4, 3, 4, 4, 0, 0], [3, 3, 0, 0, 3, 3, 3, 4, 0, 0, 4, 4, 4, 3, 0, 0, 3, 3, 4, 0, 3], [4, 4, 4, 3, 4, 3, 0, 3, 0, 0, 4, 3, 0, 3, 3, 4, 3, 0, 0, 3, 0], [0, 4, 4, 4, 3, 0, 3, 3, 3, 0, 3, 0, 3, 0, 0, 0, 0, 3, 4, 3, 3], [3, 3, 0, 4, 3, 3, 0, 0, 0, 0, 3, 0, 4, 4, 4, 3, 0, 3, 0, 0, 0], [0, 3, 0, 0, 3, 0, 0, 3, 0, 3, 0, 0, 0, 3, 3, 3, 3, 4, 3, 0, 3], [0, 3, 0, 0, 3, 4, 0, 3, 4, 0, 4, 4, 0, 0, 3, 4, 0, 0, 0, 3, 3], [0, 3, 3, 3, 0, 4, 4, 3, 4, 3, 0, 8, 8, 8, 8, 8, 3, 0, 3, 3, 3], [4, 0, 4, 3, 4, 3, 4, 4, 0, 0, 4, 8, 0, 0, 0, 8, 0, 3, 3, 0, 0], [0, 0, 4, 0, 0, 0, 0, 3, 4, 4, 3, 8, 0, 0, 0, 8, 0, 0, 4, 3, 3], [3, 0, 0, 8, 8, 8, 8, 8, 4, 3, 0, 8, 8, 8, 8, 8, 0, 4, 4, 4, 4], [3, 3, 0, 8, 0, 0, 0, 8, 3, 0, 0, 0, 0, 4, 0, 3, 3, 0, 4, 3, 3], [0, 0, 0, 8, 0, 0, 0, 8, 3, 3, 0, 3, 3, 4, 3, 0, 4, 0, 3, 0, 0], [3, 0, 4, 8, 8, 8, 8, 8, 0, 3, 0, 3, 0, 0, 3, 3, 3, 0, 4, 3, 0], [4, 0, 0, 0, 0, 3, 0, 4, 0, 0, 3, 0, 0, 3, 3, 3, 4, 0, 4, 0, 3], [0, 0, 4, 3, 0, 0, 0, 3, 0, 0, 3, 4, 0, 0, 4, 0, 0, 3, 4, 3, 4], [4, 4, 0, 0, 3, 0, 3, 4, 4, 3, 4, 3, 4, 0, 4, 4, 0, 3, 4, 3, 4], [3, 4, 3, 3, 0, 0, 0, 0, 3, 0, 3, 4, 0, 0, 0, 3, 3, 3, 3, 0, 3], [0, 0, 0, 0, 0, 3, 0, 3, 3, 4, 0, 3, 3, 3, 4, 0, 4, 0, 3, 4, 0], [3, 3, 3, 0, 4, 0, 4, 3, 0, 0, 0, 3, 0, 0, 3, 3, 0, 0, 4, 3, 0], [0, 4, 3, 3, 3, 0, 4, 4, 3, 4, 3, 4, 0, 4, 3, 4, 4, 0, 0, 4, 0]]}, {"input": [[0, 0, 3, 0, 3, 2, 0, 2, 0, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3], [3, 2, 2, 0, 3, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 0, 3, 2], [3, 3, 0, 3, 0, 0, 3, 2, 2, 2, 2, 3, 2, 2, 2, 2, 3, 0, 0, 3, 2], [2, 2, 3, 2, 4, 4, 4, 4, 4, 4, 3, 0, 3, 2, 0, 2, 2, 2, 0, 0, 3], [3, 3, 2, 0, 4, 0, 0, 0, 0, 4, 2, 0, 2, 2, 0, 2, 3, 0, 2, 2, 0], [3, 2, 2, 2, 4, 0, 0, 0, 0, 4, 0, 3, 2, 2, 3, 2, 2, 3, 3, 2, 0], [2, 0, 2, 0, 4, 0, 0, 0, 0, 4, 2, 0, 0, 0, 2, 2, 2, 0, 2, 2, 2], [0, 2, 0, 2, 4, 4, 4, 4, 4, 4, 2, 2, 0, 2, 0, 2, 0, 0, 2, 2, 2], [2, 0, 2, 2, 2, 0, 2, 0, 2, 0, 3, 2, 3, 3, 0, 2, 0, 0, 0, 2, 2], [0, 2, 3, 0, 3, 0, 2, 3, 2, 2, 2, 0, 2, 0, 0, 0, 2, 2, 3, 2, 0], [3, 0, 2, 0, 2, 0, 0, 2, 2, 0, 3, 3, 2, 3, 0, 3, 3, 0, 0, 3, 0], [2, 3, 0, 3, 2, 2, 2, 2, 2, 0, 0, 0, 0, 2, 0, 2, 0, 3, 0, 0, 2], [3, 2, 2, 0, 2, 0, 2, 2, 0, 3, 2, 2, 2, 2, 3, 0, 2, 2, 2, 2, 2], [3, 3, 3, 2, 0, 2, 0, 2, 0, 3, 2, 2, 2, 0, 0, 3, 2, 2, 3, 2, 2], [0, 0, 2, 2, 2, 3, 2, 0, 0, 2, 3, 2, 0, 3, 0, 2, 2, 3, 2, 2, 0], [2, 2, 2, 2, 2, 3, 2, 3, 3, 3, 2, 0, 0, 0, 0, 2, 0, 0, 2, 3, 0], [2, 2, 2, 2, 3, 0, 0, 3, 3, 2, 0, 0, 0, 0, 0, 0, 2, 2, 3, 2, 0], [2, 0, 3, 2, 2, 2, 3, 2, 3, 3, 3, 0, 0, 0, 0, 0, 2, 0, 0, 2, 3], [2, 2, 0, 0, 0, 0, 0, 0, 0, 3, 2, 3, 2, 2, 3, 0, 0, 2, 2, 0, 0], [0, 3, 0, 2, 2, 2, 0, 0, 0, 2, 2, 2, 2, 3, 0, 2, 0, 0, 0, 3, 2], [2, 3, 2, 2, 2, 0, 0, 3, 2, 0, 3, 2, 0, 2, 2, 2, 3, 0, 0, 2, 2]], "output": [[0, 0, 3, 0, 3, 2, 0, 2, 0, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3], [3, 2, 2, 0, 3, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 0, 3, 2], [3, 3, 0, 3, 0, 0, 3, 2, 2, 2, 2, 3, 2, 2, 2, 2, 3, 0, 0, 3, 2], [2, 2, 3, 2, 4, 4, 4, 4, 4, 4, 3, 0, 3, 2, 0, 2, 2, 2, 0, 0, 3], [3, 3, 2, 0, 4, 0, 0, 0, 0, 4, 2, 0, 2, 2, 0, 2, 3, 0, 2, 2, 0], [3, 2, 2, 2, 4, 0, 0, 0, 0, 4, 0, 3, 2, 2, 3, 2, 2, 3, 3, 2, 0], [2, 0, 2, 0, 4, 0, 0, 0, 0, 4, 2, 0, 0, 0, 2, 2, 2, 0, 2, 2, 2], [0, 2, 0, 2, 4, 4, 4, 4, 4, 4, 2, 2, 0, 2, 0, 2, 0, 0, 2, 2, 2], [2, 0, 2, 2, 2, 0, 2, 0, 2, 0, 3, 2, 3, 3, 0, 2, 0, 0, 0, 2, 2], [0, 2, 3, 0, 3, 0, 2, 3, 2, 2, 2, 0, 2, 0, 0, 0, 2, 2, 3, 2, 0], [3, 0, 2, 0, 2, 0, 0, 2, 2, 0, 3, 3, 2, 3, 0, 3, 3, 0, 0, 3, 0], [2, 3, 0, 3, 2, 2, 2, 2, 2, 0, 0, 0, 0, 2, 0, 2, 0, 3, 0, 0, 2], [3, 2, 2, 0, 2, 0, 2, 2, 0, 3, 2, 2, 2, 2, 3, 0, 2, 2, 2, 2, 2], [3, 3, 3, 2, 0, 2, 0, 2, 0, 3, 2, 2, 2, 0, 0, 3, 2, 2, 3, 2, 2], [0, 0, 2, 2, 2, 3, 2, 0, 0, 2, 4, 4, 4, 4, 4, 4, 2, 3, 2, 2, 0], [2, 2, 2, 2, 2, 3, 2, 3, 3, 3, 4, 0, 0, 0, 0, 4, 0, 0, 2, 3, 0], [2, 2, 2, 2, 3, 0, 0, 3, 3, 2, 4, 0, 0, 0, 0, 4, 2, 2, 3, 2, 0], [2, 0, 3, 2, 2, 2, 3, 2, 3, 3, 4, 0, 0, 0, 0, 4, 2, 0, 0, 2, 3], [2, 2, 0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 4, 4, 4, 4, 0, 2, 2, 0, 0], [0, 3, 0, 2, 2, 2, 0, 0, 0, 2, 2, 2, 2, 3, 0, 2, 0, 0, 0, 3, 2], [2, 3, 2, 2, 2, 0, 0, 3, 2, 0, 3, 2, 0, 2, 2, 2, 3, 0, 0, 2, 2]]}], "test": [{"input": [[0, 2, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 2, 0, 1, 1, 1, 0, 1, 2], [1, 1, 1, 0, 2, 1, 2, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 2, 1, 1], [1, 1, 1, 0, 2, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 2, 1, 1], [2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 0, 1, 1, 1, 1], [0, 2, 1, 0, 1, 1, 2, 2, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 2], [1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 2, 0], [0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1], [1, 1, 1, 2, 2, 1, 0, 1, 2, 2, 1, 1, 2, 0, 0, 1, 0, 1, 1, 1, 2], [1, 0, 1, 0, 1, 0, 0, 2, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0], [0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1], [0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0], [0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 2, 1, 1, 1, 1, 1], [1, 3, 3, 3, 3, 1, 2, 0, 2, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1], [2, 3, 0, 0, 3, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [1, 3, 0, 0, 3, 1, 1, 2, 0, 1, 1, 1, 0, 2, 1, 1, 1, 0, 1, 1, 1], [1, 3, 0, 0, 3, 1, 2, 0, 0, 0, 1, 2, 1, 1, 1, 2, 1, 0, 1, 0, 1], [1, 3, 0, 0, 3, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1], [0, 3, 0, 0, 3, 1, 0, 2, 0, 1, 1, 1, 1, 0, 1, 1, 0, 2, 1, 1, 1], [1, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0], [1, 1, 1, 2, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1]], "output": [[0, 2, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 2, 0, 1, 1, 1, 0, 1, 2], [1, 1, 1, 0, 2, 1, 2, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 2, 1, 1], [1, 1, 1, 0, 2, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 2, 1, 1], [2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 3, 3, 3, 3, 0, 1, 1, 1, 1], [0, 2, 1, 0, 1, 1, 2, 2, 1, 1, 0, 1, 3, 0, 0, 3, 0, 1, 1, 1, 2], [1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 3, 0, 0, 3, 1, 0, 0, 2, 0], [0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 3, 0, 0, 3, 1, 0, 1, 1, 1], [1, 1, 1, 2, 2, 1, 0, 1, 2, 2, 1, 1, 3, 0, 0, 3, 0, 1, 1, 1, 2], [1, 0, 1, 0, 1, 0, 0, 2, 1, 1, 1, 0, 3, 0, 0, 3, 1, 1, 0, 1, 0], [0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 3, 3, 3, 3, 0, 1, 1, 0, 1], [0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0], [0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 2, 1, 1, 1, 1, 1], [1, 3, 3, 3, 3, 1, 2, 0, 2, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1], [2, 3, 0, 0, 3, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [1, 3, 0, 0, 3, 1, 1, 2, 0, 1, 1, 1, 0, 2, 1, 1, 1, 0, 1, 1, 1], [1, 3, 0, 0, 3, 1, 2, 0, 0, 0, 1, 2, 1, 1, 1, 2, 1, 0, 1, 0, 1], [1, 3, 0, 0, 3, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1], [0, 3, 0, 0, 3, 1, 0, 2, 0, 1, 1, 1, 1, 0, 1, 1, 0, 2, 1, 1, 1], [1, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0], [1, 1, 1, 2, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/8a004b2b.json b/data/arc-agi/training/8a004b2b.json
deleted file mode 100644
index 9564867..0000000
--- a/data/arc-agi/training/8a004b2b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 0, 0, 0, 0, 0, 4], [0, 2, 2, 3, 3, 0, 0], [0, 2, 2, 3, 3, 0, 0], [0, 3, 3, 8, 8, 0, 0], [0, 3, 3, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 4]]}, {"input": [[0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 1, 1, 1, 1, 1, 1, 0], [0, 2, 2, 2, 1, 1, 1, 1, 1, 1, 0], [0, 2, 2, 2, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 3, 3, 3, 1, 1, 1, 0], [0, 0, 0, 0, 3, 3, 3, 1, 1, 1, 0], [0, 0, 0, 0, 3, 3, 3, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4]]}], "test": [{"input": [[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/8be77c9e.json b/data/arc-agi/training/8be77c9e.json
deleted file mode 100644
index d5d3eaa..0000000
--- a/data/arc-agi/training/8be77c9e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 0], [1, 1, 1], [0, 0, 0]], "output": [[1, 1, 0], [1, 1, 1], [0, 0, 0], [0, 0, 0], [1, 1, 1], [1, 1, 0]]}, {"input": [[0, 0, 0], [1, 0, 1], [1, 1, 0]], "output": [[0, 0, 0], [1, 0, 1], [1, 1, 0], [1, 1, 0], [1, 0, 1], [0, 0, 0]]}, {"input": [[0, 0, 0], [0, 0, 1], [0, 0, 1]], "output": [[0, 0, 0], [0, 0, 1], [0, 0, 1], [0, 0, 1], [0, 0, 1], [0, 0, 0]]}], "test": [{"input": [[0, 0, 0], [0, 0, 1], [1, 0, 0]], "output": [[0, 0, 0], [0, 0, 1], [1, 0, 0], [1, 0, 0], [0, 0, 1], [0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/8d5021e8.json b/data/arc-agi/training/8d5021e8.json
deleted file mode 100644
index 1e006c5..0000000
--- a/data/arc-agi/training/8d5021e8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[3, 3], [3, 0], [3, 3]], "output": [[3, 3, 3, 3], [0, 3, 3, 0], [3, 3, 3, 3], [3, 3, 3, 3], [0, 3, 3, 0], [3, 3, 3, 3], [3, 3, 3, 3], [0, 3, 3, 0], [3, 3, 3, 3]]}], "train": [{"input": [[0, 8], [0, 0], [0, 8]], "output": [[8, 0, 0, 8], [0, 0, 0, 0], [8, 0, 0, 8], [8, 0, 0, 8], [0, 0, 0, 0], [8, 0, 0, 8], [8, 0, 0, 8], [0, 0, 0, 0], [8, 0, 0, 8]]}, {"input": [[2, 0], [2, 2], [2, 0]], "output": [[0, 2, 2, 0], [2, 2, 2, 2], [0, 2, 2, 0], [0, 2, 2, 0], [2, 2, 2, 2], [0, 2, 2, 0], [0, 2, 2, 0], [2, 2, 2, 2], [0, 2, 2, 0]]}, {"input": [[0, 0], [0, 5], [5, 0]], "output": [[0, 5, 5, 0], [5, 0, 0, 5], [0, 0, 0, 0], [0, 0, 0, 0], [5, 0, 0, 5], [0, 5, 5, 0], [0, 5, 5, 0], [5, 0, 0, 5], [0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/8d510a79.json b/data/arc-agi/training/8d510a79.json
deleted file mode 100644
index 7f51869..0000000
--- a/data/arc-agi/training/8d510a79.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 2, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 1, 0, 0, 0, 2, 0, 0, 1, 0], [0, 1, 0, 0, 0, 0, 0, 0, 1, 0]]}, {"input": [[0, 2, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 2, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 0, 1, 0, 0, 0, 1, 0, 0], [0, 2, 0, 0, 0, 2, 0, 1, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 2, 0, 0, 0, 0, 2, 0, 0, 2], [0, 2, 0, 0, 0, 0, 2, 0, 0, 2], [0, 0, 0, 0, 1, 0, 2, 0, 0, 0], [0, 0, 0, 0, 1, 0, 2, 0, 0, 0], [0, 0, 1, 0, 1, 0, 2, 0, 1, 0], [0, 0, 1, 0, 1, 0, 0, 0, 1, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 1, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 2, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0]], "output": [[0, 0, 0, 1, 0, 0, 1, 0, 0, 0], [0, 2, 0, 1, 0, 0, 1, 0, 2, 0], [0, 2, 0, 0, 0, 0, 1, 0, 2, 0], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [2, 0, 1, 0, 0, 2, 0, 0, 0, 0], [2, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/8e1813be.json b/data/arc-agi/training/8e1813be.json
deleted file mode 100644
index 1e18494..0000000
--- a/data/arc-agi/training/8e1813be.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 4, 4, 4, 4, 4, 4, 4], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 8, 8, 8, 8, 8, 8, 8], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]], "output": [[2, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 1], [3, 3, 3, 3, 3, 3], [4, 4, 4, 4, 4, 4], [8, 8, 8, 8, 8, 8], [6, 6, 6, 6, 6, 6]]}, {"input": [[0, 0, 0, 0, 0, 2, 0, 0, 4, 0], [0, 5, 5, 5, 0, 2, 0, 0, 4, 0], [0, 5, 5, 5, 0, 2, 0, 0, 4, 0], [0, 5, 5, 5, 0, 2, 0, 0, 4, 0], [0, 0, 0, 0, 0, 2, 0, 0, 4, 0], [0, 0, 1, 0, 0, 2, 0, 0, 4, 0], [0, 0, 1, 0, 0, 2, 0, 0, 4, 0], [0, 0, 1, 0, 0, 2, 0, 0, 4, 0], [0, 0, 1, 0, 0, 2, 0, 0, 4, 0], [0, 0, 1, 0, 0, 2, 0, 0, 4, 0], [0, 0, 1, 0, 0, 2, 0, 0, 4, 0], [0, 0, 1, 0, 0, 2, 0, 0, 4, 0]], "output": [[1, 2, 4], [1, 2, 4], [1, 2, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 0, 5, 5, 5, 5, 0, 2], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0], [8, 8, 8, 8, 8, 0, 5, 5, 5, 5, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2], [8, 8, 8, 8], [4, 4, 4, 4], [1, 1, 1, 1]]}], "test": [{"input": [[2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 0, 5, 5, 5, 5, 5, 5, 5, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 0, 5, 5, 5, 5, 5, 5, 5, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7]], "output": [[2, 2, 2, 2, 2, 2, 2], [3, 3, 3, 3, 3, 3, 3], [8, 8, 8, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4], [6, 6, 6, 6, 6, 6, 6], [1, 1, 1, 1, 1, 1, 1], [7, 7, 7, 7, 7, 7, 7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/8e5a5113.json b/data/arc-agi/training/8e5a5113.json
deleted file mode 100644
index f35f836..0000000
--- a/data/arc-agi/training/8e5a5113.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 2, 5, 0, 0, 0, 5, 0, 0, 0], [4, 1, 1, 5, 0, 0, 0, 5, 0, 0, 0], [4, 4, 1, 5, 0, 0, 0, 5, 0, 0, 0]], "output": [[1, 1, 2, 5, 4, 4, 1, 5, 1, 4, 4], [4, 1, 1, 5, 4, 1, 1, 5, 1, 1, 4], [4, 4, 1, 5, 1, 1, 2, 5, 2, 1, 1]]}, {"input": [[6, 3, 3, 5, 0, 0, 0, 5, 0, 0, 0], [6, 3, 3, 5, 0, 0, 0, 5, 0, 0, 0], [6, 3, 2, 5, 0, 0, 0, 5, 0, 0, 0]], "output": [[6, 3, 3, 5, 6, 6, 6, 5, 2, 3, 6], [6, 3, 3, 5, 3, 3, 3, 5, 3, 3, 6], [6, 3, 2, 5, 2, 3, 3, 5, 3, 3, 6]]}, {"input": [[2, 7, 8, 5, 0, 0, 0, 5, 0, 0, 0], [7, 7, 8, 5, 0, 0, 0, 5, 0, 0, 0], [8, 8, 8, 5, 0, 0, 0, 5, 0, 0, 0]], "output": [[2, 7, 8, 5, 8, 7, 2, 5, 8, 8, 8], [7, 7, 8, 5, 8, 7, 7, 5, 8, 7, 7], [8, 8, 8, 5, 8, 8, 8, 5, 8, 7, 2]]}], "test": [{"input": [[3, 3, 9, 5, 0, 0, 0, 5, 0, 0, 0], [9, 9, 9, 5, 0, 0, 0, 5, 0, 0, 0], [2, 9, 9, 5, 0, 0, 0, 5, 0, 0, 0]], "output": [[3, 3, 9, 5, 2, 9, 3, 5, 9, 9, 2], [9, 9, 9, 5, 9, 9, 3, 5, 9, 9, 9], [2, 9, 9, 5, 9, 9, 9, 5, 9, 3, 3]]}]}
diff --git a/data/arc-agi/training/8eb1be9a.json b/data/arc-agi/training/8eb1be9a.json
deleted file mode 100644
index 0b030fe..0000000
--- a/data/arc-agi/training/8eb1be9a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0], [0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0], [0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0], [0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0], [0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0], [0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/8efcae92.json b/data/arc-agi/training/8efcae92.json
deleted file mode 100644
index 99637c9..0000000
--- a/data/arc-agi/training/8efcae92.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 2, 1, 0, 0, 0, 1, 2, 1, 1, 1, 1, 2, 1, 0, 0], [0, 0, 1, 1, 2, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 2, 1, 1, 1, 1, 0, 0], [0, 0, 1, 2, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 2, 1, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 2, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 2, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 1, 1], [1, 2, 1, 2, 1, 1], [1, 1, 2, 1, 2, 1], [1, 2, 1, 1, 1, 1], [1, 1, 1, 2, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 2, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 2, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0, 1, 1, 1, 1, 1, 2], [0, 0, 1, 1, 1, 1, 1, 2, 1, 1, 1, 0, 0, 0, 1, 1, 2, 1, 1, 1], [0, 0, 1, 1, 1, 2, 1, 1, 1, 2, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 2, 1, 1], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 1, 1, 1, 2, 1, 1, 1, 0, 0, 0, 1, 2, 1, 1, 1, 1], [0, 0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 2, 1], [0, 0, 1, 1, 1, 2, 1, 1, 1, 1, 2, 0, 0, 0, 1, 2, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 1, 1, 1, 1, 1, 2, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [1, 1, 1, 1, 2, 1, 1, 1, 1, 0, 0, 1, 1, 1, 2, 1, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 2, 1, 1, 0, 0, 1, 2, 1, 1, 1, 1, 0, 0, 0], [1, 1, 2, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 2, 1, 1, 1, 1], [1, 2, 1, 1, 1, 1, 1, 1, 2], [1, 1, 1, 1, 1, 2, 1, 1, 1], [1, 1, 1, 2, 1, 1, 1, 2, 1], [2, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 2, 1, 1, 1], [1, 2, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 2, 1, 1, 1, 1, 2]]}, {"input": [[0, 2, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 2, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0], [0, 1, 2, 1, 1, 2, 1, 0, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 2, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 2, 1, 2, 1, 0, 0, 1, 1, 1, 2, 1, 1, 1, 2, 1, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 1, 2, 1, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 0], [0, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 0]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1], [1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 2, 1, 1, 0, 0, 0], [0, 1, 2, 1, 1, 1, 0, 0, 0, 1, 2, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 1, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 2, 1, 1, 0, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 2, 1, 1, 1, 0, 0, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 0, 0], [0, 1, 1, 1, 2, 1, 0, 0, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 2, 1, 1, 1, 2, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 1, 1, 2, 1]], "output": [[1, 1, 1, 1, 2, 1, 1, 2, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 2, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 2, 1, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 2, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 2, 1, 1], [1, 1, 2, 1, 2, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/8f2ea7aa.json b/data/arc-agi/training/8f2ea7aa.json
deleted file mode 100644
index e9b36cb..0000000
--- a/data/arc-agi/training/8f2ea7aa.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 0, 8, 8, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0], [8, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 8, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 7, 7, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 7, 7], [0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 7], [0, 0, 0, 0, 7, 7, 0, 7, 7], [0, 0, 0, 7, 0, 0, 7, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0], [0, 7, 7, 0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 6, 0, 6, 0, 0, 0], [0, 0, 0, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 6, 0, 6, 0, 0, 0], [0, 0, 0, 6, 6, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 6, 0], [6, 0, 6, 0, 0, 0, 6, 0, 6], [6, 6, 0, 0, 0, 0, 6, 6, 0], [0, 6, 0, 0, 6, 0, 0, 0, 0], [6, 0, 6, 6, 0, 6, 0, 0, 0], [6, 6, 0, 6, 6, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0], [2, 0, 0, 2, 0, 0, 0, 0, 0], [2, 2, 0, 2, 2, 0, 0, 0, 0], [0, 2, 2, 0, 2, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 0], [0, 0, 0, 2, 2, 0, 2, 2, 0], [0, 0, 0, 0, 2, 2, 0, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/90c28cc7.json b/data/arc-agi/training/90c28cc7.json
deleted file mode 100644
index 3719e83..0000000
--- a/data/arc-agi/training/90c28cc7.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [0, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1], [0, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1], [0, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1], [0, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1], [0, 2, 2, 2, 2, 2, 2, 2, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 2, 2, 2, 2, 2, 2, 2, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 2, 2, 2, 2, 2, 2, 2, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 2, 2, 2, 2, 2, 2, 2, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 2, 2, 2, 2, 2, 2, 2, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 7, 7], [3, 4, 1], [2, 5, 5]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 8], [1, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 2], [3, 3], [4, 1]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 0, 0], [0, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 0, 0], [0, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 0, 0], [0, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 0, 0], [0, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 0, 0], [0, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 0, 0], [0, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 0, 0], [0, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 0, 0], [0, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 0, 0], [0, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 0, 0], [0, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 0, 0], [0, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 0, 0], [0, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 0, 0], [0, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 0, 0], [0, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 4, 1], [8, 3, 8], [2, 4, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/90f3ed37.json b/data/arc-agi/training/90f3ed37.json
deleted file mode 100644
index 26a4338..0000000
--- a/data/arc-agi/training/90f3ed37.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 0, 1, 0, 1, 0, 1, 0], [0, 8, 0, 1, 0, 1, 0, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 0, 8, 0, 1, 0, 1, 0], [0, 8, 0, 8, 0, 1, 0, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 1, 1, 1, 1, 1], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/913fb3ed.json b/data/arc-agi/training/913fb3ed.json
deleted file mode 100644
index a306187..0000000
--- a/data/arc-agi/training/913fb3ed.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0], [6, 6, 6, 0, 4, 8, 4, 0, 0, 0, 0, 0], [6, 3, 6, 0, 4, 4, 4, 1, 1, 1, 0, 0], [6, 6, 6, 0, 0, 0, 0, 1, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 6, 6, 6, 0], [0, 0, 6, 3, 6, 0], [0, 0, 6, 6, 6, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 3, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0], [0, 4, 8, 4, 0, 0], [0, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/91413438.json b/data/arc-agi/training/91413438.json
deleted file mode 100644
index 818745a..0000000
--- a/data/arc-agi/training/91413438.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[6, 6, 0], [0, 6, 6], [0, 0, 6]], "output": [[6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6, 0], [0, 6, 6, 0, 6, 6, 0, 6, 6, 0, 6, 6], [0, 0, 6, 0, 0, 6, 0, 0, 6, 0, 0, 6], [6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 4, 0], [0, 4, 4], [4, 0, 0]], "output": [[0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0], [0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 0, 0], [4, 0, 0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[3, 0, 3], [3, 0, 3], [0, 3, 3]], "output": [[3, 0, 3, 3, 0, 3, 3, 0, 3], [3, 0, 3, 3, 0, 3, 3, 0, 3], [0, 3, 3, 0, 3, 3, 0, 3, 3], [3, 0, 3, 3, 0, 3, 3, 0, 3], [3, 0, 3, 3, 0, 3, 3, 0, 3], [0, 3, 3, 0, 3, 3, 0, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[2, 0, 2], [0, 2, 0], [0, 0, 0]], "output": [[2, 0, 2, 2, 0, 2, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 8], [0, 8, 0], [0, 0, 0]], "output": [[0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/91714a58.json b/data/arc-agi/training/91714a58.json
deleted file mode 100644
index a2197f4..0000000
--- a/data/arc-agi/training/91714a58.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 1, 1, 4, 0, 2, 0, 0, 0, 0, 2, 0, 5], [0, 0, 0, 3, 5, 0, 0, 0, 9, 9, 8, 0, 4, 0, 5, 8], [1, 0, 8, 2, 8, 0, 0, 6, 0, 8, 5, 0, 0, 0, 8, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 1, 2, 2, 2, 0, 0, 1, 9, 5, 0, 0, 2, 0, 4], [0, 4, 0, 2, 2, 2, 0, 2, 0, 0, 7, 0, 0, 0, 0, 0], [3, 0, 6, 2, 2, 2, 0, 0, 0, 3, 5, 0, 7, 0, 0, 0], [7, 0, 4, 6, 0, 0, 4, 7, 7, 3, 0, 2, 0, 0, 7, 1], [0, 7, 0, 0, 0, 0, 0, 9, 7, 7, 0, 0, 0, 8, 5, 2], [1, 5, 6, 4, 9, 3, 0, 3, 0, 0, 0, 0, 0, 9, 4, 6], [0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 6, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4], [0, 0, 6, 0, 0, 0, 0, 0, 6, 0, 0, 2, 0, 0, 0, 0], [0, 3, 0, 0, 7, 0, 2, 0, 7, 9, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 7, 0, 0, 0, 0, 0, 0, 0, 6, 5, 3, 0], [1, 0, 0, 9, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 9, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 7, 0, 0, 6, 0, 6, 0, 0, 0, 7, 3, 0, 0, 0], [0, 0, 3, 0, 0, 1, 0, 0, 8, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 3, 9, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8], [2, 2, 0, 2, 9, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0], [0, 5, 2, 0, 0, 7, 0, 6, 0, 0, 0, 3, 0, 0, 1, 0], [4, 4, 0, 3, 9, 0, 0, 0, 0, 7, 0, 2, 0, 0, 0, 0], [8, 0, 0, 0, 0, 6, 0, 0, 0, 8, 0, 0, 3, 0, 0, 0], [0, 9, 0, 0, 0, 4, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 9, 5, 0, 0, 0, 0, 4, 6, 0, 1, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 8, 0, 5, 9, 4], [0, 9, 3, 9, 0, 3, 0, 0, 5, 6, 7, 0, 5, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 7, 0, 0], [0, 4, 6, 6, 6, 6, 6, 6, 6, 0, 0, 4, 4, 6, 0, 2], [0, 5, 0, 0, 0, 0, 4, 5, 3, 0, 8, 0, 0, 0, 6, 9], [0, 0, 9, 7, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 7, 1], [0, 8, 0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 3, 8, 7, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[3, 0, 0, 0, 0, 0, 6, 2, 0, 0, 0, 5, 0, 0, 0, 3], [0, 7, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 8, 8, 0, 7, 7, 7, 0, 0, 0, 0, 4], [0, 2, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 2, 0, 5, 0], [0, 8, 0, 0, 9, 6, 1, 7, 7, 7, 7, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 3, 6, 0, 6, 0, 0, 3, 3, 0, 0, 0], [0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [9, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 8, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 6, 0, 9, 0, 0, 0, 0, 0, 0], [9, 0, 0, 0, 1, 0, 0, 3, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 5, 0, 0], [4, 0, 0, 1, 7, 0, 3, 0, 0, 7, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 7, 2, 0, 0, 5, 0, 0, 1, 0, 4], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 7, 9, 0, 0, 0, 5, 0, 2, 0, 3, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 1, 7, 3, 0, 0, 0, 0, 0, 1, 2, 0, 4, 7, 0], [0, 0, 0, 3, 0, 0, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 8, 0, 1, 0, 0, 1, 0, 0, 0, 7, 0, 4, 8], [0, 3, 8, 0, 0, 0, 3, 0, 8, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 1, 0, 0, 8, 0, 0, 3, 8, 0, 0, 5, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 5, 0, 7], [0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 2, 7, 0, 7, 0, 0], [9, 4, 0, 2, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 9, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5], [0, 8, 9, 4, 0, 5, 5, 5, 5, 5, 5, 3, 0, 0, 0, 0], [0, 0, 3, 0, 6, 5, 5, 5, 5, 5, 5, 0, 1, 4, 0, 0], [9, 5, 2, 0, 0, 5, 1, 3, 0, 0, 6, 2, 0, 0, 1, 5], [0, 7, 0, 0, 0, 0, 1, 6, 0, 7, 0, 3, 0, 6, 0, 0], [0, 0, 9, 0, 0, 3, 7, 7, 0, 6, 0, 0, 8, 0, 0, 0], [5, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 9]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/9172f3a0.json b/data/arc-agi/training/9172f3a0.json
deleted file mode 100644
index 74bd114..0000000
--- a/data/arc-agi/training/9172f3a0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 3, 0], [7, 4, 0], [0, 0, 4]], "output": [[3, 3, 3, 3, 3, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0], [7, 7, 7, 4, 4, 4, 0, 0, 0], [7, 7, 7, 4, 4, 4, 0, 0, 0], [7, 7, 7, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4], [0, 0, 0, 0, 0, 0, 4, 4, 4], [0, 0, 0, 0, 0, 0, 4, 4, 4]]}, {"input": [[3, 0, 2], [0, 2, 2], [0, 0, 3]], "output": [[3, 3, 3, 0, 0, 0, 2, 2, 2], [3, 3, 3, 0, 0, 0, 2, 2, 2], [3, 3, 3, 0, 0, 0, 2, 2, 2], [0, 0, 0, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 3, 3, 3]]}], "test": [{"input": [[0, 1, 0], [0, 0, 6], [6, 1, 0]], "output": [[0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 6], [0, 0, 0, 0, 0, 0, 6, 6, 6], [0, 0, 0, 0, 0, 0, 6, 6, 6], [6, 6, 6, 1, 1, 1, 0, 0, 0], [6, 6, 6, 1, 1, 1, 0, 0, 0], [6, 6, 6, 1, 1, 1, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/928ad970.json b/data/arc-agi/training/928ad970.json
deleted file mode 100644
index fc87128..0000000
--- a/data/arc-agi/training/928ad970.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 1, 0, 1, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0], [0, 5, 1, 0, 0, 1, 0, 1, 0, 0, 1, 5, 0], [0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 5, 3, 0, 3, 3, 3, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 3, 0, 3, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 3, 3, 3, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 5, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 4, 0, 4, 4, 4, 4, 0, 0, 0, 4, 0, 0], [0, 0, 4, 0, 4, 0, 0, 4, 0, 0, 0, 4, 5, 0], [0, 0, 4, 0, 4, 0, 0, 4, 0, 0, 0, 4, 0, 0], [0, 5, 4, 0, 4, 4, 4, 4, 0, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 8, 8, 8, 8, 0, 0, 8, 0, 0, 0], [0, 0, 5, 8, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 8, 8, 8, 8, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 5, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/93b581b8.json b/data/arc-agi/training/93b581b8.json
deleted file mode 100644
index ddd83f2..0000000
--- a/data/arc-agi/training/93b581b8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 9, 3, 0, 0], [0, 0, 7, 8, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[8, 8, 0, 0, 7, 7], [8, 8, 0, 0, 7, 7], [0, 0, 9, 3, 0, 0], [0, 0, 7, 8, 0, 0], [3, 3, 0, 0, 9, 9], [3, 3, 0, 0, 9, 9]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 4, 6, 0, 0, 0], [0, 2, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[1, 0, 0, 2, 2, 0], [0, 4, 6, 0, 0, 0], [0, 2, 1, 0, 0, 0], [6, 0, 0, 4, 4, 0], [6, 0, 0, 4, 4, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 3, 6, 0, 0], [0, 0, 5, 2, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[2, 2, 0, 0, 5, 5], [2, 2, 0, 0, 5, 5], [0, 0, 3, 6, 0, 0], [0, 0, 5, 2, 0, 0], [6, 6, 0, 0, 3, 3], [6, 6, 0, 0, 3, 3]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 3, 1, 0, 0], [0, 0, 2, 5, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [5, 5, 0, 0, 2, 2], [5, 5, 0, 0, 2, 2], [0, 0, 3, 1, 0, 0], [0, 0, 2, 5, 0, 0], [1, 1, 0, 0, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/941d9a10.json b/data/arc-agi/training/941d9a10.json
deleted file mode 100644
index 82fa87a..0000000
--- a/data/arc-agi/training/941d9a10.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0]], "output": [[1, 1, 5, 0, 0, 0, 0, 5, 0, 0], [1, 1, 5, 0, 0, 0, 0, 5, 0, 0], [1, 1, 5, 0, 0, 0, 0, 5, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 5, 2, 2, 2, 2, 5, 0, 0], [0, 0, 5, 2, 2, 2, 2, 5, 0, 0], [0, 0, 5, 2, 2, 2, 2, 5, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 5, 0, 0, 0, 0, 5, 3, 3], [0, 0, 5, 0, 0, 0, 0, 5, 3, 3]]}, {"input": [[0, 0, 0, 5, 0, 0, 0, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 0, 5, 0]], "output": [[1, 1, 1, 5, 0, 0, 0, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 2, 2, 2, 2, 5, 0], [0, 0, 0, 5, 2, 2, 2, 2, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 0, 0, 0, 0, 5, 3]]}, {"input": [[0, 5, 0, 0, 5, 0, 5, 0, 5, 0], [0, 5, 0, 0, 5, 0, 5, 0, 5, 0], [0, 5, 0, 0, 5, 0, 5, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 0, 5, 0, 5, 0, 5, 0], [0, 5, 0, 0, 5, 0, 5, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 0, 5, 0, 5, 0, 5, 0], [0, 5, 0, 0, 5, 0, 5, 0, 5, 0], [0, 5, 0, 0, 5, 0, 5, 0, 5, 0]], "output": [[1, 5, 0, 0, 5, 0, 5, 0, 5, 0], [1, 5, 0, 0, 5, 0, 5, 0, 5, 0], [1, 5, 0, 0, 5, 0, 5, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 0, 5, 2, 5, 0, 5, 0], [0, 5, 0, 0, 5, 2, 5, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 0, 5, 0, 5, 0, 5, 3], [0, 5, 0, 0, 5, 0, 5, 0, 5, 3], [0, 5, 0, 0, 5, 0, 5, 0, 5, 3]]}], "test": [{"input": [[0, 5, 0, 5, 0, 0, 5, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 5, 0, 0, 5, 0, 5, 0], [0, 5, 0, 5, 0, 0, 5, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 5, 0, 0, 5, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 5, 0, 0, 5, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 5, 0, 0, 5, 0, 5, 0]], "output": [[1, 5, 0, 5, 0, 0, 5, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 5, 0, 0, 5, 0, 5, 0], [0, 5, 0, 5, 0, 0, 5, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 5, 2, 2, 5, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 5, 0, 0, 5, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 0, 5, 0, 0, 5, 0, 5, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/94f9d214.json b/data/arc-agi/training/94f9d214.json
deleted file mode 100644
index 9a1731e..0000000
--- a/data/arc-agi/training/94f9d214.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[0, 3, 0, 3], [3, 3, 3, 0], [0, 0, 0, 3], [3, 3, 3, 0], [0, 0, 1, 1], [0, 0, 1, 1], [0, 1, 0, 0], [1, 1, 0, 0]], "output": [[2, 0, 0, 0], [0, 0, 0, 0], [2, 0, 2, 0], [0, 0, 0, 2]]}], "train": [{"input": [[0, 0, 0, 0], [0, 3, 3, 0], [0, 0, 0, 0], [3, 0, 0, 3], [0, 0, 0, 1], [1, 0, 1, 1], [1, 1, 1, 1], [0, 1, 0, 1]], "output": [[2, 2, 2, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 2, 0]]}, {"input": [[3, 3, 3, 3], [0, 3, 3, 0], [0, 0, 3, 3], [3, 0, 0, 0], [0, 0, 0, 1], [0, 0, 0, 1], [0, 1, 0, 0], [1, 0, 0, 1]], "output": [[0, 0, 0, 0], [2, 0, 0, 0], [2, 0, 0, 0], [0, 2, 2, 0]]}, {"input": [[0, 3, 3, 0], [0, 3, 0, 3], [0, 0, 3, 0], [3, 3, 3, 3], [1, 1, 1, 1], [1, 1, 0, 0], [1, 1, 0, 0], [0, 1, 1, 0]], "output": [[0, 0, 0, 0], [0, 0, 2, 0], [0, 0, 0, 2], [0, 0, 0, 0]]}, {"input": [[3, 3, 3, 3], [3, 0, 0, 0], [3, 0, 3, 3], [3, 3, 0, 3], [1, 1, 1, 0], [0, 1, 1, 1], [1, 0, 1, 1], [0, 1, 1, 1]], "output": [[0, 0, 0, 0], [0, 0, 0, 0], [0, 2, 0, 0], [0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/952a094c.json b/data/arc-agi/training/952a094c.json
deleted file mode 100644
index fd9f8d3..0000000
--- a/data/arc-agi/training/952a094c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 8, 4, 3, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 2, 6, 8, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 7, 2, 0, 0, 8, 7, 0, 0], [0, 0, 7, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 9, 0, 0, 3, 7, 0, 0], [0, 0, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 9, 0], [0, 0, 7, 7, 7, 7, 7, 7, 0, 0], [0, 0, 7, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 7, 7, 7, 7, 7, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 2, 0, 0, 5, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 1, 6, 0, 0, 3, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 3, 6, 0, 0, 4, 3, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0], [0, 0, 3, 8, 0, 0, 2, 3, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0], [0, 0, 3, 0, 0, 0, 0, 3, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/9565186b.json b/data/arc-agi/training/9565186b.json
deleted file mode 100644
index 8230da9..0000000
--- a/data/arc-agi/training/9565186b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 2], [2, 1, 8], [2, 8, 8]], "output": [[2, 2, 2], [2, 5, 5], [2, 5, 5]]}, {"input": [[1, 1, 1], [8, 1, 3], [8, 2, 2]], "output": [[1, 1, 1], [5, 1, 5], [5, 5, 5]]}, {"input": [[2, 2, 2], [8, 8, 2], [2, 2, 2]], "output": [[2, 2, 2], [5, 5, 2], [2, 2, 2]]}, {"input": [[3, 3, 8], [4, 4, 4], [8, 1, 1]], "output": [[5, 5, 5], [4, 4, 4], [5, 5, 5]]}], "test": [{"input": [[1, 3, 2], [3, 3, 2], [1, 3, 2]], "output": [[5, 3, 5], [3, 3, 5], [5, 3, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/95990924.json b/data/arc-agi/training/95990924.json
deleted file mode 100644
index f60100f..0000000
--- a/data/arc-agi/training/95990924.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0], [0, 0, 3, 0, 0, 4, 0, 0, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 4, 0, 1, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0], [3, 0, 0, 4, 1, 0, 0, 2, 0, 0, 3, 0, 0, 4, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 1, 0, 0, 2], [0, 0, 0, 0, 3, 0, 0, 4, 0, 0, 0, 0, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4], [0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 3, 0, 0, 4, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/963e52fc.json b/data/arc-agi/training/963e52fc.json
deleted file mode 100644
index c887670..0000000
--- a/data/arc-agi/training/963e52fc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0], [2, 8, 2, 8, 2, 8], [2, 8, 2, 8, 2, 8], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 8, 2, 8, 2, 8, 2, 8, 2, 8, 2, 8], [2, 8, 2, 8, 2, 8, 2, 8, 2, 8, 2, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [2, 3, 3, 2, 3, 3, 2], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 2, 1, 2, 2, 1, 2], [2, 1, 2, 2, 1, 2, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1], [2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 1, 1, 3, 1, 1, 3, 1, 1], [3, 1, 1, 3, 1, 1, 3, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1], [3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1, 3, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/97999447.json b/data/arc-agi/training/97999447.json
deleted file mode 100644
index f83a90b..0000000
--- a/data/arc-agi/training/97999447.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train":[{"input":[[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,2,0,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,6,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0]],"output":[[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,2,5,2,5,2,5],[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,6,5,6,5,6],[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0]]},{"input":[[0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0],[0,3,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,6,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0]],"output":[[0,0,0,0,0,0,0,0,0,0,0,0],[0,0,2,5,2,5,2,5,2,5,2,5],[0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0],[0,3,5,3,5,3,5,3,5,3,5,3],[0,0,0,0,0,0,6,5,6,5,6,5],[0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0]]},{"input":[[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,8,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0]],"output":[[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,8,5,8,5,8],[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0]]}],"test":[{"input":[[0,0,0,0,0,0,0,0],[0,0,0,3,0,0,0,0],[0,0,4,0,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,0,8,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,2,0,0,0,0],[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0]],"output":[[0,0,0,0,0,0,0,0],[0,0,0,3,5,3,5,3],[0,0,4,5,4,5,4,5],[0,0,0,0,0,0,0,0],[0,0,0,0,8,5,8,5],[0,0,0,0,0,0,0,0],[0,0,0,2,5,2,5,2],[0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0]]}]}
diff --git a/data/arc-agi/training/97a05b5b.json b/data/arc-agi/training/97a05b5b.json
deleted file mode 100644
index 6c3a15e..0000000
--- a/data/arc-agi/training/97a05b5b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 2, 2, 2, 2, 2, 0, 2, 0, 0, 1, 2, 1, 0, 0, 0], [0, 0, 2, 0, 0, 2, 2, 2, 2, 0, 2, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 2, 0, 0, 1, 2, 1, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 2, 2, 2, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 2, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 5, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 2, 4, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 4, 0, 0, 5, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 4, 4, 2, 2, 3, 2, 3], [2, 2, 2, 4, 2, 2, 3, 2, 3], [2, 4, 4, 4, 2, 2, 3, 2, 3], [2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 1, 2, 1, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 1, 2, 1, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2], [8, 2, 2, 2, 2, 5, 2, 5, 2], [8, 8, 2, 2, 2, 5, 2, 5, 2], [8, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 2, 2, 0, 2, 2, 2, 2, 2, 0], [0, 2, 0, 0, 0, 2, 2, 2, 2, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 2, 2, 2, 2, 0, 0, 2, 2, 0], [0, 2, 2, 2, 2, 0, 2, 0, 2, 0], [0, 2, 2, 2, 2, 2, 0, 0, 2, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 2, 4, 0, 0, 0, 0, 0, 0], [0, 2, 2, 4, 0, 0, 0, 0, 0, 0], [0, 4, 2, 4, 0, 2, 2, 3, 0, 0], [0, 0, 0, 0, 0, 2, 3, 2, 0, 0], [0, 0, 0, 0, 0, 3, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2], [2, 4, 2, 4, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2], [2, 4, 4, 4, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 3, 2], [2, 2, 2, 2, 2, 3, 2, 2], [2, 2, 2, 2, 3, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 2, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 2, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 0, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 0, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 8, 2, 8, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 8, 2, 8, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 2, 0, 2, 2, 2, 2, 0, 2, 2, 2, 0, 2, 0], [0, 0, 2, 0, 0, 2, 2, 0, 0, 2, 2, 2, 2, 2, 0], [0, 0, 2, 2, 0, 0, 2, 2, 0, 2, 2, 2, 2, 2, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 2, 2, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 2, 3, 3, 0, 0, 0, 0], [0, 1, 2, 1, 0, 0, 0, 0, 2, 2, 3, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 2, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 2, 0], [0, 0, 0, 4, 2, 4, 0, 0, 0, 0, 0, 8, 2, 2, 0], [0, 0, 0, 4, 2, 4, 0, 0, 0, 0, 0, 2, 2, 8, 0], [0, 0, 0, 4, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1], [2, 2, 8, 8, 3, 3, 2, 2, 2, 1, 2, 1], [2, 2, 2, 8, 3, 2, 2, 2, 2, 1, 1, 1], [2, 8, 2, 2, 3, 3, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 4, 4, 4, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 4, 4, 4, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/98cf29f8.json b/data/arc-agi/training/98cf29f8.json
deleted file mode 100644
index fc794dd..0000000
--- a/data/arc-agi/training/98cf29f8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 7, 7, 7, 7, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 7, 7, 7, 7, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/995c5fa3.json b/data/arc-agi/training/995c5fa3.json
deleted file mode 100644
index 5e4a6cb..0000000
--- a/data/arc-agi/training/995c5fa3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5], [5, 5, 5, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5, 0], [5, 5, 5, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5, 0], [5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5]], "output": [[2, 2, 2], [8, 8, 8], [3, 3, 3]]}, {"input": [[5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5], [0, 5, 5, 0, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5], [0, 5, 5, 0, 0, 5, 0, 0, 5, 0, 5, 5, 5, 5], [5, 5, 5, 5, 0, 5, 0, 0, 5, 0, 5, 5, 5, 5]], "output": [[3, 3, 3], [4, 4, 4], [2, 2, 2]]}, {"input": [[5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5], [5, 0, 0, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5], [5, 0, 0, 5, 0, 5, 5, 5, 5, 0, 5, 0, 0, 5], [5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 0, 0, 5]], "output": [[8, 8, 8], [2, 2, 2], [4, 4, 4]]}, {"input": [[5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5], [5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5], [5, 5, 5, 5, 0, 5, 0, 0, 5, 0, 5, 5, 5, 5], [5, 5, 5, 5, 0, 5, 0, 0, 5, 0, 5, 5, 5, 5]], "output": [[2, 2, 2], [4, 4, 4], [2, 2, 2]]}], "test": [{"input": [[5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5], [5, 5, 5, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 5], [5, 0, 0, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 5], [5, 0, 0, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5]], "output": [[4, 4, 4], [3, 3, 3], [8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/99b1bc43.json b/data/arc-agi/training/99b1bc43.json
deleted file mode 100644
index c098463..0000000
--- a/data/arc-agi/training/99b1bc43.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[1, 0, 1, 1], [0, 1, 1, 1], [0, 0, 1, 0], [1, 0, 1, 1], [4, 4, 4, 4], [2, 2, 0, 2], [0, 0, 2, 0], [2, 0, 0, 2], [0, 2, 0, 2]], "output": [[0, 3, 3, 0], [0, 3, 0, 3], [3, 0, 3, 3], [3, 3, 3, 0]]}], "train": [{"input": [[0, 1, 0, 1], [0, 0, 0, 1], [1, 0, 1, 0], [0, 0, 0, 1], [4, 4, 4, 4], [0, 2, 0, 2], [0, 0, 0, 2], [2, 0, 0, 2], [2, 2, 2, 0]], "output": [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 3, 3], [3, 3, 3, 3]]}, {"input": [[1, 1, 0, 0], [1, 0, 1, 0], [1, 1, 0, 1], [0, 1, 1, 0], [4, 4, 4, 4], [0, 2, 2, 2], [2, 0, 2, 0], [2, 2, 2, 2], [2, 2, 2, 2]], "output": [[3, 0, 3, 3], [0, 0, 0, 0], [0, 0, 3, 0], [3, 0, 0, 3]]}, {"input": [[0, 1, 0, 0], [1, 0, 1, 1], [1, 1, 1, 0], [1, 1, 1, 0], [4, 4, 4, 4], [0, 0, 0, 0], [0, 2, 0, 2], [2, 2, 0, 2], [0, 2, 0, 0]], "output": [[0, 3, 0, 0], [3, 3, 3, 0], [0, 0, 3, 3], [3, 0, 3, 0]]}, {"input": [[1, 0, 1, 1], [0, 0, 0, 1], [1, 1, 0, 0], [0, 0, 1, 1], [4, 4, 4, 4], [0, 2, 2, 2], [0, 2, 2, 2], [2, 0, 2, 2], [2, 2, 2, 2]], "output": [[3, 3, 0, 0], [0, 3, 3, 0], [0, 3, 3, 3], [3, 3, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/99fa7670.json b/data/arc-agi/training/99fa7670.json
deleted file mode 100644
index 6f1a816..0000000
--- a/data/arc-agi/training/99fa7670.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 2], [0, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 3]]}, {"input": [[0, 0, 0], [0, 6, 0], [0, 0, 0]], "output": [[0, 0, 0], [0, 6, 6], [0, 0, 6]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 8], [0, 0, 0, 5, 5, 5], [0, 0, 0, 0, 0, 5]]}, {"input": [[0, 0, 0, 0, 0], [0, 0, 8, 0, 0], [0, 0, 0, 0, 0], [0, 7, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 6, 0, 0], [0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 0, 8, 8, 8], [0, 0, 0, 0, 8], [0, 7, 7, 7, 7], [0, 0, 0, 0, 7], [0, 0, 6, 6, 6], [0, 0, 0, 0, 6]]}], "test": [{"input": [[0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 7, 7, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/9aec4887.json b/data/arc-agi/training/9aec4887.json
deleted file mode 100644
index 1030c4c..0000000
--- a/data/arc-agi/training/9aec4887.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 4, 4, 4, 4, 0], [2, 8, 0, 0, 8, 1], [2, 0, 8, 0, 1, 1], [2, 2, 8, 8, 1, 1], [2, 0, 3, 0, 8, 1], [0, 3, 3, 3, 3, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 3, 3, 3, 0], [6, 0, 3, 0, 4], [6, 6, 8, 4, 4], [6, 0, 2, 8, 4], [0, 2, 2, 2, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 7, 7, 7, 7, 0], [4, 8, 7, 0, 8, 6], [4, 0, 8, 8, 0, 6], [4, 0, 8, 0, 6, 6], [4, 8, 1, 0, 8, 6], [0, 1, 1, 1, 1, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 1, 1, 1, 1, 1, 0], [2, 8, 1, 0, 1, 8, 4], [2, 2, 0, 1, 8, 0, 4], [2, 0, 2, 8, 4, 4, 4], [2, 0, 0, 3, 0, 0, 4], [2, 8, 3, 0, 3, 8, 4], [0, 3, 3, 3, 3, 3, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/9af7a82c.json b/data/arc-agi/training/9af7a82c.json
deleted file mode 100644
index 02e1317..0000000
--- a/data/arc-agi/training/9af7a82c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 1], [2, 3, 1], [1, 1, 1]], "output": [[1, 2, 3], [1, 2, 0], [1, 2, 0], [1, 0, 0], [1, 0, 0]]}, {"input": [[3, 1, 1, 4], [2, 2, 2, 4], [4, 4, 4, 4]], "output": [[4, 2, 1, 3], [4, 2, 1, 0], [4, 2, 0, 0], [4, 0, 0, 0], [4, 0, 0, 0], [4, 0, 0, 0]]}, {"input": [[8, 8, 2], [3, 8, 8], [3, 3, 4], [3, 3, 4]], "output": [[3, 8, 4, 2], [3, 8, 4, 0], [3, 8, 0, 0], [3, 8, 0, 0], [3, 0, 0, 0]]}, {"input": [[1, 1, 1], [2, 2, 1], [2, 8, 1], [2, 8, 1]], "output": [[1, 2, 8], [1, 2, 8], [1, 2, 0], [1, 2, 0], [1, 0, 0], [1, 0, 0]]}], "test": [{"input": [[8, 8, 2, 2], [1, 8, 8, 2], [1, 3, 3, 4], [1, 1, 1, 1]], "output": [[1, 8, 2, 3, 4], [1, 8, 2, 3, 0], [1, 8, 2, 0, 0], [1, 8, 0, 0, 0], [1, 0, 0, 0, 0], [1, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/9d9215db.json b/data/arc-agi/training/9d9215db.json
deleted file mode 100644
index 9c32da6..0000000
--- a/data/arc-agi/training/9d9215db.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 4, 0, 8, 0, 8, 0, 8, 0, 4, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 4, 0, 8, 0, 8, 0, 8, 0, 4, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/9dfd6313.json b/data/arc-agi/training/9dfd6313.json
deleted file mode 100644
index ad54e26..0000000
--- a/data/arc-agi/training/9dfd6313.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 0, 0], [3, 5, 0], [0, 0, 5]], "output": [[5, 3, 0], [0, 5, 0], [0, 0, 5]]}, {"input": [[5, 0, 0, 0], [0, 5, 0, 0], [6, 0, 5, 0], [6, 0, 4, 5]], "output": [[5, 0, 6, 6], [0, 5, 0, 0], [0, 0, 5, 4], [0, 0, 0, 5]]}, {"input": [[5, 0, 0, 0, 0], [0, 5, 0, 0, 0], [8, 8, 5, 0, 0], [0, 2, 0, 5, 0], [0, 2, 0, 1, 5]], "output": [[5, 0, 8, 0, 0], [0, 5, 8, 2, 2], [0, 0, 5, 0, 0], [0, 0, 0, 5, 1], [0, 0, 0, 0, 5]]}], "test": [{"input": [[5, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0], [3, 3, 5, 0, 0, 0], [0, 0, 0, 5, 0, 0], [2, 0, 8, 8, 5, 0], [2, 0, 6, 0, 0, 5]], "output": [[5, 0, 3, 0, 2, 2], [0, 5, 3, 0, 0, 0], [0, 0, 5, 0, 8, 6], [0, 0, 0, 5, 8, 0], [0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/9ecd008a.json b/data/arc-agi/training/9ecd008a.json
deleted file mode 100644
index 90646ec..0000000
--- a/data/arc-agi/training/9ecd008a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[4, 8, 9, 9, 6, 6, 5, 1, 1, 5, 6, 6, 9, 9, 8, 4], [8, 6, 9, 9, 6, 7, 1, 5, 5, 1, 7, 6, 9, 9, 6, 8], [9, 9, 5, 2, 5, 1, 5, 5, 5, 5, 1, 5, 2, 5, 9, 9], [9, 9, 2, 2, 1, 5, 5, 9, 9, 5, 5, 1, 2, 2, 9, 9], [6, 6, 5, 1, 1, 4, 5, 2, 2, 5, 4, 1, 1, 5, 6, 6], [6, 0, 0, 0, 4, 4, 2, 7, 7, 2, 4, 4, 5, 1, 7, 6], [5, 0, 0, 0, 5, 2, 9, 5, 5, 9, 2, 5, 5, 5, 1, 5], [1, 0, 0, 0, 2, 7, 5, 9, 9, 5, 7, 2, 9, 5, 5, 1], [1, 5, 5, 9, 2, 7, 5, 9, 9, 5, 7, 2, 9, 5, 5, 1], [5, 1, 5, 5, 5, 2, 9, 5, 5, 9, 2, 5, 5, 5, 1, 5], [6, 7, 1, 5, 4, 4, 2, 7, 7, 2, 4, 4, 5, 1, 7, 6], [6, 6, 5, 1, 1, 4, 5, 2, 2, 5, 4, 1, 1, 5, 6, 6], [9, 9, 2, 2, 1, 5, 5, 9, 9, 5, 5, 1, 2, 2, 9, 9], [9, 9, 5, 2, 5, 1, 5, 5, 5, 5, 1, 5, 2, 5, 9, 9], [8, 6, 9, 9, 6, 7, 1, 5, 5, 1, 7, 6, 9, 9, 6, 8], [4, 8, 9, 9, 6, 6, 5, 1, 1, 5, 6, 6, 9, 9, 8, 4]], "output": [[7, 1, 5], [1, 5, 5], [5, 5, 9]]}], "train": [{"input": [[2, 1, 3, 5, 1, 1, 1, 8, 8, 1, 1, 1, 5, 3, 1, 2], [1, 2, 5, 7, 1, 7, 8, 8, 8, 8, 7, 1, 7, 5, 2, 1], [3, 5, 4, 4, 1, 8, 2, 9, 9, 2, 8, 1, 4, 4, 5, 3], [5, 7, 4, 4, 8, 8, 9, 2, 2, 9, 8, 8, 4, 4, 7, 5], [1, 1, 1, 8, 4, 4, 1, 1, 1, 1, 4, 4, 8, 1, 1, 1], [1, 7, 8, 8, 0, 0, 0, 9, 9, 1, 7, 4, 8, 8, 7, 1], [1, 8, 2, 9, 0, 0, 0, 3, 3, 1, 1, 1, 9, 2, 8, 1], [8, 8, 9, 2, 0, 0, 0, 1, 1, 3, 9, 1, 2, 9, 8, 8], [8, 8, 9, 2, 1, 9, 3, 1, 1, 3, 9, 1, 2, 9, 8, 8], [1, 8, 2, 9, 1, 1, 1, 3, 3, 1, 1, 1, 9, 2, 8, 1], [1, 7, 8, 8, 4, 7, 1, 9, 9, 1, 7, 4, 8, 8, 7, 1], [1, 1, 1, 8, 4, 4, 1, 1, 1, 1, 4, 4, 8, 1, 1, 1], [5, 7, 4, 4, 8, 8, 9, 2, 2, 9, 8, 8, 4, 4, 7, 5], [3, 5, 4, 4, 1, 8, 2, 9, 9, 2, 8, 1, 4, 4, 5, 3], [1, 2, 5, 7, 1, 7, 8, 8, 8, 8, 7, 1, 7, 5, 2, 1], [2, 1, 3, 5, 1, 1, 1, 8, 8, 1, 1, 1, 5, 3, 1, 2]], "output": [[4, 7, 1], [1, 1, 1], [1, 9, 3]]}, {"input": [[3, 3, 3, 1, 7, 7, 6, 6, 6, 6, 7, 7, 1, 3, 3, 3], [3, 3, 1, 3, 7, 7, 6, 1, 1, 6, 7, 7, 3, 1, 3, 3], [3, 1, 8, 8, 6, 6, 9, 7, 7, 9, 6, 6, 8, 8, 1, 3], [1, 3, 8, 5, 6, 1, 7, 9, 9, 7, 1, 6, 5, 8, 3, 1], [7, 7, 6, 6, 3, 3, 5, 1, 1, 5, 3, 3, 6, 6, 7, 7], [7, 7, 6, 1, 3, 3, 1, 1, 1, 1, 3, 3, 1, 6, 7, 7], [6, 6, 9, 7, 5, 1, 6, 1, 1, 6, 1, 5, 7, 9, 6, 6], [6, 1, 7, 9, 1, 1, 1, 4, 4, 1, 1, 1, 9, 7, 1, 6], [6, 1, 7, 9, 0, 0, 0, 4, 4, 1, 1, 1, 9, 7, 1, 6], [6, 6, 9, 7, 0, 0, 0, 1, 1, 6, 1, 5, 7, 9, 6, 6], [7, 7, 6, 1, 0, 0, 0, 1, 1, 1, 3, 3, 1, 6, 7, 7], [7, 7, 6, 6, 3, 3, 5, 1, 1, 5, 3, 3, 6, 6, 7, 7], [1, 3, 8, 5, 6, 1, 7, 9, 9, 7, 1, 6, 5, 8, 3, 1], [3, 1, 8, 8, 6, 6, 9, 7, 7, 9, 6, 6, 8, 8, 1, 3], [3, 3, 1, 3, 7, 7, 6, 1, 1, 6, 7, 7, 3, 1, 3, 3], [3, 3, 3, 1, 7, 7, 6, 6, 6, 6, 7, 7, 1, 3, 3, 3]], "output": [[1, 1, 1], [5, 1, 6], [3, 3, 1]]}, {"input": [[9, 3, 5, 3, 3, 9, 5, 5, 5, 5, 9, 3, 3, 5, 3, 9], [3, 9, 3, 6, 9, 5, 5, 8, 8, 5, 5, 9, 6, 3, 9, 3], [5, 3, 3, 3, 5, 5, 6, 6, 6, 6, 5, 5, 3, 3, 3, 5], [3, 6, 3, 6, 5, 8, 6, 6, 6, 6, 8, 5, 6, 3, 6, 3], [3, 9, 5, 5, 5, 5, 2, 1, 1, 2, 5, 5, 5, 5, 9, 3], [9, 5, 5, 8, 5, 8, 1, 6, 6, 1, 8, 5, 8, 5, 5, 9], [5, 5, 6, 6, 2, 1, 9, 3, 3, 9, 1, 2, 6, 6, 5, 5], [5, 8, 6, 6, 1, 6, 3, 9, 9, 3, 0, 0, 0, 6, 8, 5], [5, 8, 6, 6, 1, 6, 3, 9, 9, 3, 0, 0, 0, 6, 8, 5], [5, 5, 6, 6, 2, 1, 9, 3, 3, 9, 0, 0, 0, 6, 5, 5], [9, 5, 5, 8, 5, 8, 1, 6, 6, 1, 8, 5, 8, 5, 5, 9], [3, 9, 5, 5, 5, 5, 2, 1, 1, 2, 5, 5, 5, 5, 9, 3], [3, 6, 3, 6, 5, 8, 6, 6, 6, 6, 8, 5, 6, 3, 6, 3], [5, 3, 3, 3, 5, 5, 6, 6, 6, 6, 5, 5, 3, 3, 3, 5], [3, 9, 3, 6, 9, 5, 5, 8, 8, 5, 5, 9, 6, 3, 9, 3], [9, 3, 5, 3, 3, 9, 5, 5, 5, 5, 9, 3, 3, 5, 3, 9]], "output": [[6, 1, 6], [6, 1, 6], [1, 2, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/9edfc990.json b/data/arc-agi/training/9edfc990.json
deleted file mode 100644
index cb34df6..0000000
--- a/data/arc-agi/training/9edfc990.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train":[{"input":[[9,0,0,0,0,2,8,0,9,0,2,0,9],[1,0,0,6,0,0,0,0,0,0,0,9,5],[9,0,4,9,3,0,0,5,7,0,8,0,8],[0,0,8,6,0,6,0,1,0,0,0,4,1],[3,6,0,1,0,3,9,0,0,4,5,7,2],[0,8,0,0,0,0,0,0,7,1,8,0,0],[9,0,0,2,0,0,0,7,5,7,0,8,4],[0,0,0,8,7,5,0,0,7,0,0,5,0],[9,9,0,0,0,0,5,0,0,5,0,0,0],[8,0,0,8,0,6,5,0,0,0,0,9,0],[4,0,0,6,0,7,9,9,8,0,5,7,3],[0,0,0,0,0,0,0,7,2,0,0,0,8],[0,0,0,7,5,0,5,0,0,0,0,0,3]],"output":[[9,1,1,1,1,2,8,1,9,1,2,0,9],[1,1,1,6,1,1,1,1,1,1,1,9,5],[9,1,4,9,3,1,1,5,7,1,8,0,8],[1,1,8,6,1,6,1,1,1,1,1,4,1],[3,6,1,1,1,3,9,1,1,4,5,7,2],[0,8,1,1,1,1,1,1,7,1,8,0,0],[9,1,1,2,1,1,1,7,5,7,1,8,4],[1,1,1,8,7,5,1,1,7,1,1,5,1],[9,9,1,1,1,1,5,1,1,5,1,1,1],[8,1,1,8,1,6,5,1,1,1,1,9,1],[4,1,1,6,1,7,9,9,8,1,5,7,3],[1,1,1,1,1,1,1,7,2,1,1,1,8],[1,1,1,7,5,1,5,1,1,1,1,1,3]]},{"input":[[0,0,2,0,9,6,5,5,5,0,2,1,0,0,0],[3,0,4,4,9,0,0,0,3,9,0,0,0,5,0],[8,9,2,0,1,0,6,8,0,0,0,8,0,8,0],[6,0,4,0,4,0,0,1,6,1,6,9,1,4,2],[7,7,7,3,0,0,6,4,0,4,0,1,3,0,0],[7,6,0,4,0,2,0,0,4,0,8,0,0,7,6],[0,0,4,7,8,3,0,4,0,0,5,0,6,0,3],[0,8,0,0,2,0,0,0,1,0,2,0,0,1,0],[3,3,1,0,2,0,0,6,0,8,6,0,0,0,0],[0,0,0,0,0,8,0,0,0,9,0,4,0,2,8],[0,0,4,1,4,9,0,7,0,1,0,5,0,0,8],[7,2,0,0,4,5,1,0,9,0,0,6,4,0,0],[0,0,0,0,9,6,3,1,3,3,9,0,0,0,5],[0,5,0,4,0,7,9,9,0,0,0,0,9,4,0],[0,9,8,8,0,6,8,0,0,0,8,0,0,0,0]],"output":[[0,0,2,0,9,6,5,5,5,0,2,1,1,1,1],[3,0,4,4,9,1,1,1,3,9,1,1,1,5,1],[8,9,2,1,1,1,6,8,1,1,1,8,1,8,1],[6,0,4,1,4,1,1,1,6,1,6,9,1,4,2],[7,7,7,3,1,1,6,4,0,4,1,1,3,0,0],[7,6,0,4,1,2,1,1,4,1,8,1,1,7,6],[0,0,4,7,8,3,1,4,1,1,5,1,6,1,3],[0,8,1,1,2,1,1,1,1,1,2,1,1,1,1],[3,3,1,1,2,1,1,6,1,8,6,1,1,1,1],[1,1,1,1,1,8,1,1,1,9,1,4,1,2,8],[1,1,4,1,4,9,1,7,1,1,1,5,1,1,8],[7,2,1,1,4,5,1,1,9,1,1,6,4,1,1],[1,1,1,1,9,6,3,1,3,3,9,1,1,1,5],[1,5,1,4,0,7,9,9,1,1,1,1,9,4,1],[1,9,8,8,0,6,8,1,1,1,8,1,1,1,1]]},{"input":[[7,4,4,0,4,0,0,6,1,1,1,0,0,6,0,5],[1,1,3,3,4,0,3,8,5,3,4,5,0,8,2,8],[8,0,4,8,8,5,0,9,0,0,0,5,5,8,5,8],[0,2,6,0,0,0,0,3,0,1,0,8,0,4,0,8],[8,0,2,8,0,7,0,0,0,9,0,7,3,0,3,6],[0,0,0,0,0,0,5,3,0,6,0,6,0,4,5,7],[6,6,0,0,3,1,0,0,2,5,0,0,0,3,4,5],[7,0,7,8,0,1,0,0,0,9,0,7,3,0,3,0],[0,6,0,0,5,6,6,5,9,8,3,9,0,7,0,0],[7,5,0,0,0,8,0,6,9,0,0,7,1,0,0,0],[6,5,3,4,3,0,6,9,4,1,8,9,2,8,7,7],[8,6,8,6,3,2,7,3,0,2,0,0,2,1,0,0],[9,0,0,0,6,1,8,0,3,3,0,2,0,2,1,4],[0,4,0,0,0,0,1,0,0,0,6,0,4,4,5,6],[0,5,0,8,3,2,1,0,5,9,1,8,7,0,2,7],[0,9,0,1,8,6,0,9,9,8,0,9,0,0,3,0]],"output":[[7,4,4,0,4,0,0,6,1,1,1,1,1,6,0,5],[1,1,3,3,4,0,3,8,5,3,4,5,1,8,2,8],[8,1,4,8,8,5,1,9,1,1,1,5,5,8,5,8],[0,2,6,1,1,1,1,3,1,1,1,8,0,4,0,8],[8,1,2,8,1,7,1,1,1,9,1,7,3,0,3,6],[1,1,1,1,1,1,5,3,1,6,1,6,1,4,5,7],[6,6,1,1,3,1,1,1,2,5,1,1,1,3,4,5],[7,0,7,8,1,1,1,1,1,9,1,7,3,0,3,1],[0,6,0,0,5,6,6,5,9,8,3,9,1,7,1,1],[7,5,0,0,0,8,0,6,9,1,1,7,1,1,1,1],[6,5,3,4,3,0,6,9,4,1,8,9,2,8,7,7],[8,6,8,6,3,2,7,3,0,2,0,0,2,1,1,1],[9,1,1,1,6,1,8,1,3,3,0,2,0,2,1,4],[0,4,1,1,1,1,1,1,1,1,6,0,4,4,5,6],[0,5,1,8,3,2,1,1,5,9,1,8,7,0,2,7],[0,9,1,1,8,6,1,9,9,8,1,9,0,0,3,0]]}],"test":[{"input":[[0,0,0,8,0,5,0,0,9,0,6,0,0,0,0,5],[6,7,6,0,4,0,2,0,0,8,3,6,2,0,0,0],[0,0,0,7,0,0,5,4,1,0,1,7,6,0,0,0],[0,5,8,0,9,0,0,2,2,0,8,0,4,0,0,7],[4,0,0,4,2,2,7,3,2,0,6,4,9,9,9,0],[0,1,8,0,5,0,0,0,2,0,0,8,0,9,6,6],[9,9,0,2,8,0,0,3,0,0,2,0,0,5,8,0],[1,3,0,1,6,1,0,0,0,8,0,0,0,4,0,0],[0,0,4,0,7,4,0,0,4,0,0,5,8,0,4,0],[0,0,0,6,0,6,0,0,0,0,0,8,0,1,4,4],[0,9,0,0,9,0,0,0,0,0,1,5,0,6,0,0],[6,0,7,5,9,0,7,0,0,0,4,6,0,2,8,0],[5,0,0,0,1,0,2,4,8,0,0,3,0,9,0,8],[1,0,0,2,4,0,0,0,1,7,0,0,0,0,5,0],[6,9,0,0,7,7,1,0,2,0,0,9,1,0,3,0],[1,8,3,0,0,9,7,0,2,7,2,0,8,9,0,0]],"output":[[0,0,0,8,0,5,1,1,9,0,6,0,0,0,0,5],[6,7,6,0,4,0,2,1,1,8,3,6,2,0,0,0],[0,0,0,7,0,0,5,4,1,1,1,7,6,0,0,0],[0,5,8,0,9,0,0,2,2,1,8,0,4,0,0,7],[4,1,1,4,2,2,7,3,2,1,6,4,9,9,9,0],[1,1,8,0,5,1,1,1,2,1,1,8,1,9,6,6],[9,9,1,2,8,1,1,3,1,1,2,1,1,5,8,0],[1,3,1,1,6,1,1,1,1,8,1,1,1,4,0,0],[1,1,4,1,7,4,1,1,4,1,1,5,8,1,4,0],[1,1,1,6,0,6,1,1,1,1,1,8,1,1,4,4],[1,9,1,1,9,1,1,1,1,1,1,5,1,6,0,0],[6,1,7,5,9,1,7,1,1,1,4,6,1,2,8,0],[5,1,1,1,1,1,2,4,8,1,1,3,1,9,0,8],[1,1,1,2,4,1,1,1,1,7,1,1,1,1,5,0],[6,9,1,1,7,7,1,1,2,1,1,9,1,1,3,0],[1,8,3,1,1,9,7,1,2,7,2,0,8,9,0,0]]}],"name":"9edfc990"}
\ No newline at end of file
diff --git a/data/arc-agi/training/9f236235.json b/data/arc-agi/training/9f236235.json
deleted file mode 100644
index 4f76f5f..0000000
--- a/data/arc-agi/training/9f236235.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 3, 3, 3, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [3, 3, 3, 3, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [3, 3, 3, 3, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [3, 3, 3, 3, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 3, 3, 3, 3, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 3, 3, 3, 3, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 3, 3, 3, 3, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 3, 3, 3, 3, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 3, 3, 3, 3, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 3, 3, 3, 3, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 3, 3, 3, 3, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 3, 3, 3, 3, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 0, 0, 0, 0], [3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 0, 0, 0, 0], [3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 0, 0, 0, 0], [3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 0, 0, 0, 0]], "output": [[0, 0, 0, 3], [0, 0, 3, 0], [0, 3, 0, 0], [0, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 8, 2, 2, 2, 2, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 2, 2, 2, 2, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 2, 2, 2, 2, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 2, 2, 2, 2, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 8, 1, 1, 1, 1, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [2, 2, 2, 2, 8, 1, 1, 1, 1, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [2, 2, 2, 2, 8, 1, 1, 1, 1, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [2, 2, 2, 2, 8, 1, 1, 1, 1, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 1, 1, 1, 1, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 1, 1, 1, 1, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 1, 1, 1, 1, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 1, 1, 1, 1, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3], [0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 3, 3, 3, 3]], "output": [[0, 0, 2, 0], [0, 0, 1, 2], [0, 1, 0, 0], [3, 0, 0, 0]]}, {"input": [[0, 0, 0, 2, 8, 8, 8, 2, 0, 0, 0], [0, 0, 0, 2, 8, 8, 8, 2, 0, 0, 0], [0, 0, 0, 2, 8, 8, 8, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [8, 8, 8, 2, 8, 8, 8, 2, 0, 0, 0], [8, 8, 8, 2, 8, 8, 8, 2, 0, 0, 0], [8, 8, 8, 2, 8, 8, 8, 2, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 0, 0, 2, 4, 4, 4], [0, 0, 0, 2, 0, 0, 0, 2, 4, 4, 4], [0, 0, 0, 2, 0, 0, 0, 2, 4, 4, 4]], "output": [[0, 8, 0], [0, 8, 8], [4, 0, 0]]}], "test": [{"input": [[1, 1, 1, 1, 1, 8, 3, 3, 3, 3, 3, 8, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 3, 3, 3, 3, 3, 8, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 3, 3, 3, 3, 3, 8, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 3, 3, 3, 3, 3, 8, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 3, 3, 3, 3, 3, 8, 1, 1, 1, 1, 1, 8, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 2, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 2, 2, 2, 2, 2], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 3, 3, 3, 3, 3, 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0]], "output": [[1, 1, 3, 1], [0, 0, 3, 0], [2, 0, 3, 2], [0, 0, 3, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a1570a43.json b/data/arc-agi/training/a1570a43.json
deleted file mode 100644
index 69b7911..0000000
--- a/data/arc-agi/training/a1570a43.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 0, 2, 0, 0, 0, 3], [0, 2, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 3]], "output": [[3, 0, 0, 0, 0, 0, 3], [0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0], [0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0], [3, 0, 0, 0, 0, 0, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 3, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 3, 2, 2, 2, 2, 0, 3, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[3, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 2, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 3, 0], [2, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 3, 0], [0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a2fd1cf0.json b/data/arc-agi/training/a2fd1cf0.json
deleted file mode 100644
index d9ed12f..0000000
--- a/data/arc-agi/training/a2fd1cf0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 2, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a3325580.json b/data/arc-agi/training/a3325580.json
deleted file mode 100644
index 4f303a1..0000000
--- a/data/arc-agi/training/a3325580.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [0, 0, 4, 0, 0, 0, 0, 0, 0, 8], [0, 0, 4, 0, 0, 6, 6, 0, 0, 8], [0, 0, 4, 4, 0, 0, 6, 0, 0, 0], [0, 0, 4, 0, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 6, 8], [4, 6, 8], [4, 6, 8], [4, 6, 8], [4, 6, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 4, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 9, 0, 0, 0, 6, 0, 0, 4, 4], [0, 9, 9, 0, 0, 6, 0, 0, 0, 4], [9, 9, 0, 0, 6, 6, 6, 0, 0, 0], [0, 9, 0, 0, 0, 0, 6, 0, 0, 0], [0, 9, 9, 0, 0, 0, 0, 0, 0, 0], [0, 9, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[9, 4], [9, 4], [9, 4], [9, 4], [9, 4], [9, 4], [9, 4], [9, 4], [9, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [7, 7, 7, 0, 0, 2, 2, 0, 0, 1], [0, 0, 7, 0, 0, 0, 2, 2, 0, 1], [0, 0, 0, 0, 0, 0, 2, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2], [2], [2], [2], [2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 6, 0, 0, 0], [0, 0, 8, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8], [8], [8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 3], [2, 3], [2, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 8, 8, 8], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 4, 8], [1, 4, 8], [1, 4, 8]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 5, 0, 0, 0, 0, 1, 1, 1], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 9, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 2, 2, 0, 0, 0, 0, 0], [8, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0]], "output": [[5, 2, 1], [5, 2, 1], [5, 2, 1], [5, 2, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a3df8b1e.json b/data/arc-agi/training/a3df8b1e.json
deleted file mode 100644
index 7fdbac6..0000000
--- a/data/arc-agi/training/a3df8b1e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [1, 0]], "output": [[0, 1], [1, 0], [0, 1], [1, 0], [0, 1], [1, 0], [0, 1], [1, 0], [0, 1], [1, 0]]}, {"input": [[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [1, 0, 0]], "output": [[0, 1, 0], [1, 0, 0], [0, 1, 0], [0, 0, 1], [0, 1, 0], [1, 0, 0], [0, 1, 0], [0, 0, 1], [0, 1, 0], [1, 0, 0]]}, {"input": [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [1, 0, 0, 0]], "output": [[0, 0, 0, 1], [0, 0, 1, 0], [0, 1, 0, 0], [1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1], [0, 0, 1, 0], [0, 1, 0, 0], [1, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [1, 0, 0, 0, 0]], "output": [[0, 1, 0, 0, 0], [1, 0, 0, 0, 0], [0, 1, 0, 0, 0], [0, 0, 1, 0, 0], [0, 0, 0, 1, 0], [0, 0, 0, 0, 1], [0, 0, 0, 1, 0], [0, 0, 1, 0, 0], [0, 1, 0, 0, 0], [1, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a416b8f3.json b/data/arc-agi/training/a416b8f3.json
deleted file mode 100644
index c4f1d0f..0000000
--- a/data/arc-agi/training/a416b8f3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 5, 0], [5, 5, 2], [0, 0, 0]], "output": [[0, 5, 0, 0, 5, 0], [5, 5, 2, 5, 5, 2], [0, 0, 0, 0, 0, 0]]}, {"input": [[3, 0, 0], [2, 3, 0], [2, 1, 8], [0, 1, 0]], "output": [[3, 0, 0, 3, 0, 0], [2, 3, 0, 2, 3, 0], [2, 1, 8, 2, 1, 8], [0, 1, 0, 0, 1, 0]]}, {"input": [[5, 2, 3, 0], [2, 5, 3, 0], [5, 2, 8, 8], [0, 0, 6, 0]], "output": [[5, 2, 3, 0, 5, 2, 3, 0], [2, 5, 3, 0, 2, 5, 3, 0], [5, 2, 8, 8, 5, 2, 8, 8], [0, 0, 6, 0, 0, 0, 6, 0]]}], "test": [{"input": [[4, 0, 0, 0], [4, 5, 0, 0], [0, 5, 6, 0], [6, 6, 1, 0], [0, 0, 0, 1]], "output": [[4, 0, 0, 0, 4, 0, 0, 0], [4, 5, 0, 0, 4, 5, 0, 0], [0, 5, 6, 0, 0, 5, 6, 0], [6, 6, 1, 0, 6, 6, 1, 0], [0, 0, 0, 1, 0, 0, 0, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a48eeaf7.json b/data/arc-agi/training/a48eeaf7.json
deleted file mode 100644
index 5091257..0000000
--- a/data/arc-agi/training/a48eeaf7.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 5, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 5, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 5, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 5, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 5, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 5, 0, 0, 0, 0, 0], [0, 0, 2, 2, 5, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a5313dff.json b/data/arc-agi/training/a5313dff.json
deleted file mode 100644
index f2b77a4..0000000
--- a/data/arc-agi/training/a5313dff.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0], [0, 2, 0, 2, 0, 2, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0], [0, 2, 1, 1, 1, 2, 0, 0], [0, 2, 1, 2, 1, 2, 0, 0], [0, 2, 1, 1, 1, 2, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 2, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 2, 0, 0, 0, 2, 0], [0, 0, 2, 0, 2, 0, 2, 0], [0, 0, 2, 0, 0, 0, 2, 0], [0, 0, 2, 2, 2, 2, 2, 0]], "output": [[0, 0, 0, 2, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 2, 1, 1, 1, 2, 0], [0, 0, 2, 1, 2, 1, 2, 0], [0, 0, 2, 1, 1, 1, 2, 0], [0, 0, 2, 2, 2, 2, 2, 0]]}, {"input": [[0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 2, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 2, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 2, 0], [0, 0, 0, 2, 0, 2, 0, 2, 2, 2, 2, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2]], "output": [[0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 1, 1, 1, 2, 0, 0, 0, 0], [0, 0, 0, 2, 1, 2, 1, 2, 2, 2, 2, 0], [0, 0, 0, 2, 1, 1, 1, 2, 1, 1, 2, 0], [0, 0, 0, 2, 2, 2, 2, 2, 1, 1, 2, 0], [0, 0, 0, 2, 1, 1, 1, 2, 1, 1, 2, 0], [0, 0, 0, 2, 1, 2, 1, 2, 2, 2, 2, 0], [0, 0, 0, 2, 1, 1, 1, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2]]}], "test": [{"input": [[0, 0, 2, 2, 2, 2, 2, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0], [2, 2, 2, 2, 2, 2, 2, 0, 0], [2, 0, 0, 0, 2, 0, 0, 0, 0], [2, 0, 2, 0, 2, 0, 0, 0, 0], [2, 0, 0, 0, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0]], "output": [[0, 0, 2, 2, 2, 2, 2, 0, 0], [0, 0, 2, 1, 1, 1, 2, 0, 0], [0, 0, 2, 1, 1, 1, 2, 0, 0], [2, 2, 2, 2, 2, 2, 2, 0, 0], [2, 1, 1, 1, 2, 0, 0, 0, 0], [2, 1, 2, 1, 2, 0, 0, 0, 0], [2, 1, 1, 1, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a5f85a15.json b/data/arc-agi/training/a5f85a15.json
deleted file mode 100644
index 268f94e..0000000
--- a/data/arc-agi/training/a5f85a15.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 0, 0], [0, 2, 0], [0, 0, 2]], "output": [[2, 0, 0], [0, 4, 0], [0, 0, 2]]}, {"input": [[0, 0, 9, 0, 0, 0, 0, 0], [0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0], [9, 0, 0, 0, 0, 0, 9, 0], [0, 9, 0, 0, 0, 0, 0, 9], [0, 0, 9, 0, 0, 0, 0, 0], [0, 0, 0, 9, 0, 0, 0, 0]], "output": [[0, 0, 9, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0], [9, 0, 0, 0, 0, 0, 9, 0], [0, 4, 0, 0, 0, 0, 0, 4], [0, 0, 9, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0]]}, {"input": [[0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 3, 0], [3, 0, 0, 0, 0, 3], [0, 3, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0]], "output": [[0, 0, 3, 0, 0, 0], [0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 3, 0], [3, 0, 0, 0, 0, 4], [0, 4, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 6], [6, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 6, 0]], "output": [[0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [6, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 4], [6, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 6, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a61ba2ce.json b/data/arc-agi/training/a61ba2ce.json
deleted file mode 100644
index e989770..0000000
--- a/data/arc-agi/training/a61ba2ce.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 2, 2], [8, 0, 0, 2], [3, 0, 0, 1], [3, 3, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 8, 8], [1, 0, 0, 8], [4, 0, 0, 2], [4, 4, 2, 2]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 8, 8, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 8, 8], [3, 0, 0, 8], [1, 0, 0, 6], [1, 1, 6, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a61f2674.json b/data/arc-agi/training/a61f2674.json
deleted file mode 100644
index 813e430..0000000
--- a/data/arc-agi/training/a61f2674.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 5, 0, 0], [5, 0, 5, 0, 0, 0, 5, 0, 0], [5, 0, 5, 0, 0, 0, 5, 0, 0], [5, 0, 5, 0, 5, 0, 5, 0, 0], [5, 0, 5, 0, 5, 0, 5, 0, 5], [5, 0, 5, 0, 5, 0, 5, 0, 5], [5, 0, 5, 0, 5, 0, 5, 0, 5]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 2], [0, 0, 1, 0, 0, 0, 0, 0, 2], [0, 0, 1, 0, 0, 0, 0, 0, 2]]}, {"input": [[0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0], [5, 0, 0, 0, 5, 0, 0, 0, 0], [5, 0, 0, 0, 5, 0, 5, 0, 0], [5, 0, 0, 0, 5, 0, 5, 0, 0], [5, 0, 0, 0, 5, 0, 5, 0, 0], [5, 0, 0, 0, 5, 0, 5, 0, 0], [5, 0, 5, 0, 5, 0, 5, 0, 0], [5, 0, 5, 0, 5, 0, 5, 0, 0]], "output": [[0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 2, 0, 1, 0, 0, 0, 0], [0, 0, 2, 0, 1, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0], [0, 0, 0, 5, 0, 5, 0, 5, 0], [0, 0, 0, 5, 0, 5, 0, 5, 0], [0, 0, 0, 5, 0, 5, 0, 5, 0], [0, 0, 0, 5, 0, 5, 0, 5, 0], [0, 5, 0, 5, 0, 5, 0, 5, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 2, 0, 0, 0, 0, 0, 1, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a64e4611.json b/data/arc-agi/training/a64e4611.json
deleted file mode 100644
index d58b873..0000000
--- a/data/arc-agi/training/a64e4611.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 0, 8, 0, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 0, 8, 0, 0, 8, 0, 8, 0, 0, 0, 8, 8, 0, 8], [0, 0, 0, 8, 8, 8, 8, 0, 0, 8, 0, 8, 0, 0, 8, 8, 0, 0, 8, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 8], [8, 0, 0, 0, 8, 8, 0, 0, 8, 0, 8, 8, 0, 8, 8, 0, 8, 0, 8, 0, 8, 8, 8, 8, 0, 0, 8, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 8, 8, 0, 8, 0, 0, 0, 0, 0], [8, 8, 8, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 8, 0, 8, 8, 0, 0, 8], [0, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 8, 0, 8, 0, 0, 0, 8], [0, 8, 8, 8, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 8, 0, 8, 8, 8], [0, 8, 8, 8, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 8, 8, 0, 0, 8, 8], [8, 0, 8, 8, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 8], [8, 8, 8, 0, 8, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 8, 0, 8, 8, 0, 8], [8, 0, 8, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 8], [8, 0, 8, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 8, 0, 0, 0, 8, 0, 8, 8], [0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 8, 8, 0, 0, 8], [8, 0, 8, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 8, 8, 0, 0, 0, 8, 8, 0], [8, 0, 8, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 8, 8, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 8, 0, 8, 8, 8], [8, 8, 0, 0, 8, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 8, 0, 0, 0, 0, 8, 8, 8, 8], [0, 8, 8, 8, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 8, 0, 0, 0, 8, 8], [0, 8, 8, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8], [8, 0, 8, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 8, 0, 8, 8, 0, 0, 0, 8], [8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 8, 0, 8, 8, 0, 8, 0, 0, 8, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 8, 8, 0, 8, 8, 8, 0, 0, 0], [8, 8, 8, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0]], "output": [[8, 8, 0, 8, 0, 8, 0, 8, 8, 8, 8, 8, 0, 8, 8, 8, 0, 8, 0, 0, 8, 0, 8, 0, 0, 0, 8, 8, 0, 8], [0, 0, 0, 8, 8, 8, 8, 0, 0, 8, 0, 8, 0, 0, 8, 8, 0, 0, 8, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 8], [8, 0, 0, 0, 8, 8, 0, 0, 8, 0, 8, 8, 0, 8, 8, 0, 8, 0, 8, 0, 8, 8, 8, 8, 0, 0, 8, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 8, 8, 0, 8, 0, 0, 0, 0, 0], [8, 8, 8, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 8, 0, 8, 8, 0, 0, 8], [0, 8, 0, 0, 0, 8, 8, 8, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 8, 8, 8, 8, 0, 8, 0, 8, 0, 0, 0, 8], [0, 8, 8, 8, 8, 0, 0, 8, 0, 3, 3, 3, 3, 3, 3, 3, 0, 8, 8, 8, 0, 0, 0, 0, 0, 8, 0, 8, 8, 8], [0, 8, 8, 8, 8, 0, 0, 8, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 8, 0, 8, 0, 8, 8, 8, 0, 0, 8, 8], [8, 0, 8, 8, 0, 8, 8, 8, 0, 3, 3, 3, 3, 3, 3, 3, 0, 8, 0, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 8], [8, 8, 8, 0, 8, 8, 0, 8, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 8, 8, 0, 0, 8, 8, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 8, 8, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 8, 0, 0, 8, 0, 0, 8, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 8, 0, 8, 8, 0, 8, 8, 0, 8], [8, 0, 8, 8, 0, 0, 8, 8, 0, 3, 3, 3, 3, 3, 3, 3, 0, 8, 8, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 8], [8, 0, 8, 0, 0, 8, 8, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 8, 0, 8, 8, 0, 0, 0, 8, 0, 8, 8], [0, 0, 8, 8, 8, 8, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 8, 8, 0, 0, 0, 8, 8, 0, 8, 8, 0, 0, 8], [8, 0, 8, 0, 0, 8, 8, 8, 0, 3, 3, 3, 3, 3, 3, 3, 0, 8, 8, 8, 8, 0, 8, 8, 0, 0, 0, 8, 8, 0], [8, 0, 8, 8, 0, 8, 0, 8, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 8, 8, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 8, 0, 0, 0, 0, 8, 8, 8, 0, 8, 8, 8], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 8, 0, 0, 0, 0, 8, 0, 8, 8, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 8, 0, 0, 0, 0, 8, 0, 8, 0, 8, 8, 8], [8, 8, 0, 0, 8, 8, 0, 8, 0, 3, 3, 3, 3, 3, 3, 3, 0, 8, 8, 8, 0, 8, 0, 0, 0, 0, 8, 8, 8, 8], [0, 8, 8, 8, 8, 0, 0, 8, 0, 3, 3, 3, 3, 3, 3, 3, 0, 8, 0, 8, 0, 8, 0, 8, 8, 0, 0, 0, 8, 8], [0, 8, 8, 0, 8, 8, 8, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8], [8, 0, 8, 8, 8, 0, 8, 8, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 8, 8, 8, 0, 8, 0, 8, 8, 0, 0, 0, 8], [8, 0, 8, 0, 8, 0, 8, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 8, 0, 8, 8, 0, 8, 8, 0, 8, 0, 0, 8, 0], [0, 8, 8, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 8, 0, 0, 8, 8, 0, 8, 8, 8, 0, 0, 0], [8, 8, 8, 0, 8, 0, 0, 8, 0, 3, 3, 3, 3, 3, 3, 3, 0, 8, 8, 0, 8, 0, 8, 8, 0, 8, 0, 8, 8, 0]]}, {"input": [[1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1], [1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1], [0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1], [1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0], [1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1], [1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1], [1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0]], "output": [[1, 1, 1, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 0, 1, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0], [0, 0, 1, 1, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0], [0, 0, 1, 1, 1, 0, 3, 3, 3, 3, 3, 3, 3, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1], [0, 1, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1], [0, 0, 1, 1, 1, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1], [0, 1, 0, 1, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 1, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 1, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1], [0, 1, 1, 1, 1, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0], [0, 1, 1, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1], [1, 1, 1, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1], [1, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1], [0, 1, 1, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1], [1, 1, 0, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1], [0, 1, 1, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [1, 0, 1, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [1, 1, 0, 1, 1, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 1, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1], [0, 0, 1, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0], [1, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1], [0, 1, 0, 1, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0], [1, 1, 1, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0], [0, 0, 1, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0], [0, 0, 1, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0], [0, 0, 1, 1, 1, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1], [1, 0, 1, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1], [1, 0, 1, 1, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0]]}, {"input": [[0, 2, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 2, 2, 0], [0, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0], [0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0], [0, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 2, 0, 0, 2, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 2, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 2, 2, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 2, 0, 2, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 2, 0, 0, 2, 2, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 0, 2, 2, 2, 0, 2, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 2, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 2], [0, 0, 2, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2], [2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [2, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 0, 0, 2, 2, 0, 0, 0], [2, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 2, 0, 0, 0, 2, 2, 2, 2], [0, 2, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 2, 0, 0, 0, 2, 0, 2, 2], [2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 2, 0, 0, 0, 2, 0, 2, 0], [2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 0, 2, 2]], "output": [[0, 2, 0, 2, 2, 2, 2, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 2, 2, 0], [0, 2, 0, 0, 0, 2, 2, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2, 0, 2, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0], [0, 0, 0, 0, 2, 0, 2, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2, 2, 0, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0], [0, 2, 0, 0, 2, 2, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 2, 0, 0, 0, 0, 2, 2, 0, 0, 2, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2, 2, 2, 0, 0, 2, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 2, 0, 2, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2, 2, 0, 2, 0, 0, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 2, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 2, 2, 0, 2], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 2, 2, 0, 2, 2, 2, 0, 0, 0, 0, 2], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 2, 2, 2, 2, 0, 2, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 2], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2, 0, 0, 0, 0, 0, 2, 2, 0, 2, 0, 0, 2], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 2, 0, 2, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 2, 0, 2, 2, 0, 0, 2, 2, 0, 0, 0, 2], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 2, 2, 2, 2, 0, 2, 2, 2, 0, 2, 0, 2], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 2, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 2, 2, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 2, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 2, 2, 0, 2], [0, 0, 2, 2, 0, 2, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 2, 0, 0, 0, 2, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2], [2, 0, 2, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [2, 2, 0, 0, 2, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 2, 2, 0, 0, 2, 0, 0, 2, 2, 0, 0, 0], [2, 0, 0, 0, 2, 2, 2, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2, 0, 0, 2, 0, 2, 0, 0, 0, 2, 2, 2, 2], [0, 2, 0, 2, 0, 0, 2, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2, 0, 0, 2, 0, 2, 0, 0, 0, 2, 0, 2, 2], [2, 0, 2, 2, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2, 0, 0, 0, 2, 2, 0, 0, 0, 2, 0, 2, 0], [2, 0, 0, 2, 2, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 0, 2, 2]]}], "test": [{"input": [[0, 4, 4, 0, 4, 0, 4, 4, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 4, 0, 4, 4, 4, 0, 0, 0], [4, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 4], [0, 0, 0, 4, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 4, 0, 4, 4, 0, 0, 0, 4, 4, 0, 0, 4, 0, 0, 4], [4, 0, 0, 0, 4, 4, 4, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4], [4, 0, 4, 4, 4, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 4, 4, 0, 4, 0], [0, 0, 4, 0, 4, 0, 0, 0, 4, 4, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [4, 0, 4, 4, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 4, 0, 4, 4, 0, 0, 0, 0, 4, 0, 0, 4, 4, 0, 4, 4], [0, 4, 0, 4, 4, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 4, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 4, 0, 4, 4, 0, 0, 4, 4], [4, 4, 0, 4, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 4, 0, 0, 4, 4, 4, 0, 4, 0, 0], [0, 0, 4, 0, 4, 4, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4], [0, 4, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 4, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0], [4, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 4, 0, 4, 4, 0, 4], [4, 0, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 4, 0, 4, 0, 4, 0, 0, 4, 4], [0, 4, 4, 4, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 4, 0, 4, 0, 0, 0, 4, 0, 0, 4, 4, 4, 4], [4, 4, 0, 0, 0, 0, 4, 4, 0, 4, 0, 0, 0, 0, 4, 4, 0, 4, 0, 0, 4, 0, 4, 0, 4, 0, 4, 4, 4, 0], [4, 0, 4, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 4, 0, 4, 4, 0, 0, 0, 0, 4, 0, 4, 4, 0, 4, 0, 4], [0, 4, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 4, 0, 4, 4, 4, 0, 0, 4, 4, 0, 0, 0, 4, 0], [0, 0, 4, 0, 4, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 4], [4, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 4, 4, 4, 0, 4, 4], [0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 4, 0, 4, 4, 0, 0, 0]], "output": [[0, 4, 4, 0, 4, 0, 4, 4, 0, 0, 0, 3, 3, 0, 4, 4, 4, 4, 4, 0, 3, 0, 4, 0, 4, 4, 4, 0, 0, 0], [4, 4, 4, 0, 0, 4, 4, 0, 0, 0, 0, 3, 3, 0, 0, 4, 4, 0, 4, 0, 3, 0, 0, 0, 0, 4, 4, 0, 4, 4], [0, 0, 0, 4, 0, 0, 0, 0, 4, 4, 0, 3, 3, 0, 0, 4, 0, 4, 4, 0, 3, 0, 4, 4, 0, 0, 4, 0, 0, 4], [4, 0, 0, 0, 4, 4, 4, 0, 4, 0, 0, 3, 3, 0, 4, 0, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 4, 0, 0, 4], [4, 0, 4, 4, 4, 0, 4, 0, 0, 4, 0, 3, 3, 0, 0, 0, 0, 4, 0, 0, 3, 0, 0, 4, 0, 4, 4, 0, 4, 0], [0, 0, 4, 0, 4, 0, 0, 0, 4, 4, 0, 3, 3, 0, 4, 0, 0, 4, 0, 0, 3, 0, 0, 4, 0, 0, 0, 0, 0, 0], [4, 0, 4, 4, 0, 0, 4, 0, 0, 4, 0, 3, 3, 0, 4, 0, 4, 4, 0, 0, 3, 0, 4, 0, 0, 4, 4, 0, 4, 4], [0, 4, 0, 4, 4, 4, 0, 4, 0, 0, 0, 3, 3, 0, 0, 0, 0, 4, 0, 0, 3, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 4, 0, 0, 0, 4, 4, 4, 0, 0, 3, 3, 0, 4, 4, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 4, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 4, 0, 4, 0, 3, 3, 0, 0, 4, 0, 0, 4, 0, 0, 0, 4, 0, 4, 4, 0, 0, 4, 4], [4, 4, 0, 4, 4, 0, 0, 4, 0, 0, 0, 3, 3, 0, 0, 4, 0, 4, 0, 0, 4, 0, 0, 4, 4, 4, 0, 4, 0, 0], [0, 0, 4, 0, 4, 4, 4, 0, 4, 0, 0, 3, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4], [0, 4, 4, 0, 4, 0, 0, 0, 0, 0, 0, 3, 3, 0, 4, 4, 4, 0, 4, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 3, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0], [4, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 3, 3, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 4, 0, 4, 4, 0, 4], [4, 0, 4, 4, 0, 0, 4, 4, 0, 0, 0, 3, 3, 0, 0, 0, 4, 4, 4, 0, 0, 4, 0, 4, 0, 4, 0, 0, 4, 4], [0, 4, 4, 4, 4, 0, 4, 0, 0, 0, 0, 3, 3, 0, 4, 0, 4, 4, 0, 4, 0, 0, 0, 4, 0, 0, 4, 4, 4, 4], [4, 4, 0, 0, 0, 0, 4, 4, 0, 4, 0, 3, 3, 0, 4, 4, 0, 4, 0, 0, 4, 0, 4, 0, 4, 0, 4, 4, 4, 0], [4, 0, 4, 0, 0, 0, 4, 0, 0, 4, 0, 3, 3, 0, 4, 0, 4, 4, 0, 0, 0, 0, 4, 0, 4, 4, 0, 4, 0, 4], [0, 4, 0, 4, 0, 0, 0, 0, 0, 4, 0, 3, 3, 0, 4, 0, 4, 0, 4, 4, 4, 0, 0, 4, 4, 0, 0, 0, 4, 0], [0, 0, 4, 0, 4, 0, 4, 4, 0, 0, 0, 3, 3, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 4], [4, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 4, 4, 4, 0, 4, 4], [0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 3, 3, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 4, 0, 4, 4, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a65b410d.json b/data/arc-agi/training/a65b410d.json
deleted file mode 100644
index fe12b63..0000000
--- a/data/arc-agi/training/a65b410d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 0, 0], [3, 3, 3, 3, 0, 0, 0], [3, 3, 3, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 0, 0, 0], [3, 3, 3, 3, 3, 0, 0, 0, 0], [3, 3, 3, 3, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 0, 0, 0], [3, 3, 3, 3, 3, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 0, 0], [3, 3, 3, 3, 3, 3, 0, 0, 0], [2, 2, 2, 2, 2, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a68b268e.json b/data/arc-agi/training/a68b268e.json
deleted file mode 100644
index 8a82b97..0000000
--- a/data/arc-agi/training/a68b268e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[7, 7, 7, 0, 1, 0, 0, 4, 0], [0, 7, 7, 0, 1, 4, 4, 0, 4], [7, 7, 7, 7, 1, 0, 4, 0, 4], [7, 0, 0, 0, 1, 4, 0, 4, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 8, 1, 0, 6, 0, 6], [8, 0, 0, 8, 1, 6, 0, 0, 6], [8, 0, 8, 0, 1, 6, 6, 6, 6], [0, 8, 0, 8, 1, 0, 6, 0, 0]], "output": [[7, 7, 7, 8], [4, 7, 7, 4], [7, 7, 7, 7], [7, 8, 4, 8]]}], "train": [{"input": [[0, 7, 7, 7, 1, 0, 4, 0, 4], [7, 7, 7, 0, 1, 4, 4, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 4], [7, 0, 0, 0, 1, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 1, 6, 6, 6, 0], [0, 0, 8, 8, 1, 0, 0, 0, 0], [8, 0, 8, 0, 1, 6, 0, 0, 6], [0, 0, 0, 8, 1, 0, 0, 0, 0]], "output": [[6, 7, 7, 7], [7, 7, 7, 8], [8, 0, 8, 4], [7, 0, 0, 8]]}, {"input": [[7, 7, 7, 0, 1, 0, 4, 0, 0], [7, 0, 7, 0, 1, 4, 0, 4, 4], [0, 7, 0, 7, 1, 4, 0, 4, 4], [0, 0, 0, 7, 1, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 8, 0, 1, 6, 0, 0, 6], [0, 0, 0, 0, 1, 6, 0, 0, 0], [0, 0, 0, 0, 1, 6, 6, 0, 6], [8, 8, 8, 0, 1, 6, 0, 6, 6]], "output": [[7, 7, 7, 6], [7, 0, 7, 4], [4, 7, 4, 7], [8, 8, 8, 7]]}, {"input": [[0, 0, 7, 7, 1, 0, 4, 4, 0], [0, 0, 0, 7, 1, 0, 0, 4, 4], [7, 7, 7, 7, 1, 0, 0, 0, 4], [0, 7, 0, 0, 1, 0, 4, 4, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 8, 8, 1, 0, 6, 6, 6], [0, 0, 0, 0, 1, 0, 0, 6, 0], [0, 0, 0, 8, 1, 6, 0, 6, 0], [8, 0, 0, 0, 1, 6, 6, 0, 0]], "output": [[0, 4, 7, 7], [0, 0, 4, 7], [7, 7, 7, 7], [8, 7, 4, 0]]}, {"input": [[7, 7, 0, 0, 1, 4, 4, 0, 4], [7, 0, 7, 0, 1, 4, 0, 0, 0], [7, 0, 0, 7, 1, 4, 4, 4, 0], [7, 0, 7, 7, 1, 4, 0, 4, 4], [1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 8, 0, 1, 0, 0, 0, 0], [0, 0, 8, 0, 1, 6, 6, 0, 0], [0, 0, 8, 0, 1, 0, 6, 6, 6], [0, 8, 0, 8, 1, 0, 6, 6, 0]], "output": [[7, 7, 8, 4], [7, 6, 7, 0], [7, 4, 4, 7], [7, 8, 7, 7]]}, {"input": [[7, 7, 0, 0, 1, 0, 0, 0, 4], [7, 0, 0, 0, 1, 4, 4, 4, 4], [7, 0, 7, 0, 1, 4, 0, 0, 0], [0, 7, 7, 0, 1, 4, 4, 4, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1], [8, 0, 8, 0, 1, 6, 6, 6, 6], [0, 0, 8, 8, 1, 0, 0, 6, 0], [0, 0, 0, 0, 1, 0, 6, 0, 6], [8, 8, 8, 8, 1, 0, 0, 0, 6]], "output": [[7, 7, 8, 4], [7, 4, 4, 4], [7, 6, 7, 6], [4, 7, 7, 8]]}, {"input": [[7, 0, 0, 7, 1, 4, 4, 4, 0], [0, 7, 7, 7, 1, 4, 4, 0, 4], [7, 7, 7, 0, 1, 4, 4, 0, 4], [7, 7, 7, 0, 1, 0, 4, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1], [8, 8, 0, 8, 1, 6, 6, 6, 6], [0, 8, 8, 8, 1, 0, 0, 0, 6], [0, 8, 0, 8, 1, 0, 0, 6, 0], [8, 8, 0, 8, 1, 0, 6, 0, 0]], "output": [[7, 4, 4, 7], [4, 7, 7, 7], [7, 7, 7, 4], [7, 7, 7, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a699fb00.json b/data/arc-agi/training/a699fb00.json
deleted file mode 100644
index 4e18126..0000000
--- a/data/arc-agi/training/a699fb00.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 0, 1, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 1, 0, 1, 0], [0, 0, 0, 0, 0]], "output": [[1, 2, 1, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 1, 2, 1, 0], [0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 1, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 1, 2, 1, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 2, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 2, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 2, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 1, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 1, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 2, 1, 0], [0, 1, 2, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 2, 1, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 2, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 1, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 1, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 1, 2, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 2, 1, 2, 1, 2, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 2, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a740d043.json b/data/arc-agi/training/a740d043.json
deleted file mode 100644
index d8be878..0000000
--- a/data/arc-agi/training/a740d043.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1, 1, 1, 1, 1], [1, 2, 2, 1, 1, 1, 1], [1, 2, 2, 3, 1, 1, 1], [1, 1, 1, 2, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1]], "output": [[2, 2, 0], [2, 2, 3], [0, 0, 2]]}, {"input": [[1, 1, 1, 1, 1, 1, 1], [1, 1, 3, 1, 2, 1, 1], [1, 1, 3, 1, 2, 1, 1], [1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1]], "output": [[3, 0, 2], [3, 0, 2]]}, {"input": [[1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1], [1, 5, 5, 1, 1, 1], [1, 5, 5, 1, 1, 1], [1, 6, 6, 1, 1, 1], [1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1]], "output": [[5, 5], [5, 5], [6, 6]]}], "test": [{"input": [[1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1], [1, 1, 1, 2, 1, 1], [1, 1, 2, 3, 1, 1], [1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1]], "output": [[0, 2], [2, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a78176bb.json b/data/arc-agi/training/a78176bb.json
deleted file mode 100644
index 68595fe..0000000
--- a/data/arc-agi/training/a78176bb.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[7, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 7, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7]], "output": [[7, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7]]}, {"input": [[0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 9, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 9, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 9, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [9, 0, 0, 0, 0, 0, 9, 0, 0, 0], [0, 9, 0, 0, 0, 0, 0, 9, 0, 0], [0, 0, 9, 0, 0, 0, 0, 0, 9, 0], [0, 0, 0, 9, 0, 0, 0, 0, 0, 9], [0, 0, 0, 0, 9, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 9, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 9, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 2, 5, 0, 0, 0, 0, 0], [0, 0, 0, 5, 2, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 2, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0]], "output": [[0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 2, 0], [2, 0, 0, 0, 0, 2, 0, 0, 0, 2], [0, 2, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 2, 0]]}], "test": [{"input": [[0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 1, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 1, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 1, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 1, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 1, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 1, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a79310a0.json b/data/arc-agi/training/a79310a0.json
deleted file mode 100644
index d7ca1c5..0000000
--- a/data/arc-agi/training/a79310a0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 0, 0, 0], [8, 8, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [2, 2, 0, 0, 0], [2, 2, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]]}, {"input": [[0, 8, 0], [0, 0, 0], [0, 0, 0]], "output": [[0, 0, 0], [0, 2, 0], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0], [0, 8, 8, 8, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 2, 2, 2, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 8, 0, 0], [0, 8, 8, 0, 0], [0, 0, 8, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 0, 2, 0, 0], [0, 2, 2, 0, 0], [0, 0, 2, 0, 0], [0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a85d4709.json b/data/arc-agi/training/a85d4709.json
deleted file mode 100644
index 488a6ea..0000000
--- a/data/arc-agi/training/a85d4709.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 5], [0, 5, 0], [5, 0, 0]], "output": [[3, 3, 3], [4, 4, 4], [2, 2, 2]]}, {"input": [[0, 0, 5], [0, 0, 5], [0, 0, 5]], "output": [[3, 3, 3], [3, 3, 3], [3, 3, 3]]}, {"input": [[5, 0, 0], [0, 5, 0], [5, 0, 0]], "output": [[2, 2, 2], [4, 4, 4], [2, 2, 2]]}, {"input": [[0, 5, 0], [0, 0, 5], [0, 5, 0]], "output": [[4, 4, 4], [3, 3, 3], [4, 4, 4]]}], "test": [{"input": [[0, 0, 5], [5, 0, 0], [0, 5, 0]], "output": [[3, 3, 3], [2, 2, 2], [4, 4, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a87f7484.json b/data/arc-agi/training/a87f7484.json
deleted file mode 100644
index dd73a8f..0000000
--- a/data/arc-agi/training/a87f7484.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[6, 0, 6], [0, 6, 6], [6, 0, 6], [4, 0, 4], [0, 4, 4], [4, 0, 4], [8, 8, 8], [8, 0, 8], [8, 8, 8]], "output": [[8, 8, 8], [8, 0, 8], [8, 8, 8]]}, {"input": [[2, 0, 0, 3, 0, 0, 7, 0, 7, 1, 0, 0], [2, 0, 0, 3, 0, 0, 0, 7, 0, 1, 0, 0], [0, 2, 2, 0, 3, 3, 7, 0, 7, 0, 1, 1]], "output": [[7, 0, 7], [0, 7, 0], [7, 0, 7]]}, {"input": [[3, 0, 0, 4, 0, 4, 2, 0, 0, 8, 0, 0, 1, 0, 0], [0, 3, 3, 4, 4, 4, 0, 2, 2, 0, 8, 8, 0, 1, 1], [0, 3, 0, 4, 0, 4, 0, 2, 0, 0, 8, 0, 0, 1, 0]], "output": [[4, 0, 4], [4, 4, 4], [4, 0, 4]]}, {"input": [[0, 7, 7], [7, 7, 0], [7, 0, 7], [3, 0, 0], [0, 3, 3], [3, 0, 0], [2, 0, 0], [0, 2, 2], [2, 0, 0], [8, 0, 0], [0, 8, 8], [8, 0, 0]], "output": [[0, 7, 7], [7, 7, 0], [7, 0, 7]]}], "test": [{"input": [[0, 5, 0], [5, 0, 5], [0, 5, 0], [0, 3, 0], [3, 0, 3], [0, 3, 0], [6, 0, 6], [6, 6, 0], [6, 0, 6], [0, 4, 0], [4, 0, 4], [0, 4, 0], [0, 8, 0], [8, 0, 8], [0, 8, 0]], "output": [[6, 0, 6], [6, 6, 0], [6, 0, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a8c38be5.json b/data/arc-agi/training/a8c38be5.json
deleted file mode 100644
index f3ed9e3..0000000
--- a/data/arc-agi/training/a8c38be5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 5, 5, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [8, 8, 5, 0, 0, 0, 0, 0, 5, 2, 5, 0, 0, 0], [0, 0, 2, 5, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0], [0, 0, 2, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 5, 5, 0, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 5, 5, 5, 0], [0, 5, 1, 1, 0, 0, 5, 5, 5, 0, 5, 4, 5, 0], [0, 5, 5, 1, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 5, 5, 5, 0, 0, 5, 5, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 3, 3, 0, 0, 0, 0, 0], [5, 5, 5, 0, 0, 0, 5, 5, 3, 0, 6, 6, 5, 0], [5, 5, 9, 0, 0, 0, 0, 0, 0, 0, 6, 5, 5, 0], [5, 9, 9, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0]], "output": [[6, 6, 5, 2, 2, 2, 5, 1, 1], [6, 5, 5, 5, 2, 5, 5, 5, 1], [5, 5, 5, 5, 5, 5, 5, 5, 5], [2, 5, 5, 5, 5, 5, 5, 5, 3], [2, 2, 5, 5, 5, 5, 5, 3, 3], [2, 5, 5, 5, 5, 5, 5, 5, 3], [5, 5, 5, 5, 5, 5, 5, 5, 5], [8, 5, 5, 5, 4, 5, 5, 5, 9], [8, 8, 5, 4, 4, 4, 5, 9, 9]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 4], [0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 5, 4, 4], [0, 3, 5, 5, 0, 5, 8, 8, 0, 0, 0, 5, 5, 4], [0, 3, 3, 5, 0, 5, 5, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 9, 0], [0, 1, 1, 1, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0], [0, 5, 1, 5, 0, 0, 5, 5, 5, 0, 6, 5, 5, 0], [0, 5, 5, 5, 0, 0, 5, 5, 5, 0, 6, 6, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 5, 0], [0, 0, 0, 0, 7, 7, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 5, 5, 0, 0, 5, 5, 5, 0, 0], [0, 0, 0, 0, 5, 5, 5, 0, 0, 5, 2, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0]], "output": [[7, 7, 5, 1, 1, 1, 5, 8, 8], [7, 5, 5, 5, 1, 5, 5, 5, 8], [5, 5, 5, 5, 5, 5, 5, 5, 5], [6, 5, 5, 5, 5, 5, 5, 5, 4], [6, 6, 5, 5, 5, 5, 5, 4, 4], [6, 5, 5, 5, 5, 5, 5, 5, 4], [5, 5, 5, 5, 5, 5, 5, 5, 5], [3, 5, 5, 5, 2, 5, 5, 5, 9], [3, 3, 5, 2, 2, 2, 5, 9, 9]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0], [0, 1, 5, 5, 0, 0, 0, 0, 0, 0, 6, 5, 5, 0, 0], [0, 1, 1, 5, 0, 2, 2, 2, 0, 0, 6, 6, 5, 0, 0], [0, 1, 5, 5, 0, 5, 2, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0], [0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0], [0, 0, 5, 8, 5, 0, 5, 5, 1, 0, 5, 5, 5, 0, 0], [0, 0, 8, 8, 8, 0, 5, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 1, 0, 0, 0, 0, 0, 0], [0, 5, 4, 4, 0, 0, 0, 0, 0, 0, 0, 3, 3, 5, 0], [0, 5, 5, 4, 0, 0, 0, 0, 0, 0, 0, 3, 5, 5, 0], [0, 5, 5, 5, 0, 0, 5, 5, 5, 0, 0, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 5, 5, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 7, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 5, 2, 2, 2, 5, 4, 4], [3, 5, 5, 5, 2, 5, 5, 5, 4], [5, 5, 5, 5, 5, 5, 5, 5, 5], [1, 5, 5, 5, 5, 5, 5, 5, 1], [1, 1, 5, 5, 5, 5, 5, 1, 1], [1, 5, 5, 5, 5, 5, 5, 5, 1], [5, 5, 5, 5, 5, 5, 5, 5, 5], [6, 5, 5, 5, 8, 5, 5, 5, 7], [6, 6, 5, 8, 8, 8, 5, 7, 7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a8d7556c.json b/data/arc-agi/training/a8d7556c.json
deleted file mode 100644
index a2f19e8..0000000
--- a/data/arc-agi/training/a8d7556c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 5, 5, 0, 5, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5], [5, 5, 0, 0, 0, 5, 0, 5, 0, 5, 5, 0, 0, 5, 0, 5, 0, 5], [0, 5, 5, 0, 5, 5, 0, 0, 5, 5, 0, 5, 5, 5, 5, 5, 0, 5], [5, 5, 0, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 0, 5, 5], [5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 0, 5], [0, 5, 5, 5, 5, 0, 0, 5, 0, 0, 5, 0, 5, 5, 5, 5, 5, 0], [0, 0, 5, 5, 5, 0, 0, 5, 0, 5, 0, 0, 0, 5, 5, 5, 5, 5], [0, 0, 5, 5, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5], [5, 0, 5, 0, 5, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5], [0, 0, 5, 5, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5], [5, 5, 0, 5, 5, 5, 0, 0, 5, 0, 5, 0, 0, 5, 5, 5, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5], [5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0, 5, 5, 0, 0, 5, 0, 0], [0, 5, 0, 0, 0, 5, 0, 5, 5, 0, 0, 5, 5, 5, 0, 0, 0, 5], [0, 0, 5, 5, 5, 5, 5, 0, 5, 0, 5, 0, 5, 0, 5, 5, 0, 0], [5, 0, 5, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 0, 5], [5, 0, 5, 5, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 5, 0, 0], [5, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5, 0, 5, 0, 5, 0, 5, 5]], "output": [[5, 5, 5, 0, 5, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5], [5, 5, 0, 0, 0, 5, 0, 5, 0, 5, 5, 0, 0, 5, 0, 5, 0, 5], [0, 5, 5, 0, 5, 5, 0, 0, 5, 5, 0, 5, 5, 5, 5, 5, 0, 5], [5, 5, 0, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 0, 5, 5], [5, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 0, 5], [0, 5, 5, 5, 5, 2, 2, 5, 0, 0, 5, 0, 5, 5, 5, 5, 5, 0], [2, 2, 5, 5, 5, 2, 2, 5, 0, 5, 0, 0, 0, 5, 5, 5, 5, 5], [2, 2, 5, 5, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2, 2, 5], [5, 0, 5, 0, 5, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 2, 2, 5], [0, 0, 5, 5, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5], [5, 5, 0, 5, 5, 5, 0, 0, 5, 0, 5, 0, 0, 5, 5, 5, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5], [5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0, 5, 5, 0, 0, 5, 0, 0], [0, 5, 0, 0, 0, 5, 0, 5, 5, 0, 0, 5, 5, 5, 0, 0, 0, 5], [0, 0, 5, 5, 5, 5, 5, 0, 5, 0, 5, 0, 5, 0, 5, 5, 0, 0], [5, 0, 5, 0, 2, 2, 5, 5, 5, 5, 5, 5, 5, 2, 2, 5, 0, 5], [5, 0, 5, 5, 2, 2, 0, 5, 5, 5, 0, 0, 0, 2, 2, 5, 0, 0], [5, 5, 0, 5, 2, 2, 5, 0, 0, 5, 5, 0, 5, 0, 5, 0, 5, 5]]}, {"input": [[5, 5, 5, 5, 0, 5, 0, 5, 0, 5, 5, 5, 0, 0, 5, 0, 5, 5], [5, 5, 5, 5, 0, 0, 5, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5, 0], [5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 0, 0, 0, 5, 5, 0], [5, 0, 5, 5, 5, 5, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 0, 5, 5, 0, 0, 0, 5, 5, 0, 0, 0, 5, 5, 5, 0], [5, 0, 0, 0, 5, 0, 5, 5, 5, 5, 0, 0, 0, 5, 0, 0, 0, 0], [0, 5, 0, 5, 5, 5, 0, 0, 0, 5, 5, 0, 0, 5, 0, 5, 5, 5], [5, 0, 0, 5, 5, 0, 5, 5, 0, 5, 0, 0, 5, 0, 5, 0, 5, 0], [5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 0, 5, 0, 5, 0, 5, 0], [5, 0, 5, 5, 5, 5, 0, 5, 0, 5, 0, 5, 5, 5, 0, 5, 5, 0], [5, 0, 5, 5, 5, 0, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5, 5, 5], [0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 5, 0, 5, 5, 5, 0, 0, 0], [5, 0, 5, 0, 0, 5, 0, 5, 5, 0, 0, 5, 0, 0, 0, 5, 5, 5], [5, 5, 5, 0, 5, 0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 0], [0, 0, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 5], [5, 0, 5, 5, 5, 5, 0, 0, 5, 5, 0, 5, 0, 5, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 5, 0, 0], [5, 5, 0, 0, 5, 5, 0, 5, 0, 5, 5, 5, 0, 5, 5, 5, 5, 5]], "output": [[5, 5, 5, 5, 0, 5, 0, 5, 0, 5, 5, 5, 0, 0, 5, 0, 5, 5], [5, 5, 5, 5, 0, 0, 5, 5, 0, 5, 0, 0, 5, 2, 2, 5, 5, 0], [5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 0, 2, 2, 5, 5, 0], [5, 0, 5, 5, 5, 5, 2, 2, 2, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 0, 5, 5, 2, 2, 2, 5, 5, 2, 2, 0, 5, 5, 5, 0], [5, 0, 0, 0, 5, 0, 5, 5, 5, 5, 0, 2, 2, 5, 0, 0, 0, 0], [0, 5, 0, 5, 5, 5, 0, 0, 0, 5, 5, 2, 2, 5, 0, 5, 5, 5], [5, 0, 0, 5, 5, 0, 5, 5, 0, 5, 0, 0, 5, 0, 5, 0, 5, 0], [5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 0, 5, 0, 5, 0, 5, 0], [5, 0, 5, 5, 5, 5, 0, 5, 0, 5, 0, 5, 5, 5, 0, 5, 5, 0], [5, 0, 5, 5, 5, 0, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5, 5, 5], [0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 5, 0, 5, 5, 5, 0, 0, 0], [5, 0, 5, 0, 0, 5, 0, 5, 5, 0, 0, 5, 0, 0, 0, 5, 5, 5], [5, 5, 5, 0, 5, 0, 0, 5, 5, 5, 0, 5, 5, 5, 0, 5, 5, 0], [0, 0, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 5], [5, 0, 5, 5, 5, 5, 2, 2, 5, 5, 0, 5, 0, 5, 5, 0, 5, 0], [0, 0, 2, 2, 0, 0, 2, 2, 5, 5, 5, 0, 0, 0, 0, 5, 0, 0], [5, 5, 2, 2, 5, 5, 0, 5, 0, 5, 5, 5, 0, 5, 5, 5, 5, 5]]}, {"input": [[0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 0, 5, 5, 0], [5, 0, 0, 0, 5, 5, 0, 0, 0, 0, 5, 0, 5, 5, 0, 5, 5, 5], [0, 0, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5], [5, 5, 5, 0, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5, 5], [5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 0, 0, 0, 0], [5, 0, 0, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 0, 0, 5], [5, 5, 5, 0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 0, 5, 5, 5, 5, 0, 5, 0, 0, 5, 0, 5, 5, 5, 0], [5, 5, 5, 5, 5, 0, 5, 5, 0, 5, 0, 0, 0, 5, 0, 5, 0, 5], [5, 0, 5, 0, 5, 0, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 5], [0, 0, 5, 0, 5, 5, 0, 5, 5, 5, 0, 0, 5, 0, 5, 5, 5, 5], [5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 0, 5, 5], [0, 0, 5, 5, 5, 0, 5, 5, 0, 5, 5, 0, 5, 0, 5, 5, 5, 5], [5, 5, 0, 5, 5, 5, 0, 0, 0, 0, 5, 0, 5, 5, 0, 5, 0, 0], [0, 0, 5, 5, 5, 5, 0, 5, 5, 0, 5, 0, 0, 0, 5, 0, 5, 0], [0, 5, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 0, 5, 5, 0, 0, 5], [0, 5, 5, 0, 0, 5, 5, 5, 0, 0, 0, 5, 5, 0, 5, 5, 5, 5], [5, 0, 0, 5, 5, 0, 5, 5, 5, 5, 5, 0, 5, 5, 0, 0, 5, 0]], "output": [[0, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 0, 5, 5, 0], [5, 0, 0, 0, 5, 5, 2, 2, 0, 0, 5, 0, 5, 5, 0, 5, 5, 5], [0, 0, 5, 5, 5, 5, 2, 2, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5], [5, 5, 5, 0, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5, 5], [5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 0, 2, 2, 0], [5, 0, 0, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 2, 2, 5], [5, 5, 5, 0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 0, 5, 5, 5, 5, 0, 5, 2, 2, 5, 0, 5, 5, 5, 0], [5, 5, 5, 5, 5, 0, 5, 5, 0, 5, 2, 2, 0, 5, 0, 5, 0, 5], [5, 0, 5, 0, 5, 0, 5, 5, 5, 5, 2, 2, 0, 5, 5, 5, 5, 5], [0, 0, 5, 0, 5, 5, 0, 5, 5, 5, 2, 2, 5, 0, 5, 5, 5, 5], [5, 5, 5, 5, 0, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 0, 5, 5], [0, 0, 5, 5, 5, 0, 5, 5, 0, 5, 5, 0, 5, 0, 5, 5, 5, 5], [5, 5, 0, 5, 5, 5, 0, 0, 0, 0, 5, 0, 5, 5, 0, 5, 0, 0], [0, 0, 5, 5, 5, 5, 0, 5, 5, 0, 5, 0, 0, 0, 5, 0, 5, 0], [0, 5, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 0, 5, 5, 0, 0, 5], [0, 5, 5, 0, 0, 5, 5, 5, 0, 0, 0, 5, 5, 0, 5, 5, 5, 5], [5, 0, 0, 5, 5, 0, 5, 5, 5, 5, 5, 0, 5, 5, 0, 0, 5, 0]]}], "test": [{"input": [[0, 0, 0, 5, 0, 5, 0, 0, 5, 5, 0, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 5, 0, 5, 0, 5, 0, 0, 0, 5, 5, 5, 5, 0, 5, 5], [5, 0, 0, 0, 5, 5, 0, 5, 0, 0, 5, 0, 5, 0, 5, 5, 0, 5], [0, 5, 5, 5, 0, 5, 5, 0, 5, 5, 0, 0, 0, 5, 5, 0, 5, 5], [5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5, 0, 0, 0, 0, 5, 5, 5], [0, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 0, 0, 5, 5, 0, 5, 0], [5, 5, 0, 5, 5, 5, 5, 5, 5, 0, 0, 5, 0, 0, 5, 0, 5, 5], [5, 5, 5, 5, 0, 0, 5, 5, 0, 5, 5, 5, 5, 5, 0, 5, 5, 0], [5, 0, 5, 0, 0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 5, 5, 5, 5, 0, 0, 5, 0, 5, 5], [5, 0, 5, 5, 0, 5, 5, 5, 0, 0, 5, 0, 5, 5, 5, 5, 5, 0], [0, 0, 0, 5, 5, 0, 5, 0, 0, 5, 5, 0, 5, 5, 5, 5, 5, 5], [0, 5, 5, 5, 5, 0, 0, 5, 0, 0, 0, 5, 5, 5, 5, 5, 0, 5], [5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5], [5, 5, 0, 5, 5, 5, 0, 5, 0, 5, 5, 5, 5, 0, 5, 0, 0, 5], [5, 0, 5, 5, 5, 5, 0, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0, 5], [0, 5, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 5, 0, 5, 5, 0, 0]], "output": [[2, 2, 0, 5, 0, 5, 0, 0, 5, 5, 0, 5, 5, 5, 5, 5, 0, 0], [2, 2, 5, 5, 0, 5, 0, 5, 2, 2, 0, 5, 5, 5, 5, 0, 5, 5], [5, 0, 0, 0, 5, 5, 0, 5, 2, 2, 5, 0, 5, 0, 5, 5, 0, 5], [0, 5, 5, 5, 0, 5, 5, 0, 5, 5, 0, 2, 2, 5, 5, 0, 5, 5], [5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5, 2, 2, 0, 0, 5, 5, 5], [0, 5, 5, 5, 5, 0, 5, 5, 5, 0, 5, 2, 2, 5, 5, 0, 5, 0], [5, 5, 0, 5, 5, 5, 5, 5, 5, 0, 0, 5, 0, 0, 5, 0, 5, 5], [5, 5, 5, 5, 0, 0, 5, 5, 0, 5, 5, 5, 5, 5, 0, 5, 5, 0], [5, 0, 5, 0, 0, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 5, 5, 5, 5, 0, 0, 5, 0, 5, 5], [5, 0, 5, 5, 0, 5, 5, 5, 0, 0, 5, 0, 5, 5, 5, 5, 5, 0], [0, 0, 0, 5, 5, 0, 5, 0, 0, 5, 5, 0, 5, 5, 5, 5, 5, 5], [0, 5, 5, 5, 5, 0, 0, 5, 0, 0, 0, 5, 5, 5, 5, 5, 0, 5], [5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 5, 5, 2, 2, 5], [5, 5, 0, 5, 5, 5, 0, 5, 0, 5, 5, 5, 5, 0, 5, 2, 2, 5], [5, 0, 5, 5, 5, 5, 0, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0, 5], [0, 5, 2, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 0, 2, 2, 0, 0, 0, 5, 0, 5, 0, 5, 5, 0, 5, 5, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/a9f96cdd.json b/data/arc-agi/training/a9f96cdd.json
deleted file mode 100644
index 836701b..0000000
--- a/data/arc-agi/training/a9f96cdd.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0], [0, 2, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[3, 0, 6, 0, 0], [0, 0, 0, 0, 0], [8, 0, 7, 0, 0]]}, {"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 2]], "output": [[0, 0, 0, 0, 0], [0, 0, 0, 3, 0], [0, 0, 0, 0, 0]]}, {"input": [[0, 0, 2, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 8, 0, 7, 0], [0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0], [0, 0, 0, 2, 0], [0, 0, 0, 0, 0]], "output": [[0, 0, 3, 0, 6], [0, 0, 0, 0, 0], [0, 0, 8, 0, 7]]}], "test": [{"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 2], [0, 0, 0, 0, 0]], "output": [[0, 0, 0, 3, 0], [0, 0, 0, 0, 0], [0, 0, 0, 8, 0]]}]}
diff --git a/data/arc-agi/training/aabf363d.json b/data/arc-agi/training/aabf363d.json
deleted file mode 100644
index d9c2474..0000000
--- a/data/arc-agi/training/aabf363d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0], [0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0], [0, 4, 4, 4, 4, 0, 0], [0, 0, 4, 4, 4, 0, 0], [0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0], [0, 3, 3, 3, 3, 0, 0], [0, 3, 3, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0], [6, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0], [0, 0, 6, 6, 6, 0, 0], [0, 6, 6, 6, 6, 0, 0], [0, 6, 6, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0], [0, 0, 0, 8, 8, 0, 0], [0, 0, 8, 8, 0, 0, 0], [0, 0, 8, 8, 8, 0, 0], [2, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 2, 2, 0, 0], [0, 0, 2, 2, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/aba27056.json b/data/arc-agi/training/aba27056.json
deleted file mode 100644
index 8fe23dd..0000000
--- a/data/arc-agi/training/aba27056.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 0, 6, 6, 0], [0, 6, 0, 0, 0, 6, 0], [0, 6, 6, 6, 6, 6, 0]], "output": [[0, 0, 0, 4, 0, 0, 0], [4, 0, 0, 4, 0, 0, 4], [0, 4, 0, 4, 0, 4, 0], [0, 0, 4, 4, 4, 0, 0], [0, 6, 6, 4, 6, 6, 0], [0, 6, 4, 4, 4, 6, 0], [0, 6, 6, 6, 6, 6, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7, 7, 7, 7], [0, 0, 0, 0, 7, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 7, 0, 0, 0, 7], [0, 0, 0, 0, 7, 7, 7, 7, 7]], "output": [[4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 7, 7, 7, 7, 7], [0, 0, 0, 4, 7, 4, 4, 4, 7], [4, 4, 4, 4, 4, 4, 4, 4, 7], [4, 4, 4, 4, 4, 4, 4, 4, 7], [4, 4, 4, 4, 4, 4, 4, 4, 7], [0, 0, 0, 4, 7, 4, 4, 4, 7], [0, 0, 4, 0, 7, 7, 7, 7, 7]]}, {"input": [[3, 3, 3, 3, 3, 3], [3, 0, 0, 0, 0, 3], [3, 0, 0, 0, 0, 3], [3, 3, 0, 0, 3, 3], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3], [3, 4, 4, 4, 4, 3], [3, 4, 4, 4, 4, 3], [3, 3, 4, 4, 3, 3], [0, 4, 4, 4, 4, 0], [4, 0, 4, 4, 0, 4]]}], "test": [{"input": [[0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 2, 0, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 2, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 2, 2, 2, 0, 4, 0, 0, 0], [0, 2, 4, 4, 2, 4, 0, 0, 0, 0], [0, 2, 4, 4, 4, 4, 4, 4, 4, 4], [0, 2, 4, 4, 4, 4, 4, 4, 4, 4], [0, 2, 4, 4, 4, 4, 4, 4, 4, 4], [0, 2, 4, 4, 4, 4, 4, 4, 4, 4], [0, 2, 4, 4, 4, 4, 4, 4, 4, 4], [0, 2, 4, 4, 2, 4, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ac0a08a4.json b/data/arc-agi/training/ac0a08a4.json
deleted file mode 100644
index 6f7403e..0000000
--- a/data/arc-agi/training/ac0a08a4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 0, 0], [0, 0, 7], [0, 0, 0]], "output": [[2, 2, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 7, 7], [0, 0, 0, 0, 7, 7], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 4, 0], [0, 0, 8], [6, 0, 0]], "output": [[0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 8, 8, 8], [6, 6, 6, 0, 0, 0, 0, 0, 0], [6, 6, 6, 0, 0, 0, 0, 0, 0], [6, 6, 6, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 6, 9], [3, 0, 2], [0, 7, 0]], "output": [[0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 9, 9, 9, 9, 9], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 9, 9, 9, 9, 9], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 9, 9, 9, 9, 9], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 9, 9, 9, 9, 9], [0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 9, 9, 9, 9, 9], [3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2], [3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2], [3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2], [3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2], [3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0]]}], "test": [{"input": [[1, 0, 0], [0, 9, 6], [8, 0, 0]], "output": [[1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 9, 9, 9, 9, 6, 6, 6, 6], [0, 0, 0, 0, 9, 9, 9, 9, 6, 6, 6, 6], [0, 0, 0, 0, 9, 9, 9, 9, 6, 6, 6, 6], [0, 0, 0, 0, 9, 9, 9, 9, 6, 6, 6, 6], [8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ae3edfdc.json b/data/arc-agi/training/ae3edfdc.json
deleted file mode 100644
index f42fa37..0000000
--- a/data/arc-agi/training/ae3edfdc.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 7, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 7, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ae4f1146.json b/data/arc-agi/training/ae4f1146.json
deleted file mode 100644
index cadbfaf..0000000
--- a/data/arc-agi/training/ae4f1146.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 0, 0, 0, 0, 0, 0], [1, 8, 8, 0, 8, 1, 8, 0, 0], [8, 8, 8, 0, 1, 1, 8, 0, 0], [0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 8, 8, 1, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 8, 1, 8], [0, 8, 1, 8, 0, 0, 1, 8, 1], [0, 0, 0, 0, 0, 0, 1, 8, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 1, 8], [1, 8, 1], [1, 8, 1]]}, {"input": [[0, 8, 8, 1, 0, 0, 0, 0, 0], [0, 8, 1, 8, 0, 8, 1, 8, 0], [0, 8, 8, 8, 0, 1, 8, 8, 0], [0, 0, 0, 0, 0, 8, 8, 1, 0], [0, 0, 8, 1, 8, 0, 0, 0, 0], [0, 0, 1, 1, 8, 0, 0, 0, 0], [0, 0, 8, 8, 1, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 1, 8, 8]], "output": [[8, 1, 8], [1, 1, 8], [8, 8, 1]]}, {"input": [[0, 0, 0, 0, 8, 8, 8, 0, 0], [8, 8, 8, 0, 8, 8, 8, 0, 0], [8, 8, 8, 0, 1, 8, 8, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 1, 8], [8, 1, 8, 0, 0, 0, 1, 1, 8], [8, 8, 1, 0, 0, 0, 1, 8, 1], [1, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 1, 8], [1, 1, 8], [1, 8, 1]]}, {"input": [[0, 0, 1, 1, 8, 0, 0, 0, 0], [0, 0, 8, 8, 1, 0, 8, 1, 1], [0, 0, 1, 1, 8, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 8, 1, 8], [8, 8, 8, 0, 0, 0, 0, 0, 0], [8, 8, 1, 0, 8, 1, 8, 0, 0], [1, 8, 8, 0, 1, 8, 8, 0, 0], [0, 0, 0, 0, 8, 8, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 1, 1], [1, 1, 1], [8, 1, 8]]}], "test": [{"input": [[8, 8, 8, 0, 0, 0, 8, 1, 8], [8, 8, 8, 0, 0, 0, 1, 8, 1], [1, 8, 8, 0, 0, 0, 8, 1, 8], [0, 0, 0, 8, 1, 8, 0, 0, 0], [0, 0, 0, 8, 8, 1, 0, 0, 0], [0, 0, 0, 1, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 8], [0, 0, 0, 0, 0, 0, 8, 1, 1], [0, 0, 0, 0, 0, 0, 1, 1, 8]], "output": [[1, 1, 8], [8, 1, 1], [1, 1, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/aedd82e4.json b/data/arc-agi/training/aedd82e4.json
deleted file mode 100644
index 22cbabd..0000000
--- a/data/arc-agi/training/aedd82e4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 2, 2], [0, 2, 2], [2, 0, 0]], "output": [[0, 2, 2], [0, 2, 2], [1, 0, 0]]}, {"input": [[2, 2, 2, 0], [0, 2, 0, 0], [0, 0, 0, 2], [0, 2, 0, 0]], "output": [[2, 2, 2, 0], [0, 2, 0, 0], [0, 0, 0, 1], [0, 1, 0, 0]]}, {"input": [[2, 2, 0, 0], [0, 2, 0, 0], [2, 2, 0, 2], [0, 0, 0, 0], [0, 2, 2, 2]], "output": [[2, 2, 0, 0], [0, 2, 0, 0], [2, 2, 0, 1], [0, 0, 0, 0], [0, 2, 2, 2]]}, {"input": [[2, 2, 0], [2, 0, 2], [0, 2, 0]], "output": [[2, 2, 0], [2, 0, 1], [0, 1, 0]]}], "test": [{"input": [[2, 2, 0, 2], [0, 2, 0, 0], [0, 0, 2, 0], [2, 0, 0, 0], [0, 0, 2, 2]], "output": [[2, 2, 0, 1], [0, 2, 0, 0], [0, 0, 1, 0], [1, 0, 0, 0], [0, 0, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/af902bf9.json b/data/arc-agi/training/af902bf9.json
deleted file mode 100644
index 6a8620c..0000000
--- a/data/arc-agi/training/af902bf9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 4]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 2, 2, 2, 2, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 4]]}], "test": [{"input": [[0, 0, 0, 0, 0, 4, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 4], [4, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 4, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 4], [4, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b0c4d837.json b/data/arc-agi/training/b0c4d837.json
deleted file mode 100644
index f2b9d64..0000000
--- a/data/arc-agi/training/b0c4d837.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0], [0, 5, 0, 0, 5, 0], [0, 5, 0, 0, 5, 0], [0, 5, 8, 8, 5, 0], [0, 5, 5, 5, 5, 0]], "output": [[8, 8, 8], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 5, 0, 0], [0, 0, 5, 8, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 8, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 0, 0]], "output": [[8, 8, 8], [0, 0, 8], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 0, 0, 5, 0], [0, 5, 8, 8, 8, 8, 8, 5, 0], [0, 5, 8, 8, 8, 8, 8, 5, 0], [0, 5, 8, 8, 8, 8, 8, 5, 0], [0, 5, 5, 5, 5, 5, 5, 5, 0]], "output": [[8, 8, 8], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 5, 0, 0], [0, 0, 5, 8, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 8, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 0, 0]], "output": [[8, 8, 0], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0], [0, 5, 8, 8, 5, 0], [0, 5, 8, 8, 5, 0], [0, 5, 5, 5, 5, 0]], "output": [[8, 0, 0], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0], [0, 5, 0, 0, 0, 5, 0], [0, 5, 8, 8, 8, 5, 0], [0, 5, 8, 8, 8, 5, 0], [0, 5, 5, 5, 5, 5, 0]], "output": [[8, 8, 0], [0, 0, 0], [0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 5, 0, 0], [0, 0, 5, 8, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 8, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 0, 0]], "output": [[8, 0, 0], [0, 0, 0], [0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b190f7f5.json b/data/arc-agi/training/b190f7f5.json
deleted file mode 100644
index eb25161..0000000
--- a/data/arc-agi/training/b190f7f5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 0, 4, 0, 8, 0], [0, 3, 0, 8, 8, 8], [0, 0, 0, 0, 8, 0]], "output": [[0, 2, 0, 0, 0, 0, 0, 4, 0], [2, 2, 2, 0, 0, 0, 4, 4, 4], [0, 2, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 8, 0, 4, 0], [8, 0, 0, 1, 2, 4], [8, 8, 0, 0, 1, 0]], "output": [[0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 1, 0, 0, 2, 0, 0, 4], [1, 0, 0, 2, 0, 0, 4, 0, 0], [1, 1, 0, 2, 2, 0, 4, 4, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 0, 0, 0]]}, {"input": [[2, 0, 0, 4, 0, 0, 8, 0], [0, 2, 4, 0, 8, 8, 8, 8], [0, 4, 2, 0, 0, 0, 8, 0], [4, 0, 0, 2, 0, 0, 8, 0]], "output": [[0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 4, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]]}], "test": [{"input": [[3, 0, 0, 1], [0, 2, 2, 0], [0, 2, 2, 0], [3, 0, 0, 3], [0, 8, 8, 0], [8, 8, 8, 8], [8, 0, 0, 8], [8, 8, 8, 8]], "output": [[0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], [3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1], [3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1], [3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 2, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 2, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0], [3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3], [3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3], [3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b1948b0a.json b/data/arc-agi/training/b1948b0a.json
deleted file mode 100644
index 9a65ed3..0000000
--- a/data/arc-agi/training/b1948b0a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[6, 7, 7, 6], [6, 7, 6, 7], [7, 7, 7, 6], [7, 6, 7, 6]], "output": [[2, 7, 7, 2], [2, 7, 2, 7], [7, 7, 7, 2], [7, 2, 7, 2]]}], "train": [{"input": [[6, 6, 7, 6], [6, 6, 7, 7], [7, 7, 6, 7]], "output": [[2, 2, 7, 2], [2, 2, 7, 7], [7, 7, 2, 7]]}, {"input": [[7, 7, 7, 6], [6, 6, 7, 6], [7, 7, 6, 7], [7, 6, 7, 7], [7, 6, 7, 6], [6, 6, 6, 7]], "output": [[7, 7, 7, 2], [2, 2, 7, 2], [7, 7, 2, 7], [7, 2, 7, 7], [7, 2, 7, 2], [2, 2, 2, 7]]}, {"input": [[7, 7, 6, 6, 6, 6], [6, 7, 6, 7, 7, 7], [7, 6, 7, 7, 6, 7]], "output": [[7, 7, 2, 2, 2, 2], [2, 7, 2, 7, 7, 7], [7, 2, 7, 7, 2, 7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b230c067.json b/data/arc-agi/training/b230c067.json
deleted file mode 100644
index ba558ba..0000000
--- a/data/arc-agi/training/b230c067.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train":[{"input":[[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,8,8,8],[0,8,8,8,8,0,0,8,0,8],[0,8,0,0,8,0,0,8,8,8],[0,8,8,8,8,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,8,8,8,8,0],[0,0,0,0,0,8,0,0,8,0],[0,0,0,0,0,8,8,8,8,0]],"output":[[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,2,2,2],[0,1,1,1,1,0,0,2,0,2],[0,1,0,0,1,0,0,2,2,2],[0,1,1,1,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,1,1,1,0],[0,0,0,0,0,1,0,0,1,0],[0,0,0,0,0,1,1,1,1,0]]},{"input":[[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,8,8,8,8],[0,8,8,8,8,0,0,0,8,8],[0,0,0,8,8,0,0,0,8,8],[0,0,0,8,8,8,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,8,8,8,8,0,0,0],[0,0,0,0,0,8,8,0,0,0],[0,0,0,0,0,8,8,8,0,0],[0,0,0,0,0,0,0,0,0,0]],"output":[[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,2,2,2,2],[0,1,1,1,1,0,0,0,2,2],[0,0,0,1,1,0,0,0,2,2],[0,0,0,1,1,1,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,0,0,0,0,0,0]]},{"input":[[0,0,0,0,0,0,0,0,0,0],[0,8,8,8,0,0,0,0,0,0],[0,8,0,8,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[8,8,0,0,0,0,0,0,0,0],[8,8,0,8,8,8,0,0,0,0],[0,0,0,8,0,8,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0]],"output":[[0,0,0,0,0,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0],[0,1,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[2,2,0,0,0,0,0,0,0,0],[2,2,0,1,1,1,0,0,0,0],[0,0,0,1,0,1,0,0,0,0],[0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0]]}],"test":[{"input":[[0,0,0,0,0,0,0,0,0,0],[0,8,8,0,0,0,8,8,8,0],[0,0,8,0,0,0,0,0,8,0],[0,8,0,0,0,0,0,8,0,0],[0,8,8,8,0,0,8,8,8,8],[0,0,0,0,0,0,0,0,0,0],[0,0,0,8,8,8,0,0,0,0],[0,0,0,0,0,8,0,0,0,0],[0,0,0,0,8,0,0,0,0,0],[0,0,0,8,8,8,8,0,0,0]],"output":[[0,0,0,0,0,0,0,0,0,0],[0,2,2,0,0,0,1,1,1,0],[0,0,2,0,0,0,0,0,1,0],[0,2,0,0,0,0,0,1,0,0],[0,2,2,2,0,0,1,1,1,1],[0,0,0,0,0,0,0,0,0,0],[0,0,0,1,1,1,0,0,0,0],[0,0,0,0,0,1,0,0,0,0],[0,0,0,0,1,0,0,0,0,0],[0,0,0,1,1,1,1,0,0,0]]}],"name":"b230c067"}
\ No newline at end of file
diff --git a/data/arc-agi/training/b27ca6d3.json b/data/arc-agi/training/b27ca6d3.json
deleted file mode 100644
index 00f669f..0000000
--- a/data/arc-agi/training/b27ca6d3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 3, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 2, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 3, 2, 2, 3, 0, 3, 2, 3, 0], [2, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 3, 2, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 3], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 3, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 3], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 2, 0, 2, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 2, 0, 2], [0, 0, 0, 0, 0, 0, 0, 3, 2, 2, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 2, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 3], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 2, 3], [2, 0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 0, 0, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 3, 2, 0, 0, 0, 0], [0, 0, 2, 0, 2, 3, 3, 3, 3, 2, 3, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 3, 2, 2, 3, 3, 3, 2, 0, 2, 0, 0], [0, 0, 0, 2, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b2862040.json b/data/arc-agi/training/b2862040.json
deleted file mode 100644
index c9f1cdd..0000000
--- a/data/arc-agi/training/b2862040.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 1, 1, 1, 9, 9, 9, 1, 9, 9, 9], [9, 1, 9, 1, 9, 9, 9, 1, 9, 9, 9], [9, 1, 9, 1, 9, 9, 1, 1, 1, 1, 9], [9, 1, 1, 1, 9, 9, 9, 1, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 1, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]], "output": [[9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 8, 8, 8, 9, 9, 9, 1, 9, 9, 9], [9, 8, 9, 8, 9, 9, 9, 1, 9, 9, 9], [9, 8, 9, 8, 9, 9, 1, 1, 1, 1, 9], [9, 8, 8, 8, 9, 9, 9, 1, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 1, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]]}, {"input": [[9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 1, 1, 1, 1, 1, 9, 9, 1, 9, 9], [9, 1, 9, 9, 9, 1, 9, 9, 1, 9, 1], [9, 1, 1, 1, 1, 1, 9, 9, 1, 1, 1], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 1, 9, 9, 9, 9, 9, 9, 9], [9, 9, 1, 1, 1, 1, 1, 9, 9, 9, 9], [9, 9, 9, 1, 9, 1, 9, 9, 9, 9, 9], [9, 9, 9, 1, 1, 1, 9, 9, 1, 1, 1], [9, 9, 9, 9, 9, 9, 9, 9, 1, 9, 1], [1, 1, 9, 9, 9, 9, 9, 9, 1, 1, 1]], "output": [[9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 8, 8, 8, 8, 8, 9, 9, 1, 9, 9], [9, 8, 9, 9, 9, 8, 9, 9, 1, 9, 1], [9, 8, 8, 8, 8, 8, 9, 9, 1, 1, 1], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 8, 9, 9, 9, 9, 9, 9, 9], [9, 9, 8, 8, 8, 8, 8, 9, 9, 9, 9], [9, 9, 9, 8, 9, 8, 9, 9, 9, 9, 9], [9, 9, 9, 8, 8, 8, 9, 9, 8, 8, 8], [9, 9, 9, 9, 9, 9, 9, 9, 8, 9, 8], [1, 1, 9, 9, 9, 9, 9, 9, 8, 8, 8]]}, {"input": [[9, 9, 9, 9, 9, 1, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 1, 9, 9, 9, 9], [9, 9, 1, 9, 9, 9, 9, 1, 1, 1, 1, 9, 9], [9, 1, 1, 1, 1, 9, 9, 9, 1, 9, 9, 9, 9], [9, 1, 9, 9, 1, 9, 9, 9, 1, 9, 9, 9, 9], [9, 1, 1, 1, 1, 9, 9, 9, 1, 1, 1, 9, 9], [9, 9, 9, 9, 1, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 1, 9, 9, 9, 9, 9, 9, 9, 9], [9, 1, 9, 9, 9, 9, 9, 1, 1, 1, 9, 9, 9], [1, 1, 1, 9, 9, 9, 9, 9, 9, 1, 9, 9, 9], [9, 1, 9, 9, 9, 9, 1, 9, 1, 1, 9, 9, 9], [1, 1, 9, 9, 9, 9, 1, 1, 1, 9, 9, 9, 9]], "output": [[9, 9, 9, 9, 9, 1, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 1, 9, 9, 9, 9], [9, 9, 8, 9, 9, 9, 9, 1, 1, 1, 1, 9, 9], [9, 8, 8, 8, 8, 9, 9, 9, 1, 9, 9, 9, 9], [9, 8, 9, 9, 8, 9, 9, 9, 1, 9, 9, 9, 9], [9, 8, 8, 8, 8, 9, 9, 9, 1, 1, 1, 9, 9], [9, 9, 9, 9, 8, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 8, 9, 9, 9, 9, 9, 9, 9, 9], [9, 1, 9, 9, 9, 9, 9, 1, 1, 1, 9, 9, 9], [1, 1, 1, 9, 9, 9, 9, 9, 9, 1, 9, 9, 9], [9, 1, 9, 9, 9, 9, 1, 9, 1, 1, 9, 9, 9], [1, 1, 9, 9, 9, 9, 1, 1, 1, 9, 9, 9, 9]]}, {"input": [[9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 1, 1, 1, 1, 1, 1, 9, 9, 9, 9, 1, 1, 1, 1], [9, 9, 1, 9, 9, 9, 1, 9, 9, 9, 9, 1, 9, 9, 1], [9, 9, 1, 1, 1, 9, 1, 9, 9, 9, 1, 1, 1, 9, 1], [9, 9, 9, 9, 1, 1, 1, 9, 9, 9, 9, 9, 9, 9, 1], [9, 9, 9, 9, 1, 9, 9, 9, 1, 1, 1, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 1, 9, 1, 1, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 1, 1, 1, 9, 9, 9, 9], [1, 1, 1, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [1, 9, 9, 1, 9, 9, 9, 1, 9, 1, 9, 9, 9, 9, 9], [1, 1, 1, 1, 9, 9, 9, 1, 1, 1, 1, 1, 9, 9, 9], [1, 9, 9, 9, 9, 9, 9, 9, 9, 1, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 1, 1, 9, 9, 9, 9, 9, 9, 1, 1, 9]], "output": [[9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 1, 1, 1, 1], [9, 9, 8, 9, 9, 9, 8, 9, 9, 9, 9, 1, 9, 9, 1], [9, 9, 8, 8, 8, 9, 8, 9, 9, 9, 1, 1, 1, 9, 1], [9, 9, 9, 9, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 1], [9, 9, 9, 9, 8, 9, 9, 9, 8, 8, 8, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 8, 9, 8, 8, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 8, 8, 8, 9, 9, 9, 9], [8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [8, 9, 9, 8, 9, 9, 9, 1, 9, 1, 9, 9, 9, 9, 9], [8, 8, 8, 8, 9, 9, 9, 1, 1, 1, 1, 1, 9, 9, 9], [8, 9, 9, 9, 9, 9, 9, 9, 9, 1, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 1, 1, 9, 9, 9, 9, 9, 9, 1, 1, 9]]}], "test": [{"input": [[1, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 1, 9, 9, 9], [9, 9, 9, 1, 1, 1, 1, 1, 9, 9, 9, 1, 9, 9, 9], [9, 9, 9, 9, 1, 9, 9, 1, 9, 9, 9, 1, 9, 9, 9], [9, 9, 9, 9, 1, 9, 9, 1, 9, 9, 9, 1, 9, 9, 9], [9, 9, 9, 9, 1, 1, 1, 1, 9, 9, 9, 1, 9, 9, 1], [9, 9, 9, 9, 9, 9, 9, 1, 9, 9, 9, 1, 1, 1, 1], [1, 1, 1, 1, 9, 9, 9, 1, 9, 9, 9, 1, 9, 9, 1], [1, 9, 9, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 1], [1, 9, 9, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9, 1, 1], [1, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 1, 1, 1, 1, 1, 1, 9, 9, 9, 1, 1, 9], [9, 9, 9, 1, 9, 9, 9, 9, 1, 9, 9, 9, 9, 1, 9], [9, 9, 9, 1, 9, 9, 9, 9, 1, 9, 9, 9, 9, 1, 9], [9, 9, 9, 1, 1, 1, 1, 1, 1, 1, 9, 9, 9, 1, 9]], "output": [[1, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 1, 9, 9, 9], [9, 9, 9, 8, 8, 8, 8, 8, 9, 9, 9, 1, 9, 9, 9], [9, 9, 9, 9, 8, 9, 9, 8, 9, 9, 9, 1, 9, 9, 9], [9, 9, 9, 9, 8, 9, 9, 8, 9, 9, 9, 1, 9, 9, 9], [9, 9, 9, 9, 8, 8, 8, 8, 9, 9, 9, 1, 9, 9, 1], [9, 9, 9, 9, 9, 9, 9, 8, 9, 9, 9, 1, 1, 1, 1], [1, 1, 1, 1, 9, 9, 9, 8, 9, 9, 9, 1, 9, 9, 1], [1, 9, 9, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 1], [1, 9, 9, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9, 1, 1], [1, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [9, 9, 9, 8, 8, 8, 8, 8, 8, 9, 9, 9, 1, 1, 9], [9, 9, 9, 8, 9, 9, 9, 9, 8, 9, 9, 9, 9, 1, 9], [9, 9, 9, 8, 9, 9, 9, 9, 8, 9, 9, 9, 9, 1, 9], [9, 9, 9, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 1, 9]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b527c5c6.json b/data/arc-agi/training/b527c5c6.json
deleted file mode 100644
index 5f15f71..0000000
--- a/data/arc-agi/training/b527c5c6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 2, 3, 0, 3, 3, 3, 3], [0, 0, 0, 3, 3, 0, 3, 3, 2, 3], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [2, 2, 2, 2, 3, 0, 3, 3, 3, 3], [3, 3, 3, 3, 3, 0, 3, 3, 2, 3], [0, 0, 0, 3, 3, 0, 0, 3, 2, 3], [0, 0, 0, 3, 3, 0, 0, 3, 2, 3], [0, 0, 0, 0, 0, 0, 0, 3, 2, 3], [0, 0, 0, 0, 0, 0, 0, 3, 2, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 3, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 3, 3, 2, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 2, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 2, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0]]}, {"input": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [3, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [3, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [3, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 2, 2, 2, 2, 2], [3, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0], [3, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 2, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]], "output": [[0, 0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0], [3, 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0], [3, 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0], [2, 2, 2, 2, 2, 3, 3, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0], [3, 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0], [3, 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 3, 3, 3, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b548a754.json b/data/arc-agi/training/b548a754.json
deleted file mode 100644
index 3b6ee89..0000000
--- a/data/arc-agi/training/b548a754.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 1, 1, 2, 0, 0, 0, 0, 0, 0], [0, 2, 1, 1, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 1, 1, 2, 0, 0, 0, 0, 0, 0], [0, 2, 1, 1, 2, 0, 0, 0, 0, 0, 0], [0, 2, 1, 1, 2, 0, 0, 0, 0, 0, 0], [0, 2, 1, 1, 2, 0, 0, 0, 0, 0, 0], [0, 2, 1, 1, 2, 0, 0, 0, 0, 0, 0], [0, 2, 1, 1, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 3, 2, 2, 2, 3, 0, 0, 0, 0, 8], [0, 3, 2, 2, 2, 3, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 3, 2, 2, 2, 2, 2, 2, 2, 2, 3], [0, 3, 2, 2, 2, 2, 2, 2, 2, 2, 3], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 6, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 6, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 6, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 1, 6, 6, 6, 6, 6, 6, 6, 1, 0], [0, 0, 1, 6, 6, 6, 6, 6, 6, 6, 1, 0], [0, 0, 1, 6, 6, 6, 6, 6, 6, 6, 1, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 4, 4, 4, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 4, 4, 4, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 4, 4, 4, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 4, 4, 4, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 4, 4, 4, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 4, 4, 4, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 4, 4, 4, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 4, 4, 4, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 4, 4, 4, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 4, 4, 4, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 4, 4, 4, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 4, 4, 4, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b60334d2.json b/data/arc-agi/training/b60334d2.json
deleted file mode 100644
index 222cd9e..0000000
--- a/data/arc-agi/training/b60334d2.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 1, 5, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 0, 0], [0, 0, 5, 1, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 1, 5, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0], [0, 5, 1, 5, 0, 5, 1, 5, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0], [0, 5, 1, 5, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 5, 1, 5, 0, 0, 5, 1, 5], [0, 1, 0, 1, 0, 0, 1, 0, 1], [0, 5, 1, 5, 0, 0, 5, 1, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 1, 5, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0], [0, 5, 1, 5, 0, 5, 1, 5, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 5, 1, 5, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 1, 5, 0, 0, 0, 0, 0, 0], [1, 0, 1, 0, 0, 0, 0, 0, 0], [5, 1, 5, 5, 1, 5, 0, 0, 0], [0, 0, 0, 1, 0, 1, 0, 0, 0], [0, 0, 0, 5, 1, 5, 5, 1, 5], [0, 0, 0, 0, 0, 0, 1, 0, 1], [0, 5, 1, 5, 0, 0, 5, 1, 5], [0, 1, 0, 1, 0, 0, 0, 0, 0], [0, 5, 1, 5, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b6afb2da.json b/data/arc-agi/training/b6afb2da.json
deleted file mode 100644
index 42de297..0000000
--- a/data/arc-agi/training/b6afb2da.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 4, 4, 1, 0, 0, 0, 0, 0], [0, 4, 2, 2, 4, 0, 0, 0, 0, 0], [0, 4, 2, 2, 4, 0, 0, 0, 0, 0], [0, 1, 4, 4, 1, 0, 1, 4, 4, 1], [0, 0, 0, 0, 0, 0, 4, 2, 2, 4], [0, 0, 0, 0, 0, 0, 4, 2, 2, 4], [0, 0, 0, 0, 0, 0, 4, 2, 2, 4], [0, 0, 0, 0, 0, 0, 1, 4, 4, 1]]}, {"input": [[5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5]], "output": [[1, 4, 4, 4, 4, 1, 0, 0, 0, 0], [4, 2, 2, 2, 2, 4, 0, 0, 0, 0], [4, 2, 2, 2, 2, 4, 0, 0, 0, 0], [4, 2, 2, 2, 2, 4, 0, 0, 0, 0], [1, 4, 4, 4, 4, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 4, 4, 4, 4, 1], [0, 0, 0, 0, 4, 2, 2, 2, 2, 4], [0, 0, 0, 0, 4, 2, 2, 2, 2, 4], [0, 0, 0, 0, 1, 4, 4, 4, 4, 1]]}], "test": [{"input": [[0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5]], "output": [[0, 1, 4, 4, 1, 0, 0, 0, 0, 0], [0, 4, 2, 2, 4, 0, 0, 0, 0, 0], [0, 4, 2, 2, 4, 0, 0, 0, 0, 0], [0, 4, 2, 2, 4, 0, 0, 0, 0, 0], [0, 4, 2, 2, 4, 0, 0, 0, 0, 0], [0, 1, 4, 4, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 4, 4, 4, 4, 1], [0, 0, 0, 0, 4, 2, 2, 2, 2, 4], [0, 0, 0, 0, 1, 4, 4, 4, 4, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b7249182.json b/data/arc-agi/training/b7249182.json
deleted file mode 100644
index 2a7b01e..0000000
--- a/data/arc-agi/training/b7249182.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 0, 0, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 7, 7, 7, 7, 7, 0, 0, 0], [0, 7, 0, 0, 0, 7, 0, 0, 0], [0, 6, 0, 0, 0, 6, 0, 0, 0], [0, 6, 6, 6, 6, 6, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b775ac94.json b/data/arc-agi/training/b775ac94.json
deleted file mode 100644
index fd38338..0000000
--- a/data/arc-agi/training/b775ac94.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 2, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 0, 3, 4, 0, 4, 4, 0, 0, 0, 0, 7, 7, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 3, 4, 4, 4, 0, 0, 0, 0, 0, 7, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 2, 2, 2, 0, 0, 0, 0, 7, 0, 7, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 0, 1, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 2, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 4, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 6, 6, 0], [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 6, 6, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0, 0, 1, 1, 1, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 8, 2, 0, 2, 0, 0, 0, 0, 0, 3, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 2, 2, 0, 0, 0, 0, 0, 3, 3, 3, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 4, 3, 3, 0, 0, 0, 0, 0, 1, 1, 1, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 4, 3, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 4, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b782dc8a.json b/data/arc-agi/training/b782dc8a.json
deleted file mode 100644
index 632df1b..0000000
--- a/data/arc-agi/training/b782dc8a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 0, 8, 8, 8, 0], [0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 8, 0, 8, 0], [8, 8, 8, 0, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 0, 8, 0, 8, 8, 8, 8, 0, 8, 0], [8, 0, 0, 0, 8, 0, 8, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0], [8, 0, 8, 8, 8, 0, 8, 8, 0, 8, 0, 8, 8, 8, 0, 8, 8, 0, 8, 8, 8, 8, 8, 0], [8, 0, 8, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0], [8, 0, 8, 8, 8, 8, 8, 8, 0, 8, 0, 8, 8, 8, 8, 8, 8, 3, 8, 8, 8, 8, 8, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 3, 2, 3, 0, 0, 0, 8, 0], [8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 3, 8, 8, 8, 0, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0]], "output": [[8, 3, 2, 3, 2, 3, 8, 8, 8, 8, 8, 8, 0, 8, 8, 8, 2, 8, 8, 0, 8, 8, 8, 0], [3, 2, 8, 8, 8, 2, 3, 2, 3, 2, 3, 8, 0, 0, 0, 8, 3, 8, 0, 0, 8, 2, 8, 0], [8, 8, 8, 0, 8, 3, 8, 8, 8, 8, 2, 8, 8, 8, 0, 8, 2, 8, 8, 8, 8, 3, 8, 0], [8, 0, 0, 0, 8, 2, 8, 0, 0, 8, 3, 2, 3, 8, 0, 8, 3, 2, 3, 2, 3, 2, 8, 0], [8, 0, 8, 8, 8, 3, 8, 8, 0, 8, 2, 8, 8, 8, 0, 8, 8, 3, 8, 8, 8, 8, 8, 0], [8, 0, 8, 2, 3, 2, 3, 8, 0, 8, 3, 8, 0, 0, 0, 0, 8, 2, 8, 0, 0, 0, 0, 0], [8, 0, 8, 8, 8, 8, 8, 8, 0, 8, 2, 8, 8, 8, 8, 8, 8, 3, 8, 8, 8, 8, 8, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 8, 0], [8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8, 3, 8, 8, 8, 3, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 3, 2, 3, 8, 0, 0, 0, 0, 8, 2, 8, 0, 8, 2, 8, 0], [0, 8, 8, 8, 0, 8, 8, 8, 2, 8, 8, 8, 0, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0]]}, {"input": [[0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8], [8, 8, 0, 8, 8, 8, 0, 8, 0, 8, 8, 8, 0, 8], [0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8, 8, 8], [0, 8, 8, 8, 8, 8, 0, 8, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 8, 8, 0, 8], [8, 8, 8, 8, 8, 8, 0, 8, 0, 0, 0, 8, 0, 8], [8, 0, 0, 0, 0, 8, 0, 8, 8, 8, 0, 8, 0, 8], [8, 8, 8, 8, 0, 8, 0, 0, 0, 8, 0, 8, 0, 0], [0, 0, 0, 8, 1, 8, 8, 8, 8, 8, 0, 8, 8, 0], [8, 8, 0, 8, 4, 1, 0, 0, 0, 0, 0, 0, 8, 0], [0, 8, 0, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8]], "output": [[0, 0, 0, 8, 0, 0, 0, 8, 1, 4, 1, 4, 1, 8], [8, 8, 0, 8, 8, 8, 0, 8, 4, 8, 8, 8, 4, 8], [0, 8, 0, 0, 0, 8, 0, 8, 1, 8, 0, 8, 8, 8], [0, 8, 8, 8, 8, 8, 0, 8, 4, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 1, 8, 8, 8, 0, 8], [8, 8, 8, 8, 8, 8, 0, 8, 4, 1, 4, 8, 0, 8], [8, 4, 1, 4, 1, 8, 0, 8, 8, 8, 1, 8, 0, 8], [8, 8, 8, 8, 4, 8, 0, 0, 0, 8, 4, 8, 0, 0], [0, 0, 0, 8, 1, 8, 8, 8, 8, 8, 1, 8, 8, 0], [8, 8, 0, 8, 4, 1, 4, 1, 4, 1, 4, 1, 8, 0], [1, 8, 0, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 0], [4, 8, 8, 8, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0], [1, 4, 1, 4, 1, 8, 0, 8, 8, 8, 8, 8, 8, 8]]}], "test": [{"input": [[8, 8, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 8, 8, 8, 4, 8, 8, 8, 8, 8, 8, 8], [0, 8, 0, 0, 0, 0, 4, 3, 8, 0, 0, 0, 0, 0, 8], [0, 8, 8, 8, 8, 8, 8, 4, 8, 8, 8, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 0], [8, 8, 8, 8, 8, 0, 8, 8, 8, 0, 8, 0, 8, 0, 8], [0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 8], [8, 8, 8, 0, 8, 8, 8, 0, 8, 0, 8, 0, 8, 8, 8], [0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0], [8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 8], [8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8], [8, 8, 8, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 0, 8], [0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8], [8, 0, 8, 8, 8, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 4, 8, 0, 0, 8, 3, 4, 3, 4, 3, 4, 3, 4], [0, 8, 3, 8, 8, 8, 8, 4, 8, 8, 8, 8, 8, 8, 8], [0, 8, 4, 3, 4, 3, 4, 3, 8, 0, 0, 0, 0, 0, 8], [0, 8, 8, 8, 8, 8, 8, 4, 8, 8, 8, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 8, 3, 4, 3, 8, 0, 8, 0, 0], [8, 8, 8, 8, 8, 0, 8, 8, 8, 4, 8, 0, 8, 0, 8], [4, 3, 4, 3, 8, 0, 0, 0, 8, 3, 8, 0, 8, 0, 8], [8, 8, 8, 4, 8, 8, 8, 0, 8, 4, 8, 0, 8, 8, 8], [0, 0, 8, 3, 4, 3, 8, 0, 8, 3, 8, 0, 0, 0, 0], [8, 0, 8, 8, 8, 4, 8, 8, 8, 4, 8, 8, 8, 0, 8], [8, 0, 0, 0, 8, 3, 4, 3, 4, 3, 4, 3, 8, 0, 8], [8, 8, 8, 0, 8, 4, 8, 8, 8, 8, 8, 8, 8, 0, 8], [4, 3, 8, 0, 8, 3, 8, 0, 0, 0, 0, 0, 0, 0, 8], [8, 4, 8, 8, 8, 4, 8, 0, 8, 8, 8, 8, 8, 8, 8], [8, 3, 4, 3, 4, 3, 8, 0, 8, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b8825c91.json b/data/arc-agi/training/b8825c91.json
deleted file mode 100644
index fb4c8ee..0000000
--- a/data/arc-agi/training/b8825c91.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[7, 7, 8, 1, 9, 8, 2, 6, 6, 2, 8, 9, 1, 8, 7, 7], [7, 1, 1, 8, 8, 8, 6, 6, 6, 6, 8, 8, 8, 1, 1, 7], [8, 1, 6, 9, 2, 6, 4, 4, 4, 6, 6, 2, 9, 6, 1, 8], [1, 8, 9, 1, 6, 6, 4, 4, 4, 1, 6, 6, 1, 9, 8, 1], [9, 8, 2, 6, 8, 7, 4, 4, 4, 6, 4, 4, 4, 4, 8, 9], [8, 8, 6, 6, 7, 7, 6, 5, 5, 6, 4, 4, 4, 4, 8, 8], [2, 6, 6, 1, 6, 6, 5, 5, 5, 5, 4, 4, 4, 4, 6, 2], [6, 6, 1, 1, 6, 5, 5, 7, 7, 5, 4, 4, 4, 4, 6, 6], [6, 6, 1, 1, 6, 5, 5, 7, 7, 5, 5, 6, 1, 1, 6, 6], [2, 6, 6, 1, 6, 6, 5, 5, 5, 5, 6, 6, 1, 6, 6, 2], [8, 8, 6, 6, 7, 7, 6, 5, 5, 6, 7, 7, 6, 6, 8, 8], [9, 8, 2, 6, 8, 7, 6, 6, 6, 6, 7, 8, 6, 2, 8, 9], [1, 8, 9, 1, 6, 6, 1, 1, 1, 1, 6, 6, 1, 9, 8, 1], [8, 1, 6, 9, 2, 6, 6, 1, 1, 6, 6, 2, 9, 6, 1, 8], [7, 1, 1, 8, 8, 8, 6, 6, 6, 6, 8, 8, 8, 1, 1, 7], [7, 7, 8, 1, 9, 8, 2, 6, 6, 2, 8, 9, 1, 8, 7, 7]], "output": [[7, 7, 8, 1, 9, 8, 2, 6, 6, 2, 8, 9, 1, 8, 7, 7], [7, 1, 1, 8, 8, 8, 6, 6, 6, 6, 8, 8, 8, 1, 1, 7], [8, 1, 6, 9, 2, 6, 6, 1, 1, 6, 6, 2, 9, 6, 1, 8], [1, 8, 9, 1, 6, 6, 1, 1, 1, 1, 6, 6, 1, 9, 8, 1], [9, 8, 2, 6, 8, 7, 6, 6, 6, 6, 7, 8, 6, 2, 8, 9], [8, 8, 6, 6, 7, 7, 6, 5, 5, 6, 7, 7, 6, 6, 8, 8], [2, 6, 6, 1, 6, 6, 5, 5, 5, 5, 6, 6, 1, 6, 6, 2], [6, 6, 1, 1, 6, 5, 5, 7, 7, 5, 5, 6, 1, 1, 6, 6], [6, 6, 1, 1, 6, 5, 5, 7, 7, 5, 5, 6, 1, 1, 6, 6], [2, 6, 6, 1, 6, 6, 5, 5, 5, 5, 6, 6, 1, 6, 6, 2], [8, 8, 6, 6, 7, 7, 6, 5, 5, 6, 7, 7, 6, 6, 8, 8], [9, 8, 2, 6, 8, 7, 6, 6, 6, 6, 7, 8, 6, 2, 8, 9], [1, 8, 9, 1, 6, 6, 1, 1, 1, 1, 6, 6, 1, 9, 8, 1], [8, 1, 6, 9, 2, 6, 6, 1, 1, 6, 6, 2, 9, 6, 1, 8], [7, 1, 1, 8, 8, 8, 6, 6, 6, 6, 8, 8, 8, 1, 1, 7], [7, 7, 8, 1, 9, 8, 2, 6, 6, 2, 8, 9, 1, 8, 7, 7]]}], "train": [{"input": [[9, 9, 6, 5, 9, 6, 7, 7, 7, 7, 6, 9, 5, 6, 9, 9], [9, 1, 5, 5, 6, 1, 7, 9, 9, 7, 1, 6, 5, 5, 1, 9], [6, 5, 1, 9, 7, 7, 3, 3, 3, 3, 7, 7, 9, 1, 5, 6], [5, 5, 9, 3, 7, 9, 3, 3, 3, 3, 9, 7, 3, 9, 5, 5], [9, 6, 7, 7, 3, 8, 9, 1, 1, 9, 8, 3, 7, 7, 6, 9], [6, 1, 7, 9, 8, 3, 1, 1, 1, 1, 4, 4, 4, 4, 1, 6], [7, 7, 3, 3, 9, 1, 6, 6, 6, 6, 4, 4, 4, 4, 7, 7], [7, 9, 3, 3, 1, 1, 6, 1, 1, 6, 4, 4, 4, 4, 9, 7], [7, 9, 3, 3, 1, 1, 6, 1, 1, 6, 1, 1, 3, 3, 9, 7], [7, 7, 3, 3, 9, 1, 6, 6, 6, 6, 1, 9, 3, 3, 7, 7], [6, 1, 7, 9, 8, 3, 1, 1, 1, 1, 4, 4, 4, 7, 1, 6], [9, 6, 7, 7, 3, 8, 9, 1, 1, 9, 4, 4, 4, 7, 6, 9], [5, 5, 9, 3, 7, 9, 3, 3, 3, 3, 4, 4, 4, 9, 5, 5], [6, 5, 1, 9, 7, 7, 3, 3, 3, 3, 4, 4, 4, 1, 5, 6], [9, 1, 5, 5, 6, 1, 7, 9, 9, 7, 1, 6, 5, 5, 1, 9], [9, 9, 6, 5, 9, 6, 7, 7, 7, 7, 6, 9, 5, 6, 9, 9]], "output": [[9, 9, 6, 5, 9, 6, 7, 7, 7, 7, 6, 9, 5, 6, 9, 9], [9, 1, 5, 5, 6, 1, 7, 9, 9, 7, 1, 6, 5, 5, 1, 9], [6, 5, 1, 9, 7, 7, 3, 3, 3, 3, 7, 7, 9, 1, 5, 6], [5, 5, 9, 3, 7, 9, 3, 3, 3, 3, 9, 7, 3, 9, 5, 5], [9, 6, 7, 7, 3, 8, 9, 1, 1, 9, 8, 3, 7, 7, 6, 9], [6, 1, 7, 9, 8, 3, 1, 1, 1, 1, 3, 8, 9, 7, 1, 6], [7, 7, 3, 3, 9, 1, 6, 6, 6, 6, 1, 9, 3, 3, 7, 7], [7, 9, 3, 3, 1, 1, 6, 1, 1, 6, 1, 1, 3, 3, 9, 7], [7, 9, 3, 3, 1, 1, 6, 1, 1, 6, 1, 1, 3, 3, 9, 7], [7, 7, 3, 3, 9, 1, 6, 6, 6, 6, 1, 9, 3, 3, 7, 7], [6, 1, 7, 9, 8, 3, 1, 1, 1, 1, 3, 8, 9, 7, 1, 6], [9, 6, 7, 7, 3, 8, 9, 1, 1, 9, 8, 3, 7, 7, 6, 9], [5, 5, 9, 3, 7, 9, 3, 3, 3, 3, 9, 7, 3, 9, 5, 5], [6, 5, 1, 9, 7, 7, 3, 3, 3, 3, 7, 7, 9, 1, 5, 6], [9, 1, 5, 5, 6, 1, 7, 9, 9, 7, 1, 6, 5, 5, 1, 9], [9, 9, 6, 5, 9, 6, 7, 7, 7, 7, 6, 9, 5, 6, 9, 9]]}, {"input": [[9, 9, 6, 1, 8, 9, 6, 6, 6, 6, 9, 8, 1, 6, 9, 9], [9, 6, 1, 3, 9, 6, 6, 1, 1, 6, 6, 9, 3, 1, 6, 9], [6, 4, 4, 2, 6, 6, 8, 8, 8, 8, 6, 6, 2, 5, 1, 6], [1, 4, 4, 8, 6, 1, 8, 2, 2, 8, 1, 6, 8, 2, 3, 1], [8, 4, 4, 6, 7, 1, 5, 5, 5, 5, 1, 7, 6, 6, 9, 8], [9, 6, 6, 1, 1, 1, 5, 5, 5, 5, 1, 1, 1, 6, 6, 9], [6, 6, 8, 8, 5, 5, 9, 5, 5, 9, 5, 5, 8, 8, 6, 6], [6, 1, 8, 2, 5, 5, 5, 8, 8, 5, 5, 5, 2, 8, 1, 6], [6, 1, 8, 2, 5, 5, 5, 8, 8, 5, 5, 4, 4, 4, 1, 6], [6, 6, 8, 8, 5, 5, 9, 5, 5, 9, 5, 4, 4, 4, 6, 6], [9, 6, 6, 1, 1, 1, 5, 5, 5, 5, 1, 1, 1, 6, 6, 9], [8, 9, 6, 6, 7, 1, 5, 5, 5, 5, 1, 7, 6, 6, 9, 8], [1, 3, 2, 8, 6, 1, 8, 2, 2, 8, 1, 6, 8, 2, 3, 1], [6, 1, 5, 2, 6, 6, 8, 8, 8, 8, 6, 6, 2, 5, 1, 6], [9, 6, 1, 3, 9, 6, 6, 1, 1, 6, 6, 9, 3, 1, 6, 9], [9, 9, 6, 1, 8, 9, 6, 6, 6, 6, 9, 8, 1, 6, 9, 9]], "output": [[9, 9, 6, 1, 8, 9, 6, 6, 6, 6, 9, 8, 1, 6, 9, 9], [9, 6, 1, 3, 9, 6, 6, 1, 1, 6, 6, 9, 3, 1, 6, 9], [6, 1, 5, 2, 6, 6, 8, 8, 8, 8, 6, 6, 2, 5, 1, 6], [1, 3, 2, 8, 6, 1, 8, 2, 2, 8, 1, 6, 8, 2, 3, 1], [8, 9, 6, 6, 7, 1, 5, 5, 5, 5, 1, 7, 6, 6, 9, 8], [9, 6, 6, 1, 1, 1, 5, 5, 5, 5, 1, 1, 1, 6, 6, 9], [6, 6, 8, 8, 5, 5, 9, 5, 5, 9, 5, 5, 8, 8, 6, 6], [6, 1, 8, 2, 5, 5, 5, 8, 8, 5, 5, 5, 2, 8, 1, 6], [6, 1, 8, 2, 5, 5, 5, 8, 8, 5, 5, 5, 2, 8, 1, 6], [6, 6, 8, 8, 5, 5, 9, 5, 5, 9, 5, 5, 8, 8, 6, 6], [9, 6, 6, 1, 1, 1, 5, 5, 5, 5, 1, 1, 1, 6, 6, 9], [8, 9, 6, 6, 7, 1, 5, 5, 5, 5, 1, 7, 6, 6, 9, 8], [1, 3, 2, 8, 6, 1, 8, 2, 2, 8, 1, 6, 8, 2, 3, 1], [6, 1, 5, 2, 6, 6, 8, 8, 8, 8, 6, 6, 2, 5, 1, 6], [9, 6, 1, 3, 9, 6, 6, 1, 1, 6, 6, 9, 3, 1, 6, 9], [9, 9, 6, 1, 8, 9, 6, 6, 6, 6, 9, 8, 1, 6, 9, 9]]}, {"input": [[9, 3, 9, 9, 2, 8, 7, 8, 8, 7, 8, 2, 9, 9, 3, 9], [3, 9, 9, 3, 8, 8, 8, 5, 5, 8, 8, 8, 3, 9, 9, 3], [9, 9, 2, 8, 7, 8, 2, 2, 2, 2, 8, 7, 8, 2, 9, 9], [9, 3, 8, 8, 8, 5, 2, 1, 1, 2, 5, 8, 8, 8, 3, 9], [2, 8, 7, 8, 2, 5, 9, 7, 7, 9, 5, 2, 8, 7, 8, 2], [8, 8, 8, 5, 5, 5, 7, 6, 6, 7, 5, 5, 5, 8, 8, 8], [7, 8, 2, 2, 9, 7, 1, 1, 1, 1, 7, 9, 4, 4, 8, 7], [8, 5, 2, 1, 7, 6, 1, 3, 3, 1, 6, 7, 4, 4, 5, 8], [8, 5, 2, 1, 7, 6, 1, 3, 3, 1, 6, 7, 4, 4, 5, 8], [7, 8, 2, 2, 9, 7, 1, 1, 1, 1, 7, 9, 4, 4, 8, 7], [8, 8, 8, 5, 5, 5, 7, 6, 6, 7, 5, 5, 5, 8, 8, 8], [2, 8, 4, 4, 4, 4, 9, 7, 7, 9, 5, 2, 8, 7, 8, 2], [9, 3, 4, 4, 4, 4, 2, 1, 1, 2, 5, 8, 8, 8, 3, 9], [9, 9, 4, 4, 4, 4, 2, 2, 2, 2, 8, 7, 8, 2, 9, 9], [3, 9, 4, 4, 4, 4, 8, 5, 5, 8, 8, 8, 3, 9, 9, 3], [9, 3, 9, 9, 2, 8, 7, 8, 8, 7, 8, 2, 9, 9, 3, 9]], "output": [[9, 3, 9, 9, 2, 8, 7, 8, 8, 7, 8, 2, 9, 9, 3, 9], [3, 9, 9, 3, 8, 8, 8, 5, 5, 8, 8, 8, 3, 9, 9, 3], [9, 9, 2, 8, 7, 8, 2, 2, 2, 2, 8, 7, 8, 2, 9, 9], [9, 3, 8, 8, 8, 5, 2, 1, 1, 2, 5, 8, 8, 8, 3, 9], [2, 8, 7, 8, 2, 5, 9, 7, 7, 9, 5, 2, 8, 7, 8, 2], [8, 8, 8, 5, 5, 5, 7, 6, 6, 7, 5, 5, 5, 8, 8, 8], [7, 8, 2, 2, 9, 7, 1, 1, 1, 1, 7, 9, 2, 2, 8, 7], [8, 5, 2, 1, 7, 6, 1, 3, 3, 1, 6, 7, 1, 2, 5, 8], [8, 5, 2, 1, 7, 6, 1, 3, 3, 1, 6, 7, 1, 2, 5, 8], [7, 8, 2, 2, 9, 7, 1, 1, 1, 1, 7, 9, 2, 2, 8, 7], [8, 8, 8, 5, 5, 5, 7, 6, 6, 7, 5, 5, 5, 8, 8, 8], [2, 8, 7, 8, 2, 5, 9, 7, 7, 9, 5, 2, 8, 7, 8, 2], [9, 3, 8, 8, 8, 5, 2, 1, 1, 2, 5, 8, 8, 8, 3, 9], [9, 9, 2, 8, 7, 8, 2, 2, 2, 2, 8, 7, 8, 2, 9, 9], [3, 9, 9, 3, 8, 8, 8, 5, 5, 8, 8, 8, 3, 9, 9, 3], [9, 3, 9, 9, 2, 8, 7, 8, 8, 7, 8, 2, 9, 9, 3, 9]]}, {"input": [[2, 2, 7, 6, 8, 9, 9, 1, 1, 9, 9, 8, 6, 7, 2, 2], [2, 1, 6, 2, 9, 5, 1, 1, 1, 1, 4, 4, 4, 4, 1, 2], [7, 6, 3, 3, 9, 1, 6, 6, 6, 6, 4, 4, 4, 4, 6, 7], [6, 2, 3, 8, 1, 1, 6, 6, 6, 6, 4, 4, 4, 4, 2, 6], [8, 9, 9, 1, 1, 7, 1, 1, 1, 1, 7, 1, 1, 9, 9, 8], [9, 5, 1, 1, 7, 7, 1, 3, 3, 1, 7, 7, 1, 1, 5, 9], [9, 1, 6, 6, 1, 1, 3, 3, 3, 3, 1, 1, 6, 6, 1, 9], [1, 1, 6, 6, 1, 3, 3, 2, 2, 3, 3, 1, 6, 6, 1, 1], [1, 1, 6, 4, 4, 3, 3, 2, 2, 3, 3, 1, 6, 6, 1, 1], [9, 1, 6, 4, 4, 1, 3, 3, 3, 3, 1, 1, 6, 6, 1, 9], [9, 5, 1, 4, 4, 7, 1, 3, 3, 1, 7, 7, 1, 1, 5, 9], [8, 9, 9, 1, 1, 7, 1, 1, 1, 1, 7, 1, 1, 9, 9, 8], [6, 2, 3, 8, 1, 1, 6, 6, 6, 6, 1, 1, 8, 3, 2, 6], [7, 6, 3, 3, 9, 1, 6, 6, 6, 6, 1, 9, 3, 3, 6, 7], [2, 1, 6, 2, 9, 5, 1, 1, 1, 1, 5, 9, 2, 6, 1, 2], [2, 2, 7, 6, 8, 9, 9, 1, 1, 9, 9, 8, 6, 7, 2, 2]], "output": [[2, 2, 7, 6, 8, 9, 9, 1, 1, 9, 9, 8, 6, 7, 2, 2], [2, 1, 6, 2, 9, 5, 1, 1, 1, 1, 5, 9, 2, 6, 1, 2], [7, 6, 3, 3, 9, 1, 6, 6, 6, 6, 1, 9, 3, 3, 6, 7], [6, 2, 3, 8, 1, 1, 6, 6, 6, 6, 1, 1, 8, 3, 2, 6], [8, 9, 9, 1, 1, 7, 1, 1, 1, 1, 7, 1, 1, 9, 9, 8], [9, 5, 1, 1, 7, 7, 1, 3, 3, 1, 7, 7, 1, 1, 5, 9], [9, 1, 6, 6, 1, 1, 3, 3, 3, 3, 1, 1, 6, 6, 1, 9], [1, 1, 6, 6, 1, 3, 3, 2, 2, 3, 3, 1, 6, 6, 1, 1], [1, 1, 6, 6, 1, 3, 3, 2, 2, 3, 3, 1, 6, 6, 1, 1], [9, 1, 6, 6, 1, 1, 3, 3, 3, 3, 1, 1, 6, 6, 1, 9], [9, 5, 1, 1, 7, 7, 1, 3, 3, 1, 7, 7, 1, 1, 5, 9], [8, 9, 9, 1, 1, 7, 1, 1, 1, 1, 7, 1, 1, 9, 9, 8], [6, 2, 3, 8, 1, 1, 6, 6, 6, 6, 1, 1, 8, 3, 2, 6], [7, 6, 3, 3, 9, 1, 6, 6, 6, 6, 1, 9, 3, 3, 6, 7], [2, 1, 6, 2, 9, 5, 1, 1, 1, 1, 5, 9, 2, 6, 1, 2], [2, 2, 7, 6, 8, 9, 9, 1, 1, 9, 9, 8, 6, 7, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b8cdaf2b.json b/data/arc-agi/training/b8cdaf2b.json
deleted file mode 100644
index 20c6b54..0000000
--- a/data/arc-agi/training/b8cdaf2b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0], [0, 2, 0], [2, 4, 2]], "output": [[4, 0, 4], [0, 2, 0], [2, 4, 2]]}, {"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 8, 0, 0], [8, 8, 3, 8, 8]], "output": [[0, 0, 0, 0, 0], [3, 0, 0, 0, 3], [0, 3, 0, 3, 0], [0, 0, 8, 0, 0], [8, 8, 3, 8, 8]]}, {"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 6, 6, 6, 0], [6, 1, 1, 1, 6]], "output": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [1, 0, 0, 0, 1], [0, 6, 6, 6, 0], [6, 1, 1, 1, 6]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0], [2, 2, 4, 4, 4, 2, 2]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 4], [0, 4, 0, 0, 0, 4, 0], [0, 0, 2, 2, 2, 0, 0], [2, 2, 4, 4, 4, 2, 2]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0], [8, 8, 8, 2, 2, 2, 8, 8, 8]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 2], [0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0], [8, 8, 8, 2, 2, 2, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b91ae062.json b/data/arc-agi/training/b91ae062.json
deleted file mode 100644
index 3ffb732..0000000
--- a/data/arc-agi/training/b91ae062.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[6, 7, 0], [0, 6, 6], [0, 0, 0]], "output": [[6, 6, 7, 7, 0, 0], [6, 6, 7, 7, 0, 0], [0, 0, 6, 6, 6, 6], [0, 0, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[1, 0, 4], [0, 4, 0], [0, 1, 0]], "output": [[1, 1, 0, 0, 4, 4], [1, 1, 0, 0, 4, 4], [0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [0, 0, 1, 1, 0, 0], [0, 0, 1, 1, 0, 0]]}, {"input": [[3, 2, 0], [0, 7, 3], [0, 0, 0]], "output": [[3, 3, 3, 2, 2, 2, 0, 0, 0], [3, 3, 3, 2, 2, 2, 0, 0, 0], [3, 3, 3, 2, 2, 2, 0, 0, 0], [0, 0, 0, 7, 7, 7, 3, 3, 3], [0, 0, 0, 7, 7, 7, 3, 3, 3], [0, 0, 0, 7, 7, 7, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 8, 0], [0, 6, 6], [9, 8, 0]], "output": [[0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 6, 6, 6, 6, 6, 6], [0, 0, 0, 6, 6, 6, 6, 6, 6], [0, 0, 0, 6, 6, 6, 6, 6, 6], [9, 9, 9, 8, 8, 8, 0, 0, 0], [9, 9, 9, 8, 8, 8, 0, 0, 0], [9, 9, 9, 8, 8, 8, 0, 0, 0]]}, {"input": [[4, 0, 3], [2, 2, 0], [0, 0, 8]], "output": [[4, 4, 4, 4, 0, 0, 0, 0, 3, 3, 3, 3], [4, 4, 4, 4, 0, 0, 0, 0, 3, 3, 3, 3], [4, 4, 4, 4, 0, 0, 0, 0, 3, 3, 3, 3], [4, 4, 4, 4, 0, 0, 0, 0, 3, 3, 3, 3], [2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8]]}], "test": [{"input": [[0, 1, 0], [0, 8, 7], [9, 9, 0]], "output": [[0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 7, 7, 7, 7], [0, 0, 0, 0, 8, 8, 8, 8, 7, 7, 7, 7], [0, 0, 0, 0, 8, 8, 8, 8, 7, 7, 7, 7], [0, 0, 0, 0, 8, 8, 8, 8, 7, 7, 7, 7], [9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0], [9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0], [9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0], [9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b94a9452.json b/data/arc-agi/training/b94a9452.json
deleted file mode 100644
index 8853ebe..0000000
--- a/data/arc-agi/training/b94a9452.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 4, 4, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 4, 4, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 4, 4, 4], [4, 2, 2, 4], [4, 2, 2, 4], [4, 4, 4, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 3, 3], [3, 1, 3], [3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 6, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 6, 6, 6, 6], [6, 6, 6, 6, 6], [6, 6, 4, 6, 6], [6, 6, 6, 6, 6], [6, 6, 6, 6, 6]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 3, 3, 8, 8, 3, 3, 0, 0, 0, 0, 0], [0, 0, 3, 3, 8, 8, 3, 3, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8], [8, 8, 3, 3, 8, 8], [8, 8, 3, 3, 8, 8], [8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/b9b7f026.json b/data/arc-agi/training/b9b7f026.json
deleted file mode 100644
index ee30e1d..0000000
--- a/data/arc-agi/training/b9b7f026.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 6, 0, 6, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 6, 0, 6, 0, 1, 1, 0, 3, 3, 3, 0, 0], [0, 6, 6, 6, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 7, 7, 7, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0], [4, 4, 4, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7], [8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7], [8, 8, 8, 8, 8, 0, 0, 5, 5, 5, 5, 0, 0, 7, 7, 7, 7], [8, 8, 8, 8, 8, 0, 0, 5, 5, 5, 5, 0, 0, 7, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 7, 7, 7, 7], [0, 0, 0, 2, 2, 2, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, 0, 0]], "output": [[5]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 3, 3, 3, 3, 3, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 3, 3, 3, 3, 3, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 3, 3, 3, 3, 3, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 7, 7, 7, 7, 7, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 7, 7, 7, 7, 7, 0], [0, 0, 2, 0, 0, 0, 2, 2, 2, 0, 0, 7, 7, 7, 7, 7, 0], [0, 0, 2, 0, 0, 0, 2, 2, 2, 0, 0, 7, 7, 7, 7, 7, 0], [0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0], [2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 3, 3, 3, 3, 0], [2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 3, 3, 3, 3, 0], [2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 3, 3, 3, 3, 0], [2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 3, 3, 3, 3, 0], [2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 0, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0], [0, 5, 5, 5, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0], [0, 5, 5, 5, 8, 8, 8, 8, 0, 4, 4, 4, 4, 0, 0], [0, 5, 5, 5, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 7, 7, 7, 7, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 7, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 0]], "output": [[7]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ba26e723.json b/data/arc-agi/training/ba26e723.json
deleted file mode 100644
index 4cad9cd..0000000
--- a/data/arc-agi/training/ba26e723.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 0, 4, 0, 4, 0, 4, 0, 4, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 4, 0, 4, 0, 4, 0, 4, 0, 4]], "output": [[6, 0, 4, 0, 4, 0, 6, 0, 4, 0], [6, 4, 4, 6, 4, 4, 6, 4, 4, 6], [0, 4, 0, 6, 0, 4, 0, 4, 0, 6]]}, {"input": [[0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4]], "output": [[0, 4, 0, 6, 0, 4, 0, 4, 0, 6, 0], [6, 4, 4, 6, 4, 4, 6, 4, 4, 6, 4], [6, 0, 4, 0, 4, 0, 6, 0, 4, 0, 4]]}, {"input": [[4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0]], "output": [[6, 0, 4, 0, 4, 0, 6, 0, 4, 0, 4], [6, 4, 4, 6, 4, 4, 6, 4, 4, 6, 4], [0, 4, 0, 6, 0, 4, 0, 4, 0, 6, 0]]}, {"input": [[4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0]], "output": [[6, 0, 4, 0, 4, 0, 6, 0, 4, 0, 4, 0, 6], [6, 4, 4, 6, 4, 4, 6, 4, 4, 6, 4, 4, 6], [0, 4, 0, 6, 0, 4, 0, 4, 0, 6, 0, 4, 0]]}, {"input": [[0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0]], "output": [[0, 4, 0, 6, 0, 4, 0, 4, 0, 6, 0, 4, 0, 4], [6, 4, 4, 6, 4, 4, 6, 4, 4, 6, 4, 4, 6, 4], [6, 0, 4, 0, 4, 0, 6, 0, 4, 0, 4, 0, 6, 0]]}], "test": [{"input": [[0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4]], "output": [[0, 4, 0, 6, 0, 4, 0, 4, 0, 6, 0, 4, 0, 4, 0, 6, 0], [6, 4, 4, 6, 4, 4, 6, 4, 4, 6, 4, 4, 6, 4, 4, 6, 4], [6, 0, 4, 0, 4, 0, 6, 0, 4, 0, 4, 0, 6, 0, 4, 0, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ba97ae07.json b/data/arc-agi/training/ba97ae07.json
deleted file mode 100644
index 4befaa5..0000000
--- a/data/arc-agi/training/ba97ae07.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 6, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 6, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0]], "output": [[0, 0, 6, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0], [1, 1, 6, 6, 1, 1, 1, 1, 1], [0, 0, 6, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0], [7, 7, 7, 7, 7, 7, 7], [0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0]], "output": [[0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0], [7, 7, 1, 7, 7, 7, 7], [0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0]]}, {"input": [[0, 3, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0], [2, 3, 2, 2, 2, 2], [0, 3, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0]], "output": [[0, 3, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2], [0, 3, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [5, 5, 4, 4, 5, 5], [5, 5, 4, 4, 5, 5], [0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0]], "output": [[0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5], [0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/bb43febb.json b/data/arc-agi/training/bb43febb.json
deleted file mode 100644
index 2924fd4..0000000
--- a/data/arc-agi/training/bb43febb.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 0, 5, 5, 5, 0], [5, 5, 5, 5, 5, 0, 5, 5, 5, 0], [5, 5, 5, 5, 5, 0, 5, 5, 5, 0], [5, 5, 5, 5, 5, 0, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [5, 2, 2, 2, 5, 0, 5, 5, 5, 0], [5, 2, 2, 2, 5, 0, 5, 2, 5, 0], [5, 2, 2, 2, 5, 0, 5, 2, 5, 0], [5, 5, 5, 5, 5, 0, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 5, 2, 2, 2, 2, 5, 0, 0, 0], [0, 5, 2, 2, 2, 2, 5, 0, 0, 0], [0, 5, 2, 2, 2, 2, 5, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 5, 2, 2, 2, 5, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 0]]}], "test": [{"input": [[5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5]], "output": [[5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [5, 2, 2, 2, 2, 5, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 5, 2, 2, 2, 2, 2, 5], [0, 0, 0, 5, 2, 2, 2, 2, 2, 5], [0, 0, 0, 5, 2, 2, 2, 2, 2, 5], [0, 0, 0, 5, 2, 2, 2, 2, 2, 5], [0, 0, 0, 5, 5, 5, 5, 5, 5, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/bbc9ae5d.json b/data/arc-agi/training/bbc9ae5d.json
deleted file mode 100644
index b3e07f6..0000000
--- a/data/arc-agi/training/bbc9ae5d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 0, 0, 0, 0]], "output": [[1, 1, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0], [1, 1, 1, 1, 0, 0]]}, {"input": [[2, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 0, 0, 0]]}, {"input": [[5, 5, 5, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 0, 0, 0]]}, {"input": [[8, 8, 8, 8, 0, 0]], "output": [[8, 8, 8, 8, 0, 0], [8, 8, 8, 8, 8, 0], [8, 8, 8, 8, 8, 8]]}, {"input": [[7, 0, 0, 0, 0, 0]], "output": [[7, 0, 0, 0, 0, 0], [7, 7, 0, 0, 0, 0], [7, 7, 7, 0, 0, 0]]}], "test": [{"input": [[1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/bc1d5164.json b/data/arc-agi/training/bc1d5164.json
deleted file mode 100644
index 92effc3..0000000
--- a/data/arc-agi/training/bc1d5164.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 8, 0, 0, 0, 8, 0], [8, 8, 0, 0, 0, 8, 8], [0, 0, 0, 0, 0, 0, 0], [8, 8, 0, 0, 0, 8, 8], [0, 8, 0, 0, 0, 8, 0]], "output": [[0, 8, 0], [8, 8, 8], [0, 8, 0]]}, {"input": [[2, 2, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0], [2, 0, 0, 0, 0, 0, 2]], "output": [[2, 2, 2], [0, 2, 2], [2, 0, 2]]}, {"input": [[4, 4, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 4, 4], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 4]], "output": [[4, 4, 0], [0, 4, 4], [4, 0, 4]]}, {"input": [[4, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 4, 4]], "output": [[4, 0, 4], [0, 0, 0], [4, 4, 4]]}, {"input": [[0, 3, 0, 0, 0, 3, 0], [3, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3]], "output": [[0, 3, 0], [3, 0, 3], [0, 0, 3]]}], "test": [{"input": [[0, 0, 0, 0, 0, 1, 1], [1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1]], "output": [[0, 1, 1], [1, 0, 0], [0, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/bd4472b8.json b/data/arc-agi/training/bd4472b8.json
deleted file mode 100644
index 5ef1721..0000000
--- a/data/arc-agi/training/bd4472b8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 1, 4], [5, 5, 5], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]], "output": [[2, 1, 4], [5, 5, 5], [2, 2, 2], [1, 1, 1], [4, 4, 4], [2, 2, 2], [1, 1, 1], [4, 4, 4]]}, {"input": [[3, 2, 1, 4], [5, 5, 5, 5], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]], "output": [[3, 2, 1, 4], [5, 5, 5, 5], [3, 3, 3, 3], [2, 2, 2, 2], [1, 1, 1, 1], [4, 4, 4, 4], [3, 3, 3, 3], [2, 2, 2, 2], [1, 1, 1, 1], [4, 4, 4, 4]]}, {"input": [[8, 3], [5, 5], [0, 0], [0, 0], [0, 0], [0, 0]], "output": [[8, 3], [5, 5], [8, 8], [3, 3], [8, 8], [3, 3]]}], "test": [{"input": [[1, 2, 3, 4, 8], [5, 5, 5, 5, 5], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[1, 2, 3, 4, 8], [5, 5, 5, 5, 5], [1, 1, 1, 1, 1], [2, 2, 2, 2, 2], [3, 3, 3, 3, 3], [4, 4, 4, 4, 4], [8, 8, 8, 8, 8], [1, 1, 1, 1, 1], [2, 2, 2, 2, 2], [3, 3, 3, 3, 3], [4, 4, 4, 4, 4], [8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/bda2d7a6.json b/data/arc-agi/training/bda2d7a6.json
deleted file mode 100644
index 665819f..0000000
--- a/data/arc-agi/training/bda2d7a6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 3, 3, 3, 3, 3], [3, 2, 2, 2, 2, 3], [3, 2, 0, 0, 2, 3], [3, 2, 0, 0, 2, 3], [3, 2, 2, 2, 2, 3], [3, 3, 3, 3, 3, 3]], "output": [[0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0], [0, 3, 2, 2, 3, 0], [0, 3, 2, 2, 3, 0], [0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 7, 0], [0, 7, 6, 6, 7, 0], [0, 7, 6, 6, 7, 0], [0, 7, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0]], "output": [[6, 6, 6, 6, 6, 6], [6, 0, 0, 0, 0, 6], [6, 0, 7, 7, 0, 6], [6, 0, 7, 7, 0, 6], [6, 0, 0, 0, 0, 6], [6, 6, 6, 6, 6, 6]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 0, 0, 0, 0, 0, 8], [8, 0, 5, 5, 5, 5, 0, 8], [8, 0, 5, 8, 8, 5, 0, 8], [8, 0, 5, 8, 8, 5, 0, 8], [8, 0, 5, 5, 5, 5, 0, 8], [8, 0, 0, 0, 0, 0, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8]], "output": [[5, 5, 5, 5, 5, 5, 5, 5], [5, 8, 8, 8, 8, 8, 8, 5], [5, 8, 0, 0, 0, 0, 8, 5], [5, 8, 0, 5, 5, 0, 8, 5], [5, 8, 0, 5, 5, 0, 8, 5], [5, 8, 0, 0, 0, 0, 8, 5], [5, 8, 8, 8, 8, 8, 8, 5], [5, 5, 5, 5, 5, 5, 5, 5]]}], "test": [{"input": [[9, 9, 9, 9, 9, 9], [9, 0, 0, 0, 0, 9], [9, 0, 1, 1, 0, 9], [9, 0, 1, 1, 0, 9], [9, 0, 0, 0, 0, 9], [9, 9, 9, 9, 9, 9]], "output": [[1, 1, 1, 1, 1, 1], [1, 9, 9, 9, 9, 1], [1, 9, 0, 0, 9, 1], [1, 9, 0, 0, 9, 1], [1, 9, 9, 9, 9, 1], [1, 1, 1, 1, 1, 1]]}, {"input": [[3, 3, 3, 3, 3, 3, 3, 3], [3, 7, 7, 7, 7, 7, 7, 3], [3, 7, 6, 6, 6, 6, 7, 3], [3, 7, 6, 3, 3, 6, 7, 3], [3, 7, 6, 3, 3, 6, 7, 3], [3, 7, 6, 6, 6, 6, 7, 3], [3, 7, 7, 7, 7, 7, 7, 3], [3, 3, 3, 3, 3, 3, 3, 3]], "output": [[6, 6, 6, 6, 6, 6, 6, 6], [6, 3, 3, 3, 3, 3, 3, 6], [6, 3, 7, 7, 7, 7, 3, 6], [6, 3, 7, 6, 6, 7, 3, 6], [6, 3, 7, 6, 6, 7, 3, 6], [6, 3, 7, 7, 7, 7, 3, 6], [6, 3, 3, 3, 3, 3, 3, 6], [6, 6, 6, 6, 6, 6, 6, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/bdad9b1f.json b/data/arc-agi/training/bdad9b1f.json
deleted file mode 100644
index e1a381c..0000000
--- a/data/arc-agi/training/bdad9b1f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 8, 0], [2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 8, 0], [2, 2, 2, 2, 4, 2], [0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 8, 0]]}, {"input": [[0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0], [2, 4, 2, 2, 2, 2], [0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0], [2, 2, 2, 4, 2, 2], [0, 0, 0, 8, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/be94b721.json b/data/arc-agi/training/be94b721.json
deleted file mode 100644
index 52e5e1c..0000000
--- a/data/arc-agi/training/be94b721.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 0], [0, 2, 0], [0, 2, 2], [2, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 6, 6, 0], [0, 3, 0, 0, 4, 4, 0, 0, 6, 0], [3, 3, 3, 0, 4, 4, 0, 0, 0, 0], [0, 3, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4, 4], [4, 4], [4, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 7, 7, 0], [0, 0, 8, 0, 0, 0, 2, 0, 0, 7, 0], [0, 8, 8, 0, 0, 2, 2, 0, 0, 7, 0], [0, 8, 8, 0, 0, 0, 2, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 8, 8], [0, 8, 0], [8, 8, 0], [8, 8, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 0, 2, 2, 2], [0, 0, 0, 7, 7, 0, 0, 2, 0], [0, 0, 0, 0, 7, 0, 2, 2, 2], [8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2], [0, 2, 0], [2, 2, 2]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 0, 3, 3, 3, 0, 0, 0], [0, 4, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6], [0, 5, 5, 5, 0, 0, 6, 6, 6], [0, 5, 5, 0, 0, 0, 6, 6, 0]], "output": [[3, 3, 3], [3, 3, 3], [3, 0, 3], [3, 0, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/beb8660c.json b/data/arc-agi/training/beb8660c.json
deleted file mode 100644
index a99d0b1..0000000
--- a/data/arc-agi/training/beb8660c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0], [1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0], [6, 6, 6, 6, 6, 0, 0], [0, 0, 0, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 2, 2], [0, 0, 0, 0, 1, 1, 1], [0, 0, 0, 4, 4, 4, 4], [0, 0, 6, 6, 6, 6, 6], [0, 5, 5, 5, 5, 5, 5], [8, 8, 8, 8, 8, 8, 8]]}, {"input": [[0, 0, 0, 1], [0, 0, 0, 0], [2, 2, 2, 0], [0, 0, 0, 0], [0, 3, 3, 0], [0, 0, 0, 0], [8, 8, 8, 8]], "output": [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 1], [0, 0, 3, 3], [0, 2, 2, 2], [8, 8, 8, 8]]}, {"input": [[2, 2, 0], [0, 4, 0], [8, 8, 8]], "output": [[0, 0, 4], [0, 2, 2], [8, 8, 8]]}], "test": [{"input": [[6, 6, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 3, 3, 3, 3, 3, 3], [0, 9, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8]], "output": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 0, 0, 0, 0, 7, 7], [0, 0, 0, 0, 0, 6, 6, 6], [0, 0, 0, 0, 1, 1, 1, 1], [0, 0, 0, 4, 4, 4, 4, 4], [0, 0, 3, 3, 3, 3, 3, 3], [0, 2, 2, 2, 2, 2, 2, 2], [8, 8, 8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/c0f76784.json b/data/arc-agi/training/c0f76784.json
deleted file mode 100644
index 7b0d3e1..0000000
--- a/data/arc-agi/training/c0f76784.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5], [0, 0, 5, 5, 5, 0, 0, 5, 0, 0, 0, 5], [0, 0, 5, 0, 5, 0, 0, 5, 0, 0, 0, 5], [0, 0, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 5, 8, 8, 8, 5], [0, 0, 5, 5, 5, 0, 0, 5, 8, 8, 8, 5], [0, 0, 5, 6, 5, 0, 0, 5, 8, 8, 8, 5], [0, 0, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 7, 7, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 7, 7, 5, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0], [0, 5, 5, 5, 0, 0, 5, 0, 0, 0, 5, 0], [0, 5, 0, 5, 0, 0, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 7, 7, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 7, 7, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 5, 8, 8, 8, 5, 0], [0, 0, 0, 0, 0, 0, 5, 8, 8, 8, 5, 0], [0, 5, 5, 5, 0, 0, 5, 8, 8, 8, 5, 0], [0, 5, 6, 5, 0, 0, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 5, 8, 8, 8, 5, 0, 0, 0, 0, 0, 0], [0, 5, 8, 8, 8, 5, 0, 0, 0, 0, 0, 0], [0, 5, 8, 8, 8, 5, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 7, 7, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 7, 7, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 5, 0, 0, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 0, 0, 5, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 5, 8, 8, 8, 5, 0, 0, 0, 0, 0, 0], [0, 5, 8, 8, 8, 5, 0, 0, 0, 0, 0, 0], [0, 5, 8, 8, 8, 5, 0, 0, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 0, 0, 5, 6, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 7, 7, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 7, 7, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/c1d99e64.json b/data/arc-agi/training/c1d99e64.json
deleted file mode 100644
index 17e3f11..0000000
--- a/data/arc-agi/training/c1d99e64.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1], [1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1], [1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0], [1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1], [1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0], [1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1], [1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 1], [1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1]], "output": [[1, 0, 0, 0, 1, 1, 1, 1, 2, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1], [1, 0, 1, 0, 1, 1, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1], [1, 1, 1, 1, 0, 0, 1, 1, 2, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0], [1, 0, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 1, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 0, 1, 0, 1, 1, 0, 2, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1], [1, 0, 0, 1, 1, 0, 1, 0, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0], [1, 1, 0, 0, 1, 1, 1, 1, 2, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [1, 1, 1, 0, 0, 1, 1, 1, 2, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1], [1, 1, 0, 0, 1, 1, 0, 0, 2, 1, 1, 0, 0, 0, 1, 0, 1, 0, 1], [1, 0, 1, 0, 1, 0, 0, 1, 2, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1]]}, {"input": [[8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 8, 8], [0, 8, 0, 0, 0, 0, 8, 8, 8, 8, 0, 8, 8, 8], [8, 8, 0, 8, 0, 8, 8, 8, 8, 8, 0, 0, 8, 8], [8, 0, 8, 8, 0, 8, 8, 0, 0, 8, 0, 8, 8, 0], [8, 8, 8, 8, 0, 8, 8, 0, 0, 0, 0, 8, 8, 8], [8, 8, 8, 0, 0, 8, 8, 0, 8, 0, 0, 8, 8, 8], [8, 0, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 0, 8], [8, 8, 0, 0, 0, 8, 0, 0, 8, 8, 0, 0, 8, 8], [8, 0, 0, 8, 0, 8, 8, 8, 0, 8, 0, 8, 8, 8], [8, 8, 0, 8, 0, 8, 8, 8, 8, 8, 0, 0, 8, 0], [0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8], [8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 0, 0, 8, 0]], "output": [[8, 8, 8, 8, 2, 8, 8, 8, 8, 8, 2, 0, 8, 8], [0, 8, 0, 0, 2, 0, 8, 8, 8, 8, 2, 8, 8, 8], [8, 8, 0, 8, 2, 8, 8, 8, 8, 8, 2, 0, 8, 8], [8, 0, 8, 8, 2, 8, 8, 0, 0, 8, 2, 8, 8, 0], [8, 8, 8, 8, 2, 8, 8, 0, 0, 0, 2, 8, 8, 8], [8, 8, 8, 0, 2, 8, 8, 0, 8, 0, 2, 8, 8, 8], [8, 0, 8, 8, 2, 8, 8, 8, 8, 8, 2, 0, 0, 8], [8, 8, 0, 0, 2, 8, 0, 0, 8, 8, 2, 0, 8, 8], [8, 0, 0, 8, 2, 8, 8, 8, 0, 8, 2, 8, 8, 8], [8, 8, 0, 8, 2, 8, 8, 8, 8, 8, 2, 0, 8, 0], [0, 8, 0, 8, 2, 0, 0, 0, 0, 0, 2, 8, 0, 8], [8, 8, 8, 8, 2, 8, 8, 8, 8, 8, 2, 0, 8, 0]]}, {"input": [[3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 0, 3, 0, 3], [3, 0, 3, 0, 3, 3, 3, 0, 3, 0, 3, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 3, 0, 0, 3, 3, 0, 3, 0, 3, 3, 0, 0], [3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3], [3, 0, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 0, 3, 3], [0, 0, 3, 0, 3, 0, 3, 0, 3, 0, 0, 3, 3, 3, 0], [3, 0, 0, 3, 3, 3, 0, 0, 3, 0, 3, 3, 0, 0, 3], [3, 0, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 3], [3, 0, 0, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0], [3, 0, 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 0, 3, 3], [3, 0, 3, 3, 3, 0, 3, 0, 0, 3, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 3, 0, 0, 3, 0, 3, 3, 0, 3, 3, 3, 3, 0], [3, 0, 0, 3, 0, 3, 3, 0, 3, 0, 3, 3, 0, 0, 3], [3, 0, 0, 3, 3, 3, 3, 3, 0, 3, 3, 0, 0, 3, 3], [0, 0, 3, 3, 0, 3, 3, 0, 0, 3, 0, 3, 0, 3, 0]], "output": [[3, 2, 3, 3, 3, 3, 3, 0, 3, 3, 3, 0, 3, 0, 3], [3, 2, 3, 0, 3, 3, 3, 0, 3, 0, 3, 0, 0, 3, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [3, 2, 0, 3, 0, 0, 3, 3, 0, 3, 0, 3, 3, 0, 0], [3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3], [3, 2, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 0, 3, 3], [0, 2, 3, 0, 3, 0, 3, 0, 3, 0, 0, 3, 3, 3, 0], [3, 2, 0, 3, 3, 3, 0, 0, 3, 0, 3, 3, 0, 0, 3], [3, 2, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 3], [3, 2, 0, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0], [3, 2, 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 0, 3, 3], [3, 2, 3, 3, 3, 0, 3, 0, 0, 3, 0, 3, 3, 3, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [3, 2, 3, 0, 0, 3, 0, 3, 3, 0, 3, 3, 3, 3, 0], [3, 2, 0, 3, 0, 3, 3, 0, 3, 0, 3, 3, 0, 0, 3], [3, 2, 0, 3, 3, 3, 3, 3, 0, 3, 3, 0, 0, 3, 3], [0, 2, 3, 3, 0, 3, 3, 0, 0, 3, 0, 3, 0, 3, 0]]}], "test": [{"input": [[4, 0, 4, 0, 4, 4, 0, 0, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 0, 4, 0, 0], [4, 4, 4, 0, 0, 4, 0, 4, 4, 0, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 0], [4, 4, 0, 4, 4, 4, 0, 0, 0, 0, 4, 4, 4, 4, 0, 4, 4, 4, 0, 4, 4, 0, 4, 4, 4], [4, 4, 4, 0, 4, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 0, 4, 0, 4, 0, 4], [4, 0, 0, 4, 0, 4, 0, 4, 4, 4, 4, 4, 4, 0, 4, 0, 4, 4, 4, 0, 4, 0, 4, 4, 4], [4, 4, 4, 4, 4, 0, 0, 4, 0, 4, 0, 0, 4, 4, 0, 0, 4, 4, 4, 0, 0, 0, 0, 4, 0], [0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 0, 4, 0, 4, 0, 0, 4, 0, 4], [4, 4, 4, 0, 4, 4, 0, 0, 4, 4, 4, 4, 4, 0, 0, 4, 0, 4, 4, 4, 0, 0, 4, 4, 4], [4, 0, 4, 4, 4, 0, 0, 4, 0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 0, 0, 0, 4], [4, 4, 0, 4, 0, 0, 0, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 0, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 4, 4, 0, 0, 4, 4, 4, 4, 0, 0, 4, 4], [4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 0, 4, 0, 4, 4, 0, 4, 4, 4, 4, 0, 4, 4, 4], [4, 4, 4, 4, 4, 0, 0, 4, 0, 4, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 4, 0, 4], [0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 0, 4, 4, 0, 4, 4, 4, 0, 4, 4, 0], [0, 4, 4, 4, 4, 0, 0, 4, 4, 4, 0, 4, 0, 4, 0, 4, 4, 4, 4, 4, 4, 0, 0, 4, 4], [4, 4, 4, 0, 4, 4, 0, 0, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [4, 4, 0, 4, 4, 4, 0, 4, 4, 0, 4, 4, 4, 0, 4, 4, 4, 0, 4, 4, 0, 0, 0, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 0, 4, 0, 4, 0, 4, 4, 4, 0, 0, 0, 0, 4, 0, 4, 4, 4, 0, 4, 4, 4], [0, 4, 4, 4, 4, 4, 0, 4, 0, 4, 0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 4, 0, 4, 4, 4], [4, 4, 4, 4, 4, 4, 0, 4, 4, 0, 0, 0, 0, 4, 4, 4, 0, 0, 4, 4, 4, 0, 4, 4, 0], [4, 0, 4, 0, 4, 4, 0, 4, 0, 0, 0, 4, 4, 4, 4, 4, 0, 4, 0, 4, 4, 0, 0, 4, 0], [4, 4, 0, 4, 0, 4, 0, 0, 4, 0, 4, 4, 0, 4, 4, 0, 0, 0, 4, 0, 4, 0, 4, 4, 4], [4, 0, 0, 4, 4, 4, 0, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 0, 0, 0, 4, 4, 4]], "output": [[4, 0, 4, 0, 4, 4, 2, 0, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 2, 4, 0, 0], [4, 4, 4, 0, 0, 4, 2, 4, 4, 0, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 2, 4, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [4, 0, 4, 4, 4, 0, 2, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 2, 4, 4, 0], [4, 4, 0, 4, 4, 4, 2, 0, 0, 0, 4, 4, 4, 4, 0, 4, 4, 4, 0, 4, 4, 2, 4, 4, 4], [4, 4, 4, 0, 4, 4, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 0, 4, 2, 4, 0, 4], [4, 0, 0, 4, 0, 4, 2, 4, 4, 4, 4, 4, 4, 0, 4, 0, 4, 4, 4, 0, 4, 2, 4, 4, 4], [4, 4, 4, 4, 4, 0, 2, 4, 0, 4, 0, 0, 4, 4, 0, 0, 4, 4, 4, 0, 0, 2, 0, 4, 0], [0, 4, 4, 0, 4, 4, 2, 4, 4, 0, 4, 4, 0, 4, 4, 0, 0, 4, 0, 4, 0, 2, 4, 0, 4], [4, 4, 4, 0, 4, 4, 2, 0, 4, 4, 4, 4, 4, 0, 0, 4, 0, 4, 4, 4, 0, 2, 4, 4, 4], [4, 0, 4, 4, 4, 0, 2, 4, 0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 2, 0, 0, 4], [4, 4, 0, 4, 0, 0, 2, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 2, 4, 4, 4], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 4, 4, 0, 0, 0, 2, 0, 4, 4, 4, 4, 0, 4, 4, 0, 0, 4, 4, 4, 4, 2, 0, 4, 4], [4, 4, 4, 4, 4, 4, 2, 4, 4, 4, 4, 0, 4, 0, 4, 4, 0, 4, 4, 4, 4, 2, 4, 4, 4], [4, 4, 4, 4, 4, 0, 2, 4, 0, 4, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 0, 2, 4, 0, 4], [0, 4, 4, 4, 4, 4, 2, 4, 4, 4, 4, 4, 0, 4, 0, 4, 4, 0, 4, 4, 4, 2, 4, 4, 0], [0, 4, 4, 4, 4, 0, 2, 4, 4, 4, 0, 4, 0, 4, 0, 4, 4, 4, 4, 4, 4, 2, 0, 4, 4], [4, 4, 4, 0, 4, 4, 2, 0, 4, 0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 0, 0, 0], [4, 4, 0, 4, 4, 4, 2, 4, 4, 0, 4, 4, 4, 0, 4, 4, 4, 0, 4, 4, 0, 2, 0, 4, 4], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [4, 4, 4, 4, 0, 4, 2, 4, 0, 4, 4, 4, 0, 0, 0, 0, 4, 0, 4, 4, 4, 2, 4, 4, 4], [0, 4, 4, 4, 4, 4, 2, 4, 0, 4, 0, 4, 4, 0, 4, 4, 0, 4, 4, 0, 4, 2, 4, 4, 4], [4, 4, 4, 4, 4, 4, 2, 4, 4, 0, 0, 0, 0, 4, 4, 4, 0, 0, 4, 4, 4, 2, 4, 4, 0], [4, 0, 4, 0, 4, 4, 2, 4, 0, 0, 0, 4, 4, 4, 4, 4, 0, 4, 0, 4, 4, 2, 0, 4, 0], [4, 4, 0, 4, 0, 4, 2, 0, 4, 0, 4, 4, 0, 4, 4, 0, 0, 0, 4, 0, 4, 2, 4, 4, 4], [4, 0, 0, 4, 4, 4, 2, 4, 0, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 0, 0, 2, 4, 4, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/c3e719e8.json b/data/arc-agi/training/c3e719e8.json
deleted file mode 100644
index e5df109..0000000
--- a/data/arc-agi/training/c3e719e8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 8, 7], [9, 3, 8], [7, 9, 3]], "output": [[3, 8, 7, 0, 0, 0, 0, 0, 0], [9, 3, 8, 0, 0, 0, 0, 0, 0], [7, 9, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 8, 7, 0, 0, 0], [0, 0, 0, 9, 3, 8, 0, 0, 0], [0, 0, 0, 7, 9, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 8, 7], [0, 0, 0, 0, 0, 0, 9, 3, 8], [0, 0, 0, 0, 0, 0, 7, 9, 3]]}, {"input": [[8, 6, 8], [3, 3, 8], [8, 8, 8]], "output": [[8, 6, 8, 0, 0, 0, 8, 6, 8], [3, 3, 8, 0, 0, 0, 3, 3, 8], [8, 8, 8, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 8, 6, 8], [0, 0, 0, 0, 0, 0, 3, 3, 8], [0, 0, 0, 0, 0, 0, 8, 8, 8], [8, 6, 8, 8, 6, 8, 8, 6, 8], [3, 3, 8, 3, 3, 8, 3, 3, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8]]}, {"input": [[6, 9, 9], [4, 6, 8], [9, 9, 8]], "output": [[0, 0, 0, 6, 9, 9, 6, 9, 9], [0, 0, 0, 4, 6, 8, 4, 6, 8], [0, 0, 0, 9, 9, 8, 9, 9, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 9, 9, 6, 9, 9, 0, 0, 0], [4, 6, 8, 4, 6, 8, 0, 0, 0], [9, 9, 8, 9, 9, 8, 0, 0, 0]]}], "test": [{"input": [[1, 1, 7], [7, 4, 1], [5, 1, 7]], "output": [[1, 1, 7, 1, 1, 7, 0, 0, 0], [7, 4, 1, 7, 4, 1, 0, 0, 0], [5, 1, 7, 5, 1, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 7], [0, 0, 0, 0, 0, 0, 7, 4, 1], [0, 0, 0, 0, 0, 0, 5, 1, 7], [0, 0, 0, 1, 1, 7, 0, 0, 0], [0, 0, 0, 7, 4, 1, 0, 0, 0], [0, 0, 0, 5, 1, 7, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/c3f564a4.json b/data/arc-agi/training/c3f564a4.json
deleted file mode 100644
index 819664b..0000000
--- a/data/arc-agi/training/c3f564a4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[1, 2, 3, 4, 5, 6, 7, 0, 0, 0, 3, 4, 5, 6, 7, 8], [2, 3, 4, 5, 6, 7, 8, 0, 0, 0, 4, 5, 6, 7, 8, 1], [3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2], [4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [5, 6, 0, 0, 0, 0, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4], [6, 7, 0, 0, 0, 0, 0, 0, 0, 7, 8, 1, 2, 3, 4, 5], [7, 8, 0, 0, 0, 0, 0, 0, 0, 8, 1, 2, 3, 4, 5, 6], [8, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7], [1, 2, 3, 4, 5, 0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 8], [2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1], [3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2], [4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [5, 6, 7, 8, 1, 2, 3, 0, 0, 6, 7, 8, 1, 2, 3, 4], [6, 7, 8, 1, 2, 3, 4, 0, 0, 7, 8, 1, 2, 3, 4, 5], [7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6], [8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7]], "output": [[1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8], [2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1], [3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2], [4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5], [7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6], [8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7], [1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8], [2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1], [3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2], [4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3], [5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4], [6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5], [7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6], [8, 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7]]}], "train": [{"input": [[1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1], [2, 0, 0, 0, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2], [3, 0, 0, 0, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3], [4, 0, 0, 0, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4], [5, 0, 0, 0, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5], [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 0, 0, 5, 1], [2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 0, 0, 1, 2], [3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3], [4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4], [5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 0, 0, 0, 0, 4, 5], [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 0, 0, 0, 0, 5, 1], [2, 3, 4, 5, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2], [3, 4, 5, 1, 2, 3, 0, 0, 0, 0, 3, 4, 5, 1, 2, 3], [4, 5, 1, 2, 3, 4, 0, 0, 0, 0, 4, 5, 1, 2, 3, 4], [5, 1, 2, 3, 4, 5, 0, 0, 0, 0, 5, 1, 2, 3, 4, 5], [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1]], "output": [[1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1], [2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2], [3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3], [4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4], [5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5], [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1], [2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2], [3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3], [4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4], [5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5], [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1], [2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2], [3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3], [4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4], [5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5], [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1]]}, {"input": [[1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4], [2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5], [3, 4, 5, 6, 1, 2, 0, 0, 5, 6, 1, 2, 3, 4, 5, 6], [4, 5, 6, 1, 2, 0, 0, 0, 6, 1, 2, 3, 4, 5, 6, 1], [5, 6, 1, 2, 3, 0, 0, 0, 1, 2, 3, 4, 5, 6, 1, 2], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [1, 2, 3, 4, 5, 6, 1, 2, 0, 0, 0, 6, 1, 2, 3, 4], [2, 3, 4, 5, 6, 1, 2, 3, 0, 0, 0, 0, 2, 3, 4, 5], [3, 4, 5, 6, 1, 2, 3, 4, 0, 0, 0, 0, 3, 4, 5, 6], [0, 0, 0, 0, 2, 3, 4, 5, 0, 0, 0, 0, 4, 5, 6, 1], [0, 0, 0, 0, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2], [0, 0, 0, 0, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [0, 0, 0, 0, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4], [2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5], [3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6], [4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1]], "output": [[1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4], [2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5], [3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6], [4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1], [5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4], [2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5], [3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6], [4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1], [5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2], [6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3], [1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4], [2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5], [3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6], [4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1]]}, {"input": [[1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2], [2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3], [3, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5], [5, 0, 0, 0, 0, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6], [6, 0, 0, 0, 0, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7], [7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1], [1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2], [2, 0, 0, 0, 0, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3], [3, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 0, 0, 4, 5], [5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 0, 0, 5, 6], [6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 0, 0, 0, 0, 7], [7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 0, 0, 0, 0, 1], [1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 0, 0, 0, 0, 2], [2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3]], "output": [[1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2], [2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3], [3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5], [5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6], [6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7], [7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1], [1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2], [2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3], [3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4], [4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5], [5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6], [6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7], [7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1], [1, 2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2], [2, 3, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 1, 2, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/c444b776.json b/data/arc-agi/training/c444b776.json
deleted file mode 100644
index 36887df..0000000
--- a/data/arc-agi/training/c444b776.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 3, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 7, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 4, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 4, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 3, 0, 0, 0, 4, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 7, 0, 0, 0, 0, 4, 0, 0, 0, 8, 7, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 3, 0, 4, 0, 0, 0, 0, 8, 0, 0, 3, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 4, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 4, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 3, 0, 0, 0, 4, 0, 3, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 7, 0, 0, 0, 0, 4, 0, 0, 0, 8, 7, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 3, 0, 4, 0, 0, 0, 0, 8, 0, 0, 3, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 4, 0, 7, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 2, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 2, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 2, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 6, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 6, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 3, 0, 0, 0, 0, 0, 2, 0, 4, 0, 3, 0, 0, 0, 0, 0, 2, 0, 4, 0, 3, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 4, 0, 0, 6, 0, 0, 0, 0, 0, 0, 4, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 4, 0, 0, 0, 0, 0, 0, 6, 0, 0, 4, 0, 0, 0, 0, 0, 0, 6, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 0, 0, 2, 0, 4, 0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 3, 0, 0, 0, 0, 0, 2, 0, 4, 0, 3, 0, 0, 0, 0, 0, 2, 0, 4, 0, 3, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 4, 0, 0, 6, 0, 0, 0, 0, 0, 0, 4, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 4, 0, 0, 0, 0, 0, 0, 6, 0, 0, 4, 0, 0, 0, 0, 0, 0, 6, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/c59eb873.json b/data/arc-agi/training/c59eb873.json
deleted file mode 100644
index 900c131..0000000
--- a/data/arc-agi/training/c59eb873.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 5, 1], [5, 5, 5], [2, 5, 0]], "output": [[0, 0, 5, 5, 1, 1], [0, 0, 5, 5, 1, 1], [5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5], [2, 2, 5, 5, 0, 0], [2, 2, 5, 5, 0, 0]]}, {"input": [[2, 1], [3, 1]], "output": [[2, 2, 1, 1], [2, 2, 1, 1], [3, 3, 1, 1], [3, 3, 1, 1]]}, {"input": [[2, 0, 3, 0], [2, 1, 3, 0], [0, 0, 3, 3], [0, 0, 3, 5]], "output": [[2, 2, 0, 0, 3, 3, 0, 0], [2, 2, 0, 0, 3, 3, 0, 0], [2, 2, 1, 1, 3, 3, 0, 0], [2, 2, 1, 1, 3, 3, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 0, 3, 3, 3, 3], [0, 0, 0, 0, 3, 3, 5, 5], [0, 0, 0, 0, 3, 3, 5, 5]]}], "test": [{"input": [[2, 0, 0, 7, 8], [2, 1, 1, 0, 0], [0, 5, 6, 6, 0], [3, 5, 6, 0, 0], [0, 5, 0, 0, 0]], "output": [[2, 2, 0, 0, 0, 0, 7, 7, 8, 8], [2, 2, 0, 0, 0, 0, 7, 7, 8, 8], [2, 2, 1, 1, 1, 1, 0, 0, 0, 0], [2, 2, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 5, 5, 6, 6, 6, 6, 0, 0], [0, 0, 5, 5, 6, 6, 6, 6, 0, 0], [3, 3, 5, 5, 6, 6, 0, 0, 0, 0], [3, 3, 5, 5, 6, 6, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/c8cbb738.json b/data/arc-agi/training/c8cbb738.json
deleted file mode 100644
index d64eb6f..0000000
--- a/data/arc-agi/training/c8cbb738.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 1, 3, 3, 3, 1, 4, 3, 4, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 1, 3, 2, 3, 3, 3, 2], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [8, 3, 3, 3, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [8, 3, 3, 3, 8, 3, 2, 3, 3, 3, 2], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]], "output": [[2, 4, 1, 4, 2], [8, 3, 3, 3, 8], [1, 3, 3, 3, 1], [8, 3, 3, 3, 8], [2, 4, 1, 4, 2]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1], [1, 8, 1, 8, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1], [1, 8, 1, 8, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 3, 1, 1, 1], [1, 1, 1, 3, 1, 3, 1, 1], [1, 1, 1, 1, 3, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1]], "output": [[8, 3, 8], [3, 1, 3], [8, 3, 8]]}, {"input": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 1, 4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 1, 4, 4, 4, 1, 4, 4, 7, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 7, 4, 4, 4, 7, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 7, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[1, 4, 7, 4, 1], [4, 4, 4, 4, 4], [7, 4, 4, 4, 7], [4, 4, 4, 4, 4], [1, 4, 7, 4, 1]]}], "test": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2, 8, 8, 8, 8, 8, 2, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 2, 8, 8, 8, 8, 8, 2, 8], [8, 8, 8, 3, 8, 8, 8, 8, 8, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 6, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 8, 8, 8, 8, 8, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 6, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[3, 8, 6, 1, 6, 8, 3], [8, 8, 8, 8, 8, 8, 8], [2, 8, 8, 8, 8, 8, 2], [1, 8, 8, 8, 8, 8, 1], [2, 8, 8, 8, 8, 8, 2], [8, 8, 8, 8, 8, 8, 8], [3, 8, 6, 1, 6, 8, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/c8f0f002.json b/data/arc-agi/training/c8f0f002.json
deleted file mode 100644
index 4f5a9a8..0000000
--- a/data/arc-agi/training/c8f0f002.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[1, 7, 7, 1, 7], [8, 1, 7, 7, 7], [8, 7, 1, 7, 8]], "output": [[1, 5, 5, 1, 5], [8, 1, 5, 5, 5], [8, 5, 1, 5, 8]]}], "train": [{"input": [[1, 8, 8, 7, 7, 8], [1, 1, 7, 7, 1, 8], [7, 1, 1, 7, 7, 8]], "output": [[1, 8, 8, 5, 5, 8], [1, 1, 5, 5, 1, 8], [5, 1, 1, 5, 5, 8]]}, {"input": [[7, 7, 7, 1], [1, 8, 1, 7], [7, 1, 1, 7]], "output": [[5, 5, 5, 1], [1, 8, 1, 5], [5, 1, 1, 5]]}, {"input": [[1, 8, 1, 7, 1], [7, 8, 8, 1, 1], [7, 1, 8, 8, 7]], "output": [[1, 8, 1, 5, 1], [5, 8, 8, 1, 1], [5, 1, 8, 8, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/c909285e.json b/data/arc-agi/training/c909285e.json
deleted file mode 100644
index e22b604..0000000
--- a/data/arc-agi/training/c909285e.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 2, 4, 8, 5, 0, 4, 2, 8, 0, 5, 0, 0, 2, 4, 0, 5, 0, 4, 2, 0, 0, 5], [0, 0, 2, 4, 8, 5, 0, 4, 2, 8, 0, 5, 0, 0, 2, 4, 0, 5, 0, 4, 2, 0, 0, 5], [2, 2, 2, 4, 2, 5, 2, 4, 2, 2, 2, 5, 2, 2, 2, 4, 2, 5, 2, 4, 2, 2, 2, 5], [4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 5], [8, 8, 2, 4, 8, 5, 8, 4, 2, 8, 8, 5, 8, 8, 2, 4, 8, 5, 8, 4, 2, 8, 8, 5], [5, 5, 5, 5, 5, 3, 3, 3, 3, 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 2, 4, 8, 3, 0, 4, 2, 8, 0, 3, 0, 0, 2, 4, 0, 5, 0, 4, 2, 0, 0, 5], [4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 5], [2, 2, 2, 4, 2, 3, 2, 4, 2, 2, 2, 3, 2, 2, 2, 4, 2, 5, 2, 4, 2, 2, 2, 5], [8, 8, 2, 4, 8, 3, 8, 4, 2, 8, 8, 3, 8, 8, 2, 4, 8, 5, 8, 4, 2, 8, 8, 5], [0, 0, 2, 4, 8, 3, 0, 4, 2, 8, 0, 3, 0, 0, 2, 4, 0, 5, 0, 4, 2, 0, 0, 5], [5, 5, 5, 5, 5, 3, 3, 3, 3, 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 2, 4, 8, 5, 0, 4, 2, 8, 0, 5, 0, 0, 2, 4, 0, 5, 0, 4, 2, 0, 0, 5], [0, 0, 2, 4, 8, 5, 0, 4, 2, 8, 0, 5, 0, 0, 2, 4, 0, 5, 0, 4, 2, 0, 0, 5], [2, 2, 2, 4, 2, 5, 2, 4, 2, 2, 2, 5, 2, 2, 2, 4, 2, 5, 2, 4, 2, 2, 2, 5], [4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 5], [0, 0, 2, 4, 8, 5, 0, 4, 2, 8, 0, 5, 0, 0, 2, 4, 0, 5, 0, 4, 2, 0, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 2, 4, 8, 5, 0, 4, 2, 8, 0, 5, 0, 0, 2, 4, 0, 5, 0, 4, 2, 0, 0, 5], [4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 5, 4, 4, 4, 4, 4, 5], [2, 2, 2, 4, 2, 5, 2, 4, 2, 2, 2, 5, 2, 2, 2, 4, 2, 5, 2, 4, 2, 2, 2, 5], [0, 0, 2, 4, 8, 5, 0, 4, 2, 8, 0, 5, 0, 0, 2, 4, 0, 5, 0, 4, 2, 0, 0, 5], [0, 0, 2, 4, 8, 5, 0, 4, 2, 8, 0, 5, 0, 0, 2, 4, 0, 5, 0, 4, 2, 0, 0, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]], "output": [[3, 3, 3, 3, 3, 3, 3], [3, 0, 4, 2, 8, 0, 3], [3, 4, 4, 4, 4, 4, 3], [3, 2, 4, 2, 2, 2, 3], [3, 8, 4, 2, 8, 8, 3], [3, 0, 4, 2, 8, 0, 3], [3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 8, 3, 1, 8, 0, 3, 8, 1, 0, 8, 0, 0, 8, 3, 0, 8, 0, 3, 8, 0, 0, 8, 1, 0], [0, 0, 8, 3, 1, 8, 0, 3, 8, 1, 0, 8, 0, 0, 8, 3, 0, 8, 0, 3, 8, 0, 0, 8, 1, 0], [8, 8, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [3, 3, 2, 3, 3, 8, 3, 3, 2, 3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3], [1, 1, 2, 3, 1, 8, 1, 3, 2, 1, 1, 8, 1, 1, 8, 3, 1, 8, 1, 3, 8, 1, 1, 8, 1, 1], [8, 8, 2, 8, 8, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 2, 3, 1, 8, 0, 3, 2, 1, 0, 8, 0, 0, 8, 3, 0, 8, 0, 3, 8, 0, 0, 8, 1, 0], [3, 3, 2, 3, 3, 8, 3, 3, 2, 3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3], [8, 8, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 8, 3, 1, 8, 1, 3, 8, 1, 1, 8, 1, 1, 8, 3, 1, 8, 1, 3, 8, 1, 1, 8, 1, 1], [0, 0, 8, 3, 1, 8, 0, 3, 8, 1, 0, 8, 0, 0, 8, 3, 0, 8, 0, 3, 8, 0, 0, 8, 1, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 3, 1, 8, 0, 3, 8, 1, 0, 8, 0, 0, 8, 3, 0, 8, 0, 3, 8, 0, 0, 8, 1, 0], [0, 0, 8, 3, 1, 8, 0, 3, 8, 1, 0, 8, 0, 0, 8, 3, 0, 8, 0, 3, 8, 0, 0, 8, 1, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3], [0, 0, 8, 3, 1, 8, 0, 3, 8, 1, 0, 8, 0, 0, 8, 3, 0, 8, 0, 3, 8, 0, 0, 8, 1, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 3, 1, 8, 0, 3, 8, 1, 0, 8, 0, 0, 8, 3, 0, 8, 0, 3, 8, 0, 0, 8, 1, 0], [3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3, 8, 3, 3], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 8, 3, 1, 8, 0, 3, 8, 1, 0, 8, 0, 0, 8, 3, 0, 8, 0, 3, 8, 0, 0, 8, 1, 0], [0, 0, 8, 3, 1, 8, 0, 3, 8, 1, 0, 8, 0, 0, 8, 3, 0, 8, 0, 3, 8, 0, 0, 8, 1, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 8, 3, 1, 8, 1, 3, 8, 1, 1, 8, 1, 1, 8, 3, 1, 8, 1, 3, 8, 1, 1, 8, 1, 1], [0, 0, 8, 3, 1, 8, 0, 3, 8, 1, 0, 8, 0, 0, 8, 3, 0, 8, 0, 3, 8, 0, 0, 8, 1, 0]], "output": [[2, 2, 2, 2, 2, 2, 2], [2, 3, 3, 8, 3, 3, 2], [2, 3, 1, 8, 1, 3, 2], [2, 8, 8, 8, 8, 8, 2], [2, 3, 1, 8, 0, 3, 2], [2, 3, 3, 8, 3, 3, 2], [2, 2, 2, 2, 2, 2, 2]]}, {"input": [[0, 0, 3, 1, 8, 5, 0, 1, 3, 8, 0, 5, 0, 0, 3, 1, 0, 5, 0, 8, 3, 0, 0, 5, 8, 0, 3, 1], [0, 0, 3, 1, 8, 5, 0, 1, 3, 8, 0, 5, 0, 0, 3, 1, 0, 5, 0, 8, 3, 0, 0, 5, 8, 0, 3, 1], [3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3], [1, 1, 3, 1, 8, 5, 1, 1, 3, 8, 1, 5, 1, 1, 3, 1, 1, 5, 1, 8, 3, 1, 1, 5, 8, 1, 3, 1], [8, 8, 3, 8, 8, 5, 8, 8, 3, 8, 8, 5, 8, 8, 3, 8, 8, 5, 8, 8, 3, 8, 8, 5, 8, 8, 3, 8], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 3, 1, 8, 5, 0, 1, 3, 8, 0, 5, 0, 0, 3, 1, 0, 5, 0, 8, 3, 0, 0, 5, 8, 0, 3, 1], [1, 1, 3, 1, 8, 5, 1, 1, 3, 8, 1, 5, 1, 1, 3, 1, 1, 5, 1, 8, 3, 1, 1, 5, 8, 1, 3, 1], [3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3], [8, 8, 3, 8, 8, 5, 8, 8, 3, 8, 8, 5, 8, 8, 3, 8, 8, 5, 8, 8, 3, 8, 8, 5, 8, 8, 3, 8], [0, 0, 3, 1, 8, 5, 0, 1, 3, 8, 0, 5, 0, 0, 3, 1, 0, 5, 0, 8, 3, 0, 0, 5, 8, 0, 3, 1], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 3, 1, 8, 5, 0, 1, 3, 8, 0, 5, 0, 0, 3, 1, 0, 5, 0, 8, 3, 0, 0, 5, 8, 0, 3, 1], [0, 0, 3, 1, 8, 5, 0, 1, 3, 8, 0, 5, 0, 0, 3, 1, 0, 5, 0, 8, 3, 0, 0, 5, 8, 0, 3, 1], [3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3], [1, 1, 3, 1, 8, 5, 1, 1, 3, 8, 1, 5, 1, 1, 3, 1, 1, 5, 1, 8, 3, 1, 1, 5, 8, 1, 3, 1], [0, 0, 3, 1, 8, 5, 0, 1, 3, 8, 0, 5, 0, 0, 3, 1, 0, 5, 0, 8, 3, 0, 0, 5, 8, 0, 3, 1], [5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 3, 1, 8, 6, 0, 1, 3, 8, 0, 6, 0, 0, 3, 1, 0, 5, 0, 8, 3, 0, 0, 5, 8, 0, 3, 1], [8, 8, 3, 8, 8, 6, 8, 8, 3, 8, 8, 6, 8, 8, 3, 8, 8, 5, 8, 8, 3, 8, 8, 5, 8, 8, 3, 8], [3, 3, 3, 3, 3, 6, 3, 3, 3, 3, 3, 6, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3], [0, 0, 3, 1, 8, 6, 0, 1, 3, 8, 0, 6, 0, 0, 3, 1, 0, 5, 0, 8, 3, 0, 0, 5, 8, 0, 3, 1], [0, 0, 3, 1, 8, 6, 0, 1, 3, 8, 0, 6, 0, 0, 3, 1, 0, 5, 0, 8, 3, 0, 0, 5, 8, 0, 3, 1], [5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [8, 8, 3, 8, 8, 5, 8, 8, 3, 8, 8, 5, 8, 8, 3, 8, 8, 5, 8, 8, 3, 8, 8, 5, 8, 8, 3, 8], [0, 0, 3, 1, 8, 5, 0, 1, 3, 8, 0, 5, 0, 0, 3, 1, 0, 5, 0, 8, 3, 0, 0, 5, 8, 0, 3, 1], [3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3], [1, 1, 3, 1, 8, 5, 1, 1, 3, 8, 1, 5, 1, 1, 3, 1, 1, 5, 1, 8, 3, 1, 1, 5, 8, 1, 3, 1]], "output": [[6, 6, 6, 6, 6, 6, 6], [6, 0, 1, 3, 8, 0, 6], [6, 8, 8, 3, 8, 8, 6], [6, 3, 3, 3, 3, 3, 6], [6, 0, 1, 3, 8, 0, 6], [6, 0, 1, 3, 8, 0, 6], [6, 6, 6, 6, 6, 6, 6]]}], "test": [{"input": [[0, 0, 1, 2, 3, 4, 0, 2, 1, 3, 0, 4, 0, 0, 3, 2, 0, 4, 0, 3, 1, 0, 0, 4], [0, 0, 1, 2, 3, 4, 0, 2, 1, 3, 0, 4, 0, 0, 3, 2, 0, 4, 0, 3, 1, 0, 0, 4], [1, 1, 1, 2, 3, 4, 1, 2, 1, 3, 1, 4, 1, 1, 3, 2, 1, 4, 1, 3, 1, 1, 1, 4], [2, 2, 2, 2, 3, 4, 2, 2, 2, 3, 2, 4, 2, 2, 3, 2, 2, 4, 2, 3, 2, 2, 2, 4], [3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 1, 2, 3, 4, 0, 2, 1, 3, 0, 4, 0, 0, 3, 2, 0, 4, 0, 3, 1, 0, 0, 4], [2, 2, 2, 2, 3, 4, 2, 2, 2, 3, 2, 4, 2, 2, 3, 2, 2, 4, 2, 3, 2, 2, 2, 4], [1, 1, 1, 2, 3, 4, 1, 2, 1, 3, 1, 4, 1, 1, 3, 2, 1, 4, 1, 3, 1, 1, 1, 4], [3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 4], [0, 0, 1, 2, 3, 4, 0, 2, 1, 3, 0, 4, 0, 0, 3, 2, 0, 4, 0, 3, 1, 0, 0, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 1, 2, 3, 4, 0, 2, 1, 3, 0, 4, 0, 0, 3, 2, 0, 4, 0, 3, 1, 0, 0, 4], [0, 0, 1, 2, 3, 4, 0, 2, 1, 3, 0, 4, 0, 0, 3, 2, 0, 4, 0, 3, 1, 0, 0, 4], [3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 4, 3, 3, 8, 8, 8, 8, 8, 8, 3, 3, 3, 4], [2, 2, 2, 2, 3, 4, 2, 2, 2, 3, 2, 4, 2, 2, 8, 2, 2, 4, 2, 8, 2, 2, 2, 4], [0, 0, 1, 2, 3, 4, 0, 2, 1, 3, 0, 4, 0, 0, 8, 2, 0, 4, 0, 8, 1, 0, 0, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 4, 4, 4, 4, 8, 4, 4, 4, 4], [0, 0, 1, 2, 3, 4, 0, 2, 1, 3, 0, 4, 0, 0, 8, 2, 0, 4, 0, 8, 1, 0, 0, 4], [3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 4, 3, 3, 8, 8, 8, 8, 8, 8, 3, 3, 3, 4], [1, 1, 1, 2, 3, 4, 1, 2, 1, 3, 1, 4, 1, 1, 3, 2, 1, 4, 1, 3, 1, 1, 1, 4], [0, 0, 1, 2, 3, 4, 0, 2, 1, 3, 0, 4, 0, 0, 3, 2, 0, 4, 0, 3, 1, 0, 0, 4], [0, 0, 1, 2, 3, 4, 0, 2, 1, 3, 0, 4, 0, 0, 3, 2, 0, 4, 0, 3, 1, 0, 0, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[8, 8, 8, 8, 8, 8], [8, 2, 2, 4, 2, 8], [8, 2, 0, 4, 0, 8], [8, 4, 4, 4, 4, 8], [8, 2, 0, 4, 0, 8], [8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/c9e6f938.json b/data/arc-agi/training/c9e6f938.json
deleted file mode 100644
index c03910f..0000000
--- a/data/arc-agi/training/c9e6f938.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[7, 7, 0], [0, 7, 0], [0, 0, 7]], "output": [[7, 7, 0, 0, 7, 7], [0, 7, 0, 0, 7, 0], [0, 0, 7, 7, 0, 0]]}], "train": [{"input": [[0, 7, 0], [0, 0, 7], [0, 7, 7]], "output": [[0, 7, 0, 0, 7, 0], [0, 0, 7, 7, 0, 0], [0, 7, 7, 7, 7, 0]]}, {"input": [[0, 0, 0], [0, 7, 7], [0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [0, 7, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0], [7, 0, 0], [0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/c9f8e694.json b/data/arc-agi/training/c9f8e694.json
deleted file mode 100644
index 3527baf..0000000
--- a/data/arc-agi/training/c9f8e694.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 5, 5, 0, 0, 0, 0, 5, 5, 0, 0], [2, 0, 5, 5, 0, 0, 0, 0, 5, 5, 0, 0], [2, 0, 5, 5, 0, 0, 0, 0, 5, 5, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0], [1, 0, 0, 0, 5, 5, 5, 0, 5, 5, 0, 0], [1, 0, 0, 0, 5, 5, 5, 0, 5, 5, 0, 0], [2, 0, 0, 0, 5, 5, 5, 0, 5, 5, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0], [2, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0], [2, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0], [1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0], [2, 0, 0, 0, 2, 2, 2, 0, 2, 2, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [3, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5], [4, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5], [4, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5], [3, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5], [4, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5], [3, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5], [3, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5], [3, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5], [4, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0], [4, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3], [4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 0, 0, 4, 4, 4, 4, 4], [3, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3], [4, 0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4], [3, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3], [3, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3], [3, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3], [4, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0], [4, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0]]}], "test": [{"input": [[1, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [8, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [1, 0, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [1, 0, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5], [7, 0, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5], [7, 0, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5], [7, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [7, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0], [8, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0], [8, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0, 0], [8, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0, 0], [8, 0, 5, 5, 5, 0, 5, 5, 5, 0, 0, 0]], "output": [[1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [8, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1], [7, 0, 7, 7, 7, 7, 7, 7, 0, 7, 7, 7], [7, 0, 7, 7, 7, 7, 7, 7, 0, 7, 7, 7], [7, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7], [7, 0, 0, 0, 0, 0, 7, 7, 7, 0, 0, 0], [8, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0], [8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0], [8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/caa06a1f.json b/data/arc-agi/training/caa06a1f.json
deleted file mode 100644
index a541cf7..0000000
--- a/data/arc-agi/training/caa06a1f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 3, 3, 3, 3, 3, 3], [5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 3, 3, 3, 3, 3, 3], [8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 3, 3, 3, 3, 3, 3], [5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 3, 3, 3, 3, 3, 3], [8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 3, 3, 3, 3, 3, 3], [5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 3, 3, 3, 3, 3, 3], [8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 3, 3, 3, 3, 3, 3], [5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 3, 3, 3, 3, 3, 3], [8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 3, 3, 3, 3, 3, 3], [5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 3, 3, 3, 3, 3, 3], [8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 3, 3, 3, 3, 3, 3], [5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]], "output": [[5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8], [7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5], [5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8], [7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5], [5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8], [7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5], [5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8], [7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5], [5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8], [7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5], [5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8], [7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5], [5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8], [7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5], [5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8], [7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5], [5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8], [7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5, 7, 8, 5]]}], "train": [{"input": [[6, 7, 6, 7, 6, 7, 6, 3, 3, 3, 3], [7, 6, 7, 6, 7, 6, 7, 3, 3, 3, 3], [6, 7, 6, 7, 6, 7, 6, 3, 3, 3, 3], [7, 6, 7, 6, 7, 6, 7, 3, 3, 3, 3], [6, 7, 6, 7, 6, 7, 6, 3, 3, 3, 3], [7, 6, 7, 6, 7, 6, 7, 3, 3, 3, 3], [6, 7, 6, 7, 6, 7, 6, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]], "output": [[7, 6, 7, 6, 7, 6, 7, 6, 7, 6, 7], [6, 7, 6, 7, 6, 7, 6, 7, 6, 7, 6], [7, 6, 7, 6, 7, 6, 7, 6, 7, 6, 7], [6, 7, 6, 7, 6, 7, 6, 7, 6, 7, 6], [7, 6, 7, 6, 7, 6, 7, 6, 7, 6, 7], [6, 7, 6, 7, 6, 7, 6, 7, 6, 7, 6], [7, 6, 7, 6, 7, 6, 7, 6, 7, 6, 7], [6, 7, 6, 7, 6, 7, 6, 7, 6, 7, 6], [7, 6, 7, 6, 7, 6, 7, 6, 7, 6, 7], [6, 7, 6, 7, 6, 7, 6, 7, 6, 7, 6], [7, 6, 7, 6, 7, 6, 7, 6, 7, 6, 7]]}, {"input": [[6, 3, 6, 3, 6, 3, 6, 1], [3, 6, 3, 6, 3, 6, 3, 1], [6, 3, 6, 3, 6, 3, 6, 1], [3, 6, 3, 6, 3, 6, 3, 1], [6, 3, 6, 3, 6, 3, 6, 1], [3, 6, 3, 6, 3, 6, 3, 1], [6, 3, 6, 3, 6, 3, 6, 1], [1, 1, 1, 1, 1, 1, 1, 1]], "output": [[3, 6, 3, 6, 3, 6, 3, 6], [6, 3, 6, 3, 6, 3, 6, 3], [3, 6, 3, 6, 3, 6, 3, 6], [6, 3, 6, 3, 6, 3, 6, 3], [3, 6, 3, 6, 3, 6, 3, 6], [6, 3, 6, 3, 6, 3, 6, 3], [3, 6, 3, 6, 3, 6, 3, 6], [6, 3, 6, 3, 6, 3, 6, 3]]}, {"input": [[5, 4, 5, 4, 5, 6], [4, 5, 4, 5, 4, 6], [5, 4, 5, 4, 5, 6], [4, 5, 4, 5, 4, 6], [5, 4, 5, 4, 5, 6], [6, 6, 6, 6, 6, 6]], "output": [[4, 5, 4, 5, 4, 5], [5, 4, 5, 4, 5, 4], [4, 5, 4, 5, 4, 5], [5, 4, 5, 4, 5, 4], [4, 5, 4, 5, 4, 5], [5, 4, 5, 4, 5, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/cbded52d.json b/data/arc-agi/training/cbded52d.json
deleted file mode 100644
index cc7a035..0000000
--- a/data/arc-agi/training/cbded52d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 4, 0, 1, 1, 0, 1, 4], [1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1], [2, 1, 0, 1, 1, 0, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0], [1, 4, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1]], "output": [[1, 4, 0, 1, 4, 0, 1, 4], [1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0], [1, 4, 0, 1, 1, 0, 1, 1], [2, 1, 0, 2, 1, 0, 2, 1], [0, 0, 0, 0, 0, 0, 0, 0], [1, 4, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1]]}, {"input": [[1, 1, 0, 7, 1, 0, 1, 1], [1, 3, 0, 1, 1, 0, 1, 3], [0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 7, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 3]], "output": [[1, 1, 0, 7, 1, 0, 1, 1], [1, 3, 0, 1, 3, 0, 1, 3], [0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 7, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 3], [0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 7, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 3]]}, {"input": [[1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1], [3, 1, 0, 1, 1, 0, 3, 1], [0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1]], "output": [[1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1], [3, 1, 0, 3, 1, 0, 3, 1], [0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1]]}], "test": [{"input": [[1, 1, 0, 1, 1, 0, 1, 1], [1, 8, 0, 1, 1, 0, 1, 8], [0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0], [6, 1, 0, 1, 1, 0, 6, 1], [1, 1, 0, 1, 1, 0, 1, 8]], "output": [[1, 1, 0, 1, 1, 0, 1, 1], [1, 8, 0, 1, 8, 0, 1, 8], [0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 0, 1, 8], [0, 0, 0, 0, 0, 0, 0, 0], [6, 1, 0, 6, 1, 0, 6, 1], [1, 1, 0, 1, 1, 0, 1, 8]]}]}
diff --git a/data/arc-agi/training/cce03e0d.json b/data/arc-agi/training/cce03e0d.json
deleted file mode 100644
index 5ebbc7b..0000000
--- a/data/arc-agi/training/cce03e0d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 0, 0], [2, 1, 0], [0, 0, 1]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0], [2, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 1, 2], [1, 1, 0], [2, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 1, 2], [0, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[2, 1, 2], [0, 2, 1], [2, 1, 0]], "output": [[2, 1, 2, 0, 0, 0, 2, 1, 2], [0, 2, 1, 0, 0, 0, 0, 2, 1], [2, 1, 0, 0, 0, 0, 2, 1, 0], [0, 0, 0, 2, 1, 2, 0, 0, 0], [0, 0, 0, 0, 2, 1, 0, 0, 0], [0, 0, 0, 2, 1, 0, 0, 0, 0], [2, 1, 2, 0, 0, 0, 0, 0, 0], [0, 2, 1, 0, 0, 0, 0, 0, 0], [2, 1, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[1, 2, 2], [2, 0, 1], [1, 2, 0]], "output": [[0, 0, 0, 1, 2, 2, 1, 2, 2], [0, 0, 0, 2, 0, 1, 2, 0, 1], [0, 0, 0, 1, 2, 0, 1, 2, 0], [1, 2, 2, 0, 0, 0, 0, 0, 0], [2, 0, 1, 0, 0, 0, 0, 0, 0], [1, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 2, 2, 0, 0, 0], [0, 0, 0, 2, 0, 1, 0, 0, 0], [0, 0, 0, 1, 2, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/cdecee7f.json b/data/arc-agi/training/cdecee7f.json
deleted file mode 100644
index c5b0a89..0000000
--- a/data/arc-agi/training/cdecee7f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 1, 8], [9, 7, 6], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 0, 0, 0, 0, 0], [9, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[9, 3, 4], [5, 8, 6], [2, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 5, 0, 0, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 4, 5], [1, 9, 3], [5, 1, 3]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 9, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 2, 9], [4, 5, 3], [9, 6, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ce22a75a.json b/data/arc-agi/training/ce22a75a.json
deleted file mode 100644
index e2c96f5..0000000
--- a/data/arc-agi/training/ce22a75a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 1, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 1, 1, 1, 1, 1, 1]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 1, 1, 1], [1, 1, 1, 0, 0, 0, 1, 1, 1], [1, 1, 1, 0, 0, 0, 1, 1, 1], [1, 1, 1, 0, 0, 0, 1, 1, 1], [1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ce4f8723.json b/data/arc-agi/training/ce4f8723.json
deleted file mode 100644
index 2dab17a..0000000
--- a/data/arc-agi/training/ce4f8723.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[1, 0, 1, 0], [1, 0, 1, 0], [0, 1, 0, 0], [1, 0, 1, 0], [4, 4, 4, 4], [2, 2, 0, 0], [0, 0, 2, 0], [0, 2, 0, 2], [2, 2, 2, 0]], "output": [[3, 3, 3, 0], [3, 0, 3, 0], [0, 3, 0, 3], [3, 3, 3, 0]]}], "train": [{"input": [[1, 1, 0, 0], [0, 1, 0, 1], [0, 1, 0, 0], [1, 0, 1, 0], [4, 4, 4, 4], [2, 2, 2, 2], [0, 0, 2, 2], [2, 2, 0, 0], [0, 0, 2, 2]], "output": [[3, 3, 3, 3], [0, 3, 3, 3], [3, 3, 0, 0], [3, 0, 3, 3]]}, {"input": [[1, 1, 1, 0], [0, 1, 0, 1], [0, 0, 1, 1], [1, 1, 0, 1], [4, 4, 4, 4], [0, 0, 0, 2], [0, 0, 0, 2], [2, 2, 2, 2], [2, 2, 0, 2]], "output": [[3, 3, 3, 3], [0, 3, 0, 3], [3, 3, 3, 3], [3, 3, 0, 3]]}, {"input": [[1, 1, 0, 0], [1, 0, 1, 0], [1, 1, 0, 1], [1, 1, 1, 1], [4, 4, 4, 4], [2, 2, 0, 2], [0, 0, 2, 0], [0, 2, 0, 0], [2, 0, 2, 0]], "output": [[3, 3, 0, 3], [3, 0, 3, 0], [3, 3, 0, 3], [3, 3, 3, 3]]}, {"input": [[1, 0, 1, 0], [1, 1, 0, 1], [1, 0, 1, 1], [0, 1, 0, 1], [4, 4, 4, 4], [2, 2, 0, 0], [0, 0, 2, 0], [2, 2, 0, 0], [0, 0, 2, 0]], "output": [[3, 3, 3, 0], [3, 3, 3, 3], [3, 3, 3, 3], [0, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ce602527.json b/data/arc-agi/training/ce602527.json
deleted file mode 100644
index 4928d39..0000000
--- a/data/arc-agi/training/ce602527.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 1, 3, 3, 1], [1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 3, 1, 1, 1, 3, 1], [1, 1, 1, 2, 1, 2, 1, 2, 1, 1, 1, 3, 3, 3, 3, 3, 1], [1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1], [1, 1, 1, 2, 1, 2, 1, 2, 1, 1, 1, 3, 3, 3, 3, 3, 1], [1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1], [1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1], [1, 1, 1, 8, 8, 1, 1, 8, 8, 1, 1, 8, 8, 1, 1, 1, 1], [1, 1, 1, 8, 8, 1, 1, 8, 8, 1, 1, 8, 8, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 1, 1, 1, 1], [1, 1, 1, 8, 8, 1, 1, 8, 8, 1, 1, 8, 8, 1, 1, 1, 1], [1, 1, 1, 8, 8, 1, 1, 8, 8, 1, 1, 8, 8, 1, 1, 1, 1]], "output": [[2, 2, 2, 2, 2], [2, 1, 2, 1, 2], [1, 1, 1, 1, 2], [2, 1, 2, 1, 2], [2, 2, 2, 2, 2]]}, {"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 3, 8, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 3, 8, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 8, 8, 8, 8], [8, 6, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 8, 8, 8, 8, 8], [8, 6, 6, 8, 8, 8, 8, 8, 8, 8, 8, 4, 4, 4, 8, 8, 8, 8], [6, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 8, 4, 8, 8, 8, 8, 8], [6, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 6, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 6, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [6, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [6, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 4, 8], [4, 4, 4], [8, 4, 8], [4, 4, 4], [8, 4, 8]]}, {"input": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 8, 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 8, 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 8, 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 3, 2, 3, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2], [1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]], "output": [[8, 8, 8], [8, 2, 2], [8, 8, 8], [2, 2, 8], [8, 8, 8]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 3, 3, 3, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 3, 3, 1, 3, 3, 1, 1, 1, 1], [2, 1, 1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 1, 1, 1, 1, 1], [2, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 3, 3, 3, 1], [3, 3, 1, 3, 3], [1, 3, 3, 3, 1]]}], "test": [{"input": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 1, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 3, 1, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 1, 3, 3, 3, 3, 3], [3, 3, 3, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 6, 6, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 6, 6, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3]], "output": [[3, 6, 3], [6, 6, 6], [3, 6, 3], [6, 6, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ce9e57f2.json b/data/arc-agi/training/ce9e57f2.json
deleted file mode 100644
index a4cd911..0000000
--- a/data/arc-agi/training/ce9e57f2.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 2, 0, 0, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 2, 0, 0, 0], [0, 8, 0, 2, 0, 2, 0, 2, 0], [0, 8, 0, 8, 0, 8, 0, 2, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 2, 0, 0, 0, 2, 0], [0, 2, 0, 2, 0, 0, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 2, 0, 0, 0, 2, 0], [0, 2, 0, 2, 0, 0, 0, 2, 0], [0, 8, 0, 2, 0, 2, 0, 8, 0], [0, 8, 0, 8, 0, 2, 0, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 2, 0, 8, 0], [0, 8, 0, 2, 0, 2, 0, 8, 0], [0, 8, 0, 2, 0, 8, 0, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 2, 0], [0, 2, 0, 2, 0, 0, 0, 2, 0], [0, 2, 0, 2, 0, 0, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0], [0, 8, 0, 2, 0, 0, 0, 2, 0], [0, 8, 0, 8, 0, 0, 0, 2, 0], [0, 8, 0, 8, 0, 0, 0, 2, 0], [0, 8, 0, 8, 0, 2, 0, 8, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/cf98881b.json b/data/arc-agi/training/cf98881b.json
deleted file mode 100644
index 1b0cc45..0000000
--- a/data/arc-agi/training/cf98881b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[0, 0, 4, 0, 2, 9, 0, 9, 0, 2, 1, 1, 0, 0], [4, 4, 0, 4, 2, 9, 9, 9, 0, 2, 1, 1, 1, 0], [0, 0, 0, 0, 2, 0, 9, 9, 9, 2, 1, 1, 0, 1], [0, 4, 4, 0, 2, 9, 0, 9, 9, 2, 1, 0, 0, 0]], "output": [[9, 1, 4, 0], [4, 4, 9, 4], [1, 9, 9, 9], [9, 4, 4, 9]]}], "train": [{"input": [[0, 4, 0, 4, 2, 9, 9, 0, 0, 2, 0, 0, 0, 0], [0, 4, 0, 0, 2, 0, 0, 9, 9, 2, 0, 1, 0, 0], [4, 0, 0, 0, 2, 0, 0, 0, 0, 2, 1, 1, 1, 0], [4, 4, 4, 4, 2, 9, 0, 9, 0, 2, 1, 1, 0, 1]], "output": [[9, 4, 0, 4], [0, 4, 9, 9], [4, 1, 1, 0], [4, 4, 4, 4]]}, {"input": [[4, 4, 4, 4, 2, 9, 0, 9, 0, 2, 0, 0, 0, 1], [4, 4, 0, 0, 2, 9, 9, 0, 0, 2, 1, 0, 0, 0], [4, 0, 4, 4, 2, 0, 0, 0, 9, 2, 0, 1, 0, 1], [0, 0, 0, 0, 2, 0, 0, 9, 0, 2, 1, 0, 1, 0]], "output": [[4, 4, 4, 4], [4, 4, 0, 0], [4, 1, 4, 4], [1, 0, 9, 0]]}, {"input": [[4, 4, 4, 0, 2, 9, 9, 0, 9, 2, 0, 1, 0, 1], [0, 4, 0, 4, 2, 0, 0, 9, 0, 2, 0, 1, 0, 0], [0, 4, 0, 4, 2, 0, 0, 9, 9, 2, 1, 0, 0, 1], [4, 0, 4, 4, 2, 9, 9, 9, 0, 2, 0, 0, 0, 1]], "output": [[4, 4, 4, 9], [0, 4, 9, 4], [1, 4, 9, 4], [4, 9, 4, 4]]}, {"input": [[0, 0, 0, 4, 2, 0, 0, 0, 9, 2, 0, 0, 0, 0], [4, 4, 0, 4, 2, 9, 0, 9, 0, 2, 0, 0, 0, 0], [4, 0, 4, 4, 2, 0, 9, 9, 0, 2, 1, 1, 0, 1], [0, 4, 4, 4, 2, 0, 9, 0, 0, 2, 1, 1, 1, 1]], "output": [[0, 0, 0, 4], [4, 4, 9, 4], [4, 9, 4, 4], [1, 4, 4, 4]]}, {"input": [[4, 0, 4, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 1], [4, 4, 4, 4, 2, 0, 0, 0, 9, 2, 1, 1, 0, 0], [0, 4, 4, 4, 2, 0, 9, 9, 0, 2, 1, 1, 0, 1], [0, 4, 4, 0, 2, 0, 0, 9, 0, 2, 0, 1, 0, 1]], "output": [[4, 0, 4, 1], [4, 4, 4, 4], [1, 4, 4, 4], [0, 4, 4, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d037b0a7.json b/data/arc-agi/training/d037b0a7.json
deleted file mode 100644
index 35e42a1..0000000
--- a/data/arc-agi/training/d037b0a7.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 6], [0, 4, 0], [3, 0, 0]], "output": [[0, 0, 6], [0, 4, 6], [3, 4, 6]]}, {"input": [[0, 2, 0], [7, 0, 8], [0, 0, 0]], "output": [[0, 2, 0], [7, 2, 8], [7, 2, 8]]}, {"input": [[4, 0, 0], [0, 2, 0], [0, 0, 0]], "output": [[4, 0, 0], [4, 2, 0], [4, 2, 0]]}], "test": [{"input": [[4, 0, 8], [0, 0, 0], [0, 7, 0]], "output": [[4, 0, 8], [4, 0, 8], [4, 7, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d06dbe63.json b/data/arc-agi/training/d06dbe63.json
deleted file mode 100644
index 58ef912..0000000
--- a/data/arc-agi/training/d06dbe63.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d07ae81c.json b/data/arc-agi/training/d07ae81c.json
deleted file mode 100644
index af1756c..0000000
--- a/data/arc-agi/training/d07ae81c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 2, 2, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 2, 2, 2, 2, 8, 8, 8, 8, 8], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [8, 8, 8, 2, 4, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 2, 2, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 2, 2, 2, 2, 8, 8, 8, 8, 8], [8, 1, 8, 2, 2, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 2, 2, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 2, 2, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 2, 2, 2, 2, 8, 8, 8, 8, 8], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [8, 8, 8, 2, 2, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 2, 2, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 2, 2, 2, 2, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 2, 2, 2, 2, 8, 8, 1, 8, 8], [1, 8, 8, 2, 2, 2, 2, 8, 1, 8, 8, 8], [2, 4, 2, 2, 2, 2, 2, 4, 2, 2, 2, 2], [2, 2, 4, 2, 2, 2, 4, 2, 2, 2, 2, 2], [2, 2, 2, 4, 2, 4, 2, 2, 2, 2, 2, 2], [8, 8, 8, 2, 4, 2, 2, 8, 8, 8, 8, 8], [8, 8, 8, 4, 2, 4, 2, 8, 8, 8, 8, 8], [1, 8, 1, 2, 2, 2, 4, 8, 8, 8, 8, 8], [8, 1, 8, 2, 2, 2, 2, 1, 8, 8, 8, 8], [1, 8, 1, 2, 2, 2, 2, 8, 1, 8, 8, 8], [8, 8, 8, 4, 2, 2, 2, 8, 8, 1, 8, 8], [8, 8, 8, 2, 4, 2, 2, 8, 8, 8, 1, 8], [2, 2, 2, 2, 2, 4, 2, 2, 2, 2, 2, 4], [2, 2, 2, 2, 2, 2, 4, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 4, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 4, 2, 2, 2], [8, 8, 8, 2, 2, 2, 2, 8, 8, 1, 8, 8], [8, 8, 8, 2, 2, 2, 2, 8, 8, 8, 1, 8], [8, 8, 8, 2, 2, 2, 2, 8, 8, 8, 8, 1]]}, {"input": [[3, 3, 3, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3], [3, 3, 3, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3], [3, 3, 3, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3], [3, 3, 3, 1, 1, 1, 2, 1, 1, 3, 3, 3, 3, 3], [3, 3, 3, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 3, 3, 1, 1, 1, 1, 1, 1, 3, 3, 8, 3, 3], [3, 3, 3, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3], [3, 3, 3, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3], [3, 3, 3, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3]], "output": [[3, 3, 3, 2, 1, 1, 1, 1, 1, 8, 3, 3, 3, 3], [3, 3, 3, 1, 2, 1, 1, 1, 2, 3, 3, 3, 3, 3], [3, 3, 3, 1, 1, 2, 1, 2, 1, 3, 3, 3, 3, 3], [3, 3, 3, 1, 1, 1, 2, 1, 1, 3, 3, 3, 3, 3], [3, 3, 3, 1, 1, 2, 1, 2, 1, 3, 3, 3, 3, 3], [1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1], [1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2], [1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1], [3, 8, 3, 1, 1, 1, 1, 1, 1, 3, 3, 8, 3, 3], [8, 3, 3, 1, 1, 1, 1, 1, 1, 3, 8, 3, 8, 3], [3, 3, 3, 1, 1, 1, 1, 1, 1, 8, 3, 3, 3, 8], [3, 3, 3, 1, 1, 1, 1, 1, 2, 3, 3, 3, 3, 3]]}, {"input": [[1, 1, 6, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 6, 6], [1, 1, 6, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 6, 6], [1, 1, 6, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 6, 6], [1, 1, 6, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 6, 6], [1, 1, 6, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 6, 6], [1, 1, 6, 6, 6, 6, 1, 8, 1, 1, 6, 6, 6, 6, 6], [1, 1, 6, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 6, 6], [1, 1, 6, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 6, 6], [1, 1, 6, 6, 3, 6, 1, 1, 1, 1, 6, 6, 6, 6, 6], [1, 1, 6, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 6, 6], [1, 1, 6, 6, 6, 6, 1, 1, 1, 1, 6, 6, 3, 6, 6], [1, 1, 6, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 6, 6], [1, 1, 6, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 6, 6], [1, 1, 6, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 6, 6], [1, 1, 6, 6, 6, 6, 1, 1, 1, 1, 6, 6, 6, 6, 6]], "output": [[1, 1, 3, 6, 6, 6, 1, 1, 1, 1, 6, 6, 3, 6, 6], [1, 1, 6, 3, 6, 6, 1, 1, 1, 1, 6, 3, 6, 6, 6], [1, 1, 6, 6, 3, 6, 1, 1, 1, 1, 3, 6, 6, 6, 6], [1, 1, 6, 6, 6, 3, 1, 1, 1, 8, 6, 6, 6, 6, 6], [8, 1, 6, 6, 6, 6, 8, 1, 8, 1, 6, 6, 6, 6, 6], [1, 8, 6, 6, 6, 6, 1, 8, 1, 1, 6, 6, 6, 6, 6], [1, 1, 3, 6, 6, 6, 8, 1, 8, 1, 6, 6, 6, 6, 6], [1, 1, 6, 3, 6, 3, 1, 1, 1, 8, 6, 6, 6, 6, 6], [1, 1, 6, 6, 3, 6, 1, 1, 1, 1, 3, 6, 6, 6, 3], [1, 1, 6, 3, 6, 3, 1, 1, 1, 1, 6, 3, 6, 3, 6], [1, 1, 3, 6, 6, 6, 8, 1, 1, 1, 6, 6, 3, 6, 6], [1, 8, 6, 6, 6, 6, 1, 8, 1, 1, 6, 3, 6, 3, 6], [8, 1, 6, 6, 6, 6, 1, 1, 8, 1, 3, 6, 6, 6, 3], [1, 1, 6, 6, 6, 6, 1, 1, 1, 8, 6, 6, 6, 6, 6], [1, 1, 6, 6, 6, 6, 1, 1, 8, 1, 3, 6, 6, 6, 6]]}], "test": [{"input": [[8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 4, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 4, 3, 3, 3, 3, 3, 3, 8, 4, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 1, 3, 3, 3, 3, 3, 4, 8, 4, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 1, 3, 3, 3, 1, 8, 8, 8, 4, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 1, 3, 1, 3, 8, 8, 8, 8, 4, 8, 8, 8, 8, 8], [3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3], [3, 3, 3, 3, 3, 1, 3, 1, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3], [3, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3], [8, 8, 8, 1, 3, 3, 3, 3, 3, 4, 8, 8, 8, 8, 8, 8, 8, 4, 8], [8, 8, 4, 3, 3, 3, 3, 3, 3, 8, 4, 8, 8, 8, 8, 8, 8, 8, 4], [8, 4, 8, 3, 3, 3, 3, 3, 3, 8, 8, 4, 8, 8, 8, 8, 8, 4, 8], [4, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8, 8, 4, 8, 8, 8, 4, 8, 8], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 1, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3], [8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 8, 4, 8, 8, 8, 8, 8, 4, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 8, 4, 8, 8, 8, 8, 8, 8, 8, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d0f5fe59.json b/data/arc-agi/training/d0f5fe59.json
deleted file mode 100644
index 810f667..0000000
--- a/data/arc-agi/training/d0f5fe59.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 0, 0, 0], [0, 8, 0, 0], [0, 0, 8, 0], [0, 0, 0, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 0, 0], [0, 8, 0], [0, 0, 8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 8, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 0], [0, 8]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 8, 8, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 8, 8, 8, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 0, 0, 0, 0], [0, 8, 0, 0, 0], [0, 0, 8, 0, 0], [0, 0, 0, 8, 0], [0, 0, 0, 0, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d10ecb37.json b/data/arc-agi/training/d10ecb37.json
deleted file mode 100644
index 0c17496..0000000
--- a/data/arc-agi/training/d10ecb37.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 3, 6, 4, 0, 6], [6, 0, 0, 3, 3, 4], [6, 4, 4, 3, 3, 0], [0, 3, 6, 0, 4, 6], [0, 6, 3, 0, 4, 3], [3, 4, 4, 6, 6, 0]], "output": [[4, 3], [6, 0]]}, {"input": [[2, 4, 2, 2, 5, 2, 4, 5], [2, 5, 5, 4, 4, 2, 2, 2], [4, 5, 5, 2, 2, 2, 2, 4], [2, 2, 4, 2, 5, 4, 2, 5], [2, 4, 2, 2, 5, 2, 4, 5], [2, 5, 5, 4, 4, 2, 2, 2], [4, 5, 5, 2, 2, 2, 2, 4], [2, 2, 4, 2, 5, 4, 2, 5]], "output": [[2, 4], [2, 5]]}, {"input": [[3, 2, 1, 3, 4, 1], [1, 4, 4, 2, 2, 3], [1, 3, 3, 2, 2, 4], [4, 2, 1, 4, 3, 1], [4, 1, 2, 4, 3, 2], [2, 3, 3, 1, 1, 4], [2, 4, 4, 1, 1, 3], [3, 1, 2, 3, 4, 2], [3, 2, 1, 3, 4, 1], [1, 4, 4, 2, 2, 3], [1, 3, 3, 2, 2, 4], [4, 2, 1, 4, 3, 1]], "output": [[3, 2], [1, 4]]}], "test": [{"input": [[9, 6, 2, 9, 9, 2, 6, 9], [2, 9, 9, 6, 6, 9, 9, 2], [6, 9, 9, 2, 2, 9, 9, 6], [9, 2, 6, 9, 9, 6, 2, 9]], "output": [[9, 6], [2, 9]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d13f3404.json b/data/arc-agi/training/d13f3404.json
deleted file mode 100644
index 220dc67..0000000
--- a/data/arc-agi/training/d13f3404.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[6, 1, 0], [3, 0, 0], [0, 0, 0]], "output": [[6, 1, 0, 0, 0, 0], [3, 6, 1, 0, 0, 0], [0, 3, 6, 1, 0, 0], [0, 0, 3, 6, 1, 0], [0, 0, 0, 3, 6, 1], [0, 0, 0, 0, 3, 6]]}, {"input": [[0, 4, 0], [0, 8, 0], [2, 0, 0]], "output": [[0, 4, 0, 0, 0, 0], [0, 8, 4, 0, 0, 0], [2, 0, 8, 4, 0, 0], [0, 2, 0, 8, 4, 0], [0, 0, 2, 0, 8, 4], [0, 0, 0, 2, 0, 8]]}, {"input": [[0, 0, 6], [1, 3, 0], [0, 0, 0]], "output": [[0, 0, 6, 0, 0, 0], [1, 3, 0, 6, 0, 0], [0, 1, 3, 0, 6, 0], [0, 0, 1, 3, 0, 6], [0, 0, 0, 1, 3, 0], [0, 0, 0, 0, 1, 3]]}], "test": [{"input": [[0, 0, 3], [0, 0, 0], [0, 4, 9]], "output": [[0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0], [0, 4, 9, 0, 3, 0], [0, 0, 4, 9, 0, 3], [0, 0, 0, 4, 9, 0], [0, 0, 0, 0, 4, 9]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d22278a0.json b/data/arc-agi/training/d22278a0.json
deleted file mode 100644
index bc84f5b..0000000
--- a/data/arc-agi/training/d22278a0.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 1, 0, 1, 2, 0, 2, 0, 2], [0, 0, 1, 0, 1, 2, 0, 2, 0, 0], [1, 1, 1, 0, 1, 2, 0, 2, 2, 2], [0, 0, 0, 0, 1, 2, 0, 0, 0, 0], [1, 1, 1, 1, 1, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 2, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3], [8, 0, 0, 3, 0, 3, 0, 3, 0, 3, 0, 0], [0, 0, 0, 3, 0, 3, 0, 3, 0, 3, 3, 3], [8, 8, 8, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 3, 3, 3, 3, 3], [8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3], [8, 8, 8, 8, 8, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 0, 3, 3, 3], [8, 8, 8, 0, 8, 0, 8, 0, 8, 0, 0, 0], [0, 0, 8, 0, 8, 0, 8, 0, 8, 0, 0, 3], [8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0]]}, {"input": [[2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2], [2, 2, 2, 2, 2, 0, 2, 0, 2, 0, 2, 0, 2], [0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 4], [4, 4, 4, 4, 4, 0, 4, 0, 4, 0, 4, 0, 4], [0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4], [4, 4, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4], [0, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4], [4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4]]}, {"input": [[1, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 1, 0, 2, 0, 2], [0, 0, 1, 0, 2, 0, 0], [1, 1, 1, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 2, 2], [0, 0, 8, 0, 8, 0, 0], [8, 0, 8, 0, 8, 0, 0]]}], "test": [{"input": [[4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]], "output": [[4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 0], [0, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 0], [4, 4, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 0, 1, 1], [0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, 0, 0, 0], [4, 4, 4, 4, 4, 0, 4, 0, 4, 0, 4, 0, 0, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 0, 4, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 0, 8, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1], [0, 0, 0, 0, 8, 0, 8, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], [8, 8, 8, 0, 8, 0, 8, 0, 0, 0, 1, 0, 1, 0, 1, 1, 1], [0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0], [8, 0, 8, 0, 8, 0, 8, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1]]}]}
diff --git a/data/arc-agi/training/d23f8c26.json b/data/arc-agi/training/d23f8c26.json
deleted file mode 100644
index d24e417..0000000
--- a/data/arc-agi/training/d23f8c26.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[6, 4, 0], [0, 3, 9], [1, 0, 0]], "output": [[0, 4, 0], [0, 3, 0], [0, 0, 0]]}, {"input": [[8, 0, 3, 0, 0], [8, 6, 5, 6, 0], [3, 6, 3, 0, 0], [0, 0, 0, 5, 9], [5, 0, 9, 0, 0]], "output": [[0, 0, 3, 0, 0], [0, 0, 5, 0, 0], [0, 0, 3, 0, 0], [0, 0, 0, 0, 0], [0, 0, 9, 0, 0]]}, {"input": [[3, 0, 4, 0, 0], [3, 0, 4, 7, 0], [0, 6, 0, 0, 7], [0, 0, 8, 0, 0], [0, 8, 0, 2, 2]], "output": [[0, 0, 4, 0, 0], [0, 0, 4, 0, 0], [0, 0, 0, 0, 0], [0, 0, 8, 0, 0], [0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 3, 0, 0, 0, 7], [8, 1, 0, 8, 0, 0, 0], [0, 0, 3, 0, 8, 0, 3], [0, 7, 0, 1, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0], [1, 0, 8, 6, 0, 0, 0], [0, 8, 0, 6, 0, 1, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d2abd087.json b/data/arc-agi/training/d2abd087.json
deleted file mode 100644
index 1590314..0000000
--- a/data/arc-agi/training/d2abd087.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 0, 0], [0, 5, 5, 0, 0, 0, 5, 0, 0, 0], [0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 1, 1, 0, 0, 0, 2, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 5, 5, 0, 0, 0, 5, 5, 5, 0], [5, 5, 5, 5, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 5, 5, 0, 0, 0], [0, 5, 5, 0, 0, 5, 5, 0, 0, 0], [0, 5, 5, 0, 0, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 2, 2, 0, 0, 0, 1, 1, 1, 0], [2, 2, 2, 2, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 1, 1, 0, 0, 2, 2, 0, 0, 0], [0, 1, 1, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[5, 5, 5, 0, 0, 0, 0, 5, 5, 5], [0, 5, 5, 0, 5, 5, 0, 5, 0, 0], [0, 0, 5, 0, 5, 5, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 5, 5, 0, 0, 0, 5], [0, 5, 5, 0, 0, 5, 5, 0, 0, 5], [0, 0, 0, 0, 0, 5, 5, 0, 0, 5], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 5, 5, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 0, 0, 0, 0, 2, 2, 2], [0, 1, 1, 0, 1, 1, 0, 2, 0, 0], [0, 0, 1, 0, 1, 1, 0, 2, 0, 0], [0, 0, 1, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 1], [0, 1, 1, 0, 0, 2, 2, 0, 0, 1], [0, 0, 0, 0, 0, 2, 2, 0, 0, 1], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 5, 5, 0, 0, 0, 5, 5, 0, 0], [0, 5, 5, 0, 0, 0, 5, 5, 0, 0], [5, 5, 5, 5, 0, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 0, 0, 5, 0, 0], [0, 5, 5, 5, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 1, 1, 0, 0, 0, 2, 2, 0, 0], [0, 1, 1, 0, 0, 0, 2, 2, 0, 0], [1, 1, 1, 1, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 1, 0, 0], [0, 2, 2, 2, 2, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d364b489.json b/data/arc-agi/training/d364b489.json
deleted file mode 100644
index fdf4dd2..0000000
--- a/data/arc-agi/training/d364b489.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 7, 1, 6, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 7, 1], [0, 0, 0, 2, 0, 0, 0, 0, 0, 8], [0, 0, 7, 1, 6, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 7, 1, 6, 0], [0, 2, 0, 0, 0, 0, 0, 8, 0, 0], [7, 1, 6, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1]], "output": [[0, 0, 0, 0, 7, 1, 6, 0, 0, 0], [2, 0, 0, 0, 0, 8, 0, 0, 0, 0], [1, 6, 0, 0, 0, 0, 0, 0, 0, 2], [8, 0, 0, 0, 0, 0, 0, 0, 7, 1], [0, 0, 0, 0, 0, 2, 0, 0, 0, 8], [0, 0, 0, 0, 7, 1, 6, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 7, 1, 6, 0, 0, 0, 0, 0, 2], [0, 0, 8, 0, 0, 0, 0, 0, 7, 1]]}], "test": [{"input": [[0, 1, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0]], "output": [[7, 1, 6, 0, 0, 0, 0, 0, 7, 1], [0, 8, 0, 0, 0, 0, 0, 2, 0, 8], [0, 0, 0, 2, 0, 0, 7, 1, 6, 0], [0, 0, 7, 1, 6, 0, 0, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 2, 0, 0], [1, 6, 0, 0, 0, 0, 7, 1, 6, 0], [8, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 7, 1, 6, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d406998b.json b/data/arc-agi/training/d406998b.json
deleted file mode 100644
index b0ed2bb..0000000
--- a/data/arc-agi/training/d406998b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 0, 5, 0, 0, 5, 0, 0, 0, 5], [0, 5, 0, 0, 5, 0, 0, 5, 0, 0], [0, 0, 0, 5, 0, 0, 5, 0, 5, 0]], "output": [[5, 0, 5, 0, 0, 3, 0, 0, 0, 3], [0, 3, 0, 0, 5, 0, 0, 3, 0, 0], [0, 0, 0, 3, 0, 0, 5, 0, 5, 0]]}, {"input": [[0, 5, 0, 5, 0, 0, 5, 0, 5, 0, 0, 0], [5, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0], [0, 0, 5, 0, 0, 5, 0, 0, 0, 5, 0, 5]], "output": [[0, 3, 0, 3, 0, 0, 5, 0, 5, 0, 0, 0], [5, 0, 0, 0, 5, 0, 0, 3, 0, 0, 5, 0], [0, 0, 5, 0, 0, 3, 0, 0, 0, 3, 0, 3]]}, {"input": [[0, 0, 5, 0, 0, 5, 0, 5, 0, 0, 0, 5, 0], [5, 0, 0, 0, 5, 0, 5, 0, 0, 5, 0, 0, 5], [0, 5, 0, 5, 0, 0, 0, 0, 5, 0, 5, 0, 0]], "output": [[0, 0, 3, 0, 0, 5, 0, 5, 0, 0, 0, 5, 0], [3, 0, 0, 0, 3, 0, 3, 0, 0, 5, 0, 0, 3], [0, 5, 0, 5, 0, 0, 0, 0, 3, 0, 3, 0, 0]]}, {"input": [[0, 0, 5, 0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 0], [5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 5, 0, 0, 5], [0, 5, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0]], "output": [[0, 0, 5, 0, 0, 3, 0, 3, 0, 3, 0, 3, 0, 0], [5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 5, 0, 0, 3], [0, 3, 0, 3, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0]]}], "test": [{"input": [[0, 0, 0, 5, 0, 0, 0, 5, 0, 5, 0, 0, 5, 0, 5, 0, 0], [5, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 0, 5, 0], [0, 5, 0, 0, 5, 0, 5, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5]], "output": [[0, 0, 0, 5, 0, 0, 0, 5, 0, 5, 0, 0, 3, 0, 3, 0, 0], [3, 0, 3, 0, 0, 5, 0, 0, 3, 0, 0, 5, 0, 0, 0, 5, 0], [0, 5, 0, 0, 3, 0, 3, 0, 0, 0, 3, 0, 0, 5, 0, 0, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d43fd935.json b/data/arc-agi/training/d43fd935.json
deleted file mode 100644
index 60d0202..0000000
--- a/data/arc-agi/training/d43fd935.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 1, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0]], "output": [[1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 1, 1, 1, 1, 1, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 6, 0, 0], [0, 0, 6, 0, 0, 0, 6, 0, 0, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0]]}, {"input": [[0, 7, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 7, 0, 3, 3, 0, 0, 8], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 7]], "output": [[0, 7, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 7, 7, 3, 3, 8, 8, 8], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 8, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 8, 0], [0, 0, 0, 8, 0, 7, 0, 0, 0, 0], [0, 7, 0, 0, 0, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0, 7]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 1], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [6, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [6, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 6, 0, 6, 0, 0, 0, 0]], "output": [[0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [2, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [6, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 6, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [6, 6, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 2, 0, 0], [0, 0, 0, 6, 0, 6, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d4469b4b.json b/data/arc-agi/training/d4469b4b.json
deleted file mode 100644
index eae18ec..0000000
--- a/data/arc-agi/training/d4469b4b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 0, 0, 0, 0], [0, 2, 0, 0, 2], [2, 0, 0, 2, 0], [0, 0, 0, 2, 2], [0, 0, 2, 2, 0]], "output": [[5, 5, 5], [0, 5, 0], [0, 5, 0]]}, {"input": [[0, 0, 0, 0, 0], [0, 0, 1, 1, 1], [0, 1, 0, 1, 1], [0, 1, 0, 1, 0], [0, 0, 0, 0, 1]], "output": [[0, 5, 0], [5, 5, 5], [0, 5, 0]]}, {"input": [[3, 0, 0, 0, 0], [0, 0, 0, 3, 3], [0, 3, 3, 0, 0], [0, 3, 0, 3, 0], [3, 0, 3, 3, 0]], "output": [[0, 0, 5], [0, 0, 5], [5, 5, 5]]}, {"input": [[1, 0, 1, 0, 0], [1, 0, 0, 1, 1], [1, 1, 0, 1, 0], [0, 1, 0, 1, 0], [1, 0, 0, 0, 1]], "output": [[0, 5, 0], [5, 5, 5], [0, 5, 0]]}, {"input": [[2, 0, 2, 0, 2], [2, 0, 0, 0, 2], [2, 2, 0, 0, 0], [2, 0, 0, 2, 2], [2, 2, 2, 0, 2]], "output": [[5, 5, 5], [0, 5, 0], [0, 5, 0]]}, {"input": [[0, 2, 0, 2, 0], [0, 2, 2, 2, 0], [0, 2, 2, 0, 2], [2, 2, 2, 0, 0], [0, 0, 2, 0, 2]], "output": [[5, 5, 5], [0, 5, 0], [0, 5, 0]]}, {"input": [[0, 3, 0, 3, 0], [3, 3, 0, 0, 0], [0, 3, 0, 0, 0], [0, 0, 3, 0, 0], [3, 3, 3, 0, 0]], "output": [[0, 0, 5], [0, 0, 5], [5, 5, 5]]}], "test": [{"input": [[1, 1, 1, 1, 0], [0, 0, 1, 0, 1], [0, 1, 0, 0, 0], [0, 1, 0, 0, 1], [0, 0, 1, 0, 0]], "output": [[0, 5, 0], [5, 5, 5], [0, 5, 0]]}, {"input": [[0, 3, 0, 3, 3], [0, 0, 3, 0, 0], [3, 0, 0, 0, 0], [0, 0, 3, 0, 3], [0, 0, 0, 0, 3]], "output": [[0, 0, 5], [0, 0, 5], [5, 5, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d4a91cb9.json b/data/arc-agi/training/d4a91cb9.json
deleted file mode 100644
index cc7c6b7..0000000
--- a/data/arc-agi/training/d4a91cb9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 4, 4, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 2, 4, 4, 4, 4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 4, 4, 4, 2, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 4, 4, 4, 2, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d4f3cd78.json b/data/arc-agi/training/d4f3cd78.json
deleted file mode 100644
index cef520c..0000000
--- a/data/arc-agi/training/d4f3cd78.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 5, 5, 0, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0], [0, 0, 5, 8, 8, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 8, 8, 5, 0, 0], [0, 0, 5, 5, 5, 8, 5, 5, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 0, 5, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0]], "output": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 5, 5, 5, 8, 5, 5, 0, 0], [0, 0, 5, 8, 8, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 8, 8, 5, 0, 0], [0, 0, 5, 8, 8, 8, 8, 5, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 5, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 5, 8, 8, 8, 5, 0, 0, 0], [0, 0, 5, 8, 8, 8, 5, 0, 0, 0], [0, 0, 5, 8, 8, 8, 8, 8, 8, 8], [0, 0, 5, 8, 8, 8, 5, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d511f180.json b/data/arc-agi/training/d511f180.json
deleted file mode 100644
index 1df7e16..0000000
--- a/data/arc-agi/training/d511f180.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 7, 8, 8, 8], [5, 5, 6, 5, 4], [8, 5, 5, 5, 2], [8, 8, 4, 3, 6], [6, 5, 1, 9, 3]], "output": [[2, 7, 5, 5, 5], [8, 8, 6, 8, 4], [5, 8, 8, 8, 2], [5, 5, 4, 3, 6], [6, 8, 1, 9, 3]]}, {"input": [[3, 5, 1], [4, 5, 8], [2, 4, 9]], "output": [[3, 8, 1], [4, 8, 5], [2, 4, 9]]}, {"input": [[6, 5, 3], [5, 7, 5], [8, 8, 2]], "output": [[6, 8, 3], [8, 7, 8], [5, 5, 2]]}], "test": [{"input": [[8, 8, 4, 5], [3, 8, 7, 5], [3, 7, 1, 9], [6, 4, 8, 8]], "output": [[5, 5, 4, 8], [3, 5, 7, 8], [3, 7, 1, 9], [6, 4, 5, 5]]}]}
diff --git a/data/arc-agi/training/d5d6de2d.json b/data/arc-agi/training/d5d6de2d.json
deleted file mode 100644
index 34160d1..0000000
--- a/data/arc-agi/training/d5d6de2d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 0, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [2, 0, 2, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0], [0, 2, 0, 0, 0, 0, 0, 0, 2, 0], [0, 2, 2, 2, 2, 2, 2, 2, 2, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d631b094.json b/data/arc-agi/training/d631b094.json
deleted file mode 100644
index afd03e8..0000000
--- a/data/arc-agi/training/d631b094.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0], [1, 0, 0], [0, 1, 0]], "output": [[1, 1]]}, {"input": [[0, 2, 0], [2, 0, 0], [0, 2, 0]], "output": [[2, 2, 2]]}, {"input": [[0, 7, 0], [0, 0, 0], [0, 0, 0]], "output": [[7]]}, {"input": [[0, 8, 0], [8, 8, 0], [8, 0, 0]], "output": [[8, 8, 8, 8]]}], "test": [{"input": [[4, 4, 0], [4, 0, 4], [0, 0, 4]], "output": [[4, 4, 4, 4, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d687bc17.json b/data/arc-agi/training/d687bc17.json
deleted file mode 100644
index c494322..0000000
--- a/data/arc-agi/training/d687bc17.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3], [2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [2, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 3], [2, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [2, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 3], [2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0, 3], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0]], "output": [[0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 3], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [2, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0]]}, {"input": [[0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [2, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 4], [2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 4], [2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 4], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [2, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 4], [2, 0, 0, 0, 0, 1, 0, 0, 7, 0, 0, 4], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0]], "output": [[0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 4], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [2, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 4], [0, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0]]}, {"input": [[0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 8], [4, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8], [4, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 8], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [4, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8], [4, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0]], "output": [[0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0], [4, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [4, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 8], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [4, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [4, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0]]}], "test": [{"input": [[0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 1, 0, 0, 0, 2], [1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 7, 0, 0, 8, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 6, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 2], [1, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0]], "output": [[0, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0], [1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 2], [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [1, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, 2], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0]]}]}
diff --git a/data/arc-agi/training/d6ad076f.json b/data/arc-agi/training/d6ad076f.json
deleted file mode 100644
index ab5915f..0000000
--- a/data/arc-agi/training/d6ad076f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 7, 7, 7, 7, 7, 0, 0, 0, 0], [7, 7, 7, 7, 7, 7, 0, 0, 0, 0], [7, 7, 7, 7, 7, 7, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0], [7, 7, 7, 7, 7, 7, 0, 0, 0, 0], [7, 7, 7, 7, 7, 7, 0, 0, 0, 0], [7, 7, 7, 7, 7, 7, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 6, 6, 6], [0, 4, 4, 4, 0, 0, 0, 6, 6, 6], [0, 4, 4, 4, 0, 0, 0, 6, 6, 6], [0, 4, 4, 4, 0, 0, 0, 6, 6, 6], [0, 4, 4, 4, 0, 0, 0, 6, 6, 6], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 6, 6, 6], [0, 4, 4, 4, 8, 8, 8, 6, 6, 6], [0, 4, 4, 4, 8, 8, 8, 6, 6, 6], [0, 4, 4, 4, 8, 8, 8, 6, 6, 6], [0, 4, 4, 4, 0, 0, 0, 6, 6, 6], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 9, 9, 9, 9, 9, 9, 0], [0, 0, 0, 9, 9, 9, 9, 9, 9, 0]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 9, 9, 9, 9, 9, 9, 0], [0, 0, 0, 9, 9, 9, 9, 9, 9, 0]]}], "test": [{"input": [[1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 0, 2, 2, 2], [1, 1, 1, 1, 0, 0, 0, 2, 2, 2], [1, 1, 1, 1, 0, 0, 0, 2, 2, 2], [1, 1, 1, 1, 0, 0, 0, 2, 2, 2], [1, 1, 1, 1, 0, 0, 0, 2, 2, 2], [1, 1, 1, 1, 0, 0, 0, 2, 2, 2], [1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 0, 2, 2, 2], [1, 1, 1, 1, 8, 8, 8, 2, 2, 2], [1, 1, 1, 1, 8, 8, 8, 2, 2, 2], [1, 1, 1, 1, 8, 8, 8, 2, 2, 2], [1, 1, 1, 1, 8, 8, 8, 2, 2, 2], [1, 1, 1, 1, 0, 0, 0, 2, 2, 2], [1, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d89b689b.json b/data/arc-agi/training/d89b689b.json
deleted file mode 100644
index 91447b9..0000000
--- a/data/arc-agi/training/d89b689b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 7, 0, 0, 0, 0], [0, 0, 0, 0, 4, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 9, 0, 0, 0, 0], [0, 0, 0, 0, 2, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 1, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 4, 0, 0, 0], [0, 0, 0, 0, 0, 3, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7, 0], [0, 0, 6, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 4, 0, 0, 0, 0], [0, 0, 0, 0, 6, 7, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d8c310e9.json b/data/arc-agi/training/d8c310e9.json
deleted file mode 100644
index 774607f..0000000
--- a/data/arc-agi/training/d8c310e9.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 2, 2, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 2, 2, 0, 2, 2, 0, 2, 2, 0, 2, 2], [1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 2, 1, 3, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2], [3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [4, 3, 0, 0, 3, 4, 4, 3, 0, 0, 0, 0, 0, 0, 0], [4, 3, 2, 2, 3, 4, 4, 3, 2, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 4, 4, 0, 0], [4, 3, 0, 0, 3, 4, 4, 3, 0, 0, 3, 4, 4, 3, 0], [4, 3, 2, 2, 3, 4, 4, 3, 2, 2, 3, 4, 4, 3, 2]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [6, 2, 2, 0, 6, 2, 2, 0, 6, 2, 0, 0, 0, 0, 0], [6, 6, 2, 3, 6, 6, 2, 3, 6, 6, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2], [6, 2, 2, 0, 6, 2, 2, 0, 6, 2, 2, 0, 6, 2, 2], [6, 6, 2, 3, 6, 6, 2, 3, 6, 6, 2, 3, 6, 6, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d90796e8.json b/data/arc-agi/training/d90796e8.json
deleted file mode 100644
index 71a4e9b..0000000
--- a/data/arc-agi/training/d90796e8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 2, 0], [0, 0, 0], [0, 5, 0]], "output": [[8, 0, 0], [0, 0, 0], [0, 5, 0]]}, {"input": [[5, 0, 0, 0, 0, 0], [0, 0, 3, 2, 0, 0], [0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 2], [0, 2, 0, 0, 0, 0], [5, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[5, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0], [5, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 2, 0], [3, 0, 0, 0, 0, 0, 3], [5, 0, 2, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0], [3, 2, 0, 0, 0, 3, 0], [0, 0, 0, 5, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 2, 0], [3, 0, 0, 0, 0, 0, 3], [5, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 8, 0], [0, 0, 0, 5, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 2, 0, 0, 0, 5], [0, 2, 0, 0, 0, 0, 3, 2, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 2], [5, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0], [5, 3, 0, 0, 0, 5, 0, 2, 0]], "output": [[0, 0, 0, 0, 2, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 2], [5, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0], [5, 3, 0, 0, 0, 5, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d9f24cd1.json b/data/arc-agi/training/d9f24cd1.json
deleted file mode 100644
index bef6fca..0000000
--- a/data/arc-agi/training/d9f24cd1.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 2, 0, 2, 0, 0, 0]], "output": [[0, 2, 0, 0, 2, 0, 0, 2, 0, 0], [0, 2, 0, 0, 2, 0, 0, 2, 0, 0], [0, 2, 0, 0, 2, 0, 0, 2, 0, 0], [0, 2, 0, 0, 2, 0, 5, 2, 0, 0], [0, 2, 0, 0, 2, 0, 2, 2, 0, 0], [0, 2, 5, 0, 2, 0, 2, 0, 0, 0], [0, 2, 0, 0, 2, 0, 2, 0, 0, 0], [0, 2, 0, 0, 2, 0, 2, 0, 0, 0], [0, 2, 0, 0, 2, 0, 2, 0, 0, 0], [0, 2, 0, 0, 2, 0, 2, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 2, 0, 0, 2, 0, 0]], "output": [[0, 0, 2, 0, 2, 0, 0, 2, 0, 0], [0, 0, 2, 0, 2, 0, 0, 2, 0, 0], [0, 0, 2, 0, 2, 0, 0, 2, 0, 0], [0, 0, 2, 0, 2, 5, 0, 2, 0, 0], [0, 0, 2, 0, 2, 0, 0, 2, 0, 0], [0, 5, 2, 0, 2, 0, 0, 2, 0, 0], [0, 2, 2, 0, 2, 0, 0, 2, 5, 0], [0, 2, 0, 0, 2, 0, 0, 2, 0, 0], [0, 2, 0, 0, 2, 0, 0, 2, 0, 0], [0, 2, 0, 0, 2, 0, 0, 2, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 2, 0, 0, 0, 2, 0]], "output": [[0, 0, 2, 0, 0, 2, 0, 0, 2, 0], [0, 0, 2, 0, 0, 2, 0, 0, 2, 0], [0, 0, 2, 0, 0, 2, 0, 5, 2, 0], [0, 0, 2, 0, 0, 2, 0, 0, 2, 0], [0, 5, 2, 0, 0, 2, 0, 0, 2, 0], [0, 2, 2, 0, 0, 2, 0, 0, 2, 0], [0, 2, 0, 0, 5, 2, 0, 0, 2, 0], [0, 2, 0, 0, 2, 2, 0, 0, 2, 0], [0, 2, 0, 0, 2, 0, 0, 0, 2, 0], [0, 2, 0, 0, 2, 0, 0, 0, 2, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/d9fac9be.json b/data/arc-agi/training/d9fac9be.json
deleted file mode 100644
index 0fdbc22..0000000
--- a/data/arc-agi/training/d9fac9be.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 0, 0, 0, 0, 2, 0, 0, 2], [0, 4, 4, 4, 0, 0, 0, 0, 0], [0, 4, 2, 4, 0, 0, 2, 0, 0], [0, 4, 4, 4, 0, 0, 0, 2, 0], [2, 0, 0, 0, 0, 2, 0, 0, 0]], "output": [[2]]}, {"input": [[8, 0, 8, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 8, 0, 0, 3, 3, 3, 0], [8, 0, 0, 3, 0, 3, 8, 3, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0], [3, 0, 0, 8, 0, 0, 0, 8, 0]], "output": [[8]]}, {"input": [[1, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0], [2, 0, 1, 2, 0, 2, 0, 1, 1], [0, 1, 0, 0, 2, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0], [1, 2, 1, 2, 0, 0, 0, 2, 0], [0, 2, 2, 2, 0, 0, 0, 0, 2], [0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0]], "output": [[1]]}, {"input": [[0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8], [3, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0], [0, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 8, 0, 3, 0], [0, 0, 3, 3, 8, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [1, 0, 0, 0, 0, 0, 4, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 4, 0, 0, 4, 0, 0, 0], [0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 4, 4, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 4], [4, 0, 0, 0, 1, 4, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 4], [0, 0, 4, 4, 0, 0, 0, 1, 0, 0, 0, 0]], "output": [[4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/dae9d2b5.json b/data/arc-agi/training/dae9d2b5.json
deleted file mode 100644
index 6bc5344..0000000
--- a/data/arc-agi/training/dae9d2b5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[0, 4, 4, 3, 0, 0], [4, 0, 0, 3, 3, 0], [0, 4, 0, 3, 0, 0]], "output": [[6, 6, 6], [6, 6, 0], [6, 6, 0]]}, {"input": [[0, 0, 4, 0, 3, 0], [0, 4, 0, 3, 3, 3], [4, 0, 0, 3, 0, 0]], "output": [[0, 6, 6], [6, 6, 6], [6, 0, 0]]}], "train": [{"input": [[4, 4, 0, 3, 3, 0], [4, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 3]], "output": [[6, 6, 0], [6, 0, 0], [0, 0, 6]]}, {"input": [[4, 0, 4, 3, 3, 0], [4, 0, 0, 3, 0, 0], [0, 0, 4, 3, 0, 0]], "output": [[6, 6, 6], [6, 0, 0], [6, 0, 6]]}, {"input": [[0, 0, 4, 0, 3, 0], [0, 4, 4, 3, 0, 3], [4, 4, 0, 0, 0, 3]], "output": [[0, 6, 6], [6, 6, 6], [6, 6, 6]]}, {"input": [[4, 4, 0, 3, 0, 0], [0, 0, 0, 0, 0, 3], [4, 0, 0, 0, 0, 0]], "output": [[6, 6, 0], [0, 0, 6], [6, 0, 0]]}, {"input": [[0, 0, 0, 0, 3, 0], [4, 0, 0, 0, 0, 0], [0, 0, 4, 3, 3, 0]], "output": [[0, 6, 0], [6, 0, 0], [6, 6, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/db3e9e38.json b/data/arc-agi/training/db3e9e38.json
deleted file mode 100644
index 19d2803..0000000
--- a/data/arc-agi/training/db3e9e38.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[8, 7, 8, 7, 8, 7, 8], [0, 7, 8, 7, 8, 7, 0], [0, 0, 8, 7, 8, 0, 0], [0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[7, 8, 7, 8, 7, 8, 7, 0], [7, 8, 7, 8, 7, 8, 0, 0], [7, 8, 7, 8, 7, 0, 0, 0], [0, 8, 7, 8, 0, 0, 0, 0], [0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8, 7, 8, 7, 8, 7, 8, 7, 8], [8, 7, 8, 7, 8, 7, 8, 7, 8], [0, 7, 8, 7, 8, 7, 8, 7, 8], [0, 0, 8, 7, 8, 7, 8, 7, 8], [0, 0, 0, 7, 8, 7, 8, 7, 0], [0, 0, 0, 0, 8, 7, 8, 0, 0], [0, 0, 0, 0, 0, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/db93a21d.json b/data/arc-agi/training/db93a21d.json
deleted file mode 100644
index 5865d90..0000000
--- a/data/arc-agi/training/db93a21d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 9, 9, 0, 0], [0, 0, 0, 0, 0, 0, 9, 9, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 9, 9, 0, 0, 0, 0, 0, 0, 0], [0, 9, 9, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 3, 9, 9, 3, 0], [0, 0, 0, 0, 0, 3, 9, 9, 3, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [3, 3, 3, 3, 0, 0, 1, 1, 0, 0], [3, 9, 9, 3, 0, 0, 1, 1, 0, 0], [3, 9, 9, 3, 0, 0, 1, 1, 0, 0], [3, 3, 3, 3, 0, 0, 1, 1, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0, 0, 0], [0, 0, 0, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 3, 3, 0], [0, 0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 3, 3, 0], [0, 0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 3, 3, 0], [0, 0, 3, 3, 3, 3, 3, 3, 9, 9, 9, 9, 3, 3, 0], [0, 0, 3, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 3, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0], [0, 0, 3, 3, 3, 3, 0, 0, 1, 1, 1, 1, 3, 3, 3], [0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 3, 9, 9], [0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 3, 9, 9], [0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 3, 3, 3], [0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1], [0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1], [0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 9, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 9, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3], [0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 3], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 3], [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 3], [0, 0, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 9, 9, 9, 9, 3], [0, 0, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9, 3, 3, 3, 1, 1, 1, 1, 0], [0, 0, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9, 3, 3, 3, 1, 1, 1, 1, 0], [0, 0, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9, 3, 3, 3, 1, 1, 1, 1, 0], [0, 0, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9, 3, 3, 3, 1, 1, 1, 1, 0], [0, 0, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9, 3, 3, 3, 1, 1, 1, 1, 0], [0, 0, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9, 3, 3, 3, 1, 1, 1, 1, 0], [0, 0, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 0], [0, 0, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9], [0, 0, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9], [0, 0, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 9, 9, 9, 9, 3, 3, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 9, 9, 9, 9, 3, 3, 1, 1, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9], [3, 3, 9, 9, 9, 9, 3, 3, 1, 1, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9], [3, 3, 9, 9, 9, 9, 3, 3, 1, 1, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9], [3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9], [3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9], [0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9], [0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 0, 0, 0], [0, 0, 0, 0, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 9, 9, 9, 9, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 3, 3, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 3, 3, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 9, 9, 9, 9, 3, 3, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9, 3, 3, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9, 3, 3, 3], [0, 0, 0, 3, 3, 3, 3, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 3, 3, 3, 9, 9, 9, 9, 9, 9, 3, 3, 3], [0, 0, 0, 3, 9, 9, 3, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 9, 9, 3, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 3, 3, 3, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/dbc1a6ce.json b/data/arc-agi/training/dbc1a6ce.json
deleted file mode 100644
index b93f233..0000000
--- a/data/arc-agi/training/dbc1a6ce.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 1], [0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 1, 8, 8, 8, 8, 8, 1, 0], [0, 8, 0, 8, 0, 0, 0, 0, 0], [0, 1, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 1, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 1, 8, 8, 8, 8, 1, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 8, 8, 8, 1, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 8, 1], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 8, 0], [0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 8, 0], [0, 0, 0, 0, 0, 0, 1, 8, 8, 8, 1, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 8, 8, 8, 1, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 1, 8, 8, 8, 1, 0, 0, 0]]}, {"input": [[0, 1, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 1, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 1, 8, 8, 1, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 1, 8, 1, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 1, 0, 0, 0], [8, 0, 1, 8, 8, 8, 8, 1, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 1, 8, 8, 1, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 1, 0, 0, 8, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 8, 0, 0, 8, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 8, 0, 0, 8, 1, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 8, 0, 0, 8, 0, 1, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 8, 0, 0, 1, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 1, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/dc0a314f.json b/data/arc-agi/training/dc0a314f.json
deleted file mode 100644
index dbb638b..0000000
--- a/data/arc-agi/training/dc0a314f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[5, 5, 2, 5, 2, 5, 5, 5, 5, 5, 5, 2, 5, 2, 5, 5], [5, 2, 2, 5, 5, 5, 2, 2, 2, 2, 5, 5, 5, 2, 2, 5], [2, 2, 5, 8, 5, 2, 2, 5, 5, 2, 2, 5, 8, 5, 2, 2], [5, 5, 8, 5, 5, 2, 5, 5, 5, 5, 2, 5, 5, 8, 5, 5], [2, 5, 5, 5, 4, 6, 6, 9, 3, 3, 3, 3, 3, 5, 5, 2], [5, 5, 2, 2, 6, 6, 9, 9, 3, 3, 3, 3, 3, 2, 5, 5], [5, 2, 2, 5, 6, 9, 6, 9, 3, 3, 3, 3, 3, 2, 2, 5], [5, 2, 5, 5, 9, 9, 9, 9, 3, 3, 3, 3, 3, 5, 2, 5], [5, 2, 5, 5, 9, 9, 9, 9, 3, 3, 3, 3, 3, 5, 2, 5], [5, 2, 2, 5, 6, 9, 6, 9, 9, 6, 9, 6, 5, 2, 2, 5], [5, 5, 2, 2, 6, 6, 9, 9, 9, 9, 6, 6, 2, 2, 5, 5], [2, 5, 5, 5, 4, 6, 6, 9, 9, 6, 6, 4, 5, 5, 5, 2], [5, 5, 8, 5, 5, 2, 5, 5, 5, 5, 2, 5, 5, 8, 5, 5], [2, 2, 5, 8, 5, 2, 2, 5, 5, 2, 2, 5, 8, 5, 2, 2], [5, 2, 2, 5, 5, 5, 2, 2, 2, 2, 5, 5, 5, 2, 2, 5], [5, 5, 2, 5, 2, 5, 5, 5, 5, 5, 5, 2, 5, 2, 5, 5]], "output": [[9, 6, 6, 4, 5], [9, 9, 6, 6, 2], [9, 6, 9, 6, 5], [9, 9, 9, 9, 5], [9, 9, 9, 9, 5]]}], "train": [{"input": [[2, 1, 2, 2, 6, 5, 5, 6, 6, 5, 5, 6, 2, 2, 1, 2], [1, 6, 6, 1, 5, 6, 5, 2, 2, 5, 6, 5, 1, 6, 6, 1], [2, 6, 1, 6, 5, 5, 5, 2, 2, 5, 5, 5, 6, 1, 6, 2], [2, 1, 6, 6, 6, 2, 2, 2, 2, 2, 2, 6, 6, 6, 1, 2], [6, 5, 5, 6, 5, 8, 5, 7, 7, 5, 8, 5, 6, 5, 5, 6], [5, 6, 5, 2, 8, 8, 5, 8, 8, 3, 3, 3, 3, 3, 6, 5], [5, 5, 5, 2, 5, 5, 5, 8, 8, 3, 3, 3, 3, 3, 5, 5], [6, 2, 2, 2, 7, 8, 8, 8, 8, 3, 3, 3, 3, 3, 2, 6], [6, 2, 2, 2, 7, 8, 8, 8, 8, 3, 3, 3, 3, 3, 2, 6], [5, 5, 5, 2, 5, 5, 5, 8, 8, 3, 3, 3, 3, 3, 5, 5], [5, 6, 5, 2, 8, 8, 5, 8, 8, 5, 8, 8, 2, 5, 6, 5], [6, 5, 5, 6, 5, 8, 5, 7, 7, 5, 8, 5, 6, 5, 5, 6], [2, 1, 6, 6, 6, 2, 2, 2, 2, 2, 2, 6, 6, 6, 1, 2], [2, 6, 1, 6, 5, 5, 5, 2, 2, 5, 5, 5, 6, 1, 6, 2], [1, 6, 6, 1, 5, 6, 5, 2, 2, 5, 6, 5, 1, 6, 6, 1], [2, 1, 2, 2, 6, 5, 5, 6, 6, 5, 5, 6, 2, 2, 1, 2]], "output": [[5, 8, 8, 2, 5], [5, 5, 5, 2, 5], [8, 8, 7, 2, 2], [8, 8, 7, 2, 2], [5, 5, 5, 2, 5]]}, {"input": [[8, 9, 9, 3, 3, 3, 3, 3, 2, 2, 7, 7, 8, 9, 9, 8], [9, 8, 9, 3, 3, 3, 3, 3, 2, 7, 1, 7, 9, 9, 8, 9], [9, 9, 8, 3, 3, 3, 3, 3, 7, 2, 7, 2, 2, 8, 9, 9], [8, 9, 2, 3, 3, 3, 3, 3, 1, 7, 2, 2, 9, 2, 9, 8], [7, 7, 2, 3, 3, 3, 3, 3, 7, 8, 7, 2, 2, 2, 7, 7], [7, 1, 7, 2, 7, 2, 7, 7, 7, 7, 2, 7, 2, 7, 1, 7], [2, 7, 2, 7, 8, 7, 2, 8, 8, 2, 7, 8, 7, 2, 7, 2], [2, 2, 7, 1, 7, 7, 8, 2, 2, 8, 7, 7, 1, 7, 2, 2], [2, 2, 7, 1, 7, 7, 8, 2, 2, 8, 7, 7, 1, 7, 2, 2], [2, 7, 2, 7, 8, 7, 2, 8, 8, 2, 7, 8, 7, 2, 7, 2], [7, 1, 7, 2, 7, 2, 7, 7, 7, 7, 2, 7, 2, 7, 1, 7], [7, 7, 2, 2, 2, 7, 8, 7, 7, 8, 7, 2, 2, 2, 7, 7], [8, 9, 2, 9, 2, 2, 7, 1, 1, 7, 2, 2, 9, 2, 9, 8], [9, 9, 8, 2, 2, 7, 2, 7, 7, 2, 7, 2, 2, 8, 9, 9], [9, 8, 9, 9, 7, 1, 7, 2, 2, 7, 1, 7, 9, 9, 8, 9], [8, 9, 9, 8, 7, 7, 2, 2, 2, 2, 7, 7, 8, 9, 9, 8]], "output": [[8, 7, 7, 2, 2], [9, 7, 1, 7, 2], [2, 2, 7, 2, 7], [9, 2, 2, 7, 1], [2, 2, 7, 8, 7]]}, {"input": [[2, 2, 5, 2, 9, 9, 9, 3, 3, 3, 3, 3, 2, 5, 2, 2], [2, 5, 4, 4, 9, 5, 2, 3, 3, 3, 3, 3, 4, 4, 5, 2], [5, 4, 5, 4, 9, 2, 5, 3, 3, 3, 3, 3, 4, 5, 4, 5], [2, 4, 4, 4, 5, 9, 5, 3, 3, 3, 3, 3, 4, 4, 4, 2], [9, 9, 9, 5, 9, 6, 9, 3, 3, 3, 3, 3, 5, 9, 9, 9], [9, 5, 2, 9, 6, 6, 9, 9, 9, 9, 6, 6, 9, 2, 5, 9], [9, 2, 5, 5, 9, 9, 7, 9, 9, 7, 9, 9, 5, 5, 2, 9], [5, 9, 5, 2, 9, 9, 9, 6, 6, 9, 9, 9, 2, 5, 9, 5], [5, 9, 5, 2, 9, 9, 9, 6, 6, 9, 9, 9, 2, 5, 9, 5], [9, 2, 5, 5, 9, 9, 7, 9, 9, 7, 9, 9, 5, 5, 2, 9], [9, 5, 2, 9, 6, 6, 9, 9, 9, 9, 6, 6, 9, 2, 5, 9], [9, 9, 9, 5, 9, 6, 9, 9, 9, 9, 6, 9, 5, 9, 9, 9], [2, 4, 4, 4, 5, 9, 5, 2, 2, 5, 9, 5, 4, 4, 4, 2], [5, 4, 5, 4, 9, 2, 5, 5, 5, 5, 2, 9, 4, 5, 4, 5], [2, 5, 4, 4, 9, 5, 2, 9, 9, 2, 5, 9, 4, 4, 5, 2], [2, 2, 5, 2, 9, 9, 9, 5, 5, 9, 9, 9, 2, 5, 2, 2]], "output": [[5, 5, 9, 9, 9], [9, 9, 2, 5, 9], [5, 5, 5, 2, 9], [2, 2, 5, 9, 5], [9, 9, 9, 6, 9]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/dc1df850.json b/data/arc-agi/training/dc1df850.json
deleted file mode 100644
index 3d73e85..0000000
--- a/data/arc-agi/training/dc1df850.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 0, 0, 0, 0], [0, 0, 0, 2, 0], [0, 0, 0, 0, 0], [0, 6, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[2, 1, 1, 1, 1], [1, 1, 1, 2, 1], [0, 0, 1, 1, 1], [0, 6, 0, 0, 0], [0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 1, 2], [0, 0, 0, 0, 0, 0, 1, 1], [0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0], [0, 1, 1, 1, 0, 0, 0, 0], [0, 1, 2, 1, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0], [0, 2, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[1, 1, 1, 0, 0], [1, 2, 1, 0, 0], [1, 1, 1, 0, 0], [0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 7, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5]], "output": [[0, 1, 1, 1, 0, 0, 0, 0, 7, 0], [0, 1, 2, 1, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 1, 2, 1, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 7, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 1, 2, 1, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/dc433765.json b/data/arc-agi/training/dc433765.json
deleted file mode 100644
index cbee476..0000000
--- a/data/arc-agi/training/dc433765.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 0, 0], [0, 0, 0], [0, 0, 4]], "output": [[0, 0, 0], [0, 3, 0], [0, 0, 4]]}, {"input": [[0, 0, 0], [3, 0, 4], [0, 0, 0], [0, 0, 0], [0, 0, 0]], "output": [[0, 0, 0], [0, 3, 4], [0, 0, 0], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 3, 0, 0, 4], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 3, 0, 4], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 3], [0, 0, 0], [4, 0, 0]], "output": [[0, 0, 0], [0, 3, 0], [4, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[4, 0, 0], [0, 0, 0], [0, 0, 3]], "output": [[4, 0, 0], [0, 3, 0], [0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ddf7fa4f.json b/data/arc-agi/training/ddf7fa4f.json
deleted file mode 100644
index 7a6d51f..0000000
--- a/data/arc-agi/training/ddf7fa4f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 2, 0, 0, 6, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 0, 0], [0, 5, 5, 0, 5, 5, 5, 5, 0, 0], [0, 5, 5, 0, 5, 5, 5, 5, 0, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 0, 0, 5, 5, 5], [0, 5, 5, 0, 0, 0, 0, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5]], "output": [[0, 0, 2, 0, 0, 6, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 0, 0], [0, 2, 2, 0, 6, 6, 6, 6, 0, 0], [0, 2, 2, 0, 6, 6, 6, 6, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 8, 8, 8], [0, 2, 2, 0, 0, 0, 0, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8]]}, {"input": [[0, 1, 0, 0, 0, 4, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 0, 0, 0, 5, 5, 5], [5, 5, 5, 5, 0, 0, 0, 5, 5, 5], [5, 5, 5, 5, 0, 0, 0, 5, 5, 5], [5, 5, 5, 5, 0, 0, 0, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 1, 0, 0, 0, 4, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 0, 7, 7, 7], [1, 1, 1, 1, 0, 0, 0, 7, 7, 7], [1, 1, 1, 1, 0, 0, 0, 7, 7, 7], [1, 1, 1, 1, 0, 0, 0, 7, 7, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 1, 0, 0, 0, 6, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 5, 5, 0, 0, 0, 0, 5, 5, 5], [0, 5, 5, 0, 0, 0, 0, 5, 5, 5], [0, 0, 0, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 1, 0, 0, 0, 6, 0, 0, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 7, 7, 7], [0, 1, 1, 0, 0, 0, 0, 7, 7, 7], [0, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 6, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[3, 0, 0, 0, 6, 0, 0, 0, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 0, 5, 5], [0, 0, 5, 5, 5, 5, 5, 0, 5, 5], [0, 0, 5, 5, 5, 5, 5, 0, 5, 5], [0, 0, 5, 5, 5, 5, 5, 0, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [5, 5, 5, 5, 0, 0, 0, 0, 5, 5], [5, 5, 5, 5, 0, 0, 0, 0, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3, 0, 0, 0, 6, 0, 0, 0, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 6, 6, 0, 9, 9], [0, 0, 6, 6, 6, 6, 6, 0, 9, 9], [0, 0, 6, 6, 6, 6, 6, 0, 9, 9], [0, 0, 6, 6, 6, 6, 6, 0, 9, 9], [0, 0, 0, 0, 0, 0, 0, 0, 9, 9], [3, 3, 3, 3, 0, 0, 0, 0, 9, 9], [3, 3, 3, 3, 0, 0, 0, 0, 9, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/de1cd16c.json b/data/arc-agi/training/de1cd16c.json
deleted file mode 100644
index 1cb8389..0000000
--- a/data/arc-agi/training/de1cd16c.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [4, 4, 4, 6, 4, 4, 4, 4, 0, 0, 6, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 6, 4, 4, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 6, 8, 8, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 6, 1], [8, 8, 6, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 6, 8, 8, 1, 1, 1, 1, 1], [8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1]], "output": [[8]]}, {"input": [[3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2], [3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 1, 2, 2, 1, 2], [3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2], [3, 3, 3, 3, 3, 3, 3, 2, 2, 1, 2, 2, 2, 2, 2], [3, 3, 1, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2], [3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2], [3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 1, 2, 2, 2], [3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2], [3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 8, 8, 8], [8, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[2]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [1, 4, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [1, 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [1, 1, 1, 4, 1, 1, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [1, 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [1, 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, 4, 5, 5, 5, 5, 5], [1, 1, 4, 1, 1, 1, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [1, 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 4, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 4, 6, 6, 6, 6, 4, 6], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 4, 6, 6, 6], [0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]], "output": [[6]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 1, 1, 1, 1, 1, 4, 4, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 2, 4, 4, 4, 4, 4, 4], [1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[4]]}], "test": [{"input": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 4, 2, 2, 2, 2, 2, 4, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 4, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 4, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 2, 2, 4, 2, 2, 8, 8, 8, 8, 8, 4, 8, 8, 8, 8], [2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 4, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 4, 8, 8, 8, 8], [1, 1, 1, 1, 4, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 4, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ded97339.json b/data/arc-agi/training/ded97339.json
deleted file mode 100644
index 65b90a7..0000000
--- a/data/arc-agi/training/ded97339.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 8, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 8, 8, 8, 8, 8], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 8, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 8, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/e179c5f4.json b/data/arc-agi/training/e179c5f4.json
deleted file mode 100644
index 2b248b9..0000000
--- a/data/arc-agi/training/e179c5f4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [1, 0]], "output": [[8, 1], [1, 8], [8, 1], [1, 8], [8, 1], [1, 8], [8, 1], [1, 8], [8, 1], [1, 8]]}, {"input": [[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [1, 0, 0]], "output": [[8, 1, 8], [1, 8, 8], [8, 1, 8], [8, 8, 1], [8, 1, 8], [1, 8, 8], [8, 1, 8], [8, 8, 1], [8, 1, 8], [1, 8, 8]]}, {"input": [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [1, 0, 0, 0]], "output": [[8, 8, 8, 1], [8, 8, 1, 8], [8, 1, 8, 8], [1, 8, 8, 8], [8, 1, 8, 8], [8, 8, 1, 8], [8, 8, 8, 1], [8, 8, 1, 8], [8, 1, 8, 8], [1, 8, 8, 8]]}], "test": [{"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [1, 0, 0, 0, 0]], "output": [[8, 1, 8, 8, 8], [1, 8, 8, 8, 8], [8, 1, 8, 8, 8], [8, 8, 1, 8, 8], [8, 8, 8, 1, 8], [8, 8, 8, 8, 1], [8, 8, 8, 1, 8], [8, 8, 1, 8, 8], [8, 1, 8, 8, 8], [1, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/e21d9049.json b/data/arc-agi/training/e21d9049.json
deleted file mode 100644
index 23279b7..0000000
--- a/data/arc-agi/training/e21d9049.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [8, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [8, 3, 2, 8, 3, 2, 8, 3, 2, 8, 3], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 3, 8, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [3, 8, 4, 2, 3, 8, 4, 2, 3, 8, 4, 2, 3, 8], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 4, 2, 3, 1, 4, 2, 3, 1, 4, 2, 3, 1, 4, 2, 3, 1, 4, 2, 3], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/e26a3af2.json b/data/arc-agi/training/e26a3af2.json
deleted file mode 100644
index a3ca80a..0000000
--- a/data/arc-agi/training/e26a3af2.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1, 1, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 2, 8, 2], [9, 5, 1, 5, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 2, 2, 2], [4, 1, 1, 2, 1, 8, 8, 5, 3, 3, 8, 3, 2, 8, 2, 2, 7], [1, 1, 1, 1, 1, 8, 8, 2, 3, 3, 3, 3, 2, 2, 2, 2, 2], [9, 1, 1, 1, 8, 8, 8, 8, 3, 3, 4, 3, 8, 2, 2, 2, 2], [4, 1, 2, 1, 1, 7, 8, 8, 3, 3, 3, 3, 2, 2, 6, 2, 9], [1, 1, 1, 1, 9, 8, 8, 8, 9, 3, 3, 3, 4, 2, 6, 2, 2], [1, 1, 1, 1, 1, 8, 5, 8, 3, 3, 3, 4, 2, 2, 2, 2, 3], [1, 1, 1, 9, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 2, 2, 2], [6, 1, 1, 8, 1, 5, 8, 8, 4, 3, 3, 3, 6, 4, 2, 2, 7], [1, 1, 1, 1, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 6, 2, 2], [1, 1, 1, 1, 1, 8, 8, 8, 3, 3, 7, 3, 2, 2, 2, 2, 2], [1, 2, 1, 4, 1, 8, 8, 8, 3, 3, 3, 3, 2, 9, 2, 1, 2]], "output": [[1, 1, 1, 1, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 2, 2, 2], [1, 1, 1, 1, 1, 8, 8, 8, 3, 3, 3, 3, 2, 2, 2, 2, 2]]}, {"input": [[2, 2, 2, 2, 2, 8, 8, 1, 8, 8, 8, 1, 1, 1], [2, 2, 8, 2, 2, 8, 8, 8, 8, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 8, 9, 8, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 9, 8, 6, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 5, 1, 1, 1], [2, 2, 2, 6, 2, 8, 8, 8, 8, 8, 5, 1, 1, 6], [2, 6, 4, 2, 2, 9, 8, 8, 8, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 6, 8, 7, 8, 8, 8, 1, 1, 2], [2, 2, 2, 6, 2, 8, 3, 8, 5, 8, 8, 3, 1, 1], [2, 2, 2, 2, 5, 8, 2, 8, 5, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 8, 1, 3], [2, 8, 2, 2, 2, 8, 8, 8, 8, 3, 8, 9, 1, 1]], "output": [[2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 1, 1, 1], [2, 2, 2, 2, 2, 8, 8, 8, 8, 8, 8, 1, 1, 1]]}, {"input": [[3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 3, 3, 3], [3, 3, 3, 9, 3, 3, 3, 2, 3, 3, 3, 9, 3, 3], [3, 3, 4, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3], [7, 7, 7, 7, 7, 7, 8, 7, 7, 3, 3, 7, 7, 4], [9, 7, 7, 7, 3, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 2], [7, 7, 7, 7, 7, 5, 7, 7, 7, 7, 7, 7, 5, 8], [7, 7, 7, 7, 7, 7, 3, 7, 7, 7, 7, 2, 7, 7], [7, 7, 7, 4, 6, 7, 7, 7, 7, 7, 9, 7, 7, 7], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 8, 8], [8, 8, 8, 4, 8, 8, 8, 7, 9, 8, 8, 8, 8, 8], [1, 1, 1, 5, 1, 1, 1, 1, 1, 1, 9, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 9, 1, 1, 1]], "output": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}], "test": [{"input": [[6, 1, 1, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 4, 1, 1, 9, 1, 1, 1, 1, 5, 1, 1, 1, 1, 1], [5, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [7, 2, 2, 2, 2, 6, 2, 9, 2, 2, 4, 2, 4, 2, 2], [2, 2, 9, 2, 1, 2, 2, 2, 3, 2, 2, 8, 2, 7, 2], [2, 5, 2, 2, 5, 6, 6, 2, 2, 2, 3, 2, 5, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 6, 2, 8, 2, 2], [1, 8, 8, 8, 8, 8, 9, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 7, 8, 8, 8, 9], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 5, 8, 8, 8, 1, 8, 8], [4, 4, 4, 4, 4, 4, 7, 3, 4, 4, 4, 4, 4, 2, 4], [4, 4, 7, 4, 4, 4, 4, 4, 4, 4, 8, 4, 4, 4, 4], [3, 3, 1, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [8, 6, 3, 3, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/e3497940.json b/data/arc-agi/training/e3497940.json
deleted file mode 100644
index dece0a8..0000000
--- a/data/arc-agi/training/e3497940.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 4, 5, 0, 0, 0, 0], [0, 0, 0, 4, 5, 4, 4, 0, 0], [0, 0, 3, 3, 5, 0, 0, 0, 0], [0, 0, 0, 3, 5, 0, 0, 0, 0], [0, 0, 0, 3, 5, 3, 3, 3, 0], [0, 0, 0, 3, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0]], "output": [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 4], [0, 0, 4, 4], [0, 0, 3, 3], [0, 0, 0, 3], [0, 3, 3, 3], [0, 0, 0, 3], [0, 0, 0, 0], [0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 2, 5, 0, 0, 0, 0], [0, 0, 0, 2, 5, 2, 6, 0, 0], [0, 0, 0, 2, 5, 0, 0, 0, 0], [0, 0, 0, 2, 5, 2, 2, 2, 0], [0, 0, 6, 6, 5, 6, 0, 0, 0], [0, 0, 0, 2, 5, 0, 0, 0, 0], [0, 2, 2, 0, 5, 2, 0, 0, 0], [0, 0, 0, 2, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0]], "output": [[0, 0, 0, 0], [0, 0, 0, 2], [0, 0, 6, 2], [0, 0, 0, 2], [0, 2, 2, 2], [0, 0, 6, 6], [0, 0, 0, 2], [0, 2, 2, 2], [0, 0, 0, 2], [0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 7, 0, 0, 0], [0, 0, 0, 8, 5, 0, 0, 0, 0], [0, 0, 0, 8, 5, 0, 0, 0, 0], [0, 7, 8, 8, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 8, 8, 0, 0], [0, 0, 0, 8, 5, 0, 0, 0, 0], [0, 0, 0, 8, 5, 0, 0, 0, 0], [0, 0, 0, 0, 5, 8, 7, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0]], "output": [[0, 0, 0, 0], [0, 0, 0, 7], [0, 0, 0, 8], [0, 0, 0, 8], [0, 7, 8, 8], [0, 0, 8, 8], [0, 0, 0, 8], [0, 0, 0, 8], [0, 0, 7, 8], [0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 1, 5, 0, 0, 0, 0], [0, 0, 0, 1, 5, 1, 0, 0, 0], [0, 1, 1, 1, 5, 1, 1, 1, 6], [0, 0, 0, 6, 5, 6, 6, 0, 0], [0, 0, 0, 0, 5, 1, 1, 1, 0], [0, 0, 0, 1, 5, 0, 0, 0, 0], [0, 0, 0, 1, 5, 1, 6, 0, 0], [0, 0, 0, 0, 5, 6, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0]], "output": [[0, 0, 0, 0], [0, 0, 0, 1], [0, 0, 0, 1], [6, 1, 1, 1], [0, 0, 6, 6], [0, 1, 1, 1], [0, 0, 0, 1], [0, 0, 6, 1], [0, 0, 0, 6], [0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/e40b9e2f.json b/data/arc-agi/training/e40b9e2f.json
deleted file mode 100644
index c89e80f..0000000
--- a/data/arc-agi/training/e40b9e2f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 0, 4, 7, 4, 0, 0, 0, 0], [0, 0, 0, 7, 4, 7, 0, 0, 0, 0], [0, 0, 0, 4, 7, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 7, 0, 4, 0, 0, 0], [0, 0, 0, 4, 7, 4, 0, 0, 0, 0], [0, 0, 7, 7, 4, 7, 7, 0, 0, 0], [0, 0, 0, 4, 7, 4, 0, 0, 0, 0], [0, 0, 4, 0, 7, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 6, 0, 3, 0, 0, 0, 0, 0], [0, 0, 6, 6, 6, 0, 0, 0, 0, 0], [0, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 3, 0, 6, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0], [0, 0, 9, 0, 0, 0, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 3, 3, 3, 2, 3, 0, 0, 0, 0], [0, 0, 0, 2, 3, 2, 0, 0, 0, 0], [0, 3, 3, 3, 2, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 3, 2, 3, 0, 0, 0, 0], [0, 3, 3, 3, 2, 3, 3, 3, 0, 0], [0, 0, 2, 2, 3, 2, 2, 0, 0, 0], [0, 3, 3, 3, 2, 3, 3, 3, 0, 0], [0, 0, 0, 3, 2, 3, 0, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/e48d4e1a.json b/data/arc-agi/training/e48d4e1a.json
deleted file mode 100644
index 6f5eb30..0000000
--- a/data/arc-agi/training/e48d4e1a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 2, 0, 0, 0, 0, 0, 5], [0, 0, 0, 2, 0, 0, 0, 0, 0, 5], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0]], "output": [[0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 4, 0, 0, 0, 0, 0, 5], [0, 0, 0, 4, 0, 0, 0, 0, 0, 5], [0, 0, 0, 4, 0, 0, 0, 0, 0, 5], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0]], "output": [[4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 6, 0, 0, 5], [0, 0, 0, 0, 0, 0, 6, 0, 0, 5], [0, 0, 0, 0, 0, 0, 6, 0, 0, 5], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 0]], "output": [[0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 3, 0, 0, 0, 0, 5], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 5], [0, 0, 0, 0, 0, 8, 0, 0, 0, 5], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0]], "output": [[0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0]]}]}
diff --git a/data/arc-agi/training/e5062a87.json b/data/arc-agi/training/e5062a87.json
deleted file mode 100644
index 60f78ac..0000000
--- a/data/arc-agi/training/e5062a87.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 5, 5, 5, 0, 0, 2, 5, 5, 5], [0, 5, 0, 0, 0, 2, 5, 2, 0, 5], [0, 5, 5, 0, 0, 0, 2, 0, 5, 0], [5, 0, 5, 5, 5, 5, 0, 5, 0, 5], [5, 0, 0, 0, 0, 5, 0, 0, 5, 0], [5, 5, 0, 5, 5, 5, 0, 0, 5, 5], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 5, 0, 5, 5, 0, 0, 0, 0, 5], [5, 0, 0, 5, 0, 0, 5, 0, 5, 5], [0, 0, 0, 5, 5, 0, 0, 5, 5, 0]], "output": [[0, 5, 5, 5, 0, 0, 2, 5, 5, 5], [0, 5, 0, 0, 0, 2, 5, 2, 2, 5], [0, 5, 5, 0, 0, 0, 2, 2, 5, 2], [5, 0, 5, 5, 5, 5, 0, 5, 2, 5], [5, 0, 0, 0, 0, 5, 0, 0, 5, 0], [5, 5, 0, 5, 5, 5, 0, 2, 5, 5], [0, 2, 0, 0, 0, 0, 2, 5, 2, 0], [2, 5, 2, 5, 5, 0, 2, 2, 0, 5], [5, 2, 0, 5, 0, 2, 5, 2, 5, 5], [0, 0, 0, 5, 5, 0, 2, 5, 5, 0]]}, {"input": [[0, 5, 5, 5, 5, 0, 0, 5, 0, 5], [5, 0, 5, 0, 0, 0, 0, 5, 5, 5], [5, 5, 5, 5, 5, 0, 5, 0, 0, 5], [5, 0, 5, 5, 5, 0, 0, 0, 5, 5], [5, 5, 5, 5, 0, 0, 5, 0, 5, 5], [5, 2, 2, 2, 2, 5, 0, 0, 0, 0], [0, 5, 5, 5, 5, 5, 5, 0, 5, 5], [0, 0, 5, 5, 5, 0, 0, 5, 5, 0], [5, 0, 5, 5, 0, 5, 0, 5, 0, 5], [5, 5, 0, 5, 0, 5, 5, 5, 5, 5]], "output": [[0, 5, 5, 5, 5, 0, 0, 5, 0, 5], [5, 0, 5, 0, 0, 0, 0, 5, 5, 5], [5, 5, 5, 5, 5, 0, 5, 0, 0, 5], [5, 0, 5, 5, 5, 0, 0, 0, 5, 5], [5, 5, 5, 5, 0, 0, 5, 0, 5, 5], [5, 2, 2, 2, 2, 5, 2, 2, 2, 2], [0, 5, 5, 5, 5, 5, 5, 0, 5, 5], [0, 0, 5, 5, 5, 0, 0, 5, 5, 0], [5, 0, 5, 5, 0, 5, 0, 5, 0, 5], [5, 5, 0, 5, 0, 5, 5, 5, 5, 5]]}, {"input": [[5, 5, 5, 5, 0, 5, 5, 5, 5, 5], [5, 5, 5, 5, 0, 5, 5, 5, 0, 5], [5, 0, 5, 0, 5, 5, 0, 5, 5, 5], [5, 0, 5, 0, 5, 5, 0, 0, 5, 5], [5, 0, 0, 0, 0, 5, 5, 5, 0, 5], [5, 5, 5, 0, 5, 0, 5, 0, 0, 5], [0, 5, 0, 0, 5, 0, 5, 5, 5, 5], [5, 5, 5, 0, 0, 0, 5, 2, 5, 0], [0, 5, 5, 5, 5, 0, 5, 2, 5, 0], [5, 0, 0, 0, 0, 0, 5, 2, 2, 5]], "output": [[5, 5, 5, 5, 0, 5, 5, 5, 5, 5], [5, 5, 5, 5, 0, 5, 5, 5, 0, 5], [5, 2, 5, 2, 5, 5, 0, 5, 5, 5], [5, 2, 5, 2, 5, 5, 0, 0, 5, 5], [5, 2, 2, 2, 2, 5, 5, 5, 0, 5], [5, 5, 5, 2, 5, 0, 5, 0, 0, 5], [0, 5, 0, 2, 5, 0, 5, 5, 5, 5], [5, 5, 5, 2, 2, 0, 5, 2, 5, 0], [0, 5, 5, 5, 5, 0, 5, 2, 5, 0], [5, 0, 0, 0, 0, 0, 5, 2, 2, 5]]}], "test": [{"input": [[0, 5, 5, 5, 0, 5, 5, 5, 5, 0], [5, 5, 5, 0, 5, 5, 5, 5, 0, 5], [0, 0, 5, 5, 5, 5, 0, 5, 0, 0], [0, 0, 5, 5, 5, 5, 0, 5, 5, 5], [0, 0, 5, 5, 5, 2, 2, 0, 0, 5], [5, 5, 0, 0, 0, 2, 2, 5, 5, 5], [0, 0, 5, 5, 0, 2, 2, 5, 5, 5], [0, 5, 5, 5, 5, 5, 5, 0, 0, 0], [5, 5, 0, 0, 5, 5, 5, 0, 0, 0], [5, 0, 5, 0, 5, 0, 0, 5, 0, 0]], "output": [[0, 5, 5, 5, 0, 5, 5, 5, 5, 0], [5, 5, 5, 0, 5, 5, 5, 5, 0, 5], [2, 2, 5, 5, 5, 5, 0, 5, 0, 0], [2, 2, 5, 5, 5, 5, 0, 5, 5, 5], [2, 2, 5, 5, 5, 2, 2, 0, 0, 5], [5, 5, 0, 0, 0, 2, 2, 5, 5, 5], [0, 0, 5, 5, 0, 2, 2, 5, 5, 5], [0, 5, 5, 5, 5, 5, 5, 0, 2, 2], [5, 5, 0, 0, 5, 5, 5, 0, 2, 2], [5, 0, 5, 0, 5, 0, 0, 5, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/e509e548.json b/data/arc-agi/training/e509e548.json
deleted file mode 100644
index ad07d13..0000000
--- a/data/arc-agi/training/e509e548.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0], [2, 2, 2, 2, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 0, 0], [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0]]}, {"input": [[3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 3, 3, 3, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0]], "output": [[1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 6, 6, 6, 6, 0], [0, 0, 1, 0, 0, 0, 6, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 6, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3], [0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0], [3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 3], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 6, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1], [0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0], [0, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 6, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6]]}], "test": [{"input": [[0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/e50d258f.json b/data/arc-agi/training/e50d258f.json
deleted file mode 100644
index d71a851..0000000
--- a/data/arc-agi/training/e50d258f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [0, 8, 8, 8, 8, 0, 8, 2, 2, 8], [0, 8, 1, 8, 8, 0, 8, 8, 8, 8], [0, 8, 8, 2, 8, 0, 8, 2, 1, 8], [0, 8, 8, 8, 8, 0, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 8, 8, 8, 2, 8, 8, 0], [0, 0, 0, 8, 2, 8, 1, 8, 8, 0], [0, 0, 0, 8, 1, 8, 8, 8, 8, 0]], "output": [[8, 8, 8, 8], [8, 2, 2, 8], [8, 8, 8, 8], [8, 2, 1, 8], [8, 8, 8, 8]]}, {"input": [[1, 1, 1, 8, 0, 0, 0, 0, 0, 0], [1, 8, 1, 1, 0, 1, 8, 8, 1, 8], [8, 2, 8, 1, 0, 8, 1, 8, 2, 8], [1, 1, 1, 8, 0, 8, 8, 8, 8, 1], [8, 1, 8, 8, 0, 8, 1, 2, 8, 2], [0, 0, 0, 0, 0, 8, 8, 8, 1, 8], [0, 0, 0, 0, 0, 1, 1, 8, 1, 8], [0, 8, 2, 2, 0, 8, 1, 1, 8, 2], [0, 2, 2, 1, 0, 0, 0, 0, 0, 0], [0, 2, 1, 8, 0, 0, 0, 0, 0, 0]], "output": [[8, 2, 2], [2, 2, 1], [2, 1, 8]]}, {"input": [[2, 8, 8, 8, 0, 0, 0, 0, 0, 0], [8, 8, 1, 8, 0, 0, 0, 0, 0, 0], [1, 8, 8, 8, 0, 0, 0, 0, 0, 0], [8, 8, 8, 2, 0, 0, 1, 8, 8, 2], [8, 2, 8, 1, 0, 0, 8, 8, 1, 8], [8, 1, 8, 8, 0, 0, 8, 2, 8, 8], [0, 0, 0, 0, 0, 0, 8, 8, 8, 1], [0, 0, 0, 0, 0, 0, 1, 8, 8, 8], [0, 0, 0, 0, 0, 0, 8, 8, 1, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 8, 8, 8], [8, 8, 1, 8], [1, 8, 8, 8], [8, 8, 8, 2], [8, 2, 8, 1], [8, 1, 8, 8]]}], "test": [{"input": [[2, 8, 8, 8, 0, 0, 0, 0, 0, 0], [8, 8, 1, 8, 0, 0, 2, 8, 1, 0], [1, 2, 8, 1, 0, 0, 8, 8, 8, 0], [8, 8, 8, 8, 0, 0, 2, 1, 8, 0], [0, 0, 0, 0, 0, 0, 8, 8, 2, 0], [0, 0, 0, 0, 0, 0, 2, 8, 1, 0], [0, 1, 2, 8, 2, 0, 1, 8, 8, 0], [0, 8, 8, 1, 8, 0, 0, 0, 0, 0], [0, 1, 2, 8, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 8, 1], [8, 8, 8], [2, 1, 8], [8, 8, 2], [2, 8, 1], [1, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/e6721834.json b/data/arc-agi/training/e6721834.json
deleted file mode 100644
index 4a8191c..0000000
--- a/data/arc-agi/training/e6721834.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 1, 1, 2, 1, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 2, 1, 1, 1, 2, 1, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 1, 3, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 1, 3, 1, 1, 8, 8, 8, 8, 1, 1, 1, 2, 1, 8, 8], [8, 8, 1, 1, 1, 1, 8, 8, 8, 8, 1, 2, 1, 2, 1, 8, 8], [8, 8, 1, 3, 1, 1, 8, 8, 8, 8, 1, 2, 1, 1, 1, 8, 8], [8, 8, 1, 1, 3, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 2, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 1, 1, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 8, 1, 8, 1, 1], [6, 6, 3, 3, 3, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [6, 6, 8, 3, 8, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [6, 6, 3, 3, 3, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [6, 6, 3, 3, 3, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1], [6, 6, 6, 6, 3, 3, 3, 2, 6, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [6, 6, 6, 6, 3, 2, 3, 3, 6, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [6, 6, 6, 6, 3, 3, 3, 3, 6, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 3, 3, 3, 1, 1], [1, 1, 1, 1, 1, 8, 3, 8, 1, 1], [1, 1, 1, 1, 1, 3, 3, 3, 1, 1], [1, 1, 1, 1, 1, 3, 3, 3, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 3, 3, 3, 2, 1, 1, 1, 1, 1], [1, 3, 2, 3, 3, 1, 1, 1, 1, 1], [1, 3, 3, 3, 3, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 8, 1, 1, 1, 8, 8, 8, 8], [4, 4, 4, 4, 2, 4, 4, 4, 8, 2, 1, 1, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 8, 1, 1, 1, 8, 8, 8, 8], [4, 4, 4, 4, 2, 4, 4, 4, 8, 2, 1, 1, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 1, 1, 6, 8, 8, 8], [4, 4, 6, 4, 4, 4, 4, 4, 8, 8, 1, 1, 1, 8, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 1, 1, 1, 4], [4, 4, 4, 4, 2, 1, 1, 4], [4, 4, 4, 4, 1, 1, 1, 4], [4, 4, 4, 4, 2, 1, 1, 4], [4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4], [1, 1, 6, 4, 4, 4, 4, 4], [1, 1, 1, 4, 4, 4, 4, 4]]}], "test": [{"input": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 1, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4], [4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 8, 8, 8, 8, 8, 2, 2, 2, 2], [2, 2, 2, 8, 8, 8, 1, 8, 2, 2, 2, 2], [2, 2, 2, 8, 8, 8, 8, 1, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 1, 8, 2, 2, 2, 8, 8, 1, 8, 8, 2], [2, 8, 8, 2, 2, 2, 1, 8, 8, 8, 8, 2], [2, 8, 8, 2, 2, 2, 8, 8, 1, 8, 8, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]], "output": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 8, 8, 8, 8, 8, 4, 4, 4], [4, 4, 4, 4, 8, 8, 8, 1, 8, 4, 4, 4], [4, 4, 4, 4, 8, 8, 8, 8, 1, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 8, 8, 1, 8, 8, 4, 4, 4, 4, 4, 4], [4, 1, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4], [4, 8, 8, 1, 8, 8, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/e73095fd.json b/data/arc-agi/training/e73095fd.json
deleted file mode 100644
index 9e6b500..0000000
--- a/data/arc-agi/training/e73095fd.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 5], [5, 5, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0], [0, 5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [5, 5, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 5, 0, 0, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 5], [5, 5, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 5, 0, 0, 0, 5, 4], [4, 5, 5, 5, 5, 5, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4], [5, 5, 0, 0, 0, 5, 4, 4, 5, 0, 0, 0, 0, 5, 0, 0, 0, 5, 4], [0, 0, 0, 0, 0, 5, 4, 4, 5, 0, 0, 0, 0, 5, 0, 0, 0, 5, 5], [0, 0, 0, 0, 0, 5, 4, 4, 5, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 4, 4, 5, 0, 0, 5, 4, 4, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 5, 4, 4, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 5, 0, 0, 5, 5], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 5, 0], [0, 0, 0, 5, 0, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0], [0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 5, 0, 0, 5, 5], [0, 0, 0, 5, 4, 4, 4, 5, 0, 0, 0, 5, 0, 0, 5, 4], [0, 0, 0, 5, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 4], [0, 0, 0, 5, 4, 4, 4, 5, 0, 0, 0, 0, 0, 0, 5, 4], [0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 5, 5], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 5, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 5, 5], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 5, 0, 0, 0, 5, 0], [5, 5, 5, 5, 0, 0, 5, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0], [0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 4, 4, 5, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 4, 4, 4, 5, 5], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 5, 4, 4, 4, 5, 0], [5, 5, 5, 5, 4, 4, 5, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0], [0, 0, 0, 5, 4, 4, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 5, 4, 4, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 4, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 4, 4, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 5, 0, 0, 5, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 5, 5], [0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 5, 0], [0, 5, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0], [0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0], [0, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 5, 4, 4, 5, 0], [5, 5, 5, 5, 5, 5, 4, 4, 4, 5, 5, 5, 5, 5, 4, 4, 5, 5], [0, 5, 0, 0, 0, 5, 4, 4, 4, 5, 0, 0, 0, 5, 4, 4, 5, 0], [0, 5, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 5, 5, 5, 5, 0], [0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 4, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/e76a88a6.json b/data/arc-agi/training/e76a88a6.json
deleted file mode 100644
index 2f84c1c..0000000
--- a/data/arc-agi/training/e76a88a6.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 4, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0], [0, 0, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 4, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 2, 4, 4, 0], [0, 0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 0, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 2, 4, 4, 0, 0, 0, 0, 0], [0, 0, 4, 4, 4, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 5, 5, 5, 5], [0, 6, 6, 6, 6, 0, 5, 5, 5, 5], [0, 8, 8, 6, 8, 0, 5, 5, 5, 5], [0, 6, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 6, 6, 6, 6], [0, 6, 6, 6, 6, 0, 8, 8, 6, 8], [0, 8, 8, 6, 8, 0, 6, 8, 8, 8], [0, 6, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 6, 6, 0, 0], [0, 0, 0, 0, 8, 8, 6, 8, 0, 0], [0, 0, 0, 0, 6, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 1, 4, 4, 0, 0, 5, 5, 5, 0], [0, 1, 4, 1, 0, 0, 5, 5, 5, 0], [0, 1, 1, 1, 0, 0, 5, 5, 5, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0], [0, 0, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 5, 5, 5, 0, 0, 5, 5, 5], [0, 0, 5, 5, 5, 0, 0, 5, 5, 5], [0, 0, 5, 5, 5, 0, 0, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 5, 5, 5]], "output": [[0, 4, 4, 4, 0, 0, 0, 0, 0, 0], [0, 1, 4, 4, 0, 0, 4, 4, 4, 0], [0, 1, 4, 1, 0, 0, 1, 4, 4, 0], [0, 1, 1, 1, 0, 0, 1, 4, 1, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 0], [0, 0, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 1, 4, 4, 0, 0, 4, 4, 4], [0, 0, 1, 4, 1, 0, 0, 1, 4, 4], [0, 0, 1, 1, 1, 0, 0, 1, 4, 1], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/e8593010.json b/data/arc-agi/training/e8593010.json
deleted file mode 100644
index 5fc60e7..0000000
--- a/data/arc-agi/training/e8593010.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[5, 5, 5, 5, 0, 5, 5, 5, 0, 5], [0, 0, 5, 5, 5, 5, 5, 5, 5, 5], [0, 5, 5, 5, 5, 5, 0, 0, 5, 0], [5, 5, 0, 5, 5, 5, 5, 0, 5, 0], [5, 5, 5, 5, 0, 0, 5, 5, 5, 5], [0, 5, 0, 5, 5, 5, 5, 0, 5, 0], [0, 5, 5, 5, 0, 0, 5, 5, 5, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 0], [0, 5, 5, 5, 5, 5, 5, 0, 5, 0]], "output": [[5, 5, 5, 5, 3, 5, 5, 5, 3, 5], [1, 1, 5, 5, 5, 5, 5, 5, 5, 5], [1, 5, 5, 5, 5, 5, 1, 1, 5, 2], [5, 5, 3, 5, 5, 5, 5, 1, 5, 2], [5, 5, 5, 5, 2, 2, 5, 5, 5, 5], [2, 5, 3, 5, 5, 5, 5, 3, 5, 2], [2, 5, 5, 5, 2, 2, 5, 5, 5, 2], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 2], [3, 5, 5, 5, 5, 5, 5, 3, 5, 2]]}, {"input": [[5, 5, 5, 5, 5, 0, 0, 5, 5, 5], [0, 0, 5, 0, 5, 5, 5, 5, 5, 0], [5, 5, 5, 5, 5, 0, 5, 0, 0, 5], [5, 0, 5, 5, 5, 0, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 0, 5], [5, 5, 5, 5, 0, 5, 5, 5, 5, 5], [0, 0, 5, 5, 0, 5, 0, 0, 5, 0], [5, 5, 5, 5, 5, 5, 5, 0, 5, 5], [0, 5, 5, 5, 5, 5, 0, 5, 5, 0], [0, 0, 5, 5, 5, 5, 5, 5, 0, 5]], "output": [[5, 5, 5, 5, 5, 2, 2, 5, 5, 5], [2, 2, 5, 3, 5, 5, 5, 5, 5, 3], [5, 5, 5, 5, 5, 2, 5, 2, 2, 5], [5, 3, 5, 5, 5, 2, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 3, 5], [5, 5, 5, 5, 2, 5, 5, 5, 5, 5], [2, 2, 5, 5, 2, 5, 1, 1, 5, 3], [5, 5, 5, 5, 5, 5, 5, 1, 5, 5], [1, 5, 5, 5, 5, 5, 3, 5, 5, 3], [1, 1, 5, 5, 5, 5, 5, 5, 3, 5]]}, {"input": [[0, 0, 5, 5, 0, 5, 5, 5, 0, 5], [5, 5, 0, 0, 5, 5, 5, 5, 0, 5], [5, 0, 5, 0, 5, 0, 5, 5, 0, 5], [5, 0, 5, 5, 0, 5, 5, 5, 5, 5], [5, 5, 5, 0, 0, 5, 5, 0, 5, 0], [5, 5, 0, 5, 5, 5, 5, 0, 5, 0], [5, 5, 0, 5, 5, 0, 5, 5, 5, 5], [5, 5, 5, 0, 5, 5, 5, 5, 5, 5], [5, 0, 5, 5, 5, 0, 5, 0, 5, 5], [5, 5, 0, 5, 5, 5, 5, 5, 5, 5]], "output": [[2, 2, 5, 5, 3, 5, 5, 5, 1, 5], [5, 5, 1, 1, 5, 5, 5, 5, 1, 5], [5, 2, 5, 1, 5, 3, 5, 5, 1, 5], [5, 2, 5, 5, 1, 5, 5, 5, 5, 5], [5, 5, 5, 1, 1, 5, 5, 2, 5, 2], [5, 5, 2, 5, 5, 5, 5, 2, 5, 2], [5, 5, 2, 5, 5, 3, 5, 5, 5, 5], [5, 5, 5, 3, 5, 5, 5, 5, 5, 5], [5, 3, 5, 5, 5, 3, 5, 3, 5, 5], [5, 5, 3, 5, 5, 5, 5, 5, 5, 5]]}], "test": [{"input": [[0, 5, 5, 5, 5, 5, 0, 0, 5, 5], [5, 5, 5, 0, 5, 5, 0, 5, 0, 5], [5, 5, 0, 5, 5, 5, 5, 5, 0, 5], [5, 0, 0, 5, 5, 5, 5, 5, 5, 5], [0, 5, 5, 5, 5, 5, 0, 5, 5, 5], [0, 5, 5, 0, 5, 5, 0, 5, 0, 0], [5, 5, 0, 5, 5, 5, 5, 5, 0, 5], [5, 5, 0, 5, 5, 5, 5, 5, 5, 0], [0, 0, 5, 5, 5, 5, 0, 5, 5, 5], [5, 5, 5, 5, 0, 5, 0, 0, 5, 0]], "output": [[3, 5, 5, 5, 5, 5, 1, 1, 5, 5], [5, 5, 5, 3, 5, 5, 1, 5, 2, 5], [5, 5, 1, 5, 5, 5, 5, 5, 2, 5], [5, 1, 1, 5, 5, 5, 5, 5, 5, 5], [2, 5, 5, 5, 5, 5, 2, 5, 5, 5], [2, 5, 5, 3, 5, 5, 2, 5, 1, 1], [5, 5, 2, 5, 5, 5, 5, 5, 1, 5], [5, 5, 2, 5, 5, 5, 5, 5, 5, 3], [2, 2, 5, 5, 5, 5, 1, 5, 5, 5], [5, 5, 5, 5, 3, 5, 1, 1, 5, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/e8dc4411.json b/data/arc-agi/training/e8dc4411.json
deleted file mode 100644
index c53b858..0000000
--- a/data/arc-agi/training/e8dc4411.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 0, 8, 2, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 0, 8, 0, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 0, 8, 2, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 2, 8, 2, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 2, 8, 2, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 2, 8, 2, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 2, 8, 2, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 2, 8, 2, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2, 8, 2, 8]]}, {"input": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 3, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "output": [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 3, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]}, {"input": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 0, 0, 4, 0, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 0, 0, 4, 0, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 0, 0, 4, 0, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 0, 0, 4, 0, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]], "output": [[4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 4, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 4, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 4, 8, 8], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 4, 8, 8], [4, 4, 4, 4, 4, 4, 0, 0, 4, 0, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 0, 0, 4, 0, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 0, 0, 4, 0, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 0, 0, 4, 0, 0, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]]}], "test": [{"input": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 0, 3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 0, 3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]], "output": [[6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 6, 3, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 6, 3, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 0, 3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 0, 3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/e9614598.json b/data/arc-agi/training/e9614598.json
deleted file mode 100644
index 05fdf67..0000000
--- a/data/arc-agi/training/e9614598.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 1, 0, 3, 3, 3, 0, 1, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 3, 3, 3, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0], [0, 0, 3, 3, 3, 0], [0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/e98196ab.json b/data/arc-agi/training/e98196ab.json
deleted file mode 100644
index 647020f..0000000
--- a/data/arc-agi/training/e98196ab.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]], "output": [[0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0], [1, 8, 0, 0, 0, 0, 0, 0, 0, 8, 1]]}, {"input": [[0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [7, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 0, 7, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 7]], "output": [[0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 7], [7, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 7, 3, 7, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [7, 3, 0, 0, 0, 0, 7, 0, 0, 0, 7]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0]], "output": [[2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2], [0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0], [2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 1]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7], [0, 0, 7, 7, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [0, 7, 0, 7, 0, 0, 0, 0, 0, 0, 7], [0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [6, 0, 0, 0, 6, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [6, 0, 0, 0, 6, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [6, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0]], "output": [[6, 0, 0, 0, 6, 0, 6, 0, 0, 0, 7], [0, 0, 7, 7, 0, 0, 0, 0, 7, 0, 6], [6, 0, 0, 0, 6, 0, 7, 0, 0, 0, 6], [0, 7, 0, 7, 0, 0, 0, 0, 0, 6, 7], [6, 0, 0, 6, 0, 0, 7, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/e9afcf9a.json b/data/arc-agi/training/e9afcf9a.json
deleted file mode 100644
index 97af1e4..0000000
--- a/data/arc-agi/training/e9afcf9a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 3, 3, 3, 3, 3], [9, 9, 9, 9, 9, 9]], "output": [[3, 9, 3, 9, 3, 9], [9, 3, 9, 3, 9, 3]]}, {"input": [[4, 4, 4, 4, 4, 4], [8, 8, 8, 8, 8, 8]], "output": [[4, 8, 4, 8, 4, 8], [8, 4, 8, 4, 8, 4]]}], "test": [{"input": [[6, 6, 6, 6, 6, 6], [2, 2, 2, 2, 2, 2]], "output": [[6, 2, 6, 2, 6, 2], [2, 6, 2, 6, 2, 6]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ea32f347.json b/data/arc-agi/training/ea32f347.json
deleted file mode 100644
index 7c5f89c..0000000
--- a/data/arc-agi/training/ea32f347.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 5, 0, 0], [0, 5, 0, 0, 5, 0, 0, 5, 0, 0], [0, 5, 0, 0, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 4, 0, 0, 0, 0, 0], [0, 1, 0, 0, 4, 0, 0, 0, 0, 0], [0, 1, 0, 0, 4, 0, 0, 2, 0, 0], [0, 1, 0, 0, 4, 0, 0, 2, 0, 0], [0, 1, 0, 0, 4, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 5, 0, 0], [0, 5, 0, 0, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 4, 0, 0, 1, 0, 0, 0, 0, 0], [0, 4, 0, 0, 1, 0, 0, 0, 0, 0], [0, 4, 0, 0, 1, 0, 0, 2, 0, 0], [0, 4, 0, 0, 1, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 5, 5, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 2, 2, 2, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 5, 5, 5, 5, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 5, 5, 5, 5, 5, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 2, 2, 2, 2, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 4, 4, 4, 4, 4, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 5, 5, 5, 5, 5, 5], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ea786f4a.json b/data/arc-agi/training/ea786f4a.json
deleted file mode 100644
index 34692e5..0000000
--- a/data/arc-agi/training/ea786f4a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 1, 1], [1, 0, 1], [1, 1, 1]], "output": [[0, 1, 0], [1, 0, 1], [0, 1, 0]]}, {"input": [[2, 2, 2, 2, 2], [2, 2, 2, 2, 2], [2, 2, 0, 2, 2], [2, 2, 2, 2, 2], [2, 2, 2, 2, 2]], "output": [[0, 2, 2, 2, 0], [2, 0, 2, 0, 2], [2, 2, 0, 2, 2], [2, 0, 2, 0, 2], [0, 2, 2, 2, 0]]}, {"input": [[3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 0, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3]], "output": [[0, 3, 3, 3, 3, 3, 0], [3, 0, 3, 3, 3, 0, 3], [3, 3, 0, 3, 0, 3, 3], [3, 3, 3, 0, 3, 3, 3], [3, 3, 0, 3, 0, 3, 3], [3, 0, 3, 3, 3, 0, 3], [0, 3, 3, 3, 3, 3, 0]]}], "test": [{"input": [[6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 0, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]], "output": [[0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0], [6, 0, 6, 6, 6, 6, 6, 6, 6, 0, 6], [6, 6, 0, 6, 6, 6, 6, 6, 0, 6, 6], [6, 6, 6, 0, 6, 6, 6, 0, 6, 6, 6], [6, 6, 6, 6, 0, 6, 0, 6, 6, 6, 6], [6, 6, 6, 6, 6, 0, 6, 6, 6, 6, 6], [6, 6, 6, 6, 0, 6, 0, 6, 6, 6, 6], [6, 6, 6, 0, 6, 6, 6, 0, 6, 6, 6], [6, 6, 0, 6, 6, 6, 6, 6, 0, 6, 6], [6, 0, 6, 6, 6, 6, 6, 6, 6, 0, 6], [0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/eb281b96.json b/data/arc-agi/training/eb281b96.json
deleted file mode 100644
index 1d3b2ef..0000000
--- a/data/arc-agi/training/eb281b96.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8]], "output": [[0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8], [0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0], [0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0]]}, {"input": [[0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2]], "output": [[0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0]]}], "test": [{"input": [[0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3]], "output": [[0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0, 3, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/eb5a1d5d.json b/data/arc-agi/training/eb5a1d5d.json
deleted file mode 100644
index f88efe0..0000000
--- a/data/arc-agi/training/eb5a1d5d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 8], [8, 3, 3, 3, 8], [8, 3, 2, 3, 8], [8, 3, 3, 3, 8], [8, 8, 8, 8, 8]]}, {"input": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]], "output": [[5, 5, 5], [5, 6, 5], [5, 5, 5]]}, {"input": [[3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 2, 2, 2, 1, 1, 1, 1, 1, 2, 8, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 2, 2, 2, 1, 1, 1, 1, 1, 2, 8, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 2, 2, 2, 1, 1, 1, 1, 1, 2, 8, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]], "output": [[3, 3, 3, 3, 3, 3, 3], [3, 8, 8, 8, 8, 8, 3], [3, 8, 2, 2, 2, 8, 3], [3, 8, 2, 1, 2, 8, 3], [3, 8, 2, 2, 2, 8, 3], [3, 8, 8, 8, 8, 8, 3], [3, 3, 3, 3, 3, 3, 3]]}], "test": [{"input": [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 3, 3, 3, 8, 8, 8, 2, 2, 2, 2, 8, 8, 3, 3, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 3, 3, 3, 8, 8, 8, 2, 2, 2, 2, 8, 8, 3, 3, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 3, 3, 3, 8, 8, 8, 2, 2, 2, 2, 8, 8, 3, 3, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 3, 3, 3, 8, 8, 8, 2, 2, 2, 2, 8, 8, 3, 3, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 3, 3, 3, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]], "output": [[2, 2, 2, 2, 2, 2, 2, 2, 2], [2, 1, 1, 1, 1, 1, 1, 1, 2], [2, 1, 3, 3, 3, 3, 3, 1, 2], [2, 1, 3, 8, 8, 8, 3, 1, 2], [2, 1, 3, 8, 2, 8, 3, 1, 2], [2, 1, 3, 8, 8, 8, 3, 1, 2], [2, 1, 3, 3, 3, 3, 3, 1, 2], [2, 1, 1, 1, 1, 1, 1, 1, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ec883f72.json b/data/arc-agi/training/ec883f72.json
deleted file mode 100644
index 14245e3..0000000
--- a/data/arc-agi/training/ec883f72.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[3, 3, 0, 9, 0, 0], [3, 3, 0, 9, 0, 0], [0, 0, 0, 9, 0, 0], [9, 9, 9, 9, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[3, 3, 0, 9, 0, 0], [3, 3, 0, 9, 0, 0], [0, 0, 0, 9, 0, 0], [9, 9, 9, 9, 0, 0], [0, 0, 0, 0, 3, 0], [0, 0, 0, 0, 0, 3]]}, {"input": [[0, 0, 8, 0, 6, 0, 8, 0], [0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 8, 0, 6, 0, 8, 0], [0, 0, 8, 0, 0, 0, 8, 0], [0, 0, 8, 8, 8, 8, 8, 0], [0, 6, 0, 0, 0, 0, 0, 6], [6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 4, 4, 0, 0], [0, 4, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 2, 2, 0, 4, 0, 0], [0, 4, 0, 2, 2, 0, 4, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 0, 0, 2, 0], [0, 4, 4, 4, 4, 4, 4, 0, 0], [0, 4, 0, 0, 0, 0, 4, 0, 0], [0, 4, 0, 2, 2, 0, 4, 0, 0], [0, 4, 0, 2, 2, 0, 4, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 0, 5, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 0, 5, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 0, 5, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 0, 5, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 0, 5, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 0, 5, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 0, 5, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 0, 5, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 0, 5, 0, 0, 0, 0, 0, 0], [4, 4, 4, 4, 0, 5, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 3, 0, 4, 4, 0, 3, 0, 0], [0, 0, 0, 0, 3, 0, 4, 4, 0, 3, 0, 0], [0, 0, 0, 0, 3, 0, 4, 4, 0, 3, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 3, 0, 4, 4, 0, 3, 0, 0], [0, 0, 0, 0, 3, 0, 4, 4, 0, 3, 0, 0], [0, 0, 0, 0, 3, 0, 4, 4, 0, 3, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ecdecbb3.json b/data/arc-agi/training/ecdecbb3.json
deleted file mode 100644
index 1dbaf06..0000000
--- a/data/arc-agi/training/ecdecbb3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0], [8, 8, 2, 8, 8, 8, 8, 8, 2, 8, 8, 8, 8], [0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0]], "output": [[0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 8, 2, 8, 2, 2, 2, 2, 2, 2, 2, 2, 8, 2, 8, 0, 0], [0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0], [8, 8, 8, 8, 2, 8, 8, 8, 2, 8, 8, 8], [0, 0, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8, 8], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 2, 0, 0, 0], [0, 2, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 8, 2, 8, 2, 2, 0, 0, 0], [0, 2, 2, 8, 2, 8, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 2, 8, 2, 2, 2, 2, 2, 8, 2, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 2, 8, 2, 2, 2, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ed36ccf7.json b/data/arc-agi/training/ed36ccf7.json
deleted file mode 100644
index 329db0e..0000000
--- a/data/arc-agi/training/ed36ccf7.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[0, 0, 0], [5, 0, 0], [0, 5, 5]], "output": [[0, 0, 5], [0, 0, 5], [0, 5, 0]]}], "train": [{"input": [[9, 0, 0], [9, 9, 9], [9, 9, 9]], "output": [[0, 9, 9], [0, 9, 9], [9, 9, 9]]}, {"input": [[6, 6, 6], [0, 0, 0], [6, 6, 0]], "output": [[6, 0, 0], [6, 0, 6], [6, 0, 6]]}, {"input": [[0, 0, 9], [0, 0, 9], [9, 9, 9]], "output": [[9, 9, 9], [0, 0, 9], [0, 0, 9]]}, {"input": [[2, 0, 2], [0, 0, 2], [0, 2, 2]], "output": [[2, 2, 2], [0, 0, 2], [2, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ef135b50.json b/data/arc-agi/training/ef135b50.json
deleted file mode 100644
index 94ab936..0000000
--- a/data/arc-agi/training/ef135b50.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 2, 2, 0], [2, 2, 2, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 2, 2, 0, 0, 2, 2, 0], [0, 0, 0, 2, 2, 0, 0, 2, 2, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 9, 9, 9, 9, 2, 2, 0], [2, 2, 2, 9, 9, 9, 9, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 2, 2, 9, 9, 2, 2, 0], [0, 0, 0, 2, 2, 9, 9, 2, 2, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0]]}, {"input": [[2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 2, 2, 2], [2, 2, 0, 0, 0, 0, 0, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2], [0, 0, 0, 2, 2, 0, 0, 2, 2, 2], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2]], "output": [[2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 9, 9, 9, 9, 9, 2, 2, 2], [2, 2, 9, 9, 9, 9, 9, 2, 2, 2], [0, 0, 0, 0, 0, 0, 0, 2, 2, 2], [0, 0, 0, 2, 2, 9, 9, 2, 2, 2], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 9, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2]]}, {"input": [[0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [2, 2, 2, 2, 0, 0, 2, 2, 2, 2], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 2], [2, 2, 2, 2, 0, 2, 2, 2, 0, 2], [2, 2, 2, 2, 0, 2, 2, 2, 0, 2], [2, 2, 2, 2, 0, 0, 0, 0, 0, 2]], "output": [[0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [2, 2, 2, 2, 9, 9, 2, 2, 2, 2], [2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 9, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2, 2, 9, 2], [2, 2, 2, 2, 9, 2, 2, 2, 9, 2], [2, 2, 2, 2, 9, 2, 2, 2, 9, 2], [2, 2, 2, 2, 0, 0, 0, 0, 0, 2]]}], "test": [{"input": [[2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 0, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 2, 2, 2, 0, 0, 2, 2, 2, 2], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 2, 2, 0, 2, 2, 2, 2, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 9, 9, 9, 2, 2, 2, 2], [0, 0, 0, 0, 0, 0, 2, 2, 2, 2], [0, 2, 2, 2, 9, 9, 2, 2, 2, 2], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 2, 2, 2, 9, 2, 2, 2, 2, 0], [0, 2, 2, 2, 9, 2, 2, 2, 2, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
diff --git a/data/arc-agi/training/f15e1fac.json b/data/arc-agi/training/f15e1fac.json
deleted file mode 100644
index b383a06..0000000
--- a/data/arc-agi/training/f15e1fac.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0], [0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0], [0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0], [0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0], [2, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0], [0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0], [0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0], [0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0], [0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0], [0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8, 0], [2, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8], [0, 0, 0, 8, 0, 0, 0, 8, 0, 8, 0, 8]]}, {"input": [[0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 0, 8, 0, 0, 0, 8, 0, 0, 0], [0, 8, 0, 0, 0, 8, 0, 0, 0, 2], [0, 8, 0, 0, 0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 0, 8, 0, 0, 0, 0], [8, 0, 0, 0, 8, 0, 0, 0, 0, 2], [8, 0, 0, 0, 8, 0, 0, 0, 0, 0], [8, 0, 0, 0, 8, 0, 0, 0, 0, 0], [8, 0, 0, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 2], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8], [0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0], [8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8], [0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/f1cefba8.json b/data/arc-agi/training/f1cefba8.json
deleted file mode 100644
index 8d2efeb..0000000
--- a/data/arc-agi/training/f1cefba8.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 2, 8, 8, 8, 8, 0], [0, 8, 8, 2, 2, 2, 2, 2, 2, 2, 8, 8, 0], [0, 8, 8, 2, 2, 2, 2, 2, 2, 2, 8, 8, 0], [0, 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 8, 0], [0, 8, 8, 2, 2, 2, 2, 2, 2, 2, 8, 8, 0], [0, 8, 8, 2, 2, 2, 2, 2, 2, 2, 8, 8, 0], [0, 8, 8, 2, 2, 2, 2, 2, 2, 2, 8, 8, 0], [0, 8, 8, 2, 2, 2, 2, 2, 2, 2, 8, 8, 0], [0, 8, 8, 2, 2, 2, 2, 2, 2, 2, 8, 8, 0], [0, 8, 8, 2, 2, 2, 2, 2, 2, 2, 8, 8, 0], [0, 8, 8, 8, 2, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 2, 8, 2, 2, 8, 2, 2, 8, 8, 0], [0, 8, 8, 2, 8, 2, 2, 8, 2, 2, 8, 8, 0], [2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 2], [0, 8, 8, 2, 8, 2, 2, 8, 2, 2, 8, 8, 0], [0, 8, 8, 2, 8, 2, 2, 8, 2, 2, 8, 8, 0], [0, 8, 8, 2, 8, 2, 2, 8, 2, 2, 8, 8, 0], [0, 8, 8, 2, 8, 2, 2, 8, 2, 2, 8, 8, 0], [0, 8, 8, 2, 8, 2, 2, 8, 2, 2, 8, 8, 0], [0, 8, 8, 2, 8, 2, 2, 8, 2, 2, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 0, 0, 0], [0, 0, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 0, 0, 0], [0, 0, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 0, 0, 0], [0, 0, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 4, 4, 1, 4, 1, 4, 4, 4, 1, 1, 0, 0, 0], [4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4], [0, 0, 1, 1, 4, 4, 1, 4, 1, 4, 4, 4, 1, 1, 0, 0, 0], [0, 0, 1, 1, 4, 4, 1, 4, 1, 4, 4, 4, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 0, 0], [0, 0, 0, 0, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 3, 3, 3, 3, 3, 2, 3, 3, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 3, 3, 3, 3, 3, 2, 3, 3, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 3, 3, 3, 3, 3, 2, 3, 3, 2, 2, 0, 0], [3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3], [0, 0, 0, 0, 2, 2, 3, 3, 3, 3, 3, 2, 3, 3, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 3, 3, 3, 3, 3, 2, 3, 3, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 3, 3, 3, 3, 3, 2, 3, 3, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 3, 3, 3, 3, 3, 2, 3, 3, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 8, 1, 1, 1, 8, 1, 1, 1, 1, 0, 0, 0], [0, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 0, 0, 0], [0, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 0, 0, 0], [0, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 0, 0, 0], [0, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 0, 0, 0], [0, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 0, 0, 0], [0, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 0, 0, 0], [0, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 0, 0, 0], [0, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 0, 0, 0], [0, 1, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 1, 8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 1, 1, 0, 0, 0], [0, 1, 1, 8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 1, 1, 0, 0, 0], [0, 1, 1, 8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 1, 1, 0, 0, 0], [0, 1, 1, 8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 1, 1, 0, 0, 0], [8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8], [0, 1, 1, 8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 1, 1, 0, 0, 0], [0, 1, 1, 8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 1, 1, 0, 0, 0], [0, 1, 1, 8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 1, 1, 0, 0, 0], [0, 1, 1, 8, 8, 8, 1, 8, 8, 8, 1, 8, 8, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/f25fbde4.json b/data/arc-agi/training/f25fbde4.json
deleted file mode 100644
index 0df142e..0000000
--- a/data/arc-agi/training/f25fbde4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 4, 4, 4, 4, 0, 0], [0, 0, 4, 4, 4, 4, 0, 0], [4, 4, 4, 4, 4, 4, 4, 4], [4, 4, 4, 4, 4, 4, 4, 4], [0, 0, 4, 4, 4, 4, 0, 0], [0, 0, 4, 4, 4, 4, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [4, 4, 4, 4, 0, 0], [4, 4, 4, 4, 0, 0], [0, 0, 0, 0, 4, 4], [0, 0, 0, 0, 4, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [4, 4, 4, 4, 0, 0], [4, 4, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 4, 4], [0, 0, 4, 4, 4, 4]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 4, 0, 0], [0, 0, 0, 4, 0, 4, 0, 4, 0], [0, 0, 0, 0, 4, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 4, 4, 0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0, 4, 4, 0, 0], [4, 4, 0, 0, 4, 4, 0, 0, 4, 4], [4, 4, 0, 0, 4, 4, 0, 0, 4, 4], [0, 0, 4, 4, 0, 0, 4, 4, 0, 0], [0, 0, 4, 4, 0, 0, 4, 4, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/f25ffba3.json b/data/arc-agi/training/f25ffba3.json
deleted file mode 100644
index 4ac878d..0000000
--- a/data/arc-agi/training/f25ffba3.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 9], [0, 0, 3, 9], [0, 0, 3, 9], [2, 0, 3, 9], [2, 4, 3, 9]], "output": [[2, 4, 3, 9], [2, 0, 3, 9], [0, 0, 3, 9], [0, 0, 3, 9], [0, 0, 0, 9], [0, 0, 0, 9], [0, 0, 3, 9], [0, 0, 3, 9], [2, 0, 3, 9], [2, 4, 3, 9]]}, {"input": [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 2], [0, 0, 0, 2], [0, 8, 0, 2], [0, 3, 8, 2], [3, 3, 8, 2]], "output": [[3, 3, 8, 2], [0, 3, 8, 2], [0, 8, 0, 2], [0, 0, 0, 2], [0, 0, 0, 2], [0, 0, 0, 2], [0, 0, 0, 2], [0, 8, 0, 2], [0, 3, 8, 2], [3, 3, 8, 2]]}], "test": [{"input": [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 1, 0, 0], [7, 1, 0, 0], [7, 1, 3, 0], [7, 1, 3, 3], [7, 1, 4, 4]], "output": [[7, 1, 4, 4], [7, 1, 3, 3], [7, 1, 3, 0], [7, 1, 0, 0], [0, 1, 0, 0], [0, 1, 0, 0], [7, 1, 0, 0], [7, 1, 3, 0], [7, 1, 3, 3], [7, 1, 4, 4]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/f2829549.json b/data/arc-agi/training/f2829549.json
deleted file mode 100644
index 89bb4c9..0000000
--- a/data/arc-agi/training/f2829549.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[0, 0, 0, 1, 0, 5, 0], [7, 7, 7, 1, 5, 5, 0], [0, 0, 0, 1, 5, 0, 0], [7, 0, 0, 1, 5, 5, 5]], "output": [[3, 0, 3], [0, 0, 0], [0, 3, 3], [0, 0, 0]]}], "train": [{"input": [[7, 7, 0, 1, 5, 0, 0], [7, 0, 0, 1, 5, 0, 0], [0, 0, 0, 1, 5, 0, 5], [0, 0, 0, 1, 5, 5, 0]], "output": [[0, 0, 3], [0, 3, 3], [0, 3, 0], [0, 0, 3]]}, {"input": [[7, 7, 0, 1, 5, 0, 0], [0, 0, 0, 1, 0, 0, 0], [7, 7, 0, 1, 5, 0, 0], [0, 7, 7, 1, 5, 5, 0]], "output": [[0, 0, 3], [3, 3, 3], [0, 0, 3], [0, 0, 0]]}, {"input": [[0, 7, 7, 1, 5, 0, 0], [0, 0, 7, 1, 0, 5, 5], [0, 7, 0, 1, 5, 5, 0], [0, 0, 7, 1, 0, 0, 0]], "output": [[0, 0, 0], [3, 0, 0], [0, 0, 3], [3, 3, 0]]}, {"input": [[7, 0, 7, 1, 5, 5, 0], [7, 7, 0, 1, 5, 5, 5], [0, 7, 0, 1, 0, 0, 0], [0, 0, 0, 1, 5, 0, 5]], "output": [[0, 0, 0], [0, 0, 0], [3, 0, 3], [0, 3, 0]]}, {"input": [[7, 0, 0, 1, 0, 5, 0], [0, 0, 7, 1, 5, 0, 0], [0, 0, 0, 1, 5, 5, 5], [7, 7, 7, 1, 5, 5, 5]], "output": [[0, 0, 3], [0, 3, 0], [0, 0, 0], [0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/f35d900a.json b/data/arc-agi/training/f35d900a.json
deleted file mode 100644
index 1bf725b..0000000
--- a/data/arc-agi/training/f35d900a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 3, 3, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [3, 2, 3, 5, 5, 2, 3, 2, 0, 0, 0, 0, 0, 0], [3, 3, 3, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [2, 3, 2, 5, 5, 3, 2, 3, 0, 0, 0, 0, 0, 0], [2, 2, 2, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 8, 1, 8, 5, 0, 5, 0, 5, 1, 8, 1, 0, 0], [0, 8, 8, 8, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 1, 8, 1, 5, 0, 5, 0, 5, 8, 1, 8, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 4, 2, 4, 5, 0, 5, 0, 0, 5, 0, 5, 2, 4, 2, 0], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 2, 4, 2, 5, 0, 5, 0, 0, 5, 0, 5, 4, 2, 4, 0], [0, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 8, 3, 8, 5, 0, 5, 0, 5, 3, 8, 3, 0, 0], [0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 3, 8, 3, 5, 0, 5, 0, 5, 8, 3, 8, 0, 0], [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 1, 4, 1, 5, 0, 5, 0, 5, 0, 5, 4, 1, 4, 0, 0, 0, 0], [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], [0, 4, 1, 4, 5, 0, 5, 0, 5, 0, 5, 1, 4, 1, 0, 0, 0, 0], [0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/f5b8619d.json b/data/arc-agi/training/f5b8619d.json
deleted file mode 100644
index 1d2d583..0000000
--- a/data/arc-agi/training/f5b8619d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 0, 0], [0, 0, 0], [0, 0, 2]], "output": [[2, 0, 8, 2, 0, 8], [8, 0, 8, 8, 0, 8], [8, 0, 2, 8, 0, 2], [2, 0, 8, 2, 0, 8], [8, 0, 8, 8, 0, 8], [8, 0, 2, 8, 0, 2]]}, {"input": [[0, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [5, 0, 0, 0, 0, 5], [0, 0, 0, 0, 0, 0]], "output": [[8, 5, 0, 0, 0, 8, 8, 5, 0, 0, 0, 8], [8, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0, 8], [8, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0, 8], [8, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0, 8], [5, 8, 0, 0, 0, 5, 5, 8, 0, 0, 0, 5], [8, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0, 8], [8, 5, 0, 0, 0, 8, 8, 5, 0, 0, 0, 8], [8, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0, 8], [8, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0, 8], [8, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0, 8], [5, 8, 0, 0, 0, 5, 5, 8, 0, 0, 0, 5], [8, 8, 0, 0, 0, 8, 8, 8, 0, 0, 0, 8]]}, {"input": [[0, 4], [0, 0]], "output": [[0, 4, 0, 4], [0, 8, 0, 8], [0, 4, 0, 4], [0, 8, 0, 8]]}], "test": [{"input": [[0, 0, 3, 0], [0, 0, 0, 0], [0, 0, 0, 3], [3, 0, 0, 0]], "output": [[8, 0, 3, 8, 8, 0, 3, 8], [8, 0, 8, 8, 8, 0, 8, 8], [8, 0, 8, 3, 8, 0, 8, 3], [3, 0, 8, 8, 3, 0, 8, 8], [8, 0, 3, 8, 8, 0, 3, 8], [8, 0, 8, 8, 8, 0, 8, 8], [8, 0, 8, 3, 8, 0, 8, 3], [3, 0, 8, 8, 3, 0, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/f76d97a5.json b/data/arc-agi/training/f76d97a5.json
deleted file mode 100644
index df47f29..0000000
--- a/data/arc-agi/training/f76d97a5.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[4, 5, 4], [5, 5, 5], [4, 5, 4]], "output": [[0, 4, 0], [4, 4, 4], [0, 4, 0]]}, {"input": [[5, 5, 6, 6, 6], [6, 5, 5, 6, 6], [6, 6, 5, 5, 6], [6, 6, 6, 5, 5], [5, 6, 6, 6, 5]], "output": [[6, 6, 0, 0, 0], [0, 6, 6, 0, 0], [0, 0, 6, 6, 0], [0, 0, 0, 6, 6], [6, 0, 0, 0, 6]]}, {"input": [[9, 5, 9, 9, 9], [9, 9, 5, 5, 9], [9, 5, 9, 9, 9], [9, 9, 5, 9, 9], [9, 9, 9, 5, 5]], "output": [[0, 9, 0, 0, 0], [0, 0, 9, 9, 0], [0, 9, 0, 0, 0], [0, 0, 9, 0, 0], [0, 0, 0, 9, 9]]}], "test": [{"input": [[3, 3, 3, 5, 3], [3, 5, 3, 3, 3], [3, 5, 5, 3, 5], [3, 3, 3, 5, 3], [5, 5, 5, 3, 3]], "output": [[0, 0, 0, 3, 0], [0, 3, 0, 0, 0], [0, 3, 3, 0, 3], [0, 0, 0, 3, 0], [3, 3, 3, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/f8a8fe49.json b/data/arc-agi/training/f8a8fe49.json
deleted file mode 100644
index 6988749..0000000
--- a/data/arc-agi/training/f8a8fe49.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 5, 0, 0, 5, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 5, 0, 5, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 5, 0, 5, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 5, 0, 0, 5, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 0], [5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 0], [5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 0], [0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 5, 0, 0, 5, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 5, 5, 0, 5, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 5, 0, 5, 0, 2, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 0], [5, 5, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 0], [5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 0], [0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/f8b3ba0a.json b/data/arc-agi/training/f8b3ba0a.json
deleted file mode 100644
index 07c63f4..0000000
--- a/data/arc-agi/training/f8b3ba0a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 1, 1, 0, 4, 4, 0, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 4, 4, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4], [2], [3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 8, 8, 0, 2, 2, 0, 6, 6, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 8, 8, 0, 1, 1, 0, 8, 8, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 1, 1, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 8, 8, 0, 6, 6, 0, 8, 8, 0, 6, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[6], [1], [2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 3, 3, 0, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 3, 3, 0, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 8, 8, 0, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 8, 8, 0, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 2, 2, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 3, 3, 0, 3, 3, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[2], [8], [1]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 1, 1, 0, 8, 8, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 1, 1, 0, 8, 8, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 8, 8, 0, 1, 1, 0, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 8, 8, 0, 1, 1, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[8], [2], [4]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 4, 4, 0, 2, 2, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 2, 2, 0, 4, 4, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 8, 0, 2, 2, 0, 2, 2, 0, 8, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 4, 0, 2, 2, 0, 2, 2, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 2, 2, 0, 4, 4, 0, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4], [1], [8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/f8c80d96.json b/data/arc-agi/training/f8c80d96.json
deleted file mode 100644
index 6d87aac..0000000
--- a/data/arc-agi/training/f8c80d96.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0], [8, 8, 8, 8, 0, 8, 0, 0, 0, 0], [0, 0, 0, 8, 0, 8, 0, 0, 0, 0], [8, 8, 0, 8, 0, 8, 0, 0, 0, 0], [0, 8, 0, 8, 0, 8, 0, 0, 0, 0]], "output": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8], [5, 5, 5, 5, 5, 5, 5, 5, 5, 8], [8, 8, 8, 8, 8, 8, 8, 8, 5, 8], [5, 5, 5, 5, 5, 5, 5, 8, 5, 8], [8, 8, 8, 8, 8, 8, 5, 8, 5, 8], [5, 5, 5, 5, 5, 8, 5, 8, 5, 8], [8, 8, 8, 8, 5, 8, 5, 8, 5, 8], [5, 5, 5, 8, 5, 8, 5, 8, 5, 8], [8, 8, 5, 8, 5, 8, 5, 8, 5, 8], [5, 8, 5, 8, 5, 8, 5, 8, 5, 8]]}, {"input": [[0, 0, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 1, 1], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 1, 5, 5, 1, 5, 5, 1, 5, 5], [5, 1, 5, 5, 1, 5, 5, 1, 5, 5], [5, 1, 5, 5, 1, 5, 5, 1, 1, 1], [5, 1, 5, 5, 1, 5, 5, 5, 5, 5], [5, 1, 5, 5, 1, 5, 5, 5, 5, 5], [5, 1, 5, 5, 1, 1, 1, 1, 1, 1], [5, 1, 5, 5, 5, 5, 5, 5, 5, 5], [5, 1, 5, 5, 5, 5, 5, 5, 5, 5], [5, 1, 1, 1, 1, 1, 1, 1, 1, 1], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]]}, {"input": [[0, 2, 0, 2, 0, 2, 0, 2, 0, 0], [0, 2, 0, 2, 2, 2, 0, 2, 0, 0], [0, 2, 0, 0, 0, 0, 0, 2, 0, 0], [0, 2, 2, 2, 2, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[5, 2, 5, 2, 5, 2, 5, 2, 5, 2], [5, 2, 5, 2, 2, 2, 5, 2, 5, 2], [5, 2, 5, 5, 5, 5, 5, 2, 5, 2], [5, 2, 2, 2, 2, 2, 2, 2, 5, 2], [5, 5, 5, 5, 5, 5, 5, 5, 5, 2], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]]}], "test": [{"input": [[4, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [4, 4, 4, 0, 0, 4, 0, 0, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0], [0, 0, 4, 0, 0, 4, 0, 0, 0, 0], [4, 4, 4, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 0, 0, 0], [4, 4, 4, 4, 4, 4, 0, 0, 0, 0]], "output": [[4, 4, 4, 4, 4, 4, 5, 5, 4, 5], [5, 5, 5, 5, 5, 4, 5, 5, 4, 5], [5, 5, 5, 5, 5, 4, 5, 5, 4, 5], [4, 4, 4, 5, 5, 4, 5, 5, 4, 5], [5, 5, 4, 5, 5, 4, 5, 5, 4, 5], [5, 5, 4, 5, 5, 4, 5, 5, 4, 5], [4, 4, 4, 5, 5, 4, 5, 5, 4, 5], [5, 5, 5, 5, 5, 4, 5, 5, 4, 5], [5, 5, 5, 5, 5, 4, 5, 5, 4, 5], [4, 4, 4, 4, 4, 4, 5, 5, 4, 5]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/f8ff0b80.json b/data/arc-agi/training/f8ff0b80.json
deleted file mode 100644
index 09ef25d..0000000
--- a/data/arc-agi/training/f8ff0b80.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 3, 3, 3, 0, 0, 0, 8, 8, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[3], [2], [8]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 7, 0], [0, 0, 0, 2, 0, 0, 0, 0, 7, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[1], [7], [2]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 2, 0, 0, 0, 1, 0, 0, 0], [0, 2, 2, 2, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[4], [2], [1]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 0, 6, 6, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0]], "output": [[6], [1], [3]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/f9012d9b.json b/data/arc-agi/training/f9012d9b.json
deleted file mode 100644
index 8df9eff..0000000
--- a/data/arc-agi/training/f9012d9b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 1, 2, 1, 2], [1, 1, 1, 1, 1], [2, 1, 2, 1, 2], [0, 0, 1, 1, 1], [0, 0, 2, 1, 2]], "output": [[1, 1], [2, 1]]}, {"input": [[8, 6, 0, 6], [6, 8, 6, 8], [8, 6, 8, 6], [6, 8, 6, 8]], "output": [[8]]}, {"input": [[2, 2, 5, 2, 2, 5, 2], [2, 2, 5, 2, 2, 5, 2], [5, 5, 5, 5, 5, 5, 5], [2, 2, 5, 2, 2, 5, 2], [2, 2, 5, 2, 2, 5, 2], [5, 5, 5, 5, 5, 0, 0], [2, 2, 5, 2, 2, 0, 0]], "output": [[5, 5], [5, 2]]}], "test": [{"input": [[8, 1, 8, 8, 0, 0, 0], [1, 8, 8, 1, 0, 0, 0], [8, 8, 1, 8, 0, 0, 0], [8, 1, 8, 8, 1, 8, 8], [1, 8, 8, 1, 8, 8, 1], [8, 8, 1, 8, 8, 1, 8], [8, 1, 8, 8, 1, 8, 8]], "output": [[1, 8, 8], [8, 8, 1], [8, 1, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/fafffa47.json b/data/arc-agi/training/fafffa47.json
deleted file mode 100644
index d7c4a56..0000000
--- a/data/arc-agi/training/fafffa47.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[9, 0, 9], [0, 0, 9], [9, 0, 9], [0, 1, 1], [0, 1, 0], [1, 0, 0]], "output": [[0, 0, 0], [2, 0, 0], [0, 2, 0]]}], "train": [{"input": [[0, 9, 9], [0, 9, 9], [9, 9, 9], [0, 1, 0], [0, 0, 1], [1, 1, 1]], "output": [[2, 0, 0], [2, 0, 0], [0, 0, 0]]}, {"input": [[9, 0, 9], [0, 9, 9], [0, 0, 9], [1, 0, 1], [1, 0, 0], [1, 0, 0]], "output": [[0, 2, 0], [0, 0, 0], [0, 2, 0]]}, {"input": [[0, 9, 0], [9, 0, 9], [9, 0, 0], [0, 0, 0], [0, 0, 1], [1, 0, 0]], "output": [[2, 0, 2], [0, 2, 0], [0, 2, 2]]}, {"input": [[0, 0, 9], [9, 9, 9], [0, 9, 0], [1, 0, 0], [0, 1, 1], [0, 0, 1]], "output": [[0, 2, 0], [0, 0, 0], [2, 0, 0]]}, {"input": [[0, 9, 0], [0, 9, 9], [0, 9, 9], [0, 0, 0], [1, 1, 1], [1, 0, 1]], "output": [[2, 0, 2], [0, 0, 0], [0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/fcb5c309.json b/data/arc-agi/training/fcb5c309.json
deleted file mode 100644
index e35efc8..0000000
--- a/data/arc-agi/training/fcb5c309.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 2, 2], [2, 4, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 2], [2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 2], [2, 0, 0, 0, 4, 0, 2, 0, 0, 0, 2, 2, 2], [2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0]], "output": [[4, 4, 4, 4, 4, 4, 4], [4, 0, 0, 0, 0, 0, 4], [4, 4, 0, 0, 0, 0, 4], [4, 0, 0, 0, 0, 0, 4], [4, 0, 0, 0, 4, 0, 4], [4, 0, 0, 0, 0, 0, 4], [4, 4, 4, 4, 4, 4, 4]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0], [0, 3, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 3, 0, 1, 3, 0, 3, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0], [0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [3, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0], [3, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 0, 0, 0, 0]], "output": [[3, 3, 3, 3, 3, 3, 3], [3, 0, 0, 3, 0, 0, 3], [3, 0, 0, 0, 0, 0, 3], [3, 3, 0, 3, 0, 0, 3], [3, 0, 0, 0, 0, 0, 3], [3, 3, 3, 3, 3, 3, 3]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 2, 0, 0, 0, 0, 0], [0, 3, 0, 2, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 3, 3, 3, 3, 0, 0], [0, 3, 0, 0, 0, 0, 0, 3, 2, 0, 3, 0, 2, 3, 0, 0], [0, 3, 0, 2, 0, 0, 0, 3, 0, 0, 3, 0, 0, 3, 0, 0], [0, 3, 0, 0, 0, 0, 2, 3, 0, 0, 3, 0, 0, 3, 0, 0], [0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [0, 0, 0, 3, 3, 3, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], [0, 0, 2, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0]], "output": [[2, 2, 2, 2, 2, 2, 2], [2, 0, 2, 0, 2, 0, 2], [2, 0, 0, 0, 0, 0, 2], [2, 0, 0, 0, 0, 0, 2], [2, 0, 2, 0, 0, 0, 2], [2, 0, 0, 0, 0, 2, 2], [2, 2, 2, 2, 2, 2, 2]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 1, 0, 8, 0, 8, 0, 0, 1, 8, 0, 0, 0, 0], [1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 8, 0, 8, 0, 0], [1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 8, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 8], [0, 0, 0, 0, 1, 0, 0, 0, 0, 8, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 8, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 1, 8, 0, 8, 0, 1, 0], [0, 0, 0, 8, 8, 0, 0, 8, 0, 0, 1, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 8]], "output": [[8, 8, 8, 8, 8, 8, 8, 8], [8, 0, 8, 0, 8, 0, 0, 8], [8, 0, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 0, 0, 8], [8, 0, 8, 0, 0, 0, 0, 8], [8, 0, 0, 0, 0, 8, 0, 8], [8, 8, 8, 8, 8, 8, 8, 8]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/fcc82909.json b/data/arc-agi/training/fcc82909.json
deleted file mode 100644
index e40bc7d..0000000
--- a/data/arc-agi/training/fcc82909.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 9, 9, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 4, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 9, 9, 0, 0, 0, 0, 0, 0, 0], [0, 6, 6, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 8, 4, 0, 0, 0], [0, 0, 0, 0, 0, 7, 7, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 3, 3, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 8, 0, 0, 0, 0, 0, 0], [0, 0, 9, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 1, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 8, 0, 0, 0, 0, 0, 0], [0, 0, 9, 4, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 0, 0, 2, 1, 0, 0], [0, 0, 3, 3, 0, 0, 1, 2, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 3, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 4, 0, 0, 9, 8, 0, 0], [0, 0, 6, 7, 0, 0, 8, 9, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 7, 6, 0, 0, 0, 0], [0, 0, 0, 0, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 4, 0, 0, 9, 8, 0, 0], [0, 0, 6, 7, 0, 0, 8, 9, 0, 0], [0, 0, 3, 3, 0, 0, 3, 3, 0, 0], [0, 0, 3, 3, 0, 0, 3, 3, 0, 0], [0, 0, 3, 3, 7, 6, 0, 0, 0, 0], [0, 0, 3, 3, 6, 6, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}], "test": [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 2, 9, 0, 0], [2, 1, 0, 0, 0, 0, 1, 6, 0, 0], [0, 0, 0, 4, 7, 0, 0, 0, 0, 0], [0, 0, 0, 8, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 2, 9, 0, 0], [2, 1, 0, 0, 0, 0, 1, 6, 0, 0], [3, 3, 0, 4, 7, 0, 3, 3, 0, 0], [3, 3, 0, 8, 4, 0, 3, 3, 0, 0], [0, 0, 0, 3, 3, 0, 3, 3, 0, 0], [0, 0, 0, 3, 3, 0, 3, 3, 0, 0], [0, 0, 0, 3, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/feca6190.json b/data/arc-agi/training/feca6190.json
deleted file mode 100644
index 0e2d6ad..0000000
--- a/data/arc-agi/training/feca6190.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[1, 0, 7, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 7], [0, 0, 0, 0, 0, 0, 1, 0, 7, 0], [0, 0, 0, 0, 0, 1, 0, 7, 0, 0], [0, 0, 0, 0, 1, 0, 7, 0, 0, 0], [0, 0, 0, 1, 0, 7, 0, 0, 0, 0], [0, 0, 1, 0, 7, 0, 0, 0, 0, 0], [0, 1, 0, 7, 0, 0, 0, 0, 0, 0], [1, 0, 7, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 2, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 2], [0, 0, 0, 2, 0], [0, 0, 2, 0, 0]]}, {"input": [[4, 0, 6, 0, 8]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 8, 0], [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 4, 0, 6, 0, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 0, 6, 0, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 6, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 9, 0, 8, 4]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 8, 4], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 8, 4, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 8, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 8, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 9, 0, 8, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 9, 0, 8, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 9, 0, 8, 4, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 9, 0, 8, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 9, 0, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 9, 0, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 9, 0, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}, {"input": [[0, 4, 0, 0, 0]], "output": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 4], [0, 0, 0, 4, 0], [0, 0, 4, 0, 0], [0, 4, 0, 0, 0]]}], "test": [{"input": [[0, 6, 7, 8, 9]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 8, 9], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 8, 9, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 8, 9, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 8, 9, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 8, 9, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 8, 9, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ff28f65a.json b/data/arc-agi/training/ff28f65a.json
deleted file mode 100644
index 9ead389..0000000
--- a/data/arc-agi/training/ff28f65a.json
+++ /dev/null
@@ -1 +0,0 @@
-{"train": [{"input": [[2, 2, 0, 0, 0], [2, 2, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[1, 0, 0], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0], [0, 2, 2, 0, 0], [0, 2, 2, 0, 0], [0, 0, 0, 2, 2], [0, 0, 0, 2, 2]], "output": [[1, 0, 1], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0], [0, 2, 2, 0, 2, 2, 0], [0, 0, 0, 0, 2, 2, 0], [0, 0, 2, 2, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 1], [0, 1, 0], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0], [0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0], [0, 0, 2, 2, 0, 0]], "output": [[1, 0, 1], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 0, 0], [0, 2, 2], [0, 2, 2]], "output": [[1, 0, 0], [0, 0, 0], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 2, 2, 0], [0, 2, 2, 0, 0, 0, 0], [0, 2, 2, 0, 2, 2, 0], [0, 0, 0, 0, 2, 2, 0], [0, 2, 2, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0, 0]], "output": [[1, 0, 1], [0, 1, 0], [1, 0, 0]]}, {"input": [[0, 0, 0, 0, 2, 2, 0], [0, 2, 2, 0, 2, 2, 0], [0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2], [2, 2, 0, 0, 0, 2, 2], [2, 2, 0, 2, 2, 0, 0], [0, 0, 0, 2, 2, 0, 0]], "output": [[1, 0, 1], [0, 1, 0], [1, 0, 1]]}, {"input": [[0, 0, 2, 2, 0, 2, 2], [0, 0, 2, 2, 0, 2, 2], [2, 2, 0, 0, 0, 0, 0], [2, 2, 0, 2, 2, 0, 0], [0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 1], [0, 1, 0], [1, 0, 0]]}], "test": [{"input": [[0, 0, 0, 2, 2, 0], [2, 2, 0, 2, 2, 0], [2, 2, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0], [0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0]], "output": [[1, 0, 1], [0, 1, 0], [0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0, 0], [2, 2, 0, 2, 2, 0, 0], [2, 2, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2], [0, 0, 2, 2, 0, 2, 2], [0, 0, 2, 2, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[1, 0, 1], [0, 1, 0], [1, 0, 0]]}, {"input": [[2, 2, 0, 2, 2, 0, 0], [2, 2, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 2, 2], [0, 2, 2, 0, 0, 2, 2], [0, 2, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 0], [0, 0, 0, 0, 2, 2, 0]], "output": [[1, 0, 1], [0, 1, 0], [1, 0, 1]]}]}
\ No newline at end of file
diff --git a/data/arc-agi/training/ff805c23.json b/data/arc-agi/training/ff805c23.json
deleted file mode 100644
index f367e31..0000000
--- a/data/arc-agi/training/ff805c23.json
+++ /dev/null
@@ -1 +0,0 @@
-{"test": [{"input": [[4, 4, 4, 0, 4, 0, 0, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 0, 0, 4, 0, 4, 4, 4], [4, 4, 4, 4, 0, 4, 3, 3, 3, 3, 0, 3, 3, 0, 3, 3, 3, 3, 4, 0, 4, 4, 4, 4], [4, 4, 0, 4, 0, 0, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 3, 3, 0, 0, 4, 0, 4, 4], [0, 4, 4, 0, 4, 4, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 3, 3, 4, 4, 0, 4, 4, 0], [4, 0, 0, 4, 4, 4, 0, 0, 3, 3, 0, 3, 3, 0, 3, 3, 0, 0, 4, 4, 4, 0, 0, 4], [0, 4, 0, 4, 4, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 4, 4, 0, 4, 0], [0, 3, 3, 3, 0, 0, 8, 8, 8, 1, 1, 1, 1, 1, 8, 8, 8, 8, 0, 0, 3, 3, 3, 0], [3, 3, 3, 3, 0, 3, 8, 8, 8, 1, 1, 1, 1, 1, 0, 8, 8, 8, 3, 0, 3, 3, 3, 3], [3, 3, 0, 0, 3, 3, 8, 8, 8, 1, 1, 1, 1, 1, 0, 8, 8, 8, 3, 3, 0, 0, 3, 3], [3, 3, 0, 0, 3, 3, 8, 0, 0, 1, 1, 1, 1, 1, 8, 0, 0, 8, 3, 3, 0, 0, 3, 3], [0, 0, 3, 3, 0, 3, 8, 0, 8, 1, 1, 1, 1, 1, 8, 8, 0, 8, 3, 0, 3, 3, 0, 0], [0, 3, 3, 3, 3, 3, 8, 8, 0, 8, 8, 8, 8, 8, 8, 0, 8, 8, 3, 3, 3, 3, 3, 0], [0, 3, 3, 3, 3, 3, 8, 8, 0, 8, 8, 8, 8, 8, 8, 0, 8, 8, 3, 3, 3, 3, 3, 0], [0, 0, 3, 3, 0, 3, 8, 0, 8, 8, 0, 8, 8, 0, 8, 8, 0, 8, 3, 0, 3, 3, 0, 0], [3, 3, 0, 0, 3, 3, 8, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 8, 3, 3, 0, 0, 3, 3], [3, 3, 0, 0, 3, 3, 8, 8, 8, 0, 8, 0, 0, 8, 0, 8, 8, 8, 3, 3, 0, 0, 3, 3], [3, 3, 3, 3, 0, 3, 8, 8, 8, 0, 0, 8, 8, 0, 0, 8, 8, 8, 3, 0, 3, 3, 3, 3], [0, 3, 3, 3, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 3, 3, 3, 0], [0, 4, 0, 4, 4, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 4, 4, 0, 4, 0], [4, 0, 0, 4, 4, 4, 0, 0, 3, 3, 0, 3, 3, 0, 3, 3, 0, 0, 4, 4, 4, 0, 0, 4], [0, 4, 4, 0, 4, 4, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 3, 3, 4, 4, 0, 4, 4, 0], [4, 4, 0, 4, 0, 0, 3, 3, 0, 0, 3, 3, 3, 3, 0, 0, 3, 3, 0, 0, 4, 0, 4, 4], [4, 4, 4, 4, 0, 4, 3, 3, 3, 3, 0, 3, 3, 0, 3, 3, 3, 3, 4, 0, 4, 4, 4, 4], [4, 4, 4, 0, 4, 0, 0, 3, 3, 3, 0, 0, 0, 0, 3, 3, 3, 0, 0, 4, 0, 4, 4, 4]], "output": [[8, 8, 8, 8, 8], [0, 0, 8, 8, 0], [0, 8, 0, 0, 8], [8, 8, 8, 8, 8], [8, 0, 8, 8, 0]]}], "train": [{"input": [[0, 3, 3, 3, 3, 0, 0, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 0, 1, 1, 1, 1, 1, 0], [3, 3, 3, 3, 3, 0, 2, 2, 0, 2, 2, 0, 0, 2, 2, 0, 2, 2, 1, 1, 1, 1, 1, 3], [3, 3, 3, 0, 0, 3, 2, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 2, 1, 1, 1, 1, 1, 3], [3, 3, 0, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 3], [3, 3, 0, 3, 3, 3, 0, 2, 0, 2, 2, 2, 2, 2, 2, 0, 2, 0, 1, 1, 1, 1, 1, 3], [0, 0, 3, 3, 3, 3, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 3, 3, 3, 3, 0, 0], [0, 2, 2, 2, 0, 0, 2, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 2, 0, 0, 2, 2, 2, 0], [2, 2, 0, 2, 2, 0, 0, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 0, 0, 2, 2, 0, 2, 2], [2, 0, 0, 2, 0, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 0, 2, 0, 0, 2], [2, 2, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 2, 2], [0, 2, 0, 2, 2, 2, 2, 2, 0, 2, 0, 2, 2, 0, 2, 0, 2, 2, 2, 2, 2, 0, 2, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 0], [0, 2, 0, 2, 2, 2, 2, 2, 0, 2, 0, 2, 2, 0, 2, 0, 2, 2, 2, 2, 2, 0, 2, 0], [2, 2, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 2, 2], [2, 0, 0, 2, 0, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 0, 2, 0, 0, 2], [2, 2, 0, 2, 2, 0, 0, 2, 2, 0, 2, 2, 2, 2, 0, 2, 2, 0, 0, 2, 2, 0, 2, 2], [0, 2, 2, 2, 0, 0, 2, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 2, 0, 0, 2, 2, 2, 0], [0, 0, 3, 3, 3, 3, 0, 0, 0, 2, 2, 2, 2, 2, 2, 0, 0, 0, 3, 3, 3, 3, 0, 0], [3, 3, 0, 3, 3, 3, 0, 2, 0, 2, 2, 2, 2, 2, 2, 0, 2, 0, 3, 3, 3, 0, 3, 3], [3, 3, 0, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 0, 3, 3], [3, 3, 3, 0, 0, 3, 2, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 2, 3, 0, 0, 3, 3, 3], [3, 3, 3, 3, 3, 0, 2, 2, 0, 2, 2, 0, 0, 2, 2, 0, 2, 2, 0, 3, 3, 3, 3, 3], [0, 3, 3, 3, 3, 0, 0, 2, 2, 2, 0, 0, 0, 0, 2, 2, 2, 0, 0, 3, 3, 3, 3, 0]], "output": [[0, 3, 3, 3, 3], [0, 3, 3, 3, 3], [3, 0, 0, 3, 3], [3, 3, 3, 0, 3], [3, 3, 3, 0, 3]]}, {"input": [[0, 3, 3, 3, 0, 3, 0, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 0, 3, 0, 3, 3, 3, 0], [3, 0, 3, 0, 3, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 3, 0, 3, 0, 3], [3, 3, 3, 3, 3, 3, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 3, 3, 3, 3, 3, 3], [3, 0, 3, 0, 3, 3, 0, 0, 0, 8, 0, 8, 8, 0, 8, 0, 0, 0, 3, 3, 0, 3, 0, 3], [0, 3, 3, 3, 0, 0, 8, 0, 8, 0, 0, 8, 8, 0, 0, 8, 0, 8, 0, 0, 3, 3, 3, 0], [3, 0, 3, 3, 0, 3, 8, 0, 8, 8, 8, 0, 0, 8, 8, 8, 0, 8, 3, 0, 3, 3, 0, 3], [0, 8, 8, 0, 8, 8, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 8, 8, 0, 8, 8, 0], [8, 0, 8, 0, 0, 0, 6, 6, 0, 6, 6, 6, 6, 6, 6, 0, 6, 6, 0, 0, 0, 8, 0, 8], [8, 8, 8, 0, 8, 8, 6, 0, 0, 6, 0, 6, 6, 0, 6, 0, 0, 6, 8, 8, 0, 8, 8, 8], [0, 0, 0, 8, 0, 8, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 8, 0, 8, 0, 0, 0], [8, 0, 8, 0, 0, 8, 6, 6, 0, 6, 6, 6, 6, 6, 6, 0, 6, 6, 8, 0, 0, 8, 0, 8], [8, 0, 8, 8, 8, 0, 1, 1, 1, 1, 1, 0, 0, 6, 6, 6, 6, 6, 0, 8, 8, 8, 0, 8], [8, 0, 8, 8, 8, 0, 1, 1, 1, 1, 1, 0, 0, 6, 6, 6, 6, 6, 0, 8, 8, 8, 0, 8], [8, 0, 8, 0, 0, 8, 1, 1, 1, 1, 1, 6, 6, 6, 6, 0, 6, 6, 8, 0, 0, 8, 0, 8], [0, 0, 0, 8, 0, 8, 1, 1, 1, 1, 1, 6, 6, 6, 6, 6, 6, 6, 8, 0, 8, 0, 0, 0], [8, 8, 8, 0, 8, 8, 1, 1, 1, 1, 1, 6, 6, 0, 6, 0, 0, 6, 8, 8, 0, 8, 8, 8], [8, 0, 8, 0, 0, 0, 6, 6, 0, 6, 6, 6, 6, 6, 6, 0, 6, 6, 0, 0, 0, 8, 0, 8], [0, 8, 8, 0, 8, 8, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 8, 8, 0, 8, 8, 0], [3, 0, 3, 3, 0, 3, 8, 0, 8, 8, 8, 0, 0, 8, 8, 8, 0, 8, 3, 0, 3, 3, 0, 3], [0, 3, 3, 3, 0, 0, 8, 0, 8, 0, 0, 8, 8, 0, 0, 8, 0, 8, 0, 0, 3, 3, 3, 0], [3, 0, 3, 0, 3, 3, 0, 0, 0, 8, 0, 8, 8, 0, 8, 0, 0, 0, 3, 3, 0, 3, 0, 3], [3, 3, 3, 3, 3, 3, 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, 3, 3, 3, 3, 3, 3], [3, 0, 3, 0, 3, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 3, 0, 3, 0, 3], [0, 3, 3, 3, 0, 3, 0, 8, 8, 0, 8, 8, 8, 8, 0, 8, 8, 0, 3, 0, 3, 3, 3, 0]], "output": [[6, 6, 6, 6, 6], [6, 6, 6, 6, 6], [6, 6, 0, 6, 6], [6, 6, 6, 6, 6], [6, 0, 0, 6, 0]]}, {"input": [[0, 3, 3, 3, 3, 0, 5, 5, 5, 0, 0, 5, 5, 0, 0, 5, 5, 5, 0, 3, 3, 3, 3, 0], [3, 3, 3, 3, 3, 3, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 3, 3, 3, 3, 3, 3], [3, 3, 3, 0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 0, 3, 3, 3], [3, 3, 0, 0, 3, 3, 0, 0, 5, 0, 5, 5, 5, 5, 0, 5, 0, 0, 3, 3, 0, 0, 3, 3], [3, 3, 0, 3, 3, 0, 0, 0, 5, 5, 0, 0, 0, 0, 5, 5, 0, 0, 0, 3, 3, 0, 3, 3], [0, 3, 0, 3, 0, 3, 5, 0, 0, 5, 0, 0, 0, 0, 5, 0, 0, 5, 3, 0, 3, 0, 3, 0], [5, 5, 5, 0, 0, 5, 0, 5, 0, 0, 5, 5, 5, 5, 0, 0, 5, 0, 5, 0, 0, 5, 5, 5], [5, 5, 0, 0, 0, 0, 5, 5, 5, 0, 0, 5, 5, 0, 0, 5, 5, 5, 0, 0, 0, 0, 5, 5], [5, 0, 0, 5, 5, 0, 0, 5, 5, 5, 0, 5, 5, 0, 5, 5, 5, 0, 0, 5, 5, 0, 0, 5], [0, 0, 5, 0, 5, 5, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5, 0, 5, 0, 0], [0, 0, 5, 5, 0, 0, 5, 0, 0, 5, 0, 5, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5, 0, 0], [5, 0, 0, 5, 0, 0, 5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5, 0, 0, 5, 0, 0, 5], [5, 0, 0, 5, 0, 0, 5, 5, 5, 5, 5, 0, 0, 5, 5, 5, 5, 5, 0, 0, 5, 0, 0, 5], [0, 0, 5, 5, 0, 0, 5, 0, 0, 5, 0, 5, 5, 0, 5, 0, 0, 5, 0, 0, 5, 5, 0, 0], [0, 0, 5, 0, 5, 5, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 5, 5, 0, 5, 0, 0], [5, 0, 0, 5, 5, 0, 0, 5, 5, 5, 1, 1, 1, 1, 1, 5, 5, 0, 0, 5, 5, 0, 0, 5], [5, 5, 0, 0, 0, 0, 5, 5, 5, 0, 1, 1, 1, 1, 1, 5, 5, 5, 0, 0, 0, 0, 5, 5], [5, 5, 5, 0, 0, 5, 0, 5, 0, 0, 1, 1, 1, 1, 1, 0, 5, 0, 5, 0, 0, 5, 5, 5], [0, 3, 0, 3, 0, 3, 5, 0, 0, 5, 1, 1, 1, 1, 1, 0, 0, 5, 3, 0, 3, 0, 3, 0], [3, 3, 0, 3, 3, 0, 0, 0, 5, 5, 1, 1, 1, 1, 1, 5, 0, 0, 0, 3, 3, 0, 3, 3], [3, 3, 0, 0, 3, 3, 0, 0, 5, 0, 5, 5, 5, 5, 0, 5, 0, 0, 3, 3, 0, 0, 3, 3], [3, 3, 3, 0, 0, 0, 5, 0, 0, 5, 5, 0, 0, 5, 5, 0, 0, 5, 0, 0, 0, 3, 3, 3], [3, 3, 3, 3, 3, 3, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 3, 3, 3, 3, 3, 3], [0, 3, 3, 3, 3, 0, 5, 5, 5, 0, 0, 5, 5, 0, 0, 5, 5, 5, 0, 3, 3, 3, 3, 0]], "output": [[0, 5, 5, 0, 5], [0, 5, 5, 0, 0], [5, 5, 5, 5, 0], [0, 0, 0, 0, 5], [0, 0, 0, 0, 5]]}]}
\ No newline at end of file
diff --git a/deep-research-report.md b/deep-research-report.md
deleted file mode 100644
index 8b68398..0000000
--- a/deep-research-report.md
+++ /dev/null
@@ -1,463 +0,0 @@
-# Human-brain-inspired memory layer design for AI agents grounded in the Engram project
-
-## Executive summary
-
-Engram (the repository at entity["company","GitHub","code hosting platform"]) is already closer to “brain-like” memory than typical vector-store wrappers because it explicitly separates **Active (conscious) memory** from **Passive (subconscious) memory**, adds **episodic scene structure**, and treats memory as a **lifecycle** with staging, trust, masking, consolidation, and decay. citeturn23view0turn24view0turn24view2
-
-However, when judged against how biological memory actually works, three architectural gaps stand out:
-
-First, biological memory is not “one store with scores”; it is **multiple interacting systems** (sensory buffers, working memory, hippocampal episodic encoding, neocortical semantic extraction, and striatal/cerebellar procedural learning) with different **timescales and write rules**. citeturn31search1turn15search2turn15search9turn19search8
-
-Second, durable knowledge in brains emerges through **systems consolidation**: rapid hippocampal storage plus slow neocortical integration, often via offline replay and sleep-associated dynamics. citeturn15search7turn18search0turn16search6turn17search0
-
-Third, brains prevent overload and interference using **pattern separation/completion**, multi-timescale plasticity, and active forgetting/homeostatic mechanisms—not only exponential decay. citeturn17search6turn21search4turn21search0turn18search31
-
-This report proposes three pluggable “memory layer” variants that keep Engram’s public surface (MCP/REST + Python SDK) but deepen biological grounding:
-
-**Variant A (recommended default)**: *CLS Distillation Memory* — explicit hippocampus–neocortex split: append-only episodic store + replay-driven semantic distillation + contradiction-aware canonicalisation.
-
-**Variant B (recommended for multi-agent coordination + temporal reasoning)**: *Scene Graph + Spatiotemporal Index* — CAST++ scenes become first-class nodes in a graph with “time/place/topic” gating and scene-to-fact provenance as the main retrieval spine.
-
-**Variant C (recommended for long-running agents and continual learning)**: *Multi-timescale Synapse Ledger* — each memory has a Benna–Fusi-style multi-timescale strength state and homeostatic control; retrieval and forgetting become dynamics, not static scores.
-
-All three variants preserve Engram’s strengths: scoped access (“all-but-mask”), staged writes with trust, and active signal bus. citeturn23view1turn24view2turn24view0
-
-## Engram repository review
-
-Engram positions itself as a “Personal Memory Kernel” shared across agents, emphasising active + passive memory, agent handoffs, staged writes, and biologically-inspired forgetting; it also warns it is early-stage and subject to API change. citeturn29view0 The repository structure indicates a Python core (`engram/`), integrations/plugins (`plugins/engram-memory`), and test coverage (`tests/`). citeturn22view0
-
-At a system level, Engram’s architecture diagram shows: agents connect via MCP server or REST API; a **Policy Gateway** enforces scopes/masking/quotas/capability tokens/trust; and the system splits into **Active Memory**, **Retrieval Engine**, and **Ingestion Pipeline**, with staged writes, long-term store, indexes (vector + graph + episodic), and a FadeMem garbage-collection/decay loop. citeturn23view1
-
-### Components and data flows
-
-**Active Memory (signal bus).** Engram implements a “conscious” shared state/event/directive bus using SQLite in WAL mode for concurrency, with multiple TTL tiers. Tool responses auto-include current signals (an `_active` field), and a consolidation engine can promote important signals into passive memory. citeturn24view0turn14view0
-
-**Passive Memory stack.** Engram’s README describes a stack including:
-
-- **FadeMem** decay and SML→LML promotion driven by time + access patterns, with reference-aware retention. citeturn24view0
-- **EchoMem** multi-path encoding (raw/paraphrase/keywords/implications/question-forms), described as increasing retrieval surface area and modulating strength for “deep” memories. citeturn24view0
-- **CategoryMem** dynamic category trees that evolve and decay. citeturn24view0
-- **CAST Scenes** episodic memory that clusters interactions by time/place/topic with characters, synopsis, and links to extracted semantic memories. citeturn24view0
-- **Handoff bus** for zero-intervention cross-agent continuity, with lifecycle checkpointing and compatibility tools retained. citeturn24view1turn24view2
-
-**Read path.** Search calls (`search_memory` or `POST /v1/search`) go through the Policy Gateway, then do **dual retrieval** (semantic + episodic in parallel). Results that match in both are boosted (“intersection promotion”), returning a token-budgeted “context packet” with scene citations. citeturn24view2turn14view0
-
-**Write path.** Writes are treated as “agent proposals” landing in staging (SML) with provenance (agent/time/scope/trust score). Verification includes contradiction checks (invariants), deduplication, and PII risk screening; high-trust agents may auto-merge while others wait for approval/digest. citeturn24view2turn23view0
-
-**Sleep-cycle maintenance.** The REST API includes a sleep-cycle endpoint (`POST /v1/sleep/run`) that can apply decay and clean up stale references. citeturn29view1
-
-### APIs and integration surface
-
-Engram exposes both MCP and REST. The README lists MCP tools spanning active signals, passive memory CRUD/search, memory decay, scenes, and handoff operations; it also notes tool responses include `_active` signals. citeturn14view0turn24view0
-
-The REST API includes session-minting (`POST /v1/sessions`) producing capability tokens with allowed scopes/capabilities, plus endpoints for write proposals (`POST /v1/memories`), search (`POST /v1/search`), staging review/approve, handoff resume/checkpoint, and the sleep-cycle run. citeturn14view0turn29view1
-
-Python SDK entry points shown in the README include `Engram()` for a simplified interface and `Memory()` for a fuller interface (CRUD, promote/demote/fuse/decay/history; active bus; knowledge graph traversal; category operations), with an async context manager (`AsyncMemory`). citeturn29view2turn14view1
-
-### Storage, indexing, and concurrency
-
-Engram supports multiple embedding/LLM backends (default Gemini; options include OpenAI and Ollama) and multiple install profiles, including `sqlite-vec` for concurrent multi-agent vector search without requiring an external server. citeturn23view0turn14view2
-
-A key operational limitation is explicitly called out: local Qdrant “file mode” is single-process and can cause “already accessed” lock errors; the suggested mitigation is switching to the sqlite-vec provider (WAL mode) or using hosted/shared Qdrant. citeturn29view2
-
-### Practical limitations and “assumed unspecifieds”
-
-The README itself flags Engram as early-stage and non-production. citeturn29view0 Beyond that, several constraints are implied but not fully specified in the surfaced docs:
-
-Consistency semantics are not fully described for multi-index writes (vector + graph + episodic) or for staged-write promotion; absent explicit design, this is likely best treated as eventual consistency across indexes with strong consistency on canonical memory IDs and provenance (recommendation, not a claim). citeturn23view1turn24view2
-
-Retrieval “hybrid+graph+categories” is named but not formally specified as a scoring function; similarly, “trust scoring” and “invariant contradiction checks” are described as steps but details (LLM vs rules, deterministic vs probabilistic) are not fully published in README (assumption based on partial spec). citeturn23view1turn24view2
-
-## Neuroscience primer on how the human brain implements memory
-
-Modern neuroscience treats memory as **multiple systems** supported by distinct circuits, rather than a single faculty. citeturn31search1 This section summarises the most load-bearing mechanisms that translate well into AI memory architecture.
-
-image_group{"layout":"carousel","aspect_ratio":"16:9","query":["hippocampus anatomy diagram medial temporal lobe","prefrontal cortex working memory brain diagram","basal ganglia habit learning diagram","hippocampal sharp-wave ripple replay sleep diagram"],"num_per_query":1}
-
-### Memory systems and representations
-
-**Sensory memory** holds raw impressions briefly (e.g., iconic memory for vision). A classic demonstration is Sperling’s partial-report paradigm showing more information is briefly available than can be reported, implying a high-capacity, rapidly decaying visual store. citeturn19search1
-
-**Working memory** is a limited-capacity system for maintaining/manipulating information online. The influential Baddeley–Hitch model includes a central executive plus domain-specific buffers, later extended with an episodic buffer. citeturn15search2
-
-**Long-term declarative memory** (facts and events) depends critically on medial temporal lobe structures including the hippocampus and adjacent cortices. Evidence for hippocampal necessity comes from severe anterograde amnesia after bilateral medial temporal lobe surgery (the classic Scoville–Milner report). citeturn15search8 A broader synthesis of lesion and animal work describes the medial temporal lobe memory system and its components. citeturn31search0
-
-Within declarative memory, **episodic** (events) and **semantic** (general knowledge) memory are commonly distinguished and have different behavioural/neurological signatures. citeturn15search9
-
-**Non-declarative/procedural memory** supports skills and habits and relies heavily on basal ganglia and related circuits; habit formation has been reviewed extensively in the context of basal ganglia function. citeturn19search8 A classic dissociation is intact skill learning (mirror-reading) in amnesia despite impaired explicit recall, supporting “knowing how” vs “knowing that”. citeturn31search2
-
-### Encoding, consolidation, retrieval, and hippocampus–neocortex interaction
-
-Memory formation is typically analysed as **encoding → consolidation → retrieval**, with consolidation including both fast “synaptic” phases and slower “systems” reorganisation. citeturn18search1 Systems consolidation research emphasises how remote memories become organised across cortical networks over time. citeturn18search0
-
-The **Complementary Learning Systems (CLS)** framework provides a computationally explicit account: the hippocampus learns quickly with sparse representations to reduce interference; the neocortex learns slowly, integrating across episodes to extract shared structure (a route from episodic experiences to semantic knowledge). citeturn15search7turn15search26
-
-The hippocampus encodes key “dimensions” for episodes:
-
-- **Space**: place cells fire in location-specific patterns (O’Keefe–Dostrovsky). citeturn32search2
-- **Time**: “time cells” encode successive moments across temporal gaps, supporting sequence/temporal organisation of experience. citeturn32search4turn32search0
-
-These findings align with Engram’s CAST scene axes (time/place/topic) as a plausible engineering abstraction of hippocampal indexing. citeturn24view0turn32search2turn32search4
-
-### Synaptic plasticity, replay, sleep consolidation, and forgetting
-
-At the synaptic level, long-lasting changes such as **LTP** were first demonstrated in the hippocampal formation after high-frequency stimulation (Bliss–Lømo). citeturn16search0 LTP/LTD mechanisms vary across circuits, but the broad point is that durable memory requires controllable synaptic change. citeturn16search1
-
-Mechanisms bridging “what gets stabilised” include **synaptic tagging and capture**, where transient synaptic changes can be stabilised if plasticity-related resources are later available, providing a mechanistic handle on why salience/spacing can produce long-lasting memory. citeturn20search3turn20search26
-
-A core consolidation mechanism is **offline replay**:
-
-- Hippocampal ensembles reactivate patterns during sleep following experience (Wilson–McNaughton). citeturn17search0
-- The two-stage model links waking encoding states to sharp-wave/ripple states during rest/sleep that may drive synaptic modification and hippocampo-cortical transfer (Buzsáki). citeturn17search1
-- Reviews summarise how sleep supports consolidation and reorganisation of memories. citeturn16search6turn16search19turn16search33
-
-Forgetting is not only passive decay; it can be **active and regulated**. Reviews argue for decay-like active forgetting, potentially preferential during sleep, as a system-level requirement for efficiency. citeturn21search0turn21search1 Another synthesis outlines biological mechanisms of active forgetting (e.g., neurogenesis-based, interference-based, intrinsic). citeturn21search2turn21search6
-
-At the system level, sleep may also serve homeostatic roles. The **synaptic homeostasis hypothesis** proposes that net synaptic strength increases during wake and is downscaled during sleep to maintain stability and learning capacity. citeturn18search11turn18search31
-
-Finally, theoretical work on **multi-timescale synaptic consolidation** (Benna–Fusi) shows how complex coupled processes can protect memories against overwriting while retaining fast learning—an explicit template for engineering memory that has both rapid updates and long lifetimes. citeturn21search4turn21search8
-
-## Mapping biological mechanisms to AI design primitives
-
-What follows is a design mapping: each biological mechanism is converted into an implementable memory-layer primitive that can slot into Engram’s existing “active + passive + staging + policy” skeleton. The goal is not literal simulation, but harnessing the **computational reasons** biology uses these mechanisms (interference control, compression, credit assignment, stability). citeturn15search7turn17search6turn21search4
-
-### Mapping table
-
-| Biological mechanism | AI primitive in a memory layer | Rationale | Expected benefit | Trade-offs / risks |
-|---|---|---|---|---|
-| Sensory memory (iconic/echoic) citeturn19search1 | High-throughput **sensory buffer** (ring buffer of raw tool outputs, logs, observations) with very short TTL | Preserve raw evidence briefly before interpretation | Better grounding/auditability; reduces premature summarisation loss | Storage churn; privacy exposure if not masked |
-| Working memory citeturn15search2 | **Active Memory bus** + “focus cache” (top-K active goals, constraints, current files) | Online control & coordination | Lower latency; multi-agent coherence | Needs policy gates to avoid flooding |
-| Hippocampal episodic encoding citeturn15search8turn31search0 | Append-only **episodic event store** (scenes, trajectories, tool calls) with strong provenance | Fast binding of “what happened” | Enables temporal reasoning and conflict tracing | Storage growth; retrieval needs time gating |
-| Neocortical semantic learning citeturn15search7turn18search0 | Canonical **semantic memory store** of facts/rules/preferences with update semantics and provenance | Slow integration/extraction of stable structure | Cleaner memory; fewer duplicates; better generalisation | Risk of hallucinated “facts” if consolidation is weak |
-| Pattern separation/completion citeturn17search6turn15search26 | Separation: diversify keys (multi-view embeddings, hashing, entity+time partitions). Completion: ANN retrieval + graph expansion | Reduce interference; allow partial-cue recall | Higher precision; fewer “similar but wrong” recalls (Engram already targets this) citeturn24view2 | Over-partitioning hurts recall; completion can amplify spurious neighbours |
-| Replay & sleep consolidation citeturn17search0turn16search6 | Background **replay jobs** that sample episodes → propose semantic updates; “sleep cycles” API | Offline integration without blocking online work | Better consolidation and compression; supports continual learning | Needs careful cost control and safety filters |
-| Synaptic plasticity (LTP/LTD) citeturn16search0turn16search1 | Per-memory **strength** updates with use-dependent potentiation and non-use weakening | A generic mechanism for importance weighting | Natural prioritisation; adaptive forgetting | Can become unstable without homeostasis |
-| Synaptic tagging & capture citeturn20search3turn20search26 | Two-stage “tag then capture”: quick tag on write; later capture into canonical store if reinforced | Bridges immediate experiences to long-term retention | Aligns retention with salience/repetition; supports spacing effects | Requires delayed jobs and replay scheduling |
-| Homeostatic scaling citeturn32search3turn18search11 | Budgeted **homeostasis controller** that normalises strengths/index sizes per user/scope | Prevents saturation and runaway strength | Stabilises retrieval and compute | Hard to tune; can unintentionally erase niche memories |
-| Active forgetting citeturn21search0turn21search2 | Explicit **forgetting policies**: decay, interference pruning, redundancy collapse, stale-rule retirement | Makes deletion a feature not a failure | Reduces overload; improves relevance | Requires explainability and safe rollback |
-| Multi-timescale consolidation citeturn21search4turn21search8 | Multi-variable **synapse ledger** per memory (fast/medium/slow traces) | Protects old memories while allowing new learning | Reduces catastrophic forgetting; smoother retention curves | Implementation complexity; more state per memory |
-| Neuromodulatory gating (ACh states) citeturn32search5 | “Mode switching”: novelty/uncertainty triggers encode; low novelty triggers retrieval/consolidation | Separate encode vs retrieve regimes to reduce interference | Fewer contradictory writes; cheaper operation | Needs robust novelty estimation |
-
-## Proposed modular architectures compatible with Engram
-
-All variants are designed to be **modular and pluggable**, with minimal disruption to Engram’s current surface:
-
-- Keep `Memory.add/search/get/update/delete`, staging, scopes, and the active bus. citeturn29view2turn24view2turn24view0
-- Implement new modules behind the scenes, surfaced via config (like `FadeMemConfig`, `EchoMemConfig`, `CategoryMemConfig`, `ActiveMemoryConfig`) and optional new endpoints (e.g., extended sleep/replay). citeturn14view2turn29view1
-
-### Shared data model
-
-A memory layer that is “brain-like” needs **typed memory objects** and **explicit provenance**. A schema that works across variants:
-
-**`MemoryItem` (canonical semantic or episodic record)**
-- `id` (stable UUID)
-- `type`: `episodic_event | scene | semantic_fact | preference | rule | procedure_stub`
-- `content`: text or structured JSON
-- `embedding_keys`: list of embeddings (Echo-style views) citeturn24view0
-- `entities`: extracted entities (for graph edges) citeturn29view2
-- `time`: `{start, end, observed_at}` (episodic)
-- `place`: `{repo_path, tool_origin, environment}` (episodic context; maps to space-like index) citeturn24view0turn32search2
-- `topic`: category IDs / tags (CategoryMem) citeturn24view0
-- `scope`: confidentiality/user/team scope citeturn23view0turn24view2
-- `provenance`: `{agent_id, source_refs, created_at, staging_commit_id}` citeturn24view2turn29view1
-- `strength_state`: variant-dependent (single scalar or multi-timescale vector) citeturn21search4
-- `status`: `STAGED | CANONICAL | RETIRED | DELETED`
-
----
-
-### Variant A: CLS Distillation Memory
-
-**Concept.** Make Engram’s implicit “two systems” explicit: a fast **Hippocampal Store** for episodic traces and a slow **Neocortical Store** for consolidated semantic knowledge—directly mirroring CLS design constraints (rapid learning without catastrophic interference, slow integration for generalisation). citeturn15search7turn15search26
-
-**Modules**
-
-- `HippocampalStore` (episodic): append-only events/scenes, partitioned by time/place/topic.
-- `NeocorticalStore` (semantic): canonical facts, preferences, rules; supports update semantics and contradiction resolution.
-- `ReplayScheduler`: samples episodes for consolidation during “sleep cycles”. citeturn16search6turn17search0
-- `Distiller`: transforms episodic slices into candidate semantic deltas (fact extraction, rule induction, preference updates).
-- `StabilityGate`: synaptic-tagging-inspired rule: only consolidate if reinforced (repeated access, high trust, high salience). citeturn20search3turn20search26
-- `HomeostasisController`: normalises strength distribution and prunes redundancy. citeturn18search11turn32search3
-
-**Indexing / search strategy**
-
-- Episodic: (1) time-window index, (2) place/repo index, (3) topic/category index, (4) vector ANN.
-- Semantic: hybrid retrieval (vector + keyword + entity graph), consistent with Engram’s “semantic (hybrid+graph+categories)” label. citeturn23view1turn24view2
-- Final ranking uses a CLS-style gated mixture: semantic results dominate unless query is explicitly temporal/episodic; episodic results provide provenance and disambiguation.
-
-**Retrieval policy (high level)**
-
-1. Predict query intent: `needs_episode?` (time/place cues), `needs_fact?` (definition/preferences/rules).
-2. Perform parallel retrieval.
-3. Apply Engram-style intersection promotion (boost if a fact is supported by matching episode context). citeturn24view2
-4. Return a context packet with provenance pointers (scene citations, commit IDs), preserving “all-but-mask” rules. citeturn24view2
-
-**Consolidation / replay**
-
-- Replays are triggered by `sleep/run` or idle windows, consistent with Engram’s explicit sleep endpoint. citeturn29view1
-- Each replay batch proposes semantic deltas into staging as “consolidation commits”, going through the same invariant/trust/PII pipeline as agent writes. citeturn24view2
-- Consolidation is explicitly slower and rate-limited (neocortex learns slowly). citeturn15search7
-
-**Forgetting/decay**
-
-- Episodic traces decay faster (hippocampal dependence decreases for remote memories) while semantic memory decays slower but is subject to rule retirement when contradicted. citeturn18search0turn18search1
-- Use active-forgetting policies to prune low-value episodes (e.g., low salience, never referenced). citeturn21search0turn21search2
-
-**Scalability, latency, and consistency**
-
-- Online latency remains similar to current Engram because replay/consolidation is offline. citeturn24view2
-- Consistency: strong IDs + provenance; eventual consistency of indexes; replay produces staged commits (safe). citeturn24view2
-- Works well with sqlite-vec for concurrency; avoid single-process Qdrant file-mode if multiple agents write. citeturn29view2
-
-**Mermaid interaction diagram**
-
-```mermaid
-flowchart LR
- A[Agent / Orchestrator] --> B[MCP or REST]
- B --> C[Policy Gateway]
- C --> D[Active Memory Bus]
- C --> E[Retrieval Router]
-
- E --> F[HippocampalStore: Episodic]
- E --> G[NeocorticalStore: Semantic]
- F --> H[Context Packet Builder]
- G --> H
- D --> H
-
- C --> I[Staging + Verification]
- I --> F
- I --> G
-
- J[Sleep/Replay Scheduler] --> K[Replay Sampler]
- K --> L[Distiller]
- L --> I
- M[Homeostasis Controller] --> F
- M --> G
-```
-
----
-
-### Variant B: Scene Graph + Spatiotemporal Index
-
-**Concept.** Promote CAST scenes from “one of many” modules into the organising backbone: episodes are graphs, and semantic facts are projections from those graphs. This aligns with hippocampal indexing along space and time dimensions and emphasises provenance-first retrieval. citeturn24view0turn32search2turn32search4
-
-**Modules**
-
-- `SceneStore`: durable scene objects with strict schema (time/place/topic/participants/synopsis). citeturn24view0
-- `SceneGraphIndex`: graph DB abstraction (can still be stored in SQLite/SQL tables if needed) where edges encode: “occurs-before”, “same-topic”, “shares-entity”, “contradicts”, “supports”.
-- `FactProjector`: semantic facts are materialised views over scenes, preserving back-links to evidence scenes (like citations).
-- `TimeGate`: a time-cell-inspired query gate that first narrows candidate scenes by temporal constraints, then expands by topical/entity neighbourhood. citeturn32search0turn32search4
-
-**Indexing / search strategy**
-
-- Primary retrieval is **scene selection** (spatiotemporal gating), then secondary retrieval is fact expansion from selected scenes.
-- Semantic ANN still exists but is used mainly to map queries to scene candidates and to find nearby scenes/topics.
-
-**Retrieval policy**
-
-- Step 1: Determine a candidate time window (explicit timestamps; relative cues; “latest”, “previous session”, etc.).
-- Step 2: Retrieve top scenes in that window using topic/entity similarity and place constraints.
-- Step 3: Extract or retrieve facts linked to those scenes; apply “intersection promotion” as a first principle (facts without episodic support are demoted). citeturn24view2
-
-**Consolidation / replay**
-
-- Replay is **scene-level**: sample scenes, summarise, deduplicate within-scene facts, merge cross-scene identical facts, and mark stable facts as canonical.
-- Conflicts remain attached to scene provenance; resolution edits the fact projection while preserving original episodes (avoid rewriting history).
-
-**Forgetting/decay**
-
-- Scene decay: older scenes can be compressed into higher-level “chapters” (multi-scene summaries) rather than deleted, preserving remote memory gist while dropping detail—consistent with systems consolidation emphasis on transformed representations. citeturn18search0turn18search17
-- Active forgetting prunes redundant scene nodes and low-value edges. citeturn21search0
-
-**Scalability, latency, and consistency**
-
-- Best for temporal reasoning workloads (multi-session tasks) and multi-agent coordination (who did what when). citeturn24view2turn24view0
-- Latency can be kept low by caching “recent scene neighbourhoods” and maintaining compact scene embeddings.
-- Requires careful graph maintenance; otherwise graph expansion can dominate latency.
-
-**Mermaid interaction diagram**
-
-```mermaid
-flowchart TB
- A[Agent Query] --> B[Policy + Scope Masking]
- B --> C[TimeGate + PlaceGate]
- C --> D[SceneStore]
- D --> E[SceneGraph Expansion]
- E --> F[FactProjector / Semantic View]
- F --> G[Context Packet + Citations]
-
- H[Write Proposal] --> I[Staging + Verification]
- I --> D
- I --> F
-
- J[Sleep Cycle] --> K[Scene Replay + Compression]
- K --> I
-```
-
----
-
-### Variant C: Multi-timescale Synapse Ledger Memory
-
-**Concept.** Replace a single “strength” scalar with a multi-timescale dynamical state per memory, inspired by models showing how multiple variables and transfer across timescales preserve many memories while resisting overwriting. citeturn21search4turn21search8 Combine this with homeostatic normalisation and active forgetting.
-
-**Modules**
-
-- `SynapseLedger`: per-memory state vector (e.g., `s_fast, s_mid, s_slow`) with update rules.
-- `PlasticityEngine`: LTP/LTD-like rule: boosts on retrieval, decays with age; can incorporate prediction error or explicit user reinforcement (thumbs-up) as salience. citeturn16search0turn16search1
-- `HomeostaticController`: global scaling to keep total “synaptic strength budget” stable per scope (synaptic scaling/homeostasis analogues). citeturn32search3turn18search11
-- `ActiveForgettingSelector`: selects candidates for weakening/deletion during sleep cycles. citeturn21search2turn21search0
-
-**Indexing / search strategy**
-
-- Keep Engram’s multi-index approach (vector + graph + episodic). citeturn23view1
-- Retrieval score becomes: `score = relevance * f(strength_state) * g(provenance_support)`, where `f` is a monotonic function of multi-timescale strength and `g` is boosted by episodic intersection. citeturn24view2
-
-**Consolidation / replay**
-
-- Replay updates the ledger state: repeated reactivation transfers “mass” from fast→slow variables, analogous to consolidation. citeturn21search4turn21search8
-- Reconsolidation-like behaviour can be modelled by temporarily increasing plasticity when a memory is reactivated, allowing updates rather than creating duplicates. citeturn18search2turn18search18
-
-**Forgetting/decay**
-
-- Forgetting becomes policy + dynamics: low-strength items are retired; redundancy triggers fusion; stale rules can be demoted rather than deleted.
-- Active forgetting is scheduled preferentially in sleep cycles, reflecting the hypothesis that decay-like forgetting is organised and often sleep-associated. citeturn21search0turn21search1
-
-**Scalability, latency, and consistency**
-
-- Higher per-memory metadata cost (state vector + update history) but improved long-run stability. citeturn21search4
-- Most compute can be amortised in background (sleep cycles), keeping online latency manageable.
-
-**Mermaid interaction diagram**
-
-```mermaid
-flowchart LR
- A[Add/Search/Update] --> B[Policy Gateway]
- B --> C[Retrieval: Vector+Graph+Episodic]
- C --> D[Score w/ SynapseLedger]
- D --> E[Context Packet]
-
- C --> F[Plasticity Engine]
- F --> G[SynapseLedger State Update]
-
- H[Sleep Cycle] --> I[Replay Sampler]
- I --> F
- H --> J[Homeostatic Scaling]
- J --> G
- H --> K[Active Forgetting Selector]
- K --> L[Retire/Delete/Fuse]
-```
-
----
-
-### Variant comparison
-
-| Variant | Latency (online) | Scalability | Biological fidelity | Implementation complexity | Best-use cases |
-|---|---|---|---|---|---|
-| A: CLS Distillation | Low–Medium (offline replay) | High (semantic compressed) | High (CLS + replay) citeturn15search7turn17search0 | Medium | General assistants; stable preferences/rules; low hallucination risk via provenance |
-| B: Scene Graph + Spatiotemporal | Medium (graph expansion) | Medium–High (depends on graph size) | Medium–High (time/place indexing) citeturn32search2turn32search4 | Medium–High | Multi-session planning; debugging workflows; “what happened when” queries |
-| C: Synapse Ledger | Low–Medium (state scoring) | Medium (more metadata) | High (multi-timescale + homeostasis + active forgetting) citeturn21search4turn18search11turn21search2 | High | Long-running continual agents; heavy write loads; catastrophic-forgetting resistance |
-
-## Integration with Engram codebase
-
-This section is intentionally “file/module-level” but grounded only in what the repository surfaces publicly: top-level folders plus module import paths shown in README. citeturn22view0turn14view2turn29view2 Any additional file names beyond these should be validated in your local checkout.
-
-### Where to integrate
-
-Engram already exposes configuration objects via `engram.configs.base` and `engram.configs.active`, plus an async memory wrapper at `engram.memory.async_memory`. citeturn14view2turn29view2 The most robust integration pattern is therefore:
-
-- Add new config blocks: `ConsolidationConfig`, `ReplayConfig`, `SceneGraphConfig`, `SynapseLedgerConfig` (depending on variant) under the same config style used by `FadeMemConfig`/`EchoMemConfig`. citeturn14view2
-- Extend the `Memory` core (or whichever internal service backs `Memory()`) to delegate to pluggable backends: `episodic_backend`, `semantic_backend`, `consolidation_backend`, `strength_backend`. The README already suggests a modular provider architecture (`VectorStoreConfig(provider="sqlite_vec", ...)`). citeturn14view2turn23view0
-- Implement replay/sleep orchestration behind the existing `/v1/sleep/run` API surface so current clients keep working. citeturn29view1
-
-### Backward compatibility strategy
-
-Engram exposes both `Engram()` and `Memory()` interfaces plus MCP tools; compatibility is explicitly valued (handoff compat routes, legacy tools remain). citeturn24view1turn29view2 Mirror that approach:
-
-- Keep existing memory records readable; introduce a schema version field.
-- Default to current behaviour when new configs are unset.
-- Ensure `search_memory` still returns the same “context packet” contract, with additional optional fields (`provenance_graph`, `evidence_scenes`, `confidence_components`). citeturn24view2turn14view0
-
-### Migration plan
-
-A safe migration is incremental:
-
-- **Phase 1:** Add typed object model + provenance fields while leaving indexing unchanged (pure data migration).
-- **Phase 2:** Turn on new retrieval scoring while keeping old indexes (feature flag).
-- **Phase 3:** Enable replay/consolidation pipelines (writes produced as staged commits to reuse Engram’s verification/trust). citeturn24view2
-- **Phase 4:** Enable deeper forgetting policies or synapse ledger dynamics (hardest-to-tune last). citeturn21search2turn21search4
-
-### Tests to prioritise
-
-The repository includes a `tests/` directory. citeturn22view0 Extend it with:
-
-- Deterministic unit tests for scoring monotonicity and intersection promotion (semantic+episodic boosts). citeturn24view2
-- Concurrency tests under sqlite-vec WAL mode (multi-agent read/write) and regression tests for the Qdrant file-mode lock failure path (expected error + suggested mitigation). citeturn29view2turn24view0
-- Policy tests for “all-but-mask” (structure returned, details redacted) and scope enforcement via capability tokens. citeturn24view2turn14view0
-- Replay pipeline tests: replay outputs must be staged commits and must preserve provenance links to source episodes/scenes. citeturn24view2turn29view1
-
-## Evaluation, experiments, and implementation roadmap
-
-### Benchmarks, datasets, and experimental design
-
-Engram already includes instructions to benchmark on LongMemEval and provides a runnable module (`python -m engram.benchmarks.longmemeval ...`). citeturn14view3 Use that as the primary regression harness, with official definitions from the LongMemEval paper and cleaned dataset. citeturn26search2turn26search1
-
-Augment with LoCoMo, which explicitly targets very long-term multi-session conversation memory and includes multiple tasks (QA, event summarisation, multimodal dialogue). citeturn26search0turn26search7turn26search26
-
-If you want to validate the “bio-inspired forgetting” claims that Engram references (FadeMem), track storage reduction and accuracy trade-offs using FadeMem’s reported axes: multi-hop reasoning, retrieval, storage reduction. citeturn28search0turn28search3turn14view3
-
-### Metrics
-
-For each benchmark run, measure at least:
-
-Retrieval: Recall@K, Precision@K, MRR/Reciprocal rank, calibration of Engram’s confidence boosts (especially intersection promotion). citeturn24view2turn26search2
-End-task QA: accuracy/F1 per category (extraction, temporal reasoning, knowledge updates, abstention) per LongMemEval’s design. citeturn26search2turn26search24
-Systems: p50/p95 retrieval latency, throughput under multi-agent load, memory footprint and index growth, plus multi-process stability (sqlite-vec vs Qdrant file mode). citeturn29view2turn23view0
-Continual-learning risk: “catastrophic forgetting” proxies such as degradation of old facts after large new ingestion; conflict rate and resolution burden. This connects directly to CLS and multi-timescale consolidation motivations. citeturn15search7turn21search4
-
-### Ablation studies
-
-To make the architecture choice evidence-based, run targeted ablations:
-
-- Disable episodic retrieval (scene path) to quantify how much intersection promotion contributes. citeturn24view2
-- Disable replay/sleep consolidation to quantify offline distillation gains. citeturn16search6turn17search0
-- Disable EchoMem multi-view expansion to quantify retrieval-surface improvements. citeturn24view0
-- Replace active forgetting with pure exponential decay to isolate benefits of selective forgetting. citeturn21search2turn21search0
-- For Variant C, collapse multi-timescale state to a scalar to quantify Benna–Fusi-style improvements. citeturn21search4
-
-### Prioritised roadmap with effort and risks
-
-**Milestone: Typed memory objects + provenance-first schema** (Effort: Medium)
-Risk: migration bugs; requires careful backward compatibility testing with `Memory.get_all`, `history`, and handoff payload formats. citeturn29view2turn24view1
-
-**Milestone: Retrieval scoring refactor into a pluggable “scoring pipeline”** (Effort: Medium)
-Risk: regressions in latency; scoring drift causing unexpected context injection (especially with proactive plugins). citeturn24view2turn24view3
-
-**Milestone: Replay/consolidation as staged commits via `/v1/sleep/run`** (Effort: Medium–High)
-Risk: LLM-generated consolidation can hallucinate; mitigate by requiring episodic evidence links and invariant checks, using the existing verification pipeline. citeturn24view2turn29view1turn18search2
-
-**Milestone: Variant selection (A/B/C) behind config flags** (Effort: Medium)
-Risk: combinatorial complexity; keep one “reference” variant (A) and treat others as experimental backends.
-
-**Milestone: Advanced forgetting (active forgetting + homeostasis)** (Effort: High)
-Risk: irrecoverable deletion or subtle loss of rare but important constraints; require undo logs, staged retirement before deletion, and user-visible audit trails. citeturn21search2turn18search11turn21search0
-
-### Recommended primary sources and Engram sections to inspect first
-
-For Engram, the highest-yield starting points are:
-
-- README sections: Architecture + Memory Stack + Key Flows + API/SDK + Configuration (these define the existing abstractions you must preserve). citeturn23view0turn24view0turn24view2turn14view2turn14view0
-- The Python interface surface in README (`Engram()`, `Memory()`, `AsyncMemory`, graph/category/active modules), since compatibility depends on it. citeturn29view2
-- The longmemeval benchmark harness path referenced in README to keep evaluation continuous as you refactor. citeturn14view3
-- Repository folders: `engram/`, `plugins/engram-memory`, `tests/` (validate exact module layout locally). citeturn22view0
-
-For neuroscience and “brain-like” design, the most architecture-relevant primary sources used in this report are:
-
-- Medial temporal lobe and declarative memory foundations: entity["people","William Beecher Scoville","neurosurgeon"] & entity["people","Brenda Milner","neuropsychologist"] (1957) on profound amnesia after hippocampal/MTL lesions. citeturn15search8
-- Modern multi-system view: entity["people","Larry R. Squire","memory researcher"] (2004) review on multiple memory systems. citeturn31search1
-- Working memory as control substrate: entity["people","Alan Baddeley","psychologist"] & entity["people","Graham Hitch","psychologist"] (1974). citeturn15search2
-- Episodic vs semantic framing: entity["people","Endel Tulving","psychologist"] (1972). citeturn15search9
-- CLS as the most directly transferable brain→AI systems design: entity["people","James L. McClelland","cognitive scientist"] et al. (1995). citeturn15search7
-- Pattern separation/completion and interference control: Yassa & Stark (2011). citeturn17search6
-- Replay/sleep consolidation mechanisms: Wilson & McNaughton (1994); Buzsáki (1989); Diekelmann & Born (2010); Rasch & Born (2013). citeturn17search0turn17search1turn16search6turn16search19
-- Forgetting as an active regulated process: Hardt, Nader & Nadel (2013); Davis & Zhong (2017). citeturn21search0turn21search2
-- Multi-timescale consolidation as an engineering template: Benna & Fusi (2016). citeturn21search4turn21search8
-- Engram concept grounding (optional but thematically relevant): Josselyn & Tonegawa’s engram review (2020). citeturn20search0
diff --git a/engram-accel/Cargo.lock b/dhee-accel/Cargo.lock
similarity index 99%
rename from engram-accel/Cargo.lock
rename to dhee-accel/Cargo.lock
index 424c914..98a921e 100644
--- a/engram-accel/Cargo.lock
+++ b/dhee-accel/Cargo.lock
@@ -46,7 +46,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
[[package]]
-name = "engram-accel"
+name = "dhee-accel"
version = "0.1.0"
dependencies = [
"pyo3",
diff --git a/engram-accel/Cargo.toml b/dhee-accel/Cargo.toml
similarity index 64%
rename from engram-accel/Cargo.toml
rename to dhee-accel/Cargo.toml
index 4b2de12..c39fb71 100644
--- a/engram-accel/Cargo.toml
+++ b/dhee-accel/Cargo.toml
@@ -1,12 +1,12 @@
[package]
-name = "engram-accel"
+name = "dhee-accel"
version = "0.1.0"
edition = "2021"
-description = "Rust acceleration for Engram memory layer"
+description = "Rust acceleration for Dhee memory layer"
license = "MIT"
[lib]
-name = "engram_accel"
+name = "dhee_accel"
crate-type = ["cdylib"]
[dependencies]
diff --git a/engram-accel/pyproject.toml b/dhee-accel/pyproject.toml
similarity index 72%
rename from engram-accel/pyproject.toml
rename to dhee-accel/pyproject.toml
index 3b18c8c..3bdf829 100644
--- a/engram-accel/pyproject.toml
+++ b/dhee-accel/pyproject.toml
@@ -3,9 +3,9 @@ requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
-name = "engram-accel"
+name = "dhee-accel"
version = "0.1.0"
-description = "Rust acceleration for Engram memory layer"
+description = "Rust acceleration for Dhee memory layer"
requires-python = ">=3.9"
license = {text = "MIT"}
diff --git a/engram-accel/src/decay.rs b/dhee-accel/src/decay.rs
similarity index 100%
rename from engram-accel/src/decay.rs
rename to dhee-accel/src/decay.rs
diff --git a/engram-accel/src/lib.rs b/dhee-accel/src/lib.rs
similarity index 81%
rename from engram-accel/src/lib.rs
rename to dhee-accel/src/lib.rs
index 265eb01..7019401 100644
--- a/engram-accel/src/lib.rs
+++ b/dhee-accel/src/lib.rs
@@ -4,9 +4,9 @@ mod decay;
mod scoring;
mod vector;
-/// engram_accel — Rust acceleration for the Engram memory layer.
+/// dhee_accel — Rust acceleration for the Dhee memory layer.
#[pymodule]
-fn engram_accel(m: &Bound<'_, PyModule>) -> PyResult<()> {
+fn dhee_accel(m: &Bound<'_, PyModule>) -> PyResult<()> {
// Vector operations
m.add_function(wrap_pyfunction!(vector::cosine_similarity, m)?)?;
m.add_function(wrap_pyfunction!(vector::cosine_similarity_batch, m)?)?;
diff --git a/engram-accel/src/scoring.rs b/dhee-accel/src/scoring.rs
similarity index 100%
rename from engram-accel/src/scoring.rs
rename to dhee-accel/src/scoring.rs
diff --git a/engram-accel/src/vector.rs b/dhee-accel/src/vector.rs
similarity index 100%
rename from engram-accel/src/vector.rs
rename to dhee-accel/src/vector.rs
diff --git a/engram/__init__.py b/dhee/__init__.py
similarity index 50%
rename from engram/__init__.py
rename to dhee/__init__.py
index 5aea6bc..200eedb 100644
--- a/engram/__init__.py
+++ b/dhee/__init__.py
@@ -1,11 +1,14 @@
-"""engram — biologically-inspired memory for AI agents.
+"""dhee — Cognition as a Service. The memory layer that makes ANY agent intelligent.
- FadeMem: Dual-layer (SML/LML) with natural decay
- EchoMem: Multi-modal encoding for stronger retention
- CategoryMem: Dynamic hierarchical category organization
+- Universal Engram: Structured facts + context anchoring
+- Cognition Engine: Memory-grounded recursive reasoning
+- Prospective Scenes: Memory-driven future anticipation
Quick Start (zero-config, no API key):
- from engram import Memory
+ from dhee import Memory
m = Memory()
m.add("User prefers Python")
results = m.search("programming preferences")
@@ -13,22 +16,22 @@
Tiered Memory Classes:
CoreMemory — lightweight: add/search/delete + decay (no LLM)
SmartMemory — + echo encoding, categories, knowledge graph (needs LLM)
- FullMemory — + scenes, profiles, tasks, projects (everything)
+ FullMemory — + scenes, profiles, tasks, cognition (everything)
Memory — alias for CoreMemory (lightest default)
"""
-from engram.memory.core import CoreMemory
-from engram.memory.smart import SmartMemory
-from engram.memory.main import FullMemory
-from engram.simple import Engram
-from engram.core.category import CategoryProcessor, Category, CategoryType, CategoryMatch
-from engram.core.echo import EchoProcessor, EchoDepth, EchoResult
-from engram.configs.base import MemoryConfig, FadeMemConfig, EchoMemConfig, CategoryMemConfig, ScopeConfig
+from dhee.memory.core import CoreMemory
+from dhee.memory.smart import SmartMemory
+from dhee.memory.main import FullMemory
+from dhee.simple import Engram
+from dhee.core.category import CategoryProcessor, Category, CategoryType, CategoryMatch
+from dhee.core.echo import EchoProcessor, EchoDepth, EchoResult
+from dhee.configs.base import MemoryConfig, FadeMemConfig, EchoMemConfig, CategoryMemConfig, ScopeConfig
# Default: CoreMemory (lightest, zero-config)
Memory = CoreMemory
-__version__ = "0.6.0"
+__version__ = "1.0.0"
__all__ = [
# Tiered memory classes
"CoreMemory",
@@ -53,3 +56,9 @@
"CategoryMemConfig",
"ScopeConfig",
]
+
+
+def _load_teaching():
+ """Lazy-load teaching module to avoid import overhead when not needed."""
+ from dhee.teaching import ConceptStore, StudentModel, TeachingMemory, TeachingConfig
+ return ConceptStore, StudentModel, TeachingMemory, TeachingConfig
diff --git a/dhee/api/__init__.py b/dhee/api/__init__.py
new file mode 100644
index 0000000..017dcb4
--- /dev/null
+++ b/dhee/api/__init__.py
@@ -0,0 +1,6 @@
+"""Engram REST API module."""
+
+from dhee.api.app import app
+from dhee.api.server import run
+
+__all__ = ["app", "run"]
diff --git a/engram/api/app.py b/dhee/api/app.py
similarity index 96%
rename from engram/api/app.py
rename to dhee/api/app.py
index 594c401..5a7e965 100644
--- a/engram/api/app.py
+++ b/dhee/api/app.py
@@ -88,7 +88,7 @@ async def handoff_checkpoint(request: CheckpointRequest):
Creates an engram-bus session (if needed) and writes a checkpoint snapshot.
"""
- from engram.core.kernel import _get_bus
+ from dhee.core.kernel import _get_bus
bus = None
try:
@@ -147,7 +147,7 @@ async def handoff_last_session(
fallback_log_recovery: bool = Query(default=True),
):
"""Get the last session, falling back to JSONL log parsing."""
- from engram.core.kernel import get_last_session
+ from dhee.core.kernel import get_last_session
session = get_last_session(
agent_id=agent_id or "mcp-server",
@@ -162,7 +162,7 @@ async def handoff_last_session(
@app.post("/v1/handoff/recover")
async def handoff_recover(request: RecoverRequest):
"""Direct log recovery — parse JSONL logs without checking bus first."""
- from engram.core.log_parser import find_latest_log, parse_conversation_log
+ from dhee.core.log_parser import find_latest_log, parse_conversation_log
log_path = find_latest_log(request.repo_path)
if log_path is None:
@@ -178,7 +178,7 @@ async def handoff_recover(request: RecoverRequest):
@app.post("/v1/handoff/sessions/digest")
async def save_handoff_digest(request: SessionDigestRequest):
"""Save a session digest (lightweight, no auth)."""
- from engram.core.kernel import save_session_digest
+ from dhee.core.kernel import save_session_digest
result = save_session_digest(
task_summary=request.task_summary,
diff --git a/engram/api/server.py b/dhee/api/server.py
similarity index 100%
rename from engram/api/server.py
rename to dhee/api/server.py
diff --git a/engram/api/static/dashboard.html b/dhee/api/static/dashboard.html
similarity index 100%
rename from engram/api/static/dashboard.html
rename to dhee/api/static/dashboard.html
diff --git a/engram/benchmarks/__init__.py b/dhee/benchmarks/__init__.py
similarity index 100%
rename from engram/benchmarks/__init__.py
rename to dhee/benchmarks/__init__.py
diff --git a/engram/benchmarks/arc_agi.py b/dhee/benchmarks/arc_agi.py
similarity index 98%
rename from engram/benchmarks/arc_agi.py
rename to dhee/benchmarks/arc_agi.py
index c41d7a5..1b7f3d1 100644
--- a/engram/benchmarks/arc_agi.py
+++ b/dhee/benchmarks/arc_agi.py
@@ -189,7 +189,7 @@ def run_arc_benchmark(args: argparse.Namespace) -> Dict[str, Any]:
print()
# Build LLM
- from engram.utils.factory import LLMFactory
+ from dhee.utils.factory import LLMFactory
llm_config = {
"model": args.llm_model,
"temperature": args.temperature,
@@ -205,8 +205,8 @@ def run_arc_benchmark(args: argparse.Namespace) -> Dict[str, Any]:
# Build memory (only in memory mode)
memory = None
if args.mode == "memory":
- from engram.configs.base import MemoryConfig
- from engram.memory.main import Memory
+ from dhee.configs.base import MemoryConfig
+ from dhee.memory.main import Memory
tmpdir = tempfile.mkdtemp(prefix="arc_bench_")
config = MemoryConfig(
@@ -361,7 +361,7 @@ def parse_args() -> argparse.Namespace:
parser.add_argument("--timeout", type=int, default=120, help="LLM call timeout in seconds.")
parser.add_argument("--llm-provider", default="nvidia", choices=["nvidia", "openai", "gemini", "ollama"])
- parser.add_argument("--llm-model", default="meta/llama-3.1-8b-instruct")
+ parser.add_argument("--llm-model", default="deepseek-ai/deepseek-r1-distill-qwen-14b")
parser.add_argument("--api-key", default=None, help="Override LLM API key.")
parser.add_argument("--temperature", type=float, default=0.0, help="LLM temperature.")
parser.add_argument("--top-p", type=float, default=0.7, help="LLM top-p.")
diff --git a/dhee/benchmarks/longmemeval.py b/dhee/benchmarks/longmemeval.py
new file mode 100644
index 0000000..e4a7984
--- /dev/null
+++ b/dhee/benchmarks/longmemeval.py
@@ -0,0 +1,2177 @@
+"""LongMemEval runner for Engram
+
+Usage:
+ python -m engram.benchmarks.longmemeval --dataset-path ... --output-jsonl ...
+"""
+
+from __future__ import annotations
+
+import argparse
+import json
+import logging
+import math
+import os
+import re
+from dataclasses import dataclass
+from pathlib import Path
+from statistics import mean
+from typing import Any, Dict, Iterable, List, Optional, Sequence, Tuple
+
+from dhee import FullMemory as Memory
+from dhee.configs.base import (
+ BatchConfig,
+ CategoryMemConfig,
+ EchoMemConfig,
+ EmbedderConfig,
+ EngramExtractionConfig,
+ EnrichmentConfig,
+ KnowledgeGraphConfig,
+ LLMConfig,
+ MemoryConfig,
+ OrchestrationConfig,
+ ProfileConfig,
+ RerankConfig,
+ SceneConfig,
+ CostGuardrailConfig,
+ VectorStoreConfig,
+)
+from dhee.core.answer_orchestration import (
+ is_low_confidence_answer,
+)
+from dhee.core.code_exec_counter import refine_count_with_code_exec
+
+logger = logging.getLogger(__name__)
+
+# ---- Training dataset export ----
+
+
+def _export_training_data(
+ memory: Any,
+ question_id: str,
+ question: str,
+ question_type: str,
+ question_date: str,
+ gold_answer: str,
+ hypothesis: str,
+ intent: str,
+ context: str,
+ results: List[Dict[str, Any]],
+ orchestration_meta: Dict[str, Any],
+ session_items: List[Dict[str, Any]],
+ output_dir: str,
+ user_id: str,
+) -> None:
+ """Export structured training tuples BEFORE memory.delete_all() wipes the DB.
+
+ Saves per-task-type JSONL files that become DheeModel fine-tuning data:
+ - engram_extraction.jsonl: session text → extracted facts/entities/profiles
+ - query_classification.jsonl: question → intent + search params
+ - answer_synthesis.jsonl: question + facts + context → gold answer
+ - context_anchoring.jsonl: memory → context anchors (era/place/time/activity)
+ """
+ os.makedirs(output_dir, exist_ok=True)
+
+ # 1. [ENGRAM] extraction pairs: stored memories with their enrichment
+ try:
+ all_memories = memory.get_all(user_id=user_id, limit=500).get("results", [])
+ if all_memories:
+ engram_path = os.path.join(output_dir, "engram_extraction.jsonl")
+ with open(engram_path, "a", encoding="utf-8") as f:
+ for mem in all_memories:
+ row = {
+ "question_id": question_id,
+ "memory_id": mem.get("id", ""),
+ "input_text": mem.get("memory", ""),
+ "metadata": mem.get("metadata", {}),
+ "categories": mem.get("categories", []),
+ "hash": mem.get("hash", ""),
+ }
+ # Extract enrichment data from DB if available
+ mid = mem.get("id", "")
+ if mid and hasattr(memory, "db"):
+ db = memory.db
+ # Facts
+ try:
+ facts = db.conn.execute(
+ "SELECT subject, predicate, value, value_numeric, value_unit, "
+ "time, valid_from, valid_until, qualifier, canonical_key, "
+ "confidence, is_derived FROM engram_facts WHERE memory_id = ?",
+ (mid,),
+ ).fetchall()
+ if facts:
+ row["facts"] = [
+ dict(zip(
+ ["subject", "predicate", "value", "value_numeric",
+ "value_unit", "time", "valid_from", "valid_until",
+ "qualifier", "canonical_key", "confidence", "is_derived"],
+ f,
+ ))
+ for f in facts
+ ]
+ except Exception:
+ pass
+ # Context anchors
+ try:
+ ctx = db.conn.execute(
+ "SELECT era, place, place_type, place_detail, time_absolute, "
+ "time_markers, time_range_start, time_range_end, time_derivation, "
+ "activity, session_id FROM engram_context WHERE memory_id = ?",
+ (mid,),
+ ).fetchone()
+ if ctx:
+ row["context_anchor"] = dict(zip(
+ ["era", "place", "place_type", "place_detail",
+ "time_absolute", "time_markers", "time_range_start",
+ "time_range_end", "time_derivation", "activity",
+ "session_id"],
+ ctx,
+ ))
+ except Exception:
+ pass
+ # Entities
+ try:
+ ents = db.conn.execute(
+ "SELECT name, entity_type, state, relationships "
+ "FROM engram_entities WHERE memory_id = ?",
+ (mid,),
+ ).fetchall()
+ if ents:
+ row["entities"] = [
+ dict(zip(["name", "entity_type", "state", "relationships"], e))
+ for e in ents
+ ]
+ except Exception:
+ pass
+ # Profiles
+ try:
+ profiles = db.conn.execute(
+ "SELECT fact_key, fact_value, category, source_memory_id "
+ "FROM profiles WHERE source_memory_id = ?",
+ (mid,),
+ ).fetchall()
+ if profiles:
+ row["profiles"] = [
+ dict(zip(["fact_key", "fact_value", "category", "source_memory_id"], p))
+ for p in profiles
+ ]
+ except Exception:
+ pass
+ f.write(json.dumps(row, ensure_ascii=False) + "\n")
+ except Exception as e:
+ logger.debug("Training data export (engram): %s", e)
+
+ # 2. [QUERY] classification pairs: question → intent + orchestration params
+ try:
+ query_path = os.path.join(output_dir, "query_classification.jsonl")
+ with open(query_path, "a", encoding="utf-8") as f:
+ row = {
+ "question_id": question_id,
+ "question": question,
+ "question_type": question_type,
+ "question_date": question_date,
+ "classified_intent": intent,
+ "orchestration": {
+ k: v for k, v in orchestration_meta.items()
+ if k in ("mode", "intent", "search_limit", "context_limit",
+ "map_reduce_used", "rewritten_query", "reason_codes")
+ },
+ }
+ f.write(json.dumps(row, ensure_ascii=False) + "\n")
+ except Exception as e:
+ logger.debug("Training data export (query): %s", e)
+
+ # 3. [ANSWER] synthesis pairs: question + structured facts + context → gold answer
+ try:
+ answer_path = os.path.join(output_dir, "answer_synthesis.jsonl")
+ with open(answer_path, "a", encoding="utf-8") as f:
+ # Collect all facts from the DB for this question's memories
+ all_facts: List[Dict] = []
+ if hasattr(memory, "db"):
+ try:
+ facts_rows = memory.db.conn.execute(
+ "SELECT subject, predicate, value, canonical_key, time, qualifier "
+ "FROM engram_facts WHERE memory_id IN "
+ "(SELECT id FROM memories WHERE user_id = ?)",
+ (user_id,),
+ ).fetchall()
+ all_facts = [
+ dict(zip(["subject", "predicate", "value", "canonical_key", "time", "qualifier"], r))
+ for r in facts_rows
+ ]
+ except Exception:
+ pass
+ row = {
+ "question_id": question_id,
+ "question": question,
+ "question_type": question_type,
+ "question_date": question_date,
+ "gold_answer": gold_answer,
+ "system_answer": hypothesis,
+ "intent": intent,
+ "context_text": context[:8000] if context else "",
+ "structured_facts": all_facts[:200],
+ "reduced_answer": orchestration_meta.get("reduced_answer"),
+ "num_results": len(results),
+ }
+ f.write(json.dumps(row, ensure_ascii=False) + "\n")
+ except Exception as e:
+ logger.debug("Training data export (answer): %s", e)
+
+ # 4. [CONTEXT] anchoring pairs: session texts → context metadata
+ try:
+ context_path = os.path.join(output_dir, "context_anchoring.jsonl")
+ with open(context_path, "a", encoding="utf-8") as f:
+ for item in session_items:
+ row = {
+ "question_id": question_id,
+ "session_id": item.get("metadata", {}).get("session_id", ""),
+ "session_date": item.get("metadata", {}).get("session_date", ""),
+ "session_text": item.get("content", "")[:4000],
+ }
+ f.write(json.dumps(row, ensure_ascii=False) + "\n")
+ except Exception as e:
+ logger.debug("Training data export (context): %s", e)
+
+
+# ---- Answer grounding helpers ----
+
+_IDK_RE = re.compile(
+ r"\b(i\s+don[''\u2019]?t\s+know|no\s+(relevant|specific)\s+(information|mention)"
+ r"|not\s+(mentioned|found|stated|provided|discussed)"
+ r"|does\s+not\s+(appear|mention|discuss)|cannot\s+determine"
+ r"|did\s+not\s+mention"
+ r"|insufficient\s+information)\b",
+ re.I,
+)
+
+
+def _is_refusal(answer: str) -> bool:
+ """Return True if the answer is effectively 'I don't know'."""
+ a = str(answer or "").strip()
+ if not a:
+ return True
+ return bool(_IDK_RE.search(a))
+
+
+def _extract_key_numbers(text: str) -> set:
+ """Extract all numbers from text (integers and decimals)."""
+ return set(re.findall(r"\b\d+(?:\.\d+)?\b", str(text or "")))
+
+
+def _answer_grounded_in_context(hypothesis: str, context: str) -> bool:
+ """Check if numbers/quantities in the hypothesis exist in the context.
+
+ For factual extraction questions, the answer should reference
+ values that are explicitly present in the retrieved context.
+ Returns True if grounded or if no numbers to verify.
+ """
+ # Normalize word numbers to digits in both hypothesis and context
+ h_norm = _word_numbers_to_digits(hypothesis)
+ c_norm = _word_numbers_to_digits(context)
+ h_numbers = _extract_key_numbers(h_norm)
+ if not h_numbers:
+ return True # No numbers to check — assume grounded
+ c_numbers = _extract_key_numbers(c_norm)
+ # At least one number in the answer should appear in context
+ return bool(h_numbers & c_numbers)
+
+SESSION_ID_PATTERN = re.compile(r"^Session ID:\s*(?P\S+)\s*$", re.MULTILINE)
+HISTORY_HEADER = "User Transcript:"
+DEFAULT_NVIDIA_LLM_MODEL = "meta/llama-3.1-8b-instruct"
+DEFAULT_NVIDIA_EMBEDDER_MODEL = "nvidia/llama-nemotron-embed-vl-1b-v2"
+DEFAULT_NVIDIA_RERANK_MODEL = "nvidia/llama-3.2-nv-rerankqa-1b-v2"
+
+
+def extract_user_only_text(session_turns: Sequence[Dict[str, Any]]) -> str:
+ """Convert one LongMemEval session into newline-separated user text."""
+ lines = [str(turn.get("content", "")).strip() for turn in session_turns if turn.get("role") == "user"]
+ return "\n".join([line for line in lines if line])
+
+
+def format_session_memory(session_id: str, session_date: str, session_turns: Sequence[Dict[str, Any]], include_all_roles: bool = False) -> str:
+ """Create a memory payload that preserves session metadata in plain text.
+
+ When include_all_roles=True, includes both user and assistant turns
+ for richer context in deferred enrichment mode.
+ """
+ if include_all_roles:
+ all_text = []
+ for turn in session_turns:
+ role = turn.get("role", "user")
+ content = str(turn.get("content", "")).strip()
+ if content:
+ all_text.append(f"{role}: {content}")
+ full_text = "\n".join(all_text)
+ else:
+ full_text = extract_user_only_text(session_turns)
+ return (
+ f"Session ID: {session_id}\n"
+ f"Session Date: {session_date}\n"
+ f"{HISTORY_HEADER}\n"
+ f"{full_text}"
+ )
+
+
+def parse_session_id_from_result(result: Dict[str, Any]) -> Optional[str]:
+ """Extract session_id from memory metadata or fallback text header."""
+ metadata = result.get("metadata") or {}
+ sid = metadata.get("session_id")
+ if sid:
+ return str(sid)
+ memory_text = str(result.get("memory", "") or "")
+ match = SESSION_ID_PATTERN.search(memory_text)
+ if match:
+ return match.group("session_id")
+ return None
+
+
+def dedupe_preserve_order(items: Iterable[str]) -> List[str]:
+ seen = set()
+ ordered: List[str] = []
+ for item in items:
+ if item in seen:
+ continue
+ seen.add(item)
+ ordered.append(item)
+ return ordered
+
+
+def compute_session_metrics(retrieved_session_ids: Sequence[str], answer_session_ids: Sequence[str]) -> Dict[str, float]:
+ """Compute simple retrieval metrics over session IDs."""
+ retrieved = dedupe_preserve_order([str(x) for x in retrieved_session_ids if str(x).strip()])
+ gold = {str(x) for x in answer_session_ids if str(x).strip()}
+
+ metrics: Dict[str, float] = {}
+ for k in (1, 3, 5, 10):
+ top_k = set(retrieved[:k])
+ metrics[f"recall_any@{k}"] = 1.0 if gold and bool(top_k & gold) else 0.0
+ metrics[f"recall_all@{k}"] = 1.0 if gold and gold.issubset(top_k) else 0.0
+ return metrics
+
+
+def _coerce_finite_float(value: Any) -> Optional[float]:
+ try:
+ num = float(value)
+ except (TypeError, ValueError):
+ return None
+ if not math.isfinite(num):
+ return None
+ return num
+
+
+def _top1_session_id_by_score(results: Sequence[Dict[str, Any]], score_key: str) -> Optional[str]:
+ best_result: Optional[Dict[str, Any]] = None
+ best_score = float("-inf")
+ for result in results:
+ score = _coerce_finite_float(result.get(score_key))
+ if score is None:
+ continue
+ if score > best_score:
+ best_score = score
+ best_result = result
+ if best_result is None:
+ return None
+ return parse_session_id_from_result(best_result)
+
+
+def _rank_gold_by_score(
+ results: Sequence[Dict[str, Any]],
+ gold_session_ids: Sequence[str],
+ score_key: str,
+ require_finite_score: bool = False,
+) -> Optional[int]:
+ gold = {str(x) for x in gold_session_ids if str(x).strip()}
+ if not gold:
+ return None
+
+ scored_rows: List[Tuple[float, str]] = []
+ for result in results:
+ session_id = parse_session_id_from_result(result)
+ if not session_id:
+ continue
+ score = _coerce_finite_float(result.get(score_key))
+ if score is None:
+ if require_finite_score:
+ continue
+ score = float("-inf")
+ scored_rows.append((score, session_id))
+
+ if not scored_rows:
+ return None
+
+ scored_rows.sort(key=lambda item: item[0], reverse=True)
+ for rank, (_, session_id) in enumerate(scored_rows, start=1):
+ if session_id in gold:
+ return rank
+ return None
+
+
+def _truncate_text(text: str, max_chars: int) -> str:
+ try:
+ limit = int(max_chars)
+ except (TypeError, ValueError):
+ limit = 3500
+ limit = max(1, limit)
+ normalized = str(text or "").strip()
+ if len(normalized) <= limit:
+ return normalized
+ return normalized[:limit].rstrip()
+
+
+# ---------------------------------------------------------------------------
+# Keyword-context evidence extraction (Option 1: smarter evidence, 0 cost)
+# ---------------------------------------------------------------------------
+
+_KEYWORD_STOPWORDS = frozenset({
+ 'the', 'a', 'an', 'is', 'are', 'was', 'were', 'be', 'been', 'being',
+ 'have', 'has', 'had', 'do', 'does', 'did', 'will', 'would', 'could',
+ 'should', 'may', 'might', 'can', 'shall', 'to', 'of', 'in', 'for',
+ 'on', 'with', 'at', 'by', 'from', 'as', 'into', 'through', 'during',
+ 'before', 'after', 'above', 'below', 'between', 'out', 'off', 'over',
+ 'under', 'again', 'further', 'then', 'once', 'here', 'there', 'when',
+ 'where', 'why', 'how', 'all', 'each', 'every', 'both', 'few', 'more',
+ 'most', 'other', 'some', 'such', 'no', 'nor', 'not', 'only', 'own',
+ 'same', 'so', 'than', 'too', 'very', 'just', 'because', 'but', 'and',
+ 'or', 'if', 'while', 'what', 'which', 'who', 'whom', 'this', 'that',
+ 'these', 'those', 'i', 'me', 'my', 'myself', 'we', 'our', 'ours',
+ 'you', 'your', 'yours', 'he', 'him', 'his', 'she', 'her', 'hers',
+ 'it', 'its', 'they', 'them', 'their', 'theirs', 'about', 'up', 'down',
+ 'many', 'much', 'also', 'any', 'tell', 'know', 'am',
+})
+
+
+def extract_keyword_context(
+ text: str,
+ query: str,
+ context_chars: int = 800,
+ max_excerpts: int = 5,
+) -> str:
+ """Extract text windows around query keyword matches.
+
+ Finds meaningful keywords from the query, locates them in the session text,
+ and returns large context windows (before + after) around each match.
+ Overlapping windows are merged into contiguous blocks.
+ """
+ words = re.findall(r'\b\w+\b', query.lower())
+ keywords = [w for w in words if w not in _KEYWORD_STOPWORDS and len(w) > 2]
+
+ if not keywords:
+ return _truncate_text(text, context_chars * 2)
+
+ text_lower = text.lower()
+ positions: List[int] = []
+ for kw in keywords:
+ for match in re.finditer(r'\b' + re.escape(kw) + r'\b', text_lower):
+ positions.append(match.start())
+
+ if not positions:
+ return _truncate_text(text, context_chars * 2)
+
+ positions.sort()
+
+ # Build context windows and merge overlapping ones
+ windows: List[Tuple[int, int]] = []
+ for pos in positions:
+ start = max(0, pos - context_chars)
+ end = min(len(text), pos + context_chars)
+ if windows and start <= windows[-1][1]:
+ windows[-1] = (windows[-1][0], max(windows[-1][1], end))
+ else:
+ windows.append((start, end))
+
+ # Keep the largest windows, then re-sort by position
+ windows = sorted(windows, key=lambda w: w[1] - w[0], reverse=True)[:max_excerpts]
+ windows.sort(key=lambda w: w[0])
+
+ excerpts: List[str] = []
+ for start, end in windows:
+ excerpt = text[start:end].strip()
+ if not excerpt:
+ continue
+ prefix = "..." if start > 0 else ""
+ suffix = "..." if end < len(text) else ""
+ excerpts.append(f"{prefix}{excerpt}{suffix}")
+
+ return "\n---\n".join(excerpts) if excerpts else _truncate_text(text, context_chars * 2)
+
+
+def _normalize_question_type(question_type: str) -> str:
+ return str(question_type or "").strip().lower()
+
+
+def _question_type_instructions(question_type: str) -> str:
+ qtype = _normalize_question_type(question_type)
+
+ if "multi-session" in qtype:
+ return (
+ "- Multi-session: relevant evidence can be spread across multiple candidates.\n"
+ "- Read ALL candidates before finalizing the answer.\n"
+ "- For counting/summing: enumerate each unique item as a numbered list (1. item from Session X, 2. item from Session Y, ...). Then count the list. Do NOT count the same item/event twice even if mentioned in multiple sessions.\n"
+ "- After listing, state: 'Total unique items: N' where N is the count of your numbered list.\n"
+ )
+
+ if "temporal" in qtype:
+ return (
+ "- Temporal reasoning: use session dates in candidate headers for chronology/date math.\n"
+ "- Convert relative time references using the provided timeline evidence.\n"
+ "- For day/week/month difference questions, return the computed final duration only.\n"
+ )
+
+ if "knowledge-update" in qtype or "update" in qtype or "changing" in qtype:
+ return (
+ "- Knowledge update: if old and updated values coexist, prioritize the latest updated value.\n"
+ "- If both values appear in your answer, the final answer must clearly include the updated value.\n"
+ )
+
+ if "preference" in qtype:
+ return (
+ "- Preference question: the user is asking for a recommendation based on their stated preferences.\n"
+ "- DO NOT refuse or say 'you did not mention'. Instead, use what the user HAS told you about their interests, brands, styles, and past choices to describe what they would prefer.\n"
+ "- Answer format: describe the user's relevant preferences and what kind of suggestion would suit them (2-3 sentences).\n"
+ "- Example: if user mentioned using Sony cameras, and asks for accessory suggestions, answer: 'Based on your Sony camera, you would prefer Sony-compatible accessories.'\n"
+ )
+
+ if "single-session-user" in qtype or "single-session-assistant" in qtype:
+ return (
+ "- Single-session fact: locate the exact supporting detail and answer directly.\n"
+ "- Return only the requested fact.\n"
+ )
+
+ return "- Find direct supporting evidence and answer precisely.\n"
+
+
+def build_answer_prompt(
+ question: str,
+ retrieved_context: str,
+ question_date: str = "",
+ question_type: str = "",
+) -> str:
+ qtype = _normalize_question_type(question_type)
+ date_str = question_date or "Not specified"
+ type_rules = _question_type_instructions(qtype)
+
+ return (
+ "You are a question-answering system. Based on the retrieved conversation history below, answer the question.\n\n"
+ f"Question: {question}\n"
+ f"Question Date: {date_str}\n\n"
+ "Retrieved Context:\n"
+ f"{retrieved_context}\n\n"
+ "Instructions:\n"
+ "- Base your answer ONLY on the provided context. Every fact in your answer must be directly traceable to text in the conversations above.\n"
+ "- If the answer spans multiple conversations, synthesize information from ALL of them.\n"
+ "- For counting/aggregation questions: first list each unique item found across ALL conversations as a numbered list (1., 2., 3., ...), noting which session it came from. Skip duplicates. Then count the numbered list to give the total.\n"
+ "- For temporal questions: use session dates to calculate time differences.\n"
+ "- For preference/recommendation questions: describe user preferences including specific products/brands mentioned (2-3 sentences).\n"
+ "- If evidence conflicts, prefer the most recent dated evidence.\n"
+ "- Answer even if the match is indirect (e.g. a store name IS a brand, a mentioned product IS the answer even if not called a 'brand').\n"
+ "- If the exact thing asked about is NOT in the context but a closely related topic IS mentioned, say: 'You did not mention this information. You mentioned [related thing] but not [asked thing].'\n"
+ "- Only say 'I don't know' if the context contains absolutely zero relevant information about what is asked.\n"
+ "- When the user refers to relative time ('last weekend', 'recently'), match it to the closest relevant event mentioned in the context rather than rejecting based on exact date arithmetic.\n"
+ f"{type_rules}\n"
+ "Think step by step, then provide your answer.\n\n"
+ "Reasoning:\n[Identify which conversations contain relevant information and quote the exact supporting text]\n\n"
+ "Answer:\n[Your concise final answer — use the exact words/numbers from the context]"
+ )
+
+
+def _parse_answer_section(text: str) -> str:
+ """Extract the final answer from a chain-of-thought response.
+
+ Handles multiple reasoning model formats:
+ 1. ... tags (qwq-32b, DeepSeek with thinking mode)
+ 2. "Answer:" line prefix (standard CoT format)
+ 3. Inline reasoning starting with "Okay," / "Let me" / "Let's" etc.
+ """
+ if not text:
+ return ""
+
+ # Step 1: Strip reasoning blocks from thinking models (qwq-32b, DeepSeek, etc.)
+ import re
+ # Case A: Full ... blocks
+ cleaned = re.sub(r".*? ", "", text, flags=re.DOTALL).strip()
+ if cleaned and cleaned != text.strip():
+ text = cleaned
+ # Case B: Missing opening — API strips it but keeps
+ elif "" in text:
+ after_think = text.split("", 1)[1].strip()
+ if after_think:
+ text = after_think
+
+ lines = text.splitlines()
+
+ # Step 2: Search backwards for a line starting with "Answer:"
+ for i in range(len(lines) - 1, -1, -1):
+ line = lines[i].strip()
+ if line.lower().startswith("answer:"):
+ content = line[len("answer:"):].strip()
+ if i + 1 < len(lines):
+ remaining = "\n".join(lines[i + 1:]).strip()
+ if remaining:
+ content = content + "\n" + remaining if content else remaining
+ return content.strip()
+
+ # Step 3: If text starts with common reasoning prefixes and is long,
+ # try to extract the final conclusion (last paragraph after a blank line)
+ first_line = lines[0].strip().lower() if lines else ""
+ _REASONING_PREFIXES = (
+ "okay,", "okay ", "let me", "let's", "first,", "first ", "so,", "so ",
+ "to answer", "looking at", "based on", "i need to", "the user",
+ "alright,", "alright ", "now,", "now ", "hmm",
+ )
+ if len(text) > 300 and any(first_line.startswith(p) for p in _REASONING_PREFIXES):
+ # Find last non-empty paragraph
+ paragraphs = re.split(r"\n\s*\n", text)
+ if len(paragraphs) > 1:
+ last = paragraphs[-1].strip()
+ # Only use last paragraph if it's short enough to be an answer
+ if last and len(last) < 500:
+ return last
+
+ return text.strip()
+
+
+def _is_count_style_question(question: str) -> bool:
+ """Check if a question needs count refinement (item enumeration).
+
+ Only returns True for questions that COUNT DISTINCT ITEMS.
+ Returns False for questions asking for numeric VALUES, durations, or money sums.
+ """
+ from dhee.core.answer_orchestration import classify_answer_intent, AnswerIntent
+ intent = classify_answer_intent(question)
+ return intent == AnswerIntent.COUNT
+
+
+def _normalize_number_text(value: Any) -> Optional[str]:
+ if value is None:
+ return None
+ text = str(value).strip()
+ if not text:
+ return None
+ parse_text = text.replace(",", "")
+ if parse_text.startswith("$"):
+ parse_text = parse_text[1:]
+ try:
+ num = float(parse_text)
+ except (TypeError, ValueError):
+ return text
+ if not math.isfinite(num):
+ return None
+ if abs(num - round(num)) < 1e-9:
+ return str(int(round(num)))
+ return f"{num}".rstrip("0").rstrip(".")
+
+
+def _extract_number_matches(text: str) -> List[re.Match]:
+ matches = list(
+ re.finditer(
+ r"(? bool:
+ start, end = match.span()
+ next_char = text[end:end + 1]
+ if next_char not in {".", ")", ":"}:
+ return False
+ if next_char == "." and end < len(text) - 1 and text[end + 1].isdigit():
+ # Decimal number (e.g. 1.5), not a list index.
+ return False
+ if end < len(text) - 1 and not text[end + 1].isspace():
+ return False
+ if start == 0:
+ return True
+ prev_char = text[start - 1]
+ return prev_char in {"\n", " ", "\t", "-", "*"}
+
+
+def _window_has_total_marker(text_lower: str, start: int, end: int, radius: int = 24) -> bool:
+ window = text_lower[max(0, start - radius): min(len(text_lower), end + radius)]
+ return any(marker in window for marker in ("total", "in total", "altogether", "overall", "final"))
+
+
+def _extract_how_many_keywords(question: str) -> List[str]:
+ q_lower = str(question or "").lower()
+ match = re.search(r"\bhow many\s+(.+)", q_lower)
+ if not match:
+ return []
+ fragment = match.group(1).split("?", 1)[0]
+ fragment = re.split(
+ r"\b(do|did|does|have|has|had|are|is|was|were|can|could|will|would|should)\b",
+ fragment,
+ maxsplit=1,
+ )[0]
+ words = re.findall(r"[a-z]+", fragment)
+ stopwords = {
+ "the", "a", "an", "my", "our", "your", "their", "his", "her", "its",
+ "i", "we", "you", "they", "he", "she", "it", "in", "on", "for", "to",
+ "of", "with", "at", "from", "by", "or", "and", "last", "past", "current",
+ }
+ return [w for w in words if len(w) > 2 and w not in stopwords]
+
+
+_TENS = {
+ "twenty": 20, "thirty": 30, "forty": 40, "fifty": 50,
+ "sixty": 60, "seventy": 70, "eighty": 80, "ninety": 90,
+}
+_ONES = {
+ "zero": 0, "one": 1, "two": 2, "three": 3, "four": 4,
+ "five": 5, "six": 6, "seven": 7, "eight": 8, "nine": 9,
+ "ten": 10, "eleven": 11, "twelve": 12, "thirteen": 13,
+ "fourteen": 14, "fifteen": 15, "sixteen": 16, "seventeen": 17,
+ "eighteen": 18, "nineteen": 19,
+}
+_SIMPLE_WORDS = {
+ "a dozen": "12", "half a": "0.5", "a half": "0.5",
+ "half": "0.5", "hundred": "100",
+}
+
+
+def _word_numbers_to_digits(text: str) -> str:
+ """Replace word-form numbers (two, twenty-three...) with digits."""
+ result = text
+ # Handle simple phrases first (longest first)
+ for word, digit in sorted(_SIMPLE_WORDS.items(), key=lambda x: -len(x[0])):
+ result = re.sub(rf"\b{re.escape(word)}\b", digit, result, flags=re.I)
+
+ # Handle compound numbers: "twenty-three", "twenty three", "fifty-one"
+ tens_pattern = "|".join(_TENS.keys())
+ ones_pattern = "|".join(k for k in _ONES if _ONES[k] >= 1 and _ONES[k] <= 9)
+
+ def _compound_replace(m: re.Match) -> str:
+ t = m.group(1).lower()
+ o = m.group(2).lower()
+ return str(_TENS[t] + _ONES[o])
+
+ result = re.sub(
+ rf"\b({tens_pattern})[\s-]({ones_pattern})\b",
+ _compound_replace, result, flags=re.I,
+ )
+
+ # Handle standalone tens and ones (longest first to avoid partial matches)
+ all_words = {**{k: str(v) for k, v in _TENS.items()}, **{k: str(v) for k, v in _ONES.items()}}
+ for word, digit in sorted(all_words.items(), key=lambda x: -len(x[0])):
+ result = re.sub(rf"\b{re.escape(word)}\b", digit, result, flags=re.I)
+ return result
+
+
+def _canonicalize_count_answer(answer: str, question: str) -> str:
+ text = str(answer or "").strip()
+ if not text or not _is_count_style_question(question):
+ return text
+ # Convert word numbers to digits before extraction
+ text_with_digits = _word_numbers_to_digits(text)
+ matches = _extract_number_matches(text_with_digits)
+ if not matches:
+ return text
+ q_lower = str(question or "").lower()
+ text_lower = text_with_digits.lower()
+ use_last = bool(re.search(r"[=+\-*/]", text)) and len(matches) > 1
+
+ # Strict money detection: only dollar/money keywords, NOT event-type words.
+ # "fundraise", "charity", "raised" can appear in counting questions
+ # (e.g. "how many charity events") and must NOT trigger $ formatting.
+ money_question = bool(
+ re.search(
+ r"\b(how much money|money|dollars?|usd)\b",
+ q_lower,
+ )
+ )
+ # Ambiguous words (charity, fundraise, raised, spent, cost) require a
+ # money-verb gate — same two-gate pattern as classify_answer_intent.
+ if not money_question and re.search(r"\b(charity|fundrais\w*|raised?|spent?|cost)\b", q_lower):
+ money_question = bool(
+ re.search(r"\b(how much|total|sum|amount)\b", q_lower)
+ )
+
+ duration_question = (
+ "how long" in q_lower
+ or bool(re.search(r"\b(duration|difference|elapsed|ago)\b", q_lower))
+ or bool(re.search(r"\bhow many\s+(days?|weeks?|months?|years?|hours?|minutes?)\b", q_lower))
+ )
+
+ non_list_matches = [m for m in matches if not _is_probable_list_index(text_with_digits, m)]
+ candidate_matches = non_list_matches or matches
+ chosen: Optional[re.Match] = None
+
+ if "how many" in q_lower and not non_list_matches and len(matches) > 1:
+ # If the model returned an enumerated list (1., 2., 3., ...), use the max index.
+ try:
+ chosen = max(matches, key=lambda m: float((m.group(0) or "0").replace(",", "")))
+ except ValueError:
+ chosen = matches[-1]
+
+ if chosen is None:
+ total_matches = []
+ for m in candidate_matches:
+ s, e = m.span()
+ if _window_has_total_marker(text_lower, s, e):
+ total_matches.append(m)
+ if total_matches:
+ chosen = total_matches[-1]
+
+ if chosen is None and duration_question:
+ for m in candidate_matches:
+ s, e = m.span()
+ window = text_lower[max(0, s - 20): min(len(text_lower), e + 20)]
+ if re.search(r"\b(days?|weeks?|months?|years?|hours?|minutes?)\b", window):
+ chosen = m
+ break
+
+ if chosen is None and money_question:
+ currency_matches = []
+ for m in candidate_matches:
+ s, e = m.span()
+ around = text[max(0, s - 2): min(len(text), e + 2)]
+ if "$" in around:
+ currency_matches.append(m)
+ if currency_matches:
+ chosen = currency_matches[-1] if use_last else currency_matches[0]
+
+ if chosen is None and "how many" in q_lower:
+ keywords = _extract_how_many_keywords(question)
+ if keywords:
+ for m in candidate_matches:
+ s, e = m.span()
+ window = text_lower[max(0, s - 48): min(len(text_lower), e + 96)]
+ if any(kw in window for kw in keywords):
+ chosen = m
+ break
+
+ if chosen is None:
+ chosen = candidate_matches[-1] if use_last and len(candidate_matches) > 1 else candidate_matches[0]
+
+ raw_number = chosen.group(0)
+ number = _normalize_number_text(raw_number) or raw_number.replace(",", "")
+
+ if money_question and number:
+ normalized_money = _normalize_number_text(number) or str(number).replace(",", "")
+ if re.fullmatch(r"[-+]?\d+", normalized_money):
+ return f"${int(normalized_money):,}"
+ return f"${normalized_money}"
+
+ if duration_question:
+ for unit in ("days", "day", "weeks", "week", "months", "month", "years", "year", "hours", "hour", "minutes", "minute"):
+ if re.search(rf"\b{unit}\b", q_lower):
+ return f"{number} {unit}"
+ # If question doesn't name a unit (e.g., "How long is my commute?"),
+ # infer unit from answer text near the selected number.
+ s, e = chosen.span()
+ nearby = text_lower[max(0, s - 8): min(len(text_lower), e + 48)]
+ inferred = re.search(r"\b(days?|weeks?|months?|years?|hours?|minutes?)\b", nearby)
+ if inferred:
+ suffix = ""
+ if "each way" in nearby:
+ suffix = " each way"
+ elif "one way" in nearby:
+ suffix = " one way"
+ elif "round trip" in nearby:
+ suffix = " round trip"
+ return f"{number} {inferred.group(1)}{suffix}".strip()
+ # Do not collapse to bare number for duration questions without clear unit.
+ return text
+ if "how many" in q_lower:
+ return number
+ return number
+
+
+def _build_count_refinement_prompt(
+ *,
+ question: str,
+ question_type: str,
+ question_date: str,
+ retrieved_context: str,
+ draft_answer: str,
+) -> str:
+ return (
+ "You are validating a count-based memory QA answer.\n"
+ "Use ONLY the retrieved context.\n\n"
+ f"Question: {question}\n"
+ f"Question Type: {question_type or 'unknown'}\n"
+ f"Question Date: {question_date or 'Not specified'}\n"
+ f"Draft Answer: {draft_answer}\n\n"
+ "Retrieved Context:\n"
+ f"{retrieved_context}\n\n"
+ "Task:\n"
+ "1) Inspect all relevant candidates.\n"
+ "2) List each unique item/event as a numbered list (1., 2., 3., ...). Skip any item that is the same as one already listed, even if mentioned in a different session.\n"
+ "3) Count the items in your numbered list to get the final number.\n"
+ "4) Return only strict JSON (no markdown, no extra text).\n\n"
+ "Required JSON schema:\n"
+ "{\"items\":[\"\"],\"final_answer\":\"\",\"final_number\":\"\",\"unit\":\"\",\"notes\":\"\"}"
+ )
+
+
+def _extract_json_object(text: str) -> Optional[Dict[str, Any]]:
+ raw = str(text or "").strip()
+ if not raw:
+ return None
+ # Try each { from the end — thinking-mode LLMs produce long reasoning
+ # before the JSON, so searching from the end finds the actual output.
+ candidates = [m.start() for m in re.finditer(r"\{", raw)]
+ for start_pos in reversed(candidates):
+ # Find the matching closing brace
+ depth = 0
+ end_pos = None
+ for i in range(start_pos, len(raw)):
+ if raw[i] == "{":
+ depth += 1
+ elif raw[i] == "}":
+ depth -= 1
+ if depth == 0:
+ end_pos = i + 1
+ break
+ if end_pos is None:
+ continue
+ snippet = raw[start_pos:end_pos]
+ try:
+ parsed = json.loads(snippet)
+ except json.JSONDecodeError:
+ continue
+ if isinstance(parsed, dict) and any(
+ k in parsed for k in ("final_answer", "final_number", "items")
+ ):
+ return parsed
+ # Fallback: greedy match (original behavior)
+ match = re.search(r"\{[\s\S]*\}", raw)
+ if not match:
+ return None
+ try:
+ parsed = json.loads(match.group(0))
+ except json.JSONDecodeError:
+ return None
+ if not isinstance(parsed, dict):
+ return None
+ return parsed
+
+
+def _refine_count_hypothesis(
+ *,
+ llm: Any,
+ question: str,
+ question_type: str,
+ question_date: str,
+ retrieved_context: str,
+ draft_answer: str,
+) -> str:
+ prompt = _build_count_refinement_prompt(
+ question=question,
+ question_type=question_type,
+ question_date=question_date,
+ retrieved_context=retrieved_context,
+ draft_answer=draft_answer,
+ )
+ response = str(llm.generate(prompt)).strip()
+ parsed = _extract_json_object(response)
+
+ # Schema placeholder values that indicate the LLM copied the template literally
+ _SCHEMA_PLACEHOLDERS = {
+ "string", "item1", "item2", "item3", "item4", "item5",
+ "", "", "",
+ "", "",
+ }
+
+ if parsed:
+ # Cross-check: if items array is present, its length is more reliable
+ # than a number the LLM states (prevents miscounting).
+ items = parsed.get("items")
+ items_count: Optional[int] = None
+ if isinstance(items, list) and items:
+ # Filter out empty/placeholder entries
+ real_items = [str(it).strip() for it in items
+ if str(it).strip() and str(it).strip().lower() not in _SCHEMA_PLACEHOLDERS]
+ if real_items:
+ items_count = len(real_items)
+
+ final_answer = str(parsed.get("final_answer", "") or "").strip()
+ number = _normalize_number_text(parsed.get("final_number"))
+
+ # Detect schema placeholders — LLM copied the template literally
+ if final_answer.lower() in _SCHEMA_PLACEHOLDERS:
+ final_answer = ""
+ if number and number.lower() in _SCHEMA_PLACEHOLDERS:
+ number = None
+
+ # If enumerated items disagree with stated number, prefer items count
+ if items_count is not None and number:
+ try:
+ stated = int(float(number))
+ except (TypeError, ValueError):
+ stated = None
+ if stated is not None and stated != items_count:
+ logger.debug(
+ "Count cross-check: items list has %d entries but final_number='%s'; using items count",
+ items_count, number,
+ )
+ number = str(items_count)
+ final_answer = "" # force using corrected number path
+ elif items_count is not None and not number:
+ number = str(items_count)
+
+ if final_answer:
+ return _canonicalize_count_answer(final_answer, question)
+ unit = str(parsed.get("unit", "") or "").strip()
+ if unit.lower() in _SCHEMA_PLACEHOLDERS:
+ unit = ""
+ if number and unit:
+ return f"{number} {unit}".strip()
+ if number:
+ return _canonicalize_count_answer(number, question)
+
+ # Fallback: refinement JSON was garbled or all placeholder — use draft answer
+ draft_canonical = _canonicalize_count_answer(draft_answer, question)
+ if draft_canonical and draft_canonical != draft_answer:
+ return draft_canonical
+ # Last resort: try to extract from raw refinement response
+ fallback = _canonicalize_count_answer(response, question)
+ if fallback and fallback.lower() not in _SCHEMA_PLACEHOLDERS:
+ return fallback
+ return draft_canonical or draft_answer
+
+
+# ---------------------------------------------------------------------------
+# Session digest generation (Option 4: pre-compute at ingestion, 0 query cost)
+# ---------------------------------------------------------------------------
+
+def build_digest_prompt(session_text: str, session_id: str, session_date: str) -> str:
+ """Prompt for extracting a structured fact digest from a conversation session."""
+ header = f"Session: {session_id}"
+ if session_date:
+ header += f" | Date: {session_date}"
+ return (
+ "Extract ALL key facts from this conversation into a concise bullet-point summary.\n"
+ "Include:\n"
+ "- Names, locations, dates, and specific amounts/numbers mentioned\n"
+ "- Preferences expressed (likes, dislikes, favorites)\n"
+ "- Events, activities, and experiences described\n"
+ "- Any changes or updates to previous information\n"
+ "- Recommendations given or requested\n\n"
+ "Be specific — include exact numbers, names, and dates. Keep each bullet to one line.\n"
+ "If the conversation has no meaningful personal facts, write: NO_FACTS\n\n"
+ f"{header}\n"
+ f"{session_text}\n\n"
+ "Key facts:"
+ )
+
+
+# Session digest cache — keyed by session_id, persists across questions within a run
+_DIGEST_CACHE: Dict[str, str] = {}
+
+
+def generate_session_digest(
+ llm: Any,
+ session_id: str,
+ session_text: str,
+ session_date: str,
+ max_input_chars: int = 6000,
+) -> str:
+ """Generate or retrieve cached session digest."""
+ if session_id in _DIGEST_CACHE:
+ return _DIGEST_CACHE[session_id]
+
+ truncated = session_text[:max_input_chars]
+ prompt = build_digest_prompt(truncated, session_id, session_date)
+
+ try:
+ digest = str(llm.generate(prompt)).strip()
+ if not digest or "NO_FACTS" in digest.upper():
+ digest = ""
+ except Exception as e:
+ logger.warning("Digest generation failed for session %s: %s", session_id, e)
+ digest = ""
+
+ _DIGEST_CACHE[session_id] = digest
+ return digest
+
+
+@dataclass
+class HFResponder:
+ model_name: str
+ max_new_tokens: int = 128
+
+ def __post_init__(self) -> None:
+ # Lazy heavy import so module-level import stays lightweight.
+ try:
+ from transformers import pipeline
+ except ImportError as exc:
+ raise ImportError(
+ "HF backend requires transformers (and torch). "
+ "Install with: pip install transformers accelerate"
+ ) from exc
+
+ self._pipeline = pipeline(
+ "text-generation",
+ model=self.model_name,
+ tokenizer=self.model_name,
+ device_map="auto",
+ model_kwargs={"torch_dtype": "auto"},
+ )
+
+ def generate(self, prompt: str) -> str:
+ outputs = self._pipeline(
+ prompt,
+ max_new_tokens=self.max_new_tokens,
+ do_sample=False,
+ return_full_text=False,
+ )
+ if not outputs:
+ return ""
+ text = outputs[0].get("generated_text", "")
+ return str(text).strip()
+
+
+def build_memory(
+ *,
+ llm_provider: str,
+ embedder_provider: str,
+ vector_store_provider: str,
+ embedding_dims: int,
+ history_db_path: str,
+ llm_model: Optional[str] = None,
+ llm_timeout: int = 300,
+ llm_max_retries: Optional[int] = None,
+ embedder_model: Optional[str] = None,
+ full_potential: bool = True,
+ defer_enrichment: bool = False,
+ enable_rerank: bool = False,
+ rerank_model: Optional[str] = None,
+ rerank_config: Optional[Dict[str, Any]] = None,
+ enable_episodic_index: bool = True,
+ enable_hierarchical_retrieval: bool = True,
+ enable_orchestrated_search: bool = True,
+ cost_guardrail_strict: bool = True,
+) -> Memory:
+ """Build Engram Memory for LongMemEval. By default uses full potential (echo, categories, graph, scenes, profiles).
+
+ When defer_enrichment=True, ingestion uses 0 LLM calls (store fast), and
+ enrichment is done in batch after all sessions are loaded.
+ """
+ vector_cfg: Dict[str, Any] = {
+ "collection_name": "engram_longmemeval",
+ "embedding_model_dims": embedding_dims,
+ }
+
+ llm_cfg: Dict[str, Any] = {
+ "max_tokens": 256 if llm_provider == "dhee" else 16384,
+ "timeout": max(1, int(llm_timeout)),
+ "model": DEFAULT_NVIDIA_LLM_MODEL,
+ "temperature": 0.1 if llm_provider == "dhee" else 0.6,
+ "top_p": 0.7,
+ }
+ if llm_provider == "dhee":
+ llm_cfg["n_ctx"] = 16384 # Qwen3.5-2B supports 262K; 16K is safe for Q4_K_M
+ llm_cfg["n_threads"] = 8
+ else:
+ llm_cfg["stream"] = True
+ if llm_max_retries is not None:
+ llm_cfg["max_retries"] = max(0, int(llm_max_retries))
+ if llm_model:
+ llm_cfg["model"] = llm_model
+ embedder_cfg: Dict[str, Any] = {"embedding_dims": embedding_dims}
+ if embedder_model:
+ embedder_cfg["model"] = embedder_model
+ elif embedder_provider == "nvidia":
+ embedder_cfg["model"] = DEFAULT_NVIDIA_EMBEDDER_MODEL
+
+ rerank_kwargs: Dict[str, Any] = {
+ "enable_rerank": enable_rerank,
+ "config": rerank_config or {},
+ }
+ if rerank_model:
+ rerank_kwargs["model"] = rerank_model
+ rerank_cfg = RerankConfig(**rerank_kwargs)
+
+ config = MemoryConfig(
+ vector_store=VectorStoreConfig(provider=vector_store_provider, config=vector_cfg),
+ llm=LLMConfig(provider=llm_provider, config=llm_cfg),
+ embedder=EmbedderConfig(provider=embedder_provider, config=embedder_cfg),
+ history_db_path=history_db_path,
+ embedding_model_dims=embedding_dims,
+ echo=EchoMemConfig(enable_echo=full_potential, default_depth="deep"),
+ category=CategoryMemConfig(use_llm_categorization=full_potential, enable_categories=full_potential),
+ graph=KnowledgeGraphConfig(enable_graph=full_potential),
+ # Keep write-path cost flat: scene summaries default to extractive mode.
+ scene=SceneConfig(use_llm_summarization=False, enable_scenes=full_potential),
+ profile=ProfileConfig(use_llm_extraction=full_potential, enable_profiles=full_potential),
+ orchestration=OrchestrationConfig(
+ enable_orchestrated_search=enable_orchestrated_search,
+ enable_episodic_index=enable_episodic_index,
+ enable_hierarchical_retrieval=enable_hierarchical_retrieval,
+ reflection_max_hops=1,
+ ),
+ cost_guardrail=CostGuardrailConfig(
+ strict_write_path_cap=cost_guardrail_strict,
+ ),
+ enrichment=EnrichmentConfig(
+ enable_unified=full_potential,
+ max_batch_size=5,
+ defer_enrichment=defer_enrichment,
+ ),
+ batch=BatchConfig(enable_batch=full_potential and not defer_enrichment, max_batch_size=50),
+ rerank=rerank_cfg,
+ engram_extraction=EngramExtractionConfig(enable_extraction=True, use_llm_extraction=full_potential),
+ )
+ mem = Memory(config)
+ # FullMemory features (categories, scenes, profiles) need FullSQLiteManager
+ if full_potential:
+ from dhee.db.sqlite import FullSQLiteManager
+ mem.db = FullSQLiteManager(history_db_path)
+
+ # Teacher logging: wrap the LLM to capture (prompt, response) pairs for DheeModel training
+ teacher_log_dir = os.environ.get("DHEE_TEACHER_LOG_DIR")
+ if teacher_log_dir and hasattr(mem, "llm") and mem.llm is not None:
+ from dhee.llms.teacher_logger import TeacherLoggingLLM
+ mem.llm = TeacherLoggingLLM(mem.llm, log_dir=teacher_log_dir)
+ logger.info("Teacher logging enabled: %s", teacher_log_dir)
+
+ return mem
+
+
+def build_context_text(
+ *,
+ results: Sequence[Dict[str, Any]],
+ max_chars: int,
+ max_results: int,
+ per_result_max_chars: int,
+ query: str = "",
+) -> str:
+ """Build reader context from search results using digest summaries + keyword evidence.
+
+ Each candidate block includes:
+ - Header with session ID and date
+ - Summary section from pre-computed digest (if available)
+ - Evidence section with large context windows around query keywords
+ """
+ chunks: List[str] = []
+ total = 0
+ for idx, result in enumerate(results[: max(1, int(max_results))], start=1):
+ if result.get("masked"):
+ continue
+
+ memory_text = str(result.get("memory") or "").strip()
+ metadata = result.get("metadata") or {}
+ session_id = parse_session_id_from_result(result) or "unknown"
+ session_date = str(metadata.get("session_date", "")).strip()
+ session_digest = str(metadata.get("session_digest", "")).strip()
+
+ # Build header
+ header = f"[Candidate {idx}] Session: {session_id}"
+ if session_date:
+ header += f" | Date: {session_date}"
+
+ sections: List[str] = [header]
+
+ # Section 1: Digest summary (pre-computed at ingestion)
+ if session_digest:
+ sections.append(f"Summary:\n{session_digest}")
+
+ # Section 2: Keyword evidence with large context windows
+ if query and memory_text:
+ keyword_evidence = extract_keyword_context(
+ text=memory_text,
+ query=query,
+ context_chars=800,
+ max_excerpts=5,
+ )
+ if keyword_evidence:
+ # Budget remaining after digest
+ evidence_budget = per_result_max_chars - len(session_digest)
+ if evidence_budget > 200:
+ sections.append(f"Evidence:\n{_truncate_text(keyword_evidence, evidence_budget)}")
+ elif memory_text:
+ # No query — fall back to full text (legacy behavior)
+ sections.append(_truncate_text(memory_text, per_result_max_chars))
+ else:
+ # No memory text — use evidence_text or details
+ evidence = str(result.get("evidence_text") or "").strip()
+ if evidence:
+ sections.append(_truncate_text(evidence, per_result_max_chars))
+ else:
+ details = str(result.get("details") or "").strip()
+ if details:
+ sections.append(details)
+
+ block = "\n".join(sections)
+ if not block.strip() or block.strip() == header:
+ continue
+ if total + len(block) > max_chars and chunks:
+ break
+ chunks.append(block)
+ total += len(block)
+
+ if not chunks:
+ return "No relevant retrieved history."
+ return "\n\n---\n\n".join(chunks)
+
+
+def build_output_row(
+ *,
+ question_id: str,
+ hypothesis: str,
+ retrieved_session_ids: Sequence[str],
+ retrieval_metrics: Dict[str, float],
+ include_debug_fields: bool,
+ orchestration: Optional[Dict[str, Any]] = None,
+) -> Dict[str, Any]:
+ """Build evaluator-compatible output row with optional debug fields."""
+ row: Dict[str, Any] = {
+ "question_id": question_id,
+ "hypothesis": hypothesis,
+ }
+ if include_debug_fields:
+ row["retrieved_session_ids"] = list(retrieved_session_ids)
+ row["retrieval_metrics"] = dict(retrieval_metrics)
+ if orchestration:
+ row["orchestration"] = dict(orchestration)
+ return row
+
+
+def run_longmemeval(args: argparse.Namespace) -> Dict[str, Any]:
+ with open(args.dataset_path, "r", encoding="utf-8") as f:
+ dataset = json.load(f)
+ if not isinstance(dataset, list):
+ raise ValueError("Dataset file must be a JSON list of instances.")
+
+ # Support resume mode: skip already-completed question_ids
+ resume_skip_qids: set = set()
+ resume_mode = getattr(args, "resume_mode", False)
+ if resume_mode:
+ output_path_check = Path(args.output_jsonl)
+ if output_path_check.exists():
+ with output_path_check.open("r", encoding="utf-8") as rf:
+ for line in rf:
+ try:
+ row = json.loads(line.strip())
+ qid = row.get("question_id", "")
+ if qid:
+ resume_skip_qids.add(str(qid))
+ except (json.JSONDecodeError, AttributeError):
+ pass
+ logger.info("Resume mode: skipping %d already-completed questions", len(resume_skip_qids))
+
+ selected = dataset[args.start_index : args.end_index if args.end_index > 0 else None]
+ if args.max_questions > 0:
+ selected = selected[: args.max_questions]
+ if args.skip_abstention:
+ selected = [entry for entry in selected if "_abs" not in str(entry.get("question_id", ""))]
+
+ use_deferred = getattr(args, "defer_enrichment", False)
+ rerank_runtime_config: Optional[Dict[str, Any]] = None
+ if getattr(args, "enable_rerank", False):
+ rerank_runtime_config = {
+ "timeout": args.rerank_timeout,
+ "passage_strategy": args.rerank_strategy,
+ "max_passage_chars": args.rerank_max_passage_chars,
+ "context_lines": args.rerank_context_lines,
+ "candidates_multiplier": args.rerank_candidates_multiplier,
+ "strict_schema": True,
+ }
+ memory = build_memory(
+ llm_provider=args.llm_provider,
+ embedder_provider=args.embedder_provider,
+ vector_store_provider=args.vector_store_provider,
+ embedding_dims=args.embedding_dims,
+ history_db_path=args.history_db_path,
+ llm_model=args.llm_model,
+ llm_timeout=getattr(args, "llm_timeout", 300),
+ llm_max_retries=getattr(args, "llm_max_retries", None),
+ embedder_model=args.embedder_model,
+ full_potential=args.full_potential,
+ defer_enrichment=use_deferred,
+ enable_rerank=getattr(args, "enable_rerank", False),
+ rerank_model=getattr(args, "rerank_model", None),
+ rerank_config=rerank_runtime_config,
+ enable_episodic_index=getattr(args, "enable_episodic_index", True),
+ enable_hierarchical_retrieval=getattr(args, "enable_hierarchical_retrieval", True),
+ enable_orchestrated_search=getattr(args, "enable_orchestrated_search", True),
+ cost_guardrail_strict=getattr(args, "cost_guardrail_strict", True),
+ )
+
+ # Separate answer LLM for reasoning models (DeepSeek, etc.)
+ _answer_llm = None
+ if getattr(args, "answer_llm_model", None) and args.answer_backend != "hf":
+ from dhee.llms.nvidia import NvidiaLLM
+ _answer_llm = NvidiaLLM({
+ "model": args.answer_llm_model,
+ "enable_thinking": getattr(args, "answer_enable_thinking", False),
+ "temperature": 0.2,
+ "top_p": 0.7,
+ "max_tokens": getattr(args, "answer_max_tokens", 4096),
+ "timeout": getattr(args, "answer_llm_timeout", 300),
+ "max_retries": 2,
+ })
+ logger.info("Using separate answer LLM: %s (thinking=%s)", args.answer_llm_model, getattr(args, "answer_enable_thinking", False))
+
+ # Separate code-exec LLM (fast, cheap reasoning model for code generation)
+ _code_exec_llm = None
+ _code_exec_model = getattr(args, "code_exec_model", None)
+ if _code_exec_model and args.answer_backend != "hf":
+ from dhee.llms.nvidia import NvidiaLLM
+ _code_exec_llm = NvidiaLLM({
+ "model": _code_exec_model,
+ "temperature": 0.6,
+ "top_p": 0.7,
+ "max_tokens": 4096,
+ "timeout": 300,
+ "max_retries": 2,
+ })
+ logger.info("Using separate code-exec LLM: %s", _code_exec_model)
+
+ orchestration_mode = str(getattr(args, "answer_orchestration_mode", "off") or "off").strip().lower()
+ if orchestration_mode not in {"off", "hybrid", "strict"}:
+ orchestration_mode = "off"
+
+ _orchestrator_llm = None
+ if orchestration_mode != "off" and args.answer_backend != "hf":
+ orchestrator_model = getattr(args, "answer_orchestrator_llm_model", None)
+ if orchestrator_model:
+ from dhee.llms.nvidia import NvidiaLLM
+ _orchestrator_llm = NvidiaLLM({
+ "model": orchestrator_model,
+ "temperature": 0.0,
+ "top_p": 1.0,
+ "max_tokens": 4096,
+ "timeout": getattr(args, "answer_orchestrator_llm_timeout", 120),
+ "max_retries": 1,
+ })
+ logger.info("Using dedicated orchestrator LLM: %s", orchestrator_model)
+ else:
+ _orchestrator_llm = memory.llm
+ logger.info("Using memory LLM for orchestration map stage: %s", getattr(memory.llm, "model", "unknown"))
+
+ hf_responder: Optional[HFResponder] = None
+ if args.answer_backend == "hf":
+ hf_responder = HFResponder(model_name=args.hf_model, max_new_tokens=args.hf_max_new_tokens)
+
+ output_path = Path(args.output_jsonl)
+ output_path.parent.mkdir(parents=True, exist_ok=True)
+ retrieval_path = Path(args.retrieval_jsonl) if args.retrieval_jsonl else None
+ if retrieval_path:
+ retrieval_path.parent.mkdir(parents=True, exist_ok=True)
+
+ per_question_metrics: List[Dict[str, float]] = []
+ rerank_applied_count = 0
+ top1_changed_count = 0
+ gold_moved_to_top1_count = 0
+ gold_rank_pre_values: List[int] = []
+ gold_rank_post_values: List[int] = []
+ processed = 0
+
+ file_mode = "a" if resume_mode and resume_skip_qids else "w"
+ with output_path.open(file_mode, encoding="utf-8") as out_f:
+ retrieval_f = retrieval_path.open(file_mode, encoding="utf-8") if retrieval_path else None
+ try:
+ for entry in selected:
+ question_id = str(entry.get("question_id", ""))
+ if not question_id:
+ continue
+ if question_id in resume_skip_qids:
+ continue
+
+ # Keep each question isolated.
+ memory.delete_all(user_id=args.user_id)
+
+ session_ids = entry.get("haystack_session_ids") or []
+ session_dates = entry.get("haystack_dates") or []
+ sessions = entry.get("haystack_sessions") or []
+
+ # Build batch items for all sessions
+ use_digests = getattr(args, "generate_digests", False) and args.answer_backend != "hf"
+ batch_items = []
+ for sess_id, sess_date, sess_turns in zip(session_ids, session_dates, sessions):
+ payload = format_session_memory(
+ str(sess_id), str(sess_date), sess_turns or [],
+ include_all_roles=True,
+ )
+ # Generate session digest at ingestion (Option 4)
+ sess_digest = ""
+ if use_digests:
+ sess_digest = generate_session_digest(
+ llm=memory.llm,
+ session_id=str(sess_id),
+ session_text=payload,
+ session_date=str(sess_date),
+ )
+ # Build context_messages from session turns for deferred mode
+ ctx_msgs = None
+ if use_deferred and sess_turns:
+ ctx_msgs = [
+ {"role": t.get("role", "user"), "content": str(t.get("content", "")).strip()}
+ for t in sess_turns if str(t.get("content", "")).strip()
+ ]
+ batch_items.append({
+ "content": payload,
+ "metadata": {
+ "session_id": str(sess_id),
+ "session_date": str(sess_date),
+ "question_id": question_id,
+ "session_digest": sess_digest,
+ },
+ "categories": ["longmemeval", "session"],
+ "_context_messages": ctx_msgs,
+ })
+
+ # Use add_batch for fewer LLM calls; fallback to sequential on failure
+ if batch_items:
+ if use_deferred:
+ # Deferred mode: sequential add with context_messages
+ for item in batch_items:
+ try:
+ memory.add(
+ messages=item["content"],
+ user_id=args.user_id,
+ metadata=item["metadata"],
+ categories=item["categories"],
+ infer=False,
+ context_messages=item.get("_context_messages"),
+ )
+ except Exception as e2:
+ logger.warning("Skipping session for question %s: %s", question_id, e2)
+ else:
+ try:
+ memory.add_batch(
+ items=batch_items,
+ user_id=args.user_id,
+ )
+ except Exception as e:
+ logger.warning("Batch add failed for question %s, retrying sequentially: %s", question_id, e)
+ for item in batch_items:
+ try:
+ memory.add(
+ messages=item["content"],
+ user_id=args.user_id,
+ metadata=item["metadata"],
+ categories=item["categories"],
+ infer=False,
+ )
+ except Exception as e2:
+ logger.warning("Skipping session for question %s: %s", question_id, e2)
+
+ # Batch enrich after all sessions loaded (deferred mode)
+ if use_deferred:
+ try:
+ memory.enrich_pending(user_id=args.user_id, batch_size=10, max_batches=50)
+ except Exception as e:
+ logger.warning("Enrichment failed for question %s: %s", question_id, e)
+
+ query = str(entry.get("question", "")).strip()
+ question_date = str(entry.get("question_date", "")).strip()
+ question_type = str(entry.get("question_type", "")).strip()
+
+ orchestration_payload = memory.search_orchestrated(
+ query=query,
+ user_id=args.user_id,
+ question_type=question_type,
+ question_date=question_date,
+ limit=args.top_k,
+ orchestration_mode=orchestration_mode,
+ base_search_limit=args.top_k,
+ base_context_limit=getattr(args, "answer_context_top_k", 10),
+ search_cap=getattr(args, "answer_orchestrator_search_cap", max(args.top_k, 30)),
+ context_cap=getattr(args, "answer_orchestrator_context_cap", 20),
+ map_max_candidates=getattr(args, "answer_orchestrator_max_candidates", 8),
+ map_max_chars=getattr(args, "answer_orchestrator_max_chars", 1200),
+ keyword_search=True,
+ hybrid_alpha=0.7,
+ include_evidence=True,
+ evidence_strategy=getattr(args, "answer_context_strategy", "full"),
+ evidence_max_chars=getattr(args, "answer_context_max_chars", 4000),
+ evidence_context_lines=getattr(args, "answer_context_lines", 3),
+ max_context_chars=args.max_context_chars,
+ rerank=getattr(args, "enable_rerank", False),
+ orchestrator_llm=_orchestrator_llm if orchestration_mode != "off" else None,
+ reflection_max_hops=1,
+ )
+ results = orchestration_payload.get("results", [])
+ orchestration_meta = orchestration_payload.get("orchestration") or {}
+ coverage = orchestration_payload.get("coverage") or {}
+ intent_value = str(orchestration_meta.get("intent") or "").strip().lower()
+ context_limit = max(
+ 1,
+ int(orchestration_meta.get("context_limit") or getattr(args, "answer_context_top_k", 10)),
+ )
+
+ orchestration_debug: Dict[str, Any] = {
+ "mode": orchestration_meta.get("mode", orchestration_mode),
+ "intent": intent_value or "freeform",
+ "search_limit": int(orchestration_meta.get("search_limit") or args.top_k),
+ "context_limit": context_limit,
+ "coverage_ratio": coverage.get("coverage_ratio"),
+ "event_hit_count": coverage.get("event_hit_count"),
+ "map_reduce_used": orchestration_meta.get("map_reduce_used", False),
+ "reflection_hops": orchestration_meta.get("reflection_hops", 0),
+ "reduced_answer": orchestration_meta.get("reduced_answer"),
+ "reason_codes": orchestration_meta.get("reason_codes", []),
+ "fact_count": len(orchestration_payload.get("facts") or []),
+ }
+ if orchestration_meta.get("rewritten_query"):
+ orchestration_debug["rewritten_query"] = orchestration_meta.get("rewritten_query")
+
+ gold_session_ids = [str(x) for x in (entry.get("answer_session_ids") or []) if str(x).strip()]
+ rerank_applied = any(_coerce_finite_float(result.get("rerank_logit")) is not None for result in results)
+ top1_pre_rerank_session_id = _top1_session_id_by_score(results, "composite_score")
+ top1_post_rerank_session_id = parse_session_id_from_result(results[0]) if results else None
+ gold_rank_by_similarity = _rank_gold_by_score(results, gold_session_ids, "score")
+ gold_rank_by_composite = _rank_gold_by_score(results, gold_session_ids, "composite_score")
+ gold_rank_by_rerank = _rank_gold_by_score(
+ results,
+ gold_session_ids,
+ "rerank_logit",
+ require_finite_score=True,
+ )
+
+ if getattr(args, "enable_rerank", False) and args.fail_on_rerank_noop and not rerank_applied:
+ raise RuntimeError(
+ f"Rerank appears inactive for question_id={question_id}; "
+ "no finite rerank_logit found in returned results."
+ )
+
+ if rerank_applied:
+ rerank_applied_count += 1
+ if top1_pre_rerank_session_id and top1_post_rerank_session_id:
+ if top1_pre_rerank_session_id != top1_post_rerank_session_id:
+ top1_changed_count += 1
+
+ post_rank_effective = (
+ gold_rank_by_rerank
+ if gold_rank_by_rerank is not None
+ else gold_rank_by_composite
+ )
+ if gold_rank_by_composite is not None:
+ gold_rank_pre_values.append(gold_rank_by_composite)
+ if post_rank_effective is not None:
+ gold_rank_post_values.append(post_rank_effective)
+ if (
+ gold_rank_by_composite is not None
+ and gold_rank_by_composite > 1
+ and post_rank_effective == 1
+ ):
+ gold_moved_to_top1_count += 1
+
+ retrieved_session_ids = dedupe_preserve_order(
+ [
+ sid
+ for sid in [parse_session_id_from_result(result) for result in results]
+ if sid is not None
+ ]
+ )
+ metrics = compute_session_metrics(
+ retrieved_session_ids=retrieved_session_ids,
+ answer_session_ids=entry.get("answer_session_ids", []),
+ )
+ per_question_metrics.append(metrics)
+
+ max_results = context_limit
+ per_result_max = getattr(args, "answer_context_max_chars", 4000)
+
+ # Prefer the core orchestrated context; fallback to legacy builder.
+ context = str(orchestration_payload.get("context") or "").strip()
+ if not context:
+ context = build_context_text(
+ results=results,
+ max_chars=args.max_context_chars,
+ max_results=max_results,
+ per_result_max_chars=per_result_max,
+ query=query,
+ )
+ reduced_answer: Optional[str] = orchestration_payload.get("reduced_answer")
+
+ prompt = build_answer_prompt(
+ question=query,
+ retrieved_context=context,
+ question_date=question_date,
+ question_type=question_type,
+ )
+
+ # NOTE: Phase 1 shortcut disabled — the 8b model's fact
+ # extraction is unreliable (over/under-counts), so the LLM
+ # with full grounding/refinement chain produces better answers.
+ # reduced_answer is still logged for diagnostics.
+
+ if args.answer_backend == "hf":
+ assert hf_responder is not None
+ answer_llm = hf_responder
+ hypothesis = str(hf_responder.generate(prompt)).strip()
+ else:
+ answer_llm = _answer_llm or memory.llm
+ # For thinking models, strip reasoning instructions — thinking handles that.
+ # Just ask for the direct concise answer.
+ answer_prompt = prompt
+ if _answer_llm and getattr(_answer_llm, "enable_thinking", False):
+ answer_prompt = prompt.replace(
+ "Think step by step, then provide your answer.\n\n"
+ "Reasoning:\n[Identify which conversations contain relevant information and quote the exact supporting text]\n\n"
+ "Answer:\n[Your concise final answer — use the exact words/numbers from the context]",
+ "Give your concise final answer directly — use the exact words/numbers from the context. "
+ "For list questions, list the items. For number questions, give the number. "
+ "Do NOT include evidence or citations — just the answer."
+ )
+ raw_answer = str(answer_llm.generate(answer_prompt)).strip()
+ # Parse Answer: section from CoT output if present
+ hypothesis = _parse_answer_section(raw_answer)
+
+ # --- Answer Grounding Verification ---
+ # If the hypothesis contains numbers not found in the
+ # context, the LLM likely hallucinated. Re-generate
+ # with a stricter grounding constraint.
+ # Skip for count-style questions — those numbers are
+ # computed by enumeration, not extracted verbatim.
+ if (
+ not _is_refusal(hypothesis)
+ and not _is_count_style_question(query)
+ and not _answer_grounded_in_context(hypothesis, context)
+ ):
+ logger.info(
+ "Grounding check failed for %s — re-generating with constraint",
+ question_id,
+ )
+ grounded_prompt = (
+ prompt
+ + "\n\nCRITICAL: Your previous answer contained a number or fact "
+ "that does NOT appear in the provided context. Re-read the "
+ "conversations above very carefully and answer using ONLY "
+ "values explicitly written in the text. Quote the exact "
+ "number/fact from the context."
+ )
+ raw_answer2 = str(answer_llm.generate(grounded_prompt)).strip()
+ hypothesis2 = _parse_answer_section(raw_answer2)
+ # Accept the re-generated answer only if it IS grounded
+ if (
+ not _is_refusal(hypothesis2)
+ and _answer_grounded_in_context(hypothesis2, context)
+ ):
+ hypothesis = hypothesis2
+
+ # --- Count refinement ---
+ # Run for ALL count-style questions including multi-session.
+ # Multi-session counting is the hardest case and benefits most
+ # from explicit enumeration.
+ if _is_count_style_question(query) and not _is_refusal(hypothesis):
+ logger.info(
+ "Running count refinement for %s (draft=%r, multi=%s)",
+ question_id, hypothesis, "multi-session" in question_type.lower(),
+ )
+
+ # 1) Entity registry lookup (zero LLM cost)
+ registry_answer = None
+ try:
+ if hasattr(memory, "lookup_entity_aggregates"):
+ registry_answer = memory.lookup_entity_aggregates(
+ query=query, user_id=args.user_id,
+ )
+ if registry_answer:
+ logger.info(
+ "Entity registry answer for %s: %r",
+ question_id, registry_answer,
+ )
+ except Exception as reg_exc:
+ logger.debug("Entity registry lookup failed for %s: %s", question_id, reg_exc)
+
+ # 2) Code-exec counting (1 LLM call + deterministic exec)
+ code_exec_answer = None
+ try:
+ ce_llm = _code_exec_llm or _answer_llm or memory.llm
+ code_exec_answer = refine_count_with_code_exec(
+ llm=ce_llm,
+ question=query,
+ question_type=question_type,
+ retrieved_context=context,
+ draft_answer=hypothesis,
+ question_date=question_date,
+ )
+ if code_exec_answer:
+ logger.info(
+ "Code-exec answer for %s: %r",
+ question_id, code_exec_answer,
+ )
+ except Exception as ce_exc:
+ logger.debug("Code-exec counting failed for %s: %s", question_id, ce_exc)
+
+ # 3) Pick best: code_exec > registry > existing refinement
+ if code_exec_answer and not _is_refusal(code_exec_answer):
+ hypothesis = code_exec_answer
+ elif registry_answer and not _is_refusal(registry_answer):
+ hypothesis = registry_answer
+ else:
+ # Fall through to existing _refine_count_hypothesis
+ try:
+ refinement_llm = _answer_llm or memory.llm
+ refined = _refine_count_hypothesis(
+ llm=refinement_llm,
+ question=query,
+ question_type=question_type,
+ question_date=question_date,
+ retrieved_context=context,
+ draft_answer=hypothesis,
+ )
+ logger.info(
+ "Count refinement result for %s: refined=%r, is_refusal=%s",
+ question_id, refined, _is_refusal(refined) if refined else "N/A",
+ )
+ if refined and not _is_refusal(refined):
+ hypothesis = refined
+ except Exception as refine_exc:
+ logger.warning("Count refinement failed for question %s: %s", question_id, refine_exc)
+
+ if not _is_refusal(hypothesis):
+ pre_canon = hypothesis
+ hypothesis = _canonicalize_count_answer(hypothesis, query)
+ if hypothesis != pre_canon:
+ logger.info("Canonicalized %r -> %r for %s", pre_canon, hypothesis, question_id)
+
+ # Fallback: if reducer produced an answer for LATEST intent
+ # and the LLM answer is low-confidence, prefer the reducer.
+ if (
+ reduced_answer
+ and not _is_refusal(reduced_answer)
+ and intent_value == "latest"
+ and is_low_confidence_answer(hypothesis)
+ ):
+ hypothesis = reduced_answer
+
+ output_row = build_output_row(
+ question_id=question_id,
+ hypothesis=hypothesis,
+ retrieved_session_ids=retrieved_session_ids[: args.top_k],
+ retrieval_metrics=metrics,
+ include_debug_fields=args.include_debug_fields,
+ orchestration=orchestration_debug if orchestration_mode != "off" else None,
+ )
+ out_f.write(json.dumps(output_row, ensure_ascii=False) + "\n")
+ out_f.flush()
+
+ if retrieval_f is not None:
+ retrieval_row = {
+ "question_id": question_id,
+ "answer_session_ids": entry.get("answer_session_ids", []),
+ "retrieved_session_ids": retrieved_session_ids[: args.top_k],
+ "metrics": metrics,
+ }
+ if args.include_debug_fields and orchestration_mode != "off":
+ retrieval_row["orchestration"] = dict(orchestration_debug)
+ if args.include_debug_fields:
+ candidates = []
+ for result in results[: args.top_k]:
+ rerank_logit = _coerce_finite_float(result.get("rerank_logit"))
+ rerank_passage_chars = result.get("rerank_passage_chars")
+ try:
+ rerank_passage_chars = int(rerank_passage_chars) if rerank_passage_chars is not None else None
+ except (TypeError, ValueError):
+ rerank_passage_chars = None
+ candidates.append(
+ {
+ "session_id": parse_session_id_from_result(result),
+ "score": _coerce_finite_float(result.get("score")),
+ "keyword_score": _coerce_finite_float(result.get("keyword_score")),
+ "composite_score": _coerce_finite_float(result.get("composite_score")),
+ "rerank_logit": rerank_logit,
+ "memory_chars": len(str(result.get("memory", "") or "")),
+ "rerank_passage_chars": rerank_passage_chars,
+ "evidence_source": result.get("evidence_source"),
+ "evidence_chars": result.get("evidence_chars"),
+ }
+ )
+ retrieval_row.update(
+ {
+ "rerank_applied": rerank_applied,
+ "top1_pre_rerank_session_id": top1_pre_rerank_session_id,
+ "top1_post_rerank_session_id": top1_post_rerank_session_id,
+ "gold_rank_by_similarity": gold_rank_by_similarity,
+ "gold_rank_by_composite": gold_rank_by_composite,
+ "gold_rank_by_rerank": gold_rank_by_rerank,
+ "candidates": candidates,
+ }
+ )
+ retrieval_f.write(json.dumps(retrieval_row, ensure_ascii=False) + "\n")
+ retrieval_f.flush()
+
+ processed += 1
+ if args.print_every > 0 and processed % args.print_every == 0:
+ print(f"[LongMemEval] processed={processed} question_id={question_id}", flush=True)
+
+ # Export training data BEFORE next iteration's delete_all() wipes DB
+ _training_data_dir = getattr(args, "training_data_dir", None)
+ if _training_data_dir:
+ try:
+ _export_training_data(
+ memory=memory,
+ question_id=question_id,
+ question=query,
+ question_type=question_type,
+ question_date=question_date,
+ gold_answer=str(entry.get("answer", "")),
+ hypothesis=hypothesis,
+ intent=intent_value,
+ context=context,
+ results=results,
+ orchestration_meta=orchestration_debug,
+ session_items=batch_items,
+ output_dir=_training_data_dir,
+ user_id=args.user_id,
+ )
+ except Exception as _td_exc:
+ logger.debug("Training data export failed for %s: %s", question_id, _td_exc)
+ finally:
+ if retrieval_f is not None:
+ retrieval_f.close()
+
+ aggregate: Dict[str, float] = {}
+ if per_question_metrics:
+ for key in sorted(per_question_metrics[0].keys()):
+ aggregate[key] = round(mean(metric[key] for metric in per_question_metrics), 4)
+
+ summary = {
+ "processed": processed,
+ "output_jsonl": str(output_path),
+ "retrieval_jsonl": str(retrieval_path) if retrieval_path else None,
+ "aggregate_retrieval_metrics": aggregate,
+ "rerank_applied_rate": round(rerank_applied_count / processed, 4) if processed > 0 else 0.0,
+ "top1_changed_rate": round(top1_changed_count / processed, 4) if processed > 0 else 0.0,
+ "gold_moved_to_top1_rate": round(gold_moved_to_top1_count / processed, 4) if processed > 0 else 0.0,
+ "avg_gold_rank_pre": round(mean(gold_rank_pre_values), 4) if gold_rank_pre_values else None,
+ "avg_gold_rank_post": round(mean(gold_rank_post_values), 4) if gold_rank_post_values else None,
+ "answer_backend": args.answer_backend,
+ "hf_model": args.hf_model if args.answer_backend == "hf" else None,
+ }
+ print(json.dumps(summary, indent=2))
+ return summary
+
+
+def parse_args() -> argparse.Namespace:
+ parser = argparse.ArgumentParser(description="Run Engram on LongMemEval in Colab or local environments.")
+ parser.add_argument("--dataset-path", required=True, help="Path to LongMemEval json file.")
+ parser.add_argument("--output-jsonl", required=True, help="Path to write question_id/hypothesis jsonl.")
+ parser.add_argument("--retrieval-jsonl", default=None, help="Optional path for retrieval-only log jsonl.")
+ parser.add_argument(
+ "--include-debug-fields",
+ action="store_true",
+ help="Include retrieval debug fields in output jsonl rows (official evaluator only needs question_id/hypothesis).",
+ )
+
+ parser.add_argument(
+ "--minimal",
+ action="store_true",
+ help="Disable echo, categories, graph, scenes, profiles (faster but lower retrieval quality). Default is full potential.",
+ )
+ parser.add_argument("--user-id", default="longmemeval", help="User scope used for temporary ingestion.")
+ parser.add_argument("--start-index", type=int, default=0, help="Start offset for dataset slicing.")
+ parser.add_argument("--end-index", type=int, default=-1, help="End offset for dataset slicing (exclusive).")
+ parser.add_argument("--max-questions", type=int, default=-1, help="Cap number of evaluated questions.")
+ parser.add_argument("--skip-abstention", action="store_true", help="Skip *_abs questions.")
+
+ parser.add_argument("--top-k", type=int, default=20, help="Number of retrieved memories for context.")
+ parser.add_argument("--max-context-chars", type=int, default=30000, help="Maximum context size passed to reader.")
+ parser.add_argument(
+ "--answer-context-top-k",
+ type=int,
+ default=10,
+ help="How many top retrieved results to include in reader context.",
+ )
+ parser.add_argument(
+ "--answer-context-strategy",
+ choices=["vector_or_snippet", "vector_text", "snippet", "full"],
+ default="full",
+ help="Evidence strategy exposed by memory.search for reader context.",
+ )
+ parser.add_argument(
+ "--answer-context-max-chars",
+ type=int,
+ default=4000,
+ help="Per-result evidence char cap used by memory.search and context builder.",
+ )
+ parser.add_argument(
+ "--answer-context-lines",
+ type=int,
+ default=3,
+ help="Neighbor lines for snippet evidence extraction in memory.search.",
+ )
+ parser.add_argument("--print-every", type=int, default=25, help="Progress print interval.")
+
+ parser.add_argument(
+ "--answer-backend",
+ choices=["hf", "engram-llm"],
+ default="hf",
+ help="Reader backend for hypothesis generation.",
+ )
+ parser.add_argument("--hf-model", default="Qwen/Qwen2.5-1.5B-Instruct", help="HF model when --answer-backend hf.")
+ parser.add_argument("--hf-max-new-tokens", type=int, default=128, help="Generation cap for HF backend.")
+
+ parser.add_argument(
+ "--llm-provider",
+ choices=["mock", "gemini", "openai", "ollama", "nvidia", "dhee"],
+ default="mock",
+ help="Engram LLM provider (used for --answer-backend engram-llm).",
+ )
+ parser.add_argument(
+ "--llm-model",
+ default=None,
+ help=f"Optional LLM model override (NVIDIA default: {DEFAULT_NVIDIA_LLM_MODEL}).",
+ )
+ parser.add_argument("--llm-timeout", type=int, default=300, help="LLM request timeout in seconds.")
+ parser.add_argument(
+ "--llm-max-retries",
+ type=int,
+ default=None,
+ help="LLM client retry count. Use 0 to disable retries.",
+ )
+ parser.add_argument(
+ "--embedder-provider",
+ choices=["simple", "gemini", "openai", "ollama", "nvidia", "qwen"],
+ default="simple",
+ help="Engram embedder provider for retrieval.",
+ )
+ parser.add_argument(
+ "--embedder-model",
+ default=None,
+ help=f"Optional embedder model override (NVIDIA default: {DEFAULT_NVIDIA_EMBEDDER_MODEL}).",
+ )
+ parser.add_argument("--embedding-dims", type=int, default=1536, help="Embedding dimensions for simple/memory configs.")
+ parser.add_argument("--vector-store-provider", choices=["memory", "sqlite_vec"], default="memory")
+ parser.add_argument("--history-db-path", default="/tmp/engram-longmemeval.db", help="SQLite db path.")
+ parser.add_argument("--defer-enrichment", action="store_true", default=False, help="Use deferred enrichment (0 LLM calls at ingestion, batch enrich after).")
+ parser.add_argument("--generate-digests", action="store_true", default=False, help="Generate session fact digests at ingestion time. Produces structured summaries per session for richer evidence at query time. Cost: 1 LLM call per unique session (cached across questions).")
+ parser.add_argument("--answer-llm-model", default=None, help="Separate LLM model for answer generation (e.g. deepseek-ai/deepseek-v3.1). If not set, uses --llm-model.")
+ parser.add_argument("--answer-enable-thinking", action="store_true", default=False, help="Enable thinking/reasoning mode for the answer LLM (DeepSeek, Qwen thinking models).")
+ parser.add_argument("--answer-llm-timeout", type=int, default=300, help="Timeout for the answer LLM (reasoning models need more time).")
+ parser.add_argument("--answer-max-tokens", type=int, default=4096, help="Max output tokens for answer LLM.")
+ parser.add_argument(
+ "--answer-orchestration-mode",
+ choices=["off", "hybrid", "strict"],
+ default="hybrid",
+ help="Enable answer orchestration (query rewrite + map/reduce).",
+ )
+ parser.add_argument(
+ "--answer-orchestrator-llm-model",
+ default=None,
+ help="Optional low-cost LLM model for map-stage fact extraction (defaults to memory llm).",
+ )
+ parser.add_argument(
+ "--answer-orchestrator-llm-timeout",
+ type=int,
+ default=120,
+ help="Timeout for orchestrator map-stage LLM calls.",
+ )
+ parser.add_argument(
+ "--answer-orchestrator-max-candidates",
+ type=int,
+ default=8,
+ help="Maximum retrieved candidates passed to map stage.",
+ )
+ parser.add_argument(
+ "--answer-orchestrator-max-chars",
+ type=int,
+ default=1200,
+ help="Per-candidate char cap for map-stage extraction input.",
+ )
+ parser.add_argument(
+ "--answer-orchestrator-search-cap",
+ type=int,
+ default=30,
+ help="Maximum retrieval depth when orchestration expands search.",
+ )
+ parser.add_argument(
+ "--answer-orchestrator-context-cap",
+ type=int,
+ default=20,
+ help="Maximum number of candidates included in answer context when orchestration is enabled.",
+ )
+ parser.add_argument(
+ "--disable-episodic-index",
+ action="store_true",
+ default=False,
+ help="Disable deterministic episodic index (feature flag).",
+ )
+ parser.add_argument(
+ "--disable-hierarchical-retrieval",
+ action="store_true",
+ default=False,
+ help="Disable hierarchical retrieval anchors (feature flag).",
+ )
+ parser.add_argument(
+ "--disable-orchestrated-search",
+ action="store_true",
+ default=False,
+ help="Disable core orchestrated retrieval path (feature flag).",
+ )
+ parser.add_argument(
+ "--cost-guardrail-strict",
+ dest="cost_guardrail_strict",
+ action="store_true",
+ default=True,
+ help="Enforce strict write-path cost guardrail.",
+ )
+ parser.add_argument(
+ "--no-cost-guardrail-strict",
+ dest="cost_guardrail_strict",
+ action="store_false",
+ help="Disable strict write-path cost guardrail.",
+ )
+ parser.add_argument(
+ "--training-data-dir",
+ default=None,
+ help="Directory to export structured training tuples (engram extraction, query classification, "
+ "answer synthesis, context anchoring) for DheeModel fine-tuning. "
+ "Data is saved per-question BEFORE memory.delete_all() wipes the DB.",
+ )
+ parser.add_argument("--enable-rerank", action="store_true", default=False, help="Enable neural reranking (cross-encoder second stage on retrieved results).")
+ parser.add_argument(
+ "--rerank-model",
+ default=None,
+ help=f"Reranker model override (default: {DEFAULT_NVIDIA_RERANK_MODEL}).",
+ )
+ parser.add_argument(
+ "--rerank-strategy",
+ choices=["full", "snippet", "vector_text"],
+ default="snippet",
+ help="Passage strategy for reranker input.",
+ )
+ parser.add_argument(
+ "--rerank-max-passage-chars",
+ type=int,
+ default=3500,
+ help="Maximum characters per rerank passage.",
+ )
+ parser.add_argument(
+ "--rerank-context-lines",
+ type=int,
+ default=1,
+ help="Context lines around term hits when using --rerank-strategy snippet.",
+ )
+ parser.add_argument(
+ "--rerank-candidates-multiplier",
+ type=int,
+ default=2,
+ help="Rerank top (top_k * multiplier) candidates before slicing to top_k.",
+ )
+ parser.add_argument(
+ "--rerank-timeout",
+ type=int,
+ default=60,
+ help="Timeout seconds for reranker API calls.",
+ )
+ parser.add_argument(
+ "--fail-on-rerank-noop",
+ action="store_true",
+ default=False,
+ help="Fail the run if rerank is enabled but no finite rerank logits are returned for a question.",
+ )
+ args = parser.parse_args()
+ args.full_potential = not args.minimal
+ args.defer_enrichment = args.defer_enrichment
+ args.enable_episodic_index = not args.disable_episodic_index
+ args.enable_hierarchical_retrieval = not args.disable_hierarchical_retrieval
+ args.enable_orchestrated_search = not args.disable_orchestrated_search
+ return args
+
+
+def main() -> None:
+ args = parse_args()
+ run_longmemeval(args)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/engram/cli.py b/dhee/cli.py
similarity index 97%
rename from engram/cli.py
rename to dhee/cli.py
index 06a2bc2..7744948 100644
--- a/engram/cli.py
+++ b/dhee/cli.py
@@ -28,7 +28,7 @@ def _json_out(data: Any) -> None:
def _get_memory(config: Optional[Dict] = None):
"""Lazy-load a Memory instance from CLI config."""
- from engram.cli_config import get_memory_instance
+ from dhee.cli_config import get_memory_instance
return get_memory_instance(config)
@@ -38,7 +38,7 @@ def _get_memory(config: Optional[Dict] = None):
def cmd_setup(args: argparse.Namespace) -> None:
"""Run interactive setup wizard."""
- from engram.cli_setup import run_setup
+ from dhee.cli_setup import run_setup
run_setup()
@@ -200,9 +200,9 @@ def cmd_import(args: argparse.Namespace) -> None:
def cmd_status(args: argparse.Namespace) -> None:
"""Show version, config, DB size, detected agents."""
- from engram import __version__
- from engram.cli_config import CONFIG_DIR, CONFIG_PATH, load_config
- from engram.cli_mcp import detect_agents
+ from dhee import __version__
+ from dhee.cli_config import CONFIG_DIR, CONFIG_PATH, load_config
+ from dhee.cli_mcp import detect_agents
config = load_config()
provider = config.get("provider", "not configured")
@@ -244,8 +244,8 @@ def cmd_status(args: argparse.Namespace) -> None:
def cmd_uninstall(args: argparse.Namespace) -> None:
- """Remove ~/.engram directory."""
- from engram.cli_config import CONFIG_DIR
+ """Remove ~/.dhee data directory."""
+ from dhee.cli_config import CONFIG_DIR
if not os.path.exists(CONFIG_DIR):
print("Nothing to remove.")
return
@@ -260,7 +260,7 @@ def cmd_uninstall(args: argparse.Namespace) -> None:
def cmd_benchmark(args: argparse.Namespace) -> None:
"""Run performance benchmarks."""
import time
- from engram import Memory
+ from dhee import Memory
print("=" * 60)
print(" engram benchmark")
@@ -313,7 +313,7 @@ def cmd_benchmark(args: argparse.Namespace) -> None:
def build_parser() -> argparse.ArgumentParser:
"""Build the CLI argument parser."""
- from engram import __version__
+ from dhee import __version__
parser = argparse.ArgumentParser(
prog="engram",
diff --git a/engram/cli_config.py b/dhee/cli_config.py
similarity index 92%
rename from engram/cli_config.py
rename to dhee/cli_config.py
index dbfdb0d..b958490 100644
--- a/engram/cli_config.py
+++ b/dhee/cli_config.py
@@ -1,10 +1,12 @@
-"""Config manager for ~/.engram/config.json."""
+"""Config manager for ~/.dhee/config.json."""
import json
import os
from typing import Any, Dict, Optional
-CONFIG_DIR = os.path.join(os.path.expanduser("~"), ".engram")
+from dhee.configs.base import _dhee_data_dir
+
+CONFIG_DIR = _dhee_data_dir()
CONFIG_PATH = os.path.join(CONFIG_DIR, "config.json")
# Provider → default models and env var
@@ -50,7 +52,7 @@ def get_default_config() -> Dict[str, Any]:
def load_config() -> Dict[str, Any]:
- """Load config from ~/.engram/config.json or return defaults."""
+ """Load config from ~/.dhee/config.json or return defaults."""
if os.path.exists(CONFIG_PATH):
with open(CONFIG_PATH, "r") as f:
return json.load(f)
@@ -58,7 +60,7 @@ def load_config() -> Dict[str, Any]:
def save_config(config: Dict[str, Any]) -> None:
- """Write config to ~/.engram/config.json."""
+ """Write config to ~/.dhee/config.json."""
os.makedirs(CONFIG_DIR, exist_ok=True)
with open(CONFIG_PATH, "w") as f:
json.dump(config, f, indent=2)
@@ -82,8 +84,8 @@ def get_api_key(provider: str) -> Optional[str]:
def get_memory_instance(config: Optional[Dict[str, Any]] = None):
"""Build a Memory instance from CLI config."""
- from engram.memory.main import Memory
- from engram.configs.base import (
+ from dhee.memory.main import Memory
+ from dhee.configs.base import (
MemoryConfig,
VectorStoreConfig,
LLMConfig,
diff --git a/engram/cli_mcp.py b/dhee/cli_mcp.py
similarity index 97%
rename from engram/cli_mcp.py
rename to dhee/cli_mcp.py
index 3de92a4..1375b2a 100644
--- a/engram/cli_mcp.py
+++ b/dhee/cli_mcp.py
@@ -5,7 +5,7 @@
import sys
from typing import Any, Dict, List, Tuple
-from engram.cli_config import PROVIDER_DEFAULTS
+from dhee.cli_config import PROVIDER_DEFAULTS
def _engram_mcp_entry() -> str:
@@ -129,17 +129,17 @@ def _configure_codex(config: Dict[str, Any]) -> str:
if os.path.exists(toml_path):
with open(toml_path, "r") as f:
content = f.read()
- if "engram" in content:
+ if "dhee" in content or "engram" in content:
return "already configured"
env = _build_env_block(config)
env_lines = "\n".join(f' {k} = "{v}"' for k, v in env.items())
block = (
- f'\n[mcp_servers.engram]\n'
+ f'\n[mcp_servers.dhee]\n'
f'command = "{_engram_mcp_entry()}"\n'
f'args = []\n'
)
if env_lines:
- block += f'[mcp_servers.engram.env]\n{env_lines}\n'
+ block += f'[mcp_servers.dhee.env]\n{env_lines}\n'
with open(toml_path, "a") as f:
f.write(block)
return "configured"
diff --git a/engram/cli_setup.py b/dhee/cli_setup.py
similarity index 83%
rename from engram/cli_setup.py
rename to dhee/cli_setup.py
index addb4fb..cb8f9b6 100644
--- a/engram/cli_setup.py
+++ b/dhee/cli_setup.py
@@ -1,18 +1,18 @@
-"""Auto-setup for `engram setup`. No prompts — detects environment and configures automatically."""
+"""Auto-setup for `dhee setup`. No prompts — detects environment and configures automatically."""
import logging
import os
import sys
-from engram.cli_config import (
+from dhee.cli_config import (
CONFIG_DIR,
PROVIDER_DEFAULTS,
get_default_config,
load_config,
save_config,
)
-from engram.cli_mcp import configure_mcp_servers, detect_agents
-from engram.utils.factory import _detect_provider
+from dhee.cli_mcp import configure_mcp_servers, detect_agents
+from dhee.utils.factory import _detect_provider
logger = logging.getLogger(__name__)
@@ -20,7 +20,7 @@
def run_setup() -> None:
"""Auto-detect environment and configure. No prompts."""
print("=" * 50)
- print(" engram setup (auto-detect)")
+ print(" dhee setup (auto-detect)")
print("=" * 50)
config = load_config()
@@ -69,7 +69,7 @@ def run_setup() -> None:
print(" Setup complete!")
print()
print(" Try:")
- print(' engram add "User prefers dark mode"')
- print(' engram search "preferences"')
- print(' engram status')
+ print(' dhee add "User prefers dark mode"')
+ print(' dhee search "preferences"')
+ print(' dhee status')
print("=" * 50)
diff --git a/engram/configs/__init__.py b/dhee/configs/__init__.py
similarity index 89%
rename from engram/configs/__init__.py
rename to dhee/configs/__init__.py
index 7bcf509..bc6ef35 100644
--- a/engram/configs/__init__.py
+++ b/dhee/configs/__init__.py
@@ -1,4 +1,4 @@
-from engram.configs.base import (
+from dhee.configs.base import (
EchoMemConfig,
EmbedderConfig,
FadeMemConfig,
diff --git a/engram/configs/active.py b/dhee/configs/active.py
similarity index 97%
rename from engram/configs/active.py
rename to dhee/configs/active.py
index 40642ea..e5589f7 100644
--- a/engram/configs/active.py
+++ b/dhee/configs/active.py
@@ -36,7 +36,7 @@ class ConsolidationConfig(BaseModel):
class ActiveMemoryConfig(BaseModel):
"""Configuration for the Active Memory signal bus."""
enabled: bool = True
- db_path: str = Field(default="~/.engram/active.db")
+ db_path: str = Field(default="~/.dhee/active.db")
default_ttl_tier: str = "notable"
ttl_seconds: Dict[str, int] = Field(default_factory=lambda: {
"noise": 1800, # 30 min
diff --git a/engram/configs/base.py b/dhee/configs/base.py
similarity index 74%
rename from engram/configs/base.py
rename to dhee/configs/base.py
index 44cc199..a71bbd2 100644
--- a/engram/configs/base.py
+++ b/dhee/configs/base.py
@@ -3,19 +3,32 @@
from pydantic import BaseModel, Field, field_validator
-from engram.configs.active import ActiveMemoryConfig
+from dhee.configs.active import ActiveMemoryConfig
+
+
+def _dhee_data_dir() -> str:
+ """Resolve data directory: DHEE_DATA_DIR > ~/.dhee (fallback ~/.engram for migration)."""
+ env = os.environ.get("DHEE_DATA_DIR") or os.environ.get("ENGRAM_DATA_DIR")
+ if env:
+ return env
+ dhee_dir = os.path.join(os.path.expanduser("~"), ".dhee")
+ engram_dir = os.path.join(os.path.expanduser("~"), ".engram")
+ # Use .dhee if it exists or .engram doesn't; otherwise fall back to existing .engram
+ if os.path.isdir(dhee_dir) or not os.path.isdir(engram_dir):
+ return dhee_dir
+ return engram_dir
_VALID_VECTOR_PROVIDERS = {"memory", "sqlite_vec", "zvec"}
-_VALID_LLM_PROVIDERS = {"gemini", "openai", "nvidia", "ollama", "mock"}
-_VALID_EMBEDDER_PROVIDERS = {"gemini", "openai", "nvidia", "ollama", "simple"}
+_VALID_LLM_PROVIDERS = {"gemini", "openai", "nvidia", "ollama", "mock", "dhee"}
+_VALID_EMBEDDER_PROVIDERS = {"gemini", "openai", "nvidia", "ollama", "simple", "qwen"}
class VectorStoreConfig(BaseModel):
provider: str = Field(default="zvec")
config: Dict[str, Any] = Field(
default_factory=lambda: {
- "path": os.path.join(os.path.expanduser("~"), ".engram", "zvec"),
+ "path": os.path.join(_dhee_data_dir(), "zvec"),
"collection_name": "fadem_memories",
}
)
@@ -30,10 +43,10 @@ def _valid_provider(cls, v: str) -> str:
class LLMConfig(BaseModel):
- provider: str = Field(default="nvidia")
+ provider: str = Field(default="openai")
config: Dict[str, Any] = Field(
default_factory=lambda: {
- "model": "minimaxai/minimax-m2.1",
+ "model": "gpt-4o-mini",
"temperature": 0.2,
"max_tokens": 4096,
}
@@ -49,8 +62,8 @@ def _valid_provider(cls, v: str) -> str:
class EmbedderConfig(BaseModel):
- provider: str = Field(default="nvidia")
- config: Dict[str, Any] = Field(default_factory=lambda: {"model": "nvidia/nv-embed-v1"})
+ provider: str = Field(default="openai")
+ config: Dict[str, Any] = Field(default_factory=lambda: {"model": "text-embedding-3-small"})
@field_validator("provider")
@classmethod
@@ -161,7 +174,7 @@ class SceneConfig(BaseModel):
scene_topic_threshold: float = 0.55 # cosine sim below this = topic shift
auto_close_inactive_minutes: int = 120
max_scene_memories: int = 50
- use_llm_summarization: bool = True
+ use_llm_summarization: bool = False
summary_regenerate_threshold: int = 5
@@ -175,6 +188,88 @@ class ProfileConfig(BaseModel):
max_facts_per_profile: int = 100
+class OrchestrationConfig(BaseModel):
+ """Configuration for event-first retrieval + answer orchestration."""
+ enable_orchestrated_search: bool = True
+ enable_episodic_index: bool = True
+ enable_hierarchical_retrieval: bool = True
+ orchestrator_model: str = "meta/llama-3.1-8b-instruct"
+ reflection_max_hops: int = 1
+ map_max_candidates: int = 8
+ map_candidate_max_chars: int = 1200
+ map_reduce_coverage_threshold: float = 0.6
+ # Strict query-time guardrail: at most N orchestration LLM calls per query.
+ max_query_llm_calls: int = 2
+ # Intent-specific minimum coverage thresholds for map/reduce gating.
+ intent_coverage_thresholds: Dict[str, float] = Field(
+ default_factory=lambda: {
+ "count": 0.65,
+ "money_sum": 0.6,
+ "duration": 0.6,
+ "latest": 0.55,
+ "set_members": 0.65,
+ "freeform": 0.6,
+ }
+ )
+ # Cache deterministic reducer outputs to avoid repeat map calls.
+ reducer_cache_ttl_seconds: int = 900
+ reducer_cache_max_entries: int = 2048
+ context_cap: int = 20
+ search_cap: int = 30
+
+ @field_validator("reflection_max_hops")
+ @classmethod
+ def _valid_reflection_hops(cls, v: int) -> int:
+ return max(0, min(3, int(v)))
+
+ @field_validator("map_max_candidates", "context_cap", "search_cap", "reducer_cache_ttl_seconds", "reducer_cache_max_entries")
+ @classmethod
+ def _valid_positive_int(cls, v: int) -> int:
+ return max(1, int(v))
+
+ @field_validator("max_query_llm_calls")
+ @classmethod
+ def _valid_query_budget_calls(cls, v: int) -> int:
+ return max(0, min(4, int(v)))
+
+ @field_validator("map_candidate_max_chars")
+ @classmethod
+ def _valid_map_chars(cls, v: int) -> int:
+ return max(200, int(v))
+
+ @field_validator("map_reduce_coverage_threshold")
+ @classmethod
+ def _valid_threshold(cls, v: float) -> float:
+ return max(0.0, min(1.0, float(v)))
+
+ @field_validator("intent_coverage_thresholds")
+ @classmethod
+ def _valid_intent_thresholds(cls, v: Dict[str, float]) -> Dict[str, float]:
+ if not isinstance(v, dict):
+ return {}
+ cleaned: Dict[str, float] = {}
+ for key, value in v.items():
+ intent_key = str(key or "").strip().lower()
+ if not intent_key:
+ continue
+ cleaned[intent_key] = max(0.0, min(1.0, float(value)))
+ return cleaned
+
+
+class CostGuardrailConfig(BaseModel):
+ """Configuration for write/query unit-economics guardrails."""
+ enable_cost_counters: bool = True
+ strict_write_path_cap: bool = True
+ auto_disable_on_violation: bool = True
+ baseline_write_llm_calls_per_memory: float = 0.0
+ baseline_write_tokens_per_memory: float = 0.0
+
+ @field_validator("baseline_write_llm_calls_per_memory", "baseline_write_tokens_per_memory")
+ @classmethod
+ def _non_negative_float(cls, v: float) -> float:
+ return max(0.0, float(v))
+
+
class HandoffConfig(BaseModel):
"""Configuration for cross-agent session handoff."""
enable_handoff: bool = True
@@ -233,7 +328,7 @@ class DistillationConfig(BaseModel):
enable_homeostasis: bool = True
homeostasis_budget_per_namespace: int = 5000
homeostasis_pressure_factor: float = 0.1
- redundancy_collapse_threshold: float = 0.92
+ redundancy_collapse_threshold: float = 0.85
# Gap 4: Multi-trace strength
enable_multi_trace: bool = True
@@ -328,6 +423,45 @@ class CausalInlineConfig(BaseModel):
auto_detect_causal_language: bool = True
+class DheeModelConfig(BaseModel):
+ """Configuration for the DheeModel (fine-tuned Qwen3.5 family)."""
+ model_path: str = "auto" # auto-download or local path
+ base_model: str = "Qwen3.5-2B"
+ quantization: str = "Q4_K_M"
+ embedding_model: str = "Qwen3-Embedding-0.6B"
+ reranker_model: str = "Qwen3-Reranker-0.6B"
+ n_ctx: int = 4096
+ n_threads: int = 4
+ temperature: float = 0.1
+ max_tokens: int = 2048
+
+
+class CognitionConfig(BaseModel):
+ """Configuration for the cognitive decomposition engine."""
+ enable_cognition: bool = True
+ max_depth: int = 3
+ max_sub_questions: int = 10
+ store_solutions: bool = True # learn from cognitive results
+
+
+class ProspectiveSceneConfig(BaseModel):
+ """Configuration for prospective scene prediction."""
+ enable_prospective_scenes: bool = True
+ default_trigger_window_hours: int = 24 # surface N hours before event
+ max_predicted_scenes: int = 50 # per user
+ auto_link_past_scenes: bool = True # find similar past events
+ surface_on_context_load: bool = True # check on session start
+
+
+class EngramExtractionConfig(BaseModel):
+ """Configuration for structured engram extraction."""
+ enable_extraction: bool = True
+ use_llm_extraction: bool = True # use LLM for extraction (vs rule-based)
+ extract_prospective: bool = True # detect future plans -> ProspectiveScene
+ extract_context_anchors: bool = True # era/place/time/activity
+ extract_scene_snapshots: bool = True # visual scene reconstruction
+
+
class SkillConfig(BaseModel):
"""Configuration for the skill-learning agent memory system."""
enable_skills: bool = True
@@ -462,13 +596,19 @@ def _positive_int(cls, v: int) -> int:
return max(1, int(v))
+def _get_teaching_config():
+ """Lazy import to avoid circular dependency."""
+ from dhee.teaching.config import TeachingConfig
+ return TeachingConfig()
+
+
class MemoryConfig(BaseModel):
vector_store: VectorStoreConfig = Field(default_factory=VectorStoreConfig)
llm: LLMConfig = Field(default_factory=LLMConfig)
embedder: EmbedderConfig = Field(default_factory=EmbedderConfig)
graph_store: GraphStoreConfig = Field(default_factory=GraphStoreConfig)
history_db_path: str = Field(
- default_factory=lambda: os.path.join(os.path.expanduser("~"), ".engram", "history.db")
+ default_factory=lambda: os.path.join(_dhee_data_dir(), "history.db")
)
collection_name: str = "fadem_memories"
embedding_model_dims: int = 4096 # nvidia/nv-embed-v1 default dimensions
@@ -492,8 +632,11 @@ class MemoryConfig(BaseModel):
batch: BatchConfig = Field(default_factory=BatchConfig)
enrichment: EnrichmentConfig = Field(default_factory=EnrichmentConfig)
rerank: RerankConfig = Field(default_factory=RerankConfig)
+ orchestration: OrchestrationConfig = Field(default_factory=OrchestrationConfig)
+ cost_guardrail: CostGuardrailConfig = Field(default_factory=CostGuardrailConfig)
skill: SkillConfig = Field(default_factory=SkillConfig)
task: TaskConfig = Field(default_factory=TaskConfig)
+ teaching: "TeachingConfig" = Field(default_factory=lambda: _get_teaching_config())
metamemory: MetamemoryInlineConfig = Field(default_factory=MetamemoryInlineConfig)
prospective: ProspectiveInlineConfig = Field(default_factory=ProspectiveInlineConfig)
procedural: ProceduralInlineConfig = Field(default_factory=ProceduralInlineConfig)
@@ -502,6 +645,11 @@ class MemoryConfig(BaseModel):
working_memory: WorkingMemoryInlineConfig = Field(default_factory=WorkingMemoryInlineConfig)
salience: SalienceInlineConfig = Field(default_factory=SalienceInlineConfig)
causal: CausalInlineConfig = Field(default_factory=CausalInlineConfig)
+ # Dhee: Cognition as a Service
+ dhee_model: DheeModelConfig = Field(default_factory=DheeModelConfig)
+ cognition: CognitionConfig = Field(default_factory=CognitionConfig)
+ prospective_scene: ProspectiveSceneConfig = Field(default_factory=ProspectiveSceneConfig)
+ engram_extraction: EngramExtractionConfig = Field(default_factory=EngramExtractionConfig)
@field_validator("embedding_model_dims")
@classmethod
@@ -516,17 +664,28 @@ def _valid_dims(cls, v: int) -> int:
@classmethod
def minimal(cls) -> "MemoryConfig":
"""Zero-config: hash embedder, in-memory vector store, basic decay. No API key."""
- from engram.configs.presets import minimal_config
+ from dhee.configs.presets import minimal_config
return minimal_config()
@classmethod
def smart(cls) -> "MemoryConfig":
"""Auto-detect best available provider + echo + categories."""
- from engram.configs.presets import smart_config
+ from dhee.configs.presets import smart_config
return smart_config()
@classmethod
def full(cls) -> "MemoryConfig":
"""Everything: scenes, profiles, graph, tasks."""
- from engram.configs.presets import full_config
+ from dhee.configs.presets import full_config
return full_config()
+
+
+# Resolve forward reference for TeachingConfig
+def _rebuild_memory_config():
+ try:
+ from dhee.teaching.config import TeachingConfig
+ MemoryConfig.model_rebuild()
+ except ImportError:
+ pass
+
+_rebuild_memory_config()
diff --git a/engram/configs/presets.py b/dhee/configs/presets.py
similarity index 91%
rename from engram/configs/presets.py
rename to dhee/configs/presets.py
index dabe2e5..b650598 100644
--- a/engram/configs/presets.py
+++ b/dhee/configs/presets.py
@@ -12,7 +12,7 @@
def minimal_config():
"""Zero-config: hash embedder, in-memory vector store, basic decay. No API key."""
- from engram.configs.base import (
+ from dhee.configs.base import (
CategoryMemConfig,
EchoMemConfig,
EmbedderConfig,
@@ -26,7 +26,7 @@ def minimal_config():
VectorStoreConfig,
)
- data_dir = os.environ.get("ENGRAM_DATA_DIR", os.path.join(os.path.expanduser("~"), ".engram"))
+ data_dir = os.environ.get("DHEE_DATA_DIR") or os.environ.get("ENGRAM_DATA_DIR") or os.path.join(os.path.expanduser("~"), ".dhee")
os.makedirs(data_dir, exist_ok=True)
return MemoryConfig(
@@ -57,7 +57,7 @@ def minimal_config():
def smart_config():
"""Auto-detect best available provider + echo + categories. Needs API key or Ollama."""
- from engram.configs.base import (
+ from dhee.configs.base import (
CategoryMemConfig,
EchoMemConfig,
EmbedderConfig,
@@ -70,10 +70,10 @@ def smart_config():
SkillConfig,
VectorStoreConfig,
)
- from engram.utils.factory import _detect_provider
+ from dhee.utils.factory import _detect_provider
embedder_provider, llm_provider = _detect_provider()
- data_dir = os.environ.get("ENGRAM_DATA_DIR", os.path.join(os.path.expanduser("~"), ".engram"))
+ data_dir = os.environ.get("DHEE_DATA_DIR") or os.environ.get("ENGRAM_DATA_DIR") or os.path.join(os.path.expanduser("~"), ".dhee")
os.makedirs(data_dir, exist_ok=True)
if embedder_provider == "simple":
@@ -134,7 +134,7 @@ def smart_config():
def full_config():
"""Everything: scenes, profiles, graph, tasks. Needs API key or Ollama."""
- from engram.configs.base import (
+ from dhee.configs.base import (
EnrichmentConfig,
SceneConfig,
ProfileConfig,
diff --git a/dhee/core/__init__.py b/dhee/core/__init__.py
new file mode 100644
index 0000000..01c22f0
--- /dev/null
+++ b/dhee/core/__init__.py
@@ -0,0 +1,22 @@
+from dhee.core.decay import calculate_decayed_strength, should_forget, should_promote
+from dhee.core.conflict import resolve_conflict
+from dhee.core.echo import EchoProcessor, EchoDepth, EchoResult
+from dhee.core.fusion import fuse_memories
+from dhee.core.retrieval import composite_score
+from dhee.core.category import CategoryProcessor, Category, CategoryMatch, CategoryType
+
+__all__ = [
+ "calculate_decayed_strength",
+ "should_forget",
+ "should_promote",
+ "resolve_conflict",
+ "EchoProcessor",
+ "EchoDepth",
+ "EchoResult",
+ "fuse_memories",
+ "composite_score",
+ "CategoryProcessor",
+ "Category",
+ "CategoryMatch",
+ "CategoryType",
+]
diff --git a/engram/core/agi_loop.py b/dhee/core/agi_loop.py
similarity index 100%
rename from engram/core/agi_loop.py
rename to dhee/core/agi_loop.py
diff --git a/dhee/core/alaya.py b/dhee/core/alaya.py
new file mode 100644
index 0000000..dae4807
--- /dev/null
+++ b/dhee/core/alaya.py
@@ -0,0 +1,330 @@
+"""आलय (Alaya) — Storehouse consciousness with seed activation.
+
+Buddhist Yogacara: Alaya-vijnana is the storehouse consciousness.
+All experiences are stored as bija (seeds). Seeds have two states:
+ - Dormant: stored but never activated
+ - Ripened (vipaka): activated through retrieval, strengthened
+
+Seeds ripen through three mechanisms:
+ 1. Pratyaya (conditions) — retrieved when relevant query arises
+ 2. Sahabhu (co-arising) — activated alongside related seeds
+ 3. Vipaka (fruition) — contributed to a correct answer
+
+Seeds that never ripen despite relevant queries → re-extraction candidates.
+Seeds that consistently ripen together → associative strengthening.
+
+This module works WITH the existing FadeMem/trace system:
+ - FadeMem handles time-based decay (forgetting curve)
+ - Traces handle multi-timescale consolidation (fast→mid→slow)
+ - Alaya handles USE-based activation (which memories are actually useful)
+
+Three different forces on memory strength:
+ - Decay pulls strength DOWN over time (FadeMem)
+ - Access resets the decay clock (existing record_access)
+ - Activation pushes strength UP when memory proves useful (Alaya)
+"""
+
+from __future__ import annotations
+
+import logging
+import time
+from dataclasses import dataclass, field
+from typing import Any, Dict, List, Optional, Set, Tuple, TYPE_CHECKING
+
+if TYPE_CHECKING:
+ from dhee.core.samskara import SamskaraCollector
+
+logger = logging.getLogger(__name__)
+
+
+@dataclass
+class BijaState:
+ """State of a single seed (memory) in the storehouse.
+
+ Tracks activation patterns beyond simple access_count.
+ access_count = how many times it was retrieved
+ activation_count = how many times it was USEFUL (contributed to answer)
+ """
+
+ memory_id: str
+ activation_count: int = 0 # times this seed ripened (was useful)
+ dormant_queries: int = 0 # times a relevant query missed this seed
+ last_activated: float = 0.0 # timestamp of last successful activation
+ co_activated_with: Dict[str, int] = field(default_factory=dict) # memory_id → count
+ strength_gradient: float = 0.0 # positive = strengthening, negative = weakening
+
+ @property
+ def is_dormant(self) -> bool:
+ """A seed that has never activated after sufficient opportunities."""
+ return self.activation_count == 0 and self.dormant_queries >= 3
+
+ @property
+ def ripening_ratio(self) -> float:
+ """How often this seed ripens when it could.
+ High ratio = consistently useful memory.
+ Low ratio = retrieved but rarely helpful.
+ """
+ total = self.activation_count + self.dormant_queries
+ if total == 0:
+ return 0.0
+ return self.activation_count / total
+
+ @property
+ def needs_re_extraction(self) -> bool:
+ """Dormant seeds with many missed queries need re-extraction.
+ The content is there but the structure isn't surfacing it.
+ """
+ return self.dormant_queries >= 5 and self.activation_count == 0
+
+
+class AlayaStore:
+ """Storehouse consciousness — tracks seed activation patterns.
+
+ Sits between retrieval and answer synthesis:
+ 1. After retrieval: records which seeds were surfaced (pratyaya)
+ 2. After answer: records which seeds actually contributed (vipaka)
+ 3. Periodically: identifies dormant seeds and co-activation patterns
+
+ Does NOT modify the database directly — produces signals for
+ the memory pipeline to act on.
+ """
+
+ def __init__(
+ self,
+ samskara_collector: Optional[SamskaraCollector] = None,
+ co_activation_threshold: int = 3, # times before link is strong
+ dormancy_threshold: int = 5, # queries before seed is dormant
+ ):
+ self.samskara = samskara_collector
+ self.co_activation_threshold = co_activation_threshold
+ self.dormancy_threshold = dormancy_threshold
+
+ # In-memory bija tracking (loaded from / flushed to DB)
+ self._bija: Dict[str, BijaState] = {}
+
+ # Session tracking for co-activation
+ self._current_retrieval_set: List[str] = []
+
+ def _get_bija(self, memory_id: str) -> BijaState:
+ """Get or create bija state for a memory."""
+ if memory_id not in self._bija:
+ self._bija[memory_id] = BijaState(memory_id=memory_id)
+ return self._bija[memory_id]
+
+ # ------------------------------------------------------------------
+ # Event handlers (called from memory pipeline)
+ # ------------------------------------------------------------------
+
+ def on_retrieval(
+ self,
+ query: str,
+ retrieved_ids: List[str],
+ user_id: str = "default",
+ ) -> None:
+ """Record that these seeds were surfaced by a query (pratyaya).
+
+ Called after search() returns results.
+ This is co-arising — all retrieved memories share context.
+ """
+ self._current_retrieval_set = list(retrieved_ids)
+
+ # Record co-activation patterns
+ for i, id_a in enumerate(retrieved_ids):
+ bija_a = self._get_bija(id_a)
+ for id_b in retrieved_ids[i + 1:]:
+ # Bidirectional co-activation
+ bija_a.co_activated_with[id_b] = (
+ bija_a.co_activated_with.get(id_b, 0) + 1
+ )
+ bija_b = self._get_bija(id_b)
+ bija_b.co_activated_with[id_a] = (
+ bija_b.co_activated_with.get(id_a, 0) + 1
+ )
+
+ def on_activation(
+ self,
+ memory_ids: List[str],
+ query: str = "",
+ user_id: str = "default",
+ ) -> None:
+ """Record that these seeds actually contributed to an answer (vipaka).
+
+ Called after answer synthesis when we know WHICH memories
+ were grounded in the response. This is the ripening event.
+ """
+ now = time.time()
+ for mid in memory_ids:
+ bija = self._get_bija(mid)
+ bija.activation_count += 1
+ bija.last_activated = now
+ # Positive gradient
+ bija.strength_gradient = (
+ 0.9 * bija.strength_gradient + 0.1 * 1.0
+ )
+
+ # Mark non-activated retrieval results as dormant queries
+ activated_set = set(memory_ids)
+ for mid in self._current_retrieval_set:
+ if mid not in activated_set:
+ bija = self._get_bija(mid)
+ bija.dormant_queries += 1
+ # Negative gradient
+ bija.strength_gradient = (
+ 0.9 * bija.strength_gradient + 0.1 * (-0.3)
+ )
+
+ self._current_retrieval_set = []
+
+ def on_retrieval_miss(
+ self,
+ query: str,
+ expected_memory_ids: Optional[List[str]] = None,
+ user_id: str = "default",
+ ) -> None:
+ """Record that a query should have found memories but didn't.
+
+ Called when user corrects an answer by providing information
+ that exists in the store but wasn't retrieved.
+ """
+ if expected_memory_ids:
+ for mid in expected_memory_ids:
+ bija = self._get_bija(mid)
+ bija.dormant_queries += 1
+ bija.strength_gradient = (
+ 0.9 * bija.strength_gradient + 0.1 * (-0.5)
+ )
+
+ # ------------------------------------------------------------------
+ # Analysis: what needs attention
+ # ------------------------------------------------------------------
+
+ def get_dormant_seeds(self) -> List[BijaState]:
+ """Seeds that have never activated despite opportunities.
+
+ These need re-extraction — the content exists but the
+ structural representation isn't surfacing it.
+ """
+ return [
+ bija for bija in self._bija.values()
+ if bija.is_dormant
+ ]
+
+ def get_re_extraction_candidates(self) -> List[str]:
+ """Memory IDs that need re-extraction via EngramExtractor.
+
+ Returns IDs of memories where the structured representation
+ (facts, context anchors, embeddings) needs to be regenerated.
+ """
+ return [
+ bija.memory_id for bija in self._bija.values()
+ if bija.needs_re_extraction
+ ]
+
+ def get_strong_associations(self) -> List[Tuple[str, str, int]]:
+ """Memory pairs that consistently co-activate.
+
+ Returns (id_a, id_b, count) tuples for pairs that
+ co-activated above the threshold. These should be
+ linked in engram_links as co_occurring.
+ """
+ seen: Set[Tuple[str, str]] = set()
+ associations: List[Tuple[str, str, int]] = []
+
+ for bija in self._bija.values():
+ for other_id, count in bija.co_activated_with.items():
+ if count >= self.co_activation_threshold:
+ pair = tuple(sorted([bija.memory_id, other_id]))
+ if pair not in seen:
+ seen.add(pair)
+ associations.append(
+ (pair[0], pair[1], count)
+ )
+
+ return sorted(associations, key=lambda x: x[2], reverse=True)
+
+ def get_strength_adjustments(self) -> Dict[str, float]:
+ """Compute strength boosts/penalties based on activation patterns.
+
+ Returns memory_id → adjustment_delta (can be positive or negative).
+ The memory pipeline applies these to FadeMem strength.
+
+ This is the key innovation: USE-based strength adjustment
+ complements TIME-based decay. A memory can fight decay
+ by proving useful.
+ """
+ adjustments: Dict[str, float] = {}
+
+ for bija in self._bija.values():
+ if bija.activation_count == 0 and bija.dormant_queries == 0:
+ continue # no data yet
+
+ ratio = bija.ripening_ratio
+
+ if ratio >= 0.7 and bija.activation_count >= 3:
+ # Consistently useful — strengthen
+ adjustments[bija.memory_id] = 0.05
+ elif ratio <= 0.1 and bija.dormant_queries >= 5:
+ # Never useful — weaken (let FadeMem decay faster)
+ adjustments[bija.memory_id] = -0.02
+ elif bija.strength_gradient < -0.3:
+ # Trending negative
+ adjustments[bija.memory_id] = -0.01
+
+ return adjustments
+
+ def get_activation_stats(self) -> Dict[str, Any]:
+ """Get storehouse statistics."""
+ total = len(self._bija)
+ if total == 0:
+ return {
+ "total_seeds": 0,
+ "dormant": 0,
+ "active": 0,
+ "re_extraction_needed": 0,
+ "strong_associations": 0,
+ }
+
+ dormant = sum(1 for b in self._bija.values() if b.is_dormant)
+ active = sum(1 for b in self._bija.values() if b.activation_count > 0)
+ re_extract = sum(1 for b in self._bija.values() if b.needs_re_extraction)
+ assoc = len(self.get_strong_associations())
+
+ return {
+ "total_seeds": total,
+ "dormant": dormant,
+ "active": active,
+ "dormant_ratio": dormant / total,
+ "active_ratio": active / total,
+ "re_extraction_needed": re_extract,
+ "strong_associations": assoc,
+ "avg_ripening_ratio": (
+ sum(b.ripening_ratio for b in self._bija.values()) / total
+ ),
+ }
+
+ # ------------------------------------------------------------------
+ # Persistence
+ # ------------------------------------------------------------------
+
+ def to_dict(self) -> Dict[str, Any]:
+ """Serialize for persistence."""
+ return {
+ mid: {
+ "activation_count": b.activation_count,
+ "dormant_queries": b.dormant_queries,
+ "last_activated": b.last_activated,
+ "co_activated_with": dict(b.co_activated_with),
+ "strength_gradient": b.strength_gradient,
+ }
+ for mid, b in self._bija.items()
+ }
+
+ def load_dict(self, data: Dict[str, Any]) -> None:
+ """Restore from persisted state."""
+ for mid, bdata in data.items():
+ bija = self._get_bija(mid)
+ bija.activation_count = bdata.get("activation_count", 0)
+ bija.dormant_queries = bdata.get("dormant_queries", 0)
+ bija.last_activated = bdata.get("last_activated", 0.0)
+ bija.co_activated_with = bdata.get("co_activated_with", {})
+ bija.strength_gradient = bdata.get("strength_gradient", 0.0)
diff --git a/dhee/core/answer_orchestration.py b/dhee/core/answer_orchestration.py
new file mode 100644
index 0000000..1fff68b
--- /dev/null
+++ b/dhee/core/answer_orchestration.py
@@ -0,0 +1,942 @@
+"""Answer-time orchestration utilities for memory-heavy QA.
+
+This module is benchmark-agnostic and can be reused by runtime APIs.
+It provides:
+- lightweight query-intent routing
+- optional query rewriting for retrieval
+- map stage (atomic fact extraction)
+- deterministic reducers for high-leverage question types
+"""
+
+from __future__ import annotations
+
+import json
+import logging
+import re
+from dataclasses import dataclass
+from datetime import date, datetime, timezone
+from enum import Enum
+from typing import Any, Dict, List, Optional, Sequence, Tuple
+
+logger = logging.getLogger(__name__)
+
+_SESSION_ID_RE = re.compile(r"^Session ID:\s*(?P\S+)\s*$", re.MULTILINE)
+_RECENT_QUERY_RE = re.compile(r"\b(latest|most recent(?:ly)?|currently|current|recent(?:ly)?|as of|last)\b", re.I)
+# Superlative patterns: "the most", "the least", "the first", "the last"
+# These require ARGMAX/ARGMIN — not just listing set members.
+_SUPERLATIVE_RE = re.compile(
+ r"\b(?:the\s+)?(?:most|least|fewest|highest|lowest|biggest|smallest|first|last"
+ r"|(?:fly|flew|visit|use|eat|watch|play|buy|read|drive|travel)\w*\s+(?:the\s+)?most)\b",
+ re.I,
+)
+_LOW_CONFIDENCE_RE = re.compile(
+ r"\b(i\s+don['’]?t\s+know|not\s+enough\s+information|insufficient\s+information|unknown|cannot\s+determine)\b",
+ re.I,
+)
+_MONEY_RE = re.compile(r"[-+]?\$?\s*(\d{1,3}(?:,\d{3})*|\d+)(?:\.(\d+))?")
+_DURATION_RE = re.compile(
+ r"([-+]?\d+(?:\.\d+)?)\s*(years?|months?|weeks?|days?|hours?|minutes?)",
+ re.I,
+)
+
+
+class AnswerIntent(str, Enum):
+ COUNT = "count"
+ MONEY_SUM = "money_sum"
+ DURATION = "duration"
+ LATEST = "latest"
+ SET_MEMBERS = "set_members"
+ FREEFORM = "freeform"
+
+
+_NUMERIC_INTENTS = {AnswerIntent.COUNT, AnswerIntent.MONEY_SUM, AnswerIntent.DURATION}
+
+
+@dataclass
+class QueryPlan:
+ intent: AnswerIntent
+ rewritten_query: str
+ search_limit: int
+ context_limit: int
+ should_map_reduce: bool
+
+
+def classify_answer_intent(question: str, question_type: str = "") -> AnswerIntent:
+ q = str(question or "").strip().lower()
+ qtype = str(question_type or "").strip().lower()
+
+ if not q:
+ return AnswerIntent.FREEFORM
+
+ # DURATION must be checked BEFORE money — "how much time did I spend" is duration, not money.
+ if re.search(r"\b(how long|duration|elapsed|time spent|total years?|total months?)\b", q):
+ return AnswerIntent.DURATION
+ if re.search(r"\bhow much time\b", q):
+ return AnswerIntent.DURATION
+
+ # "How many days/months/weeks ago" or "how many days between X and Y"
+ # are temporal-duration questions, not counting questions.
+ if re.search(r"\bhow many\s+(days?|weeks?|months?|years?|hours?|minutes?)\b", q):
+ return AnswerIntent.DURATION
+
+ # Money: strict signals only. "spend/spent" + time words is DURATION (caught above).
+ # Exclude "days/hours spent" — that's DURATION, not money.
+ money_signals = bool(
+ re.search(r"\b(money|dollars?|usd|spent|spend|cost|price)\b", q)
+ )
+ if money_signals and re.search(r"\b(how much|total|sum|spent|cost)\b", q):
+ # "total number of days spent" is DURATION, not money
+ if re.search(r"\b(days?|weeks?|months?|years?|hours?|minutes?)\s+(spent|in)\b", q):
+ return AnswerIntent.DURATION
+ # "what percentage" is FREEFORM, not money
+ if re.search(r"\bpercentage\b", q):
+ return AnswerIntent.FREEFORM
+ return AnswerIntent.MONEY_SUM
+
+ # "How many [quantity-unit]" asks for a numeric VALUE, not a COUNT of distinct items.
+ # COUNT = enumerate distinct items (cities, books, sports, doctors)
+ # FREEFORM = read/compute a numeric value (points, pages, followers, views, copies)
+ # Allow up to 3 modifier words between "how many" and the unit:
+ # "how many Instagram followers" / "how many rare items" / "how many completed videos"
+ _QUANTITY_UNITS = (
+ r"points?|dollars?|credits?|tokens?|calories?|miles?|steps?|pounds?"
+ r"|kilograms?|grams?|liters?|gallons?|servings?|reps?|sets?"
+ r"|pages?|episodes?|copies?|followers?|views?|comments?|stars?"
+ r"|likes?|shares?|subscribers?|downloads?|posts?"
+ r"|people|persons?|viewers?"
+ r"|videos?|items?|photos?|images?|songs?|tracks?|chapters?"
+ r"|members?|participants?|attendees?|guests?|tickets?"
+ )
+ _QUANTITY_UNITS_RE = re.compile(
+ r"\bhow many\s+(?:\w+\s+){0,3}(" + _QUANTITY_UNITS + r")\b"
+ )
+ if _QUANTITY_UNITS_RE.search(q):
+ return AnswerIntent.FREEFORM
+
+ # "[noun] count" pattern: "page count", "word count", "calorie count", "step count"
+ if re.search(r"\b(page|word|calorie|step|follower|subscriber|view|video|item)\s+count\b", q):
+ return AnswerIntent.FREEFORM
+
+ # "What is the total number of [quantity]" needs arithmetic (sum), not item counting.
+ _TOTAL_QUANTITY_RE = re.compile(
+ r"\btotal\s+number\s+of\s+(?:\w+\s+){0,2}(" + _QUANTITY_UNITS + r")\b"
+ )
+ if _TOTAL_QUANTITY_RE.search(q):
+ return AnswerIntent.FREEFORM
+
+ # Knowledge-update questions need LATEST intent — must check BEFORE "how many"
+ # to prevent "How many times did X change?" from being routed to COUNT
+ if "knowledge-update" in qtype:
+ return AnswerIntent.LATEST
+
+ # "How much" alone (without money signals) is a value question, not a count.
+ # "How much is the painting worth?" → FREEFORM
+ # "How much will I save?" → FREEFORM
+ if re.search(r"\bhow much\b", q):
+ return AnswerIntent.FREEFORM
+
+ if re.search(r"\b(how many|number of|count|total number)\b", q):
+ return AnswerIntent.COUNT
+
+ # Superlative questions FIRST: "which X the most/least/first/last"
+ # Must come before generic LATEST check — "the most last month" is COUNT, not LATEST.
+ if _SUPERLATIVE_RE.search(q):
+ # Frequency superlatives → COUNT (need argmax)
+ if re.search(r"\b(the most|most often|most frequent)\b", q, re.I):
+ return AnswerIntent.COUNT
+ # Temporal superlatives → LATEST (ordering by date)
+ if re.search(r"\b(most recent|first|earliest|latest|newest|oldest)\b", q, re.I):
+ return AnswerIntent.LATEST
+
+ if _RECENT_QUERY_RE.search(q):
+ return AnswerIntent.LATEST
+
+ if re.search(r"\b(which|what are|list|name all)\b", q):
+ return AnswerIntent.SET_MEMBERS
+
+ return AnswerIntent.FREEFORM
+
+
+def rewrite_query_for_intent(question: str, intent: AnswerIntent) -> str:
+ q = str(question or "").strip()
+ if not q:
+ return q
+
+ if intent == AnswerIntent.COUNT:
+ # If the original question asks "which X the most", the count is for argmax
+ if _SUPERLATIVE_RE.search(q):
+ return (
+ f"{q}\nList each occurrence of each distinct item across ALL sessions. "
+ f"Count how many times each item appears. "
+ f"Return the item that appears MOST frequently as the answer."
+ )
+ return f"{q}\nList each distinct relevant item and return the final total count."
+ if intent == AnswerIntent.MONEY_SUM:
+ return f"{q}\nExtract every relevant monetary amount and compute one final total."
+ if intent == AnswerIntent.DURATION:
+ return f"{q}\nExtract each relevant duration and compute one final total duration."
+ if intent == AnswerIntent.LATEST:
+ return (
+ f"{q}\nExtract the date or time each item was started/mentioned/occurred. "
+ f"Order by date/time and return ONLY the most recent one as the answer."
+ )
+ if intent == AnswerIntent.SET_MEMBERS:
+ return f"{q}\nList all distinct relevant items with deduplication."
+ # FREEFORM: add derivation instruction for computation questions
+ if re.search(r"\bwhat time\b", q, re.I):
+ return (
+ f"{q}\nIf the exact answer is not stated directly, COMPUTE it from the "
+ f"available facts (e.g., if wake-up is 7:00 AM and 15 minutes earlier "
+ f"on certain days, the answer is 6:45 AM). Always give the final computed value."
+ )
+ return q
+
+
+def build_query_plan(
+ question: str,
+ question_type: str,
+ *,
+ base_search_limit: int,
+ base_context_limit: int,
+ search_cap: int = 30,
+ context_cap: int = 20,
+) -> QueryPlan:
+ intent = classify_answer_intent(question, question_type)
+ rewritten = rewrite_query_for_intent(question, intent)
+
+ search_limit = max(1, int(base_search_limit))
+ context_limit = max(1, int(base_context_limit))
+
+ should_expand = intent in {
+ AnswerIntent.COUNT,
+ AnswerIntent.MONEY_SUM,
+ AnswerIntent.DURATION,
+ AnswerIntent.LATEST,
+ AnswerIntent.SET_MEMBERS,
+ }
+ # Also expand FREEFORM questions that need multi-fact derivation.
+ # "how many" questions may be classified FREEFORM (e.g., "how many items"
+ # hits the quantity-unit filter) but still need map-reduce to aggregate
+ # across multiple sessions. Same for multi-session aggregation patterns.
+ if not should_expand and intent == AnswerIntent.FREEFORM:
+ q_lower = question.lower()
+ if re.search(
+ r"\b(what time|what day|what date|at what age|how many|how much"
+ r"|total number|in total|all the|list all|what are all)\b",
+ q_lower,
+ ):
+ should_expand = True
+
+ if should_expand:
+ search_limit = max(search_limit, min(max(search_limit, int(search_cap)), search_limit + 10))
+ context_limit = max(context_limit, min(max(context_limit, int(context_cap)), context_limit + 6))
+ search_limit = max(search_limit, context_limit)
+
+ return QueryPlan(
+ intent=intent,
+ rewritten_query=rewritten,
+ search_limit=search_limit,
+ context_limit=context_limit,
+ should_map_reduce=should_expand,
+ )
+
+
+def build_map_candidates(
+ results: Sequence[Dict[str, Any]],
+ *,
+ max_candidates: int,
+ per_candidate_max_chars: int,
+) -> List[Dict[str, str]]:
+ out: List[Dict[str, str]] = []
+ for row in list(results)[: max(1, int(max_candidates))]:
+ metadata = row.get("metadata") or {}
+ session_id = str(metadata.get("session_id") or "").strip()
+ memory_text = str(row.get("memory") or "")
+ if not session_id and memory_text:
+ match = _SESSION_ID_RE.search(memory_text)
+ if match:
+ session_id = match.group("session_id")
+ session_date = str(
+ metadata.get("event_time")
+ or metadata.get("session_date")
+ or metadata.get("event_date")
+ or ""
+ ).strip()
+ evidence = str(row.get("evidence_text") or "").strip() or memory_text
+ if not evidence.strip():
+ continue
+
+ out.append(
+ {
+ "session_id": session_id or "unknown",
+ "session_date": session_date,
+ "text": _truncate_text(evidence, per_candidate_max_chars),
+ }
+ )
+ return out
+
+
+def _truncate_text(text: str, max_chars: int) -> str:
+ if max_chars <= 0:
+ return ""
+ text = str(text or "")
+ if len(text) <= max_chars:
+ return text
+ return text[: max_chars - 3].rstrip() + "..."
+
+
+def _extract_json_payload(raw: str) -> Optional[Any]:
+ if not raw:
+ return None
+ raw = raw.strip()
+
+ try:
+ return json.loads(raw)
+ except json.JSONDecodeError:
+ pass
+
+ obj_match = re.search(r"\{[\s\S]*\}", raw)
+ if obj_match:
+ candidate = obj_match.group(0)
+ try:
+ return json.loads(candidate)
+ except json.JSONDecodeError:
+ pass
+
+ arr_match = re.search(r"\[[\s\S]*\]", raw)
+ if arr_match:
+ candidate = arr_match.group(0)
+ try:
+ return json.loads(candidate)
+ except json.JSONDecodeError:
+ pass
+
+ return None
+
+
+def _normalize_bool(value: Any) -> bool:
+ if isinstance(value, bool):
+ return value
+ if isinstance(value, (int, float)):
+ return bool(value)
+ if isinstance(value, str):
+ return value.strip().lower() in {"1", "true", "yes", "y"}
+ return False
+
+
+def _to_float(value: Any) -> Optional[float]:
+ if value is None:
+ return None
+ if isinstance(value, (int, float)):
+ return float(value)
+ text = str(value).strip()
+ if not text:
+ return None
+ text = text.replace(",", "")
+ if text.startswith("$"):
+ text = text[1:]
+ try:
+ return float(text)
+ except ValueError:
+ return None
+
+
+def _parse_event_datetime(value: Any) -> Optional[datetime]:
+ if value is None:
+ return None
+ if isinstance(value, datetime):
+ dt = value
+ elif isinstance(value, date):
+ dt = datetime.combine(value, datetime.min.time())
+ else:
+ text = str(value).strip()
+ if not text:
+ return None
+ if text.endswith("Z"):
+ text = text[:-1] + "+00:00"
+ try:
+ dt = datetime.fromisoformat(text)
+ except ValueError:
+ date_match = re.match(r"^(\d{4}-\d{2}-\d{2})", text)
+ if not date_match:
+ return None
+ try:
+ d = date.fromisoformat(date_match.group(1))
+ except ValueError:
+ return None
+ dt = datetime.combine(d, datetime.min.time())
+
+ if dt.tzinfo is None:
+ dt = dt.replace(tzinfo=timezone.utc)
+ else:
+ dt = dt.astimezone(timezone.utc)
+ return dt
+
+
+def extract_atomic_facts(
+ *,
+ llm: Any,
+ question: str,
+ question_type: str,
+ question_date: str,
+ candidates: Sequence[Dict[str, str]],
+) -> List[Dict[str, Any]]:
+ if not candidates:
+ return []
+
+ candidate_blocks = []
+ for idx, c in enumerate(candidates, start=1):
+ candidate_blocks.append(
+ "\n".join(
+ [
+ f"[Candidate {idx}] session_id={c.get('session_id', 'unknown')} date={c.get('session_date', '')}",
+ c.get("text", ""),
+ ]
+ )
+ )
+
+ prompt = (
+ "You are a fact extraction engine for memory QA.\n"
+ "Extract only facts relevant to answering the question.\n"
+ "IMPORTANT: Deduplicate facts. If the same item/event appears in "
+ "multiple sessions, emit it ONCE with the canonical_key set.\n"
+ "canonical_key = a short lowercase identifier for the unique item "
+ "(e.g. 'boots_zara', 'blazer_dry_cleaning', 'project_alpha'). "
+ "Same real-world item across sessions MUST share the same canonical_key.\n"
+ "Return STRICT JSON only, no markdown.\n\n"
+ f"Question: {question}\n"
+ f"Question Type: {question_type or 'unknown'}\n"
+ f"Question Date: {question_date or 'unknown'}\n\n"
+ "Candidate Context:\n"
+ + "\n\n".join(candidate_blocks)
+ + "\n\n"
+ "Required JSON schema:\n"
+ "{\"facts\":["
+ "{"
+ "\"session_id\":\"string\","
+ "\"event_date\":\"YYYY-MM-DD or empty\","
+ "\"subject\":\"string\","
+ "\"predicate\":\"string\","
+ "\"value\":\"string\","
+ "\"numeric_value\":0,"
+ "\"unit\":\"string\","
+ "\"currency\":\"string\","
+ "\"canonical_key\":\"unique_item_id (REQUIRED, lowercase, e.g. boots_zara)\","
+ "\"relevant\":true"
+ "}"
+ "]}\n"
+ "Return an empty list if nothing relevant: {\"facts\":[]}"
+ )
+
+ try:
+ raw = str(llm.generate(prompt)).strip()
+ except Exception as exc:
+ logger.warning("Map-stage fact extraction failed: %s", exc)
+ return []
+
+ logger.info("Map-stage raw LLM response (first 800 chars): %s", raw[:800])
+ payload = _extract_json_payload(raw)
+ if payload is None:
+ logger.warning("Map-stage payload parse failed. Raw response (first 500 chars): %s", raw[:500])
+ return []
+
+ if isinstance(payload, list):
+ facts_raw = payload
+ elif isinstance(payload, dict):
+ facts_raw = payload.get("facts")
+ else:
+ facts_raw = None
+
+ if not isinstance(facts_raw, list):
+ logger.warning("Map-stage facts_raw is not a list: %s", type(facts_raw))
+ return []
+
+ logger.info("Map-stage extracted %d raw facts from LLM", len(facts_raw))
+ facts: List[Dict[str, Any]] = []
+ for row in facts_raw:
+ if not isinstance(row, dict):
+ continue
+ value = str(row.get("value") or "").strip()
+ subject = str(row.get("subject") or "").strip()
+ predicate = str(row.get("predicate") or "").strip()
+ if not value and not subject and not predicate:
+ continue
+
+ facts.append(
+ {
+ "session_id": str(row.get("session_id") or "").strip(),
+ "event_date": str(row.get("event_date") or "").strip(),
+ "subject": subject,
+ "predicate": predicate,
+ "value": value,
+ "numeric_value": _to_float(row.get("numeric_value")),
+ "unit": str(row.get("unit") or "").strip().lower(),
+ "currency": str(row.get("currency") or "").strip().upper(),
+ "canonical_key": str(row.get("canonical_key") or "").strip(),
+ "relevant": _normalize_bool(row.get("relevant", True)),
+ }
+ )
+
+ logger.info("Map-stage final facts: %d (relevant=%d)", len(facts), sum(1 for f in facts if _normalize_bool(f.get("relevant", True))))
+ if facts:
+ for i, f in enumerate(facts[:5]):
+ logger.info(" fact[%d]: subject=%s predicate=%s value=%s canonical_key=%s relevant=%s",
+ i, f.get("subject", ""), f.get("predicate", ""), f.get("value", ""), f.get("canonical_key", ""), f.get("relevant"))
+ return facts
+
+
+def _extract_money_value(text: str) -> Optional[float]:
+ if not text:
+ return None
+ m = _MONEY_RE.search(text)
+ if not m:
+ return None
+ whole = m.group(1).replace(",", "")
+ frac = m.group(2)
+ try:
+ if frac:
+ return float(f"{whole}.{frac}")
+ return float(whole)
+ except ValueError:
+ return None
+
+
+def _extract_duration_value(text: str) -> Optional[Tuple[float, str]]:
+ if not text:
+ return None
+ m = _DURATION_RE.search(text)
+ if not m:
+ return None
+ try:
+ return float(m.group(1)), m.group(2).lower()
+ except ValueError:
+ return None
+
+
+def _normalize_unit(unit: str) -> str:
+ unit = str(unit or "").strip().lower()
+ if unit.endswith("s"):
+ unit = unit[:-1]
+ aliases = {
+ "yr": "year",
+ "yrs": "year",
+ "hr": "hour",
+ "hrs": "hour",
+ "min": "minute",
+ "mins": "minute",
+ }
+ return aliases.get(unit, unit)
+
+
+def _duration_target_unit(question: str) -> str:
+ q = str(question or "").lower()
+ for unit in ("year", "month", "week", "day", "hour", "minute"):
+ if re.search(rf"\b{unit}s?\b", q):
+ return unit
+ return "day"
+
+
+def _convert_duration(value: float, src_unit: str, dst_unit: str) -> Optional[float]:
+ src = _normalize_unit(src_unit)
+ dst = _normalize_unit(dst_unit)
+ to_days = {
+ "year": 365.0,
+ "month": 30.0,
+ "week": 7.0,
+ "day": 1.0,
+ "hour": 1.0 / 24.0,
+ "minute": 1.0 / 1440.0,
+ }
+ if src not in to_days or dst not in to_days:
+ return None
+ return (value * to_days[src]) / to_days[dst]
+
+
+def reduce_atomic_facts(
+ *,
+ question: str,
+ intent: AnswerIntent,
+ facts: Sequence[Dict[str, Any]],
+) -> Tuple[Optional[str], Dict[str, Any]]:
+ relevant = [f for f in facts if _normalize_bool(f.get("relevant", True))]
+ meta: Dict[str, Any] = {
+ "fact_count": len(facts),
+ "relevant_fact_count": len(relevant),
+ "intent": intent.value,
+ }
+ if not relevant:
+ return None, meta
+
+ if intent == AnswerIntent.COUNT:
+ # Superlative COUNT (argmax): "which X the most" → return the most frequent VALUE
+ is_argmax = bool(_SUPERLATIVE_RE.search(question))
+ if is_argmax:
+ # Count occurrences of each distinct value
+ value_counts: Dict[str, int] = {}
+ value_display: Dict[str, str] = {} # lowercase → original case
+ for f in relevant:
+ val = str(f.get("value") or "").strip()
+ if not val:
+ continue
+ key = val.lower()
+ value_counts[key] = value_counts.get(key, 0) + 1
+ if key not in value_display:
+ value_display[key] = val
+ if not value_counts:
+ return None, meta
+ # Find the value with highest count
+ best_key = max(value_counts, key=value_counts.get)
+ best_count = value_counts[best_key]
+ meta["argmax_value"] = value_display[best_key]
+ meta["argmax_count"] = best_count
+ meta["value_distribution"] = {
+ value_display[k]: c for k, c in value_counts.items()
+ }
+ return value_display[best_key], meta
+
+ # Standard COUNT: count unique items
+ keys = set()
+ for f in relevant:
+ key = str(f.get("canonical_key") or "").strip().lower()
+ if not key:
+ # Build key from predicate + normalized value.
+ # Include predicate so "return boots" != "pick up boots".
+ val = str(f.get("value") or "").strip().lower()
+ pred = str(f.get("predicate") or "").strip().lower()
+ # Strip common prefixes that don't change identity
+ for prefix in ("new ", "a ", "an ", "the ", "my ", "pair of ", "some "):
+ if val.startswith(prefix):
+ val = val[len(prefix):]
+ parts = [p for p in (pred, val) if p]
+ key = " | ".join(parts) if parts else ""
+ if key:
+ keys.add(key)
+ if not keys:
+ return None, meta
+ meta["reduced_unique_keys"] = len(keys)
+ return str(len(keys)), meta
+
+ if intent == AnswerIntent.MONEY_SUM:
+ values: List[float] = []
+ for f in relevant:
+ amount = _to_float(f.get("numeric_value"))
+ if amount is None:
+ amount = _extract_money_value(str(f.get("value") or ""))
+ if amount is None:
+ continue
+ values.append(amount)
+ if not values:
+ return None, meta
+ total = sum(values)
+ meta["money_terms"] = len(values)
+ if abs(total - round(total)) < 1e-9:
+ return f"${int(round(total)):,}", meta
+ return f"${total:,.2f}", meta
+
+ if intent == AnswerIntent.DURATION:
+ target = _duration_target_unit(question)
+ values: List[float] = []
+ for f in relevant:
+ numeric = _to_float(f.get("numeric_value"))
+ unit = _normalize_unit(str(f.get("unit") or ""))
+ if numeric is None or not unit:
+ parsed = _extract_duration_value(str(f.get("value") or ""))
+ if parsed:
+ numeric, unit = parsed
+ unit = _normalize_unit(unit)
+ if numeric is None or not unit:
+ continue
+ converted = _convert_duration(float(numeric), unit, target)
+ if converted is None:
+ continue
+ values.append(converted)
+ if not values:
+ return None, meta
+ total = sum(values)
+ meta["duration_terms"] = len(values)
+ rounded = round(total, 2)
+ if abs(rounded - round(rounded)) < 1e-9:
+ rounded = int(round(rounded))
+ unit_out = target if rounded == 1 else f"{target}s"
+ return f"{rounded} {unit_out}", meta
+
+ if intent == AnswerIntent.LATEST:
+ dated: List[Tuple[datetime, Dict[str, Any]]] = []
+ for f in relevant:
+ dt = _parse_event_datetime(f.get("event_date"))
+ if dt is not None:
+ dated.append((dt, f))
+ if dated:
+ dated.sort(key=lambda x: x[0], reverse=True)
+ best = dated[0][1]
+ answer = str(best.get("value") or "").strip()
+ if answer:
+ return answer, meta
+ # fallback: first relevant value
+ for f in relevant:
+ answer = str(f.get("value") or "").strip()
+ if answer:
+ return answer, meta
+ return None, meta
+
+ if intent == AnswerIntent.SET_MEMBERS:
+ values = []
+ seen = set()
+ for f in relevant:
+ val = str(f.get("value") or "").strip()
+ if not val:
+ continue
+ key = val.lower()
+ if key in seen:
+ continue
+ seen.add(key)
+ values.append(val)
+ if values:
+ return ", ".join(values), meta
+ return None, meta
+
+ return None, meta
+
+
+def _extract_numeric_mentions(text: str) -> List[float]:
+ values: List[float] = []
+ if not text:
+ return values
+ for match in _MONEY_RE.finditer(str(text)):
+ whole = (match.group(1) or "").replace(",", "")
+ frac = match.group(2)
+ if not whole:
+ continue
+ try:
+ number = float(f"{whole}.{frac}") if frac else float(whole)
+ except ValueError:
+ continue
+ values.append(number)
+ return values
+
+
+def deterministic_inconsistency_check(
+ *,
+ question: str,
+ intent: AnswerIntent,
+ results: Sequence[Dict[str, Any]],
+ coverage: Optional[Dict[str, Any]] = None,
+) -> Dict[str, Any]:
+ """Detect deterministic evidence inconsistencies before map/reduce.
+
+ This is intentionally cheap and LLM-free.
+ """
+ reasons: List[str] = []
+ coverage_payload = dict(coverage or {})
+ coverage_sufficient = bool(coverage_payload.get("sufficient"))
+ if not coverage_sufficient:
+ reasons.append("coverage_insufficient")
+
+ if not results:
+ reasons.append("no_results")
+ return {"inconsistent": True, "reasons": reasons}
+
+ intent_value = intent.value if isinstance(intent, AnswerIntent) else str(intent or "")
+ top_rows = list(results)[:12]
+
+ if intent_value in {"count", "set_members"}:
+ numeric_candidates = set()
+ for row in top_rows:
+ text = str(row.get("evidence_text") or row.get("memory") or "")
+ for value in _extract_numeric_mentions(text):
+ if value >= 0:
+ numeric_candidates.add(round(float(value), 3))
+ if len(numeric_candidates) >= 2:
+ reasons.append("count_numeric_conflict")
+
+ if intent_value == "money_sum":
+ amounts = set()
+ for row in top_rows:
+ text = str(row.get("evidence_text") or row.get("memory") or "")
+ for value in _extract_numeric_mentions(text):
+ amounts.add(round(float(value), 2))
+ if len(amounts) >= 2:
+ reasons.append("money_terms_multiple")
+
+ if intent_value == "duration":
+ units = set()
+ for row in top_rows:
+ text = str(row.get("evidence_text") or row.get("memory") or "")
+ parsed = _extract_duration_value(text)
+ if parsed:
+ units.add(_normalize_unit(parsed[1]))
+ if len(units) >= 2:
+ reasons.append("duration_unit_mixed")
+
+ if intent_value == "latest":
+ dated_hits = int(coverage_payload.get("dated_fact_count", 0) or 0)
+ if dated_hits <= 0:
+ # fallback scan for explicit dates in evidence
+ has_date_like = False
+ for row in top_rows:
+ text = str(row.get("evidence_text") or row.get("memory") or "")
+ if re.search(r"\b\d{4}-\d{2}-\d{2}\b", text):
+ has_date_like = True
+ break
+ if not has_date_like:
+ reasons.append("latest_missing_dated_evidence")
+
+ return {"inconsistent": bool(reasons), "reasons": reasons}
+
+
+def render_fact_context(facts: Sequence[Dict[str, Any]], max_facts: int = 20) -> str:
+ lines: List[str] = []
+ for f in list(facts)[: max(1, int(max_facts))]:
+ if not _normalize_bool(f.get("relevant", True)):
+ continue
+ parts = []
+ if f.get("event_date"):
+ parts.append(f"date={f['event_date']}")
+ if f.get("session_id"):
+ parts.append(f"session={f['session_id']}")
+ label = " ".join(parts)
+ value = str(f.get("value") or "").strip()
+ subj = str(f.get("subject") or "").strip()
+ pred = str(f.get("predicate") or "").strip()
+ body = " | ".join(x for x in [subj, pred, value] if x)
+ if not body:
+ continue
+ if label:
+ lines.append(f"- [{label}] {body}")
+ else:
+ lines.append(f"- {body}")
+ return "\n".join(lines)
+
+
+def is_low_confidence_answer(answer: str) -> bool:
+ return bool(_LOW_CONFIDENCE_RE.search(str(answer or "").strip()))
+
+
+def should_override_with_reducer(intent: AnswerIntent) -> bool:
+ return intent in _NUMERIC_INTENTS or intent == AnswerIntent.LATEST
+
+
+# ---------------------------------------------------------------------------
+# Event-first reducer — zero LLM cost
+# ---------------------------------------------------------------------------
+
+
+def reduce_from_episodic_events(
+ *,
+ question: str,
+ intent: AnswerIntent,
+ events: Sequence[Dict[str, Any]],
+) -> Tuple[Optional[str], Dict[str, Any]]:
+ """Reduce episodic events into an answer — zero LLM cost.
+
+ Works directly from event dicts produced by episodic_index rather than
+ LLM-extracted atomic facts. Uses the same deterministic logic as
+ reduce_atomic_facts() but adapted for the event schema.
+ """
+ meta: Dict[str, Any] = {
+ "event_count": len(events),
+ "intent": intent.value,
+ "source": "episodic_events",
+ }
+ if not events:
+ return None, meta
+
+ if intent == AnswerIntent.COUNT:
+ keys: set = set()
+ for ev in events:
+ key = str(ev.get("canonical_key") or "").strip().lower()
+ if not key:
+ value = str(ev.get("value_text") or "").strip().lower()
+ if value:
+ key = value
+ if key:
+ keys.add(key)
+ if not keys:
+ return None, meta
+ meta["reduced_unique_keys"] = len(keys)
+ return str(len(keys)), meta
+
+ if intent == AnswerIntent.MONEY_SUM:
+ values: List[float] = []
+ for ev in events:
+ if str(ev.get("event_type") or "").lower() != "money":
+ continue
+ amount = _to_float(ev.get("value_num"))
+ if amount is None:
+ amount = _extract_money_value(str(ev.get("value_text") or ""))
+ if amount is not None:
+ values.append(amount)
+ if not values:
+ return None, meta
+ total = sum(values)
+ meta["money_terms"] = len(values)
+ if abs(total - round(total)) < 1e-9:
+ return f"${int(round(total)):,}", meta
+ return f"${total:,.2f}", meta
+
+ if intent == AnswerIntent.DURATION:
+ target = _duration_target_unit(question)
+ values = []
+ for ev in events:
+ if str(ev.get("event_type") or "").lower() != "duration":
+ continue
+ numeric = _to_float(ev.get("value_num"))
+ unit = _normalize_unit(str(ev.get("value_unit") or ""))
+ if numeric is None or not unit:
+ parsed = _extract_duration_value(str(ev.get("value_text") or ""))
+ if parsed:
+ numeric, unit = parsed
+ unit = _normalize_unit(unit)
+ if numeric is None or not unit:
+ continue
+ converted = _convert_duration(float(numeric), unit, target)
+ if converted is not None:
+ values.append(converted)
+ if not values:
+ return None, meta
+ total = sum(values)
+ meta["duration_terms"] = len(values)
+ rounded = round(total, 2)
+ if abs(rounded - round(rounded)) < 1e-9:
+ rounded = int(round(rounded))
+ unit_out = target if rounded == 1 else f"{target}s"
+ return f"{rounded} {unit_out}", meta
+
+ if intent == AnswerIntent.LATEST:
+ dated: List[Tuple[datetime, Dict[str, Any]]] = []
+ for ev in events:
+ dt = _parse_event_datetime(
+ ev.get("normalized_time_start") or ev.get("event_time")
+ )
+ if dt is not None:
+ dated.append((dt, ev))
+ if dated:
+ dated.sort(key=lambda x: x[0], reverse=True)
+ best = dated[0][1]
+ answer = str(best.get("value_text") or "").strip()
+ if answer:
+ return answer, meta
+ # fallback: first event value
+ for ev in events:
+ answer = str(ev.get("value_text") or "").strip()
+ if answer:
+ return answer, meta
+ return None, meta
+
+ if intent == AnswerIntent.SET_MEMBERS:
+ values_list: List[str] = []
+ seen: set = set()
+ for ev in events:
+ val = str(ev.get("value_text") or "").strip()
+ if not val:
+ continue
+ key = val.lower()
+ if key in seen:
+ continue
+ seen.add(key)
+ values_list.append(val)
+ if values_list:
+ return ", ".join(values_list), meta
+ return None, meta
+
+ return None, meta
diff --git a/dhee/core/buddhi.py b/dhee/core/buddhi.py
new file mode 100644
index 0000000..649653d
--- /dev/null
+++ b/dhee/core/buddhi.py
@@ -0,0 +1,934 @@
+"""Buddhi — Proactive cognition layer that turns any agent into a HyperAgent.
+
+Inspired by Meta's DGM-Hyperagents (Zhang et al., 2026): agents that emergently
+develop persistent memory and performance tracking achieve self-accelerating
+improvement that transfers across domains.
+
+DGM-H agents had to DISCOVER they needed these capabilities. Dhee provides them
+as infrastructure — so any agent (Claude, GPT, Gemini, custom) gets HyperAgent
+capabilities from day one.
+
+Mapping from DGM-H → Dhee:
+ PerformanceTracker → Samskara (12 signal types) + Viveka (5-kosha assessment)
+ Persistent Memory → Engram extraction + insight synthesis + skill archive
+ Archive → Skill store (L1 procedures, grounded in trajectories)
+ Meta-agent → Buddhi (this module) — proactive, not reactive
+
+The key API contract:
+ Agent calls `hyper_context(task_description)` at session start →
+ Dhee returns EVERYTHING the agent needs to be a HyperAgent:
+ - Performance history for this task type
+ - Synthesized insights from prior runs (not raw memories)
+ - Relevant skills/strategies with confidence scores
+ - Proactive warnings (known pitfalls, regressions)
+ - Pending intentions (stored future triggers)
+
+Zero LLM calls for the hot path. Pure pattern matching + statistics.
+"""
+
+from __future__ import annotations
+
+import json
+import logging
+import os
+import re
+import time
+import uuid
+from dataclasses import dataclass, field
+from datetime import datetime, timezone
+from typing import Any, Dict, List, Optional, Sequence, Tuple
+
+logger = logging.getLogger(__name__)
+
+
+# ---------------------------------------------------------------------------
+# Data structures
+# ---------------------------------------------------------------------------
+
+@dataclass
+class Insight:
+ """A synthesized insight from past performance — NOT a raw memory.
+
+ DGM-H's key finding: agents that store causal hypotheses and
+ forward-looking plans (not just scores) transfer across domains.
+ """
+ id: str
+ user_id: str
+ content: str # "Strict criteria + balanced scoring works best"
+ insight_type: str # "causal" | "warning" | "strategy" | "pattern"
+ source_task_types: List[str] # task types this was derived from
+ confidence: float # 0-1, updated by outcomes
+ created_at: str
+ last_validated: str # when this insight last proved useful
+ validation_count: int # how many times validated
+ invalidation_count: int # how many times contradicted
+ tags: List[str]
+
+ def strength(self) -> float:
+ """Net strength: validated - invalidated, normalized."""
+ total = self.validation_count + self.invalidation_count
+ if total == 0:
+ return self.confidence
+ return self.confidence * (self.validation_count / total)
+
+ def to_dict(self) -> Dict[str, Any]:
+ return {
+ "id": self.id,
+ "content": self.content,
+ "type": self.insight_type,
+ "confidence": round(self.confidence, 3),
+ "strength": round(self.strength(), 3),
+ "source_task_types": self.source_task_types,
+ "validations": self.validation_count,
+ "tags": self.tags,
+ }
+
+
+@dataclass
+class Intention:
+ """A stored future trigger — prospective memory.
+
+ "Remember to run tests after modifying the auth module"
+ "Deploy when the PR is approved"
+ """
+ id: str
+ user_id: str
+ description: str
+ trigger_keywords: List[str] # matched against queries/content
+ trigger_after: Optional[str] # ISO timestamp deadline
+ action_type: str # "remind" | "suggest" | "warn"
+ action_payload: str # what to surface when triggered
+ status: str # "active" | "triggered" | "expired"
+ created_at: str
+ triggered_at: Optional[str]
+
+ def to_dict(self) -> Dict[str, Any]:
+ return {
+ "id": self.id,
+ "description": self.description,
+ "action_type": self.action_type,
+ "action_payload": self.action_payload,
+ "status": self.status,
+ "trigger_keywords": self.trigger_keywords,
+ "trigger_after": self.trigger_after,
+ }
+
+
+@dataclass
+class PerformanceSnapshot:
+ """Performance record for a task type — the PerformanceTracker from DGM-H."""
+ task_type: str
+ scores: List[float]
+ timestamps: List[str]
+ trend: float # positive = improving, negative = regressing
+ best_score: float
+ worst_score: float
+ avg_score: float
+ total_attempts: int
+
+ def to_dict(self) -> Dict[str, Any]:
+ return {
+ "task_type": self.task_type,
+ "trend": round(self.trend, 4),
+ "best_score": round(self.best_score, 3),
+ "avg_score": round(self.avg_score, 3),
+ "total_attempts": self.total_attempts,
+ "recent_scores": [round(s, 3) for s in self.scores[-5:]],
+ "improving": self.trend > 0,
+ }
+
+
+@dataclass
+class HyperContext:
+ """Everything an agent needs to be a HyperAgent.
+
+ Returned by buddhi.get_hyper_context() — the single entry point
+ that replaces the passive engram_context tool.
+ """
+ # Who
+ user_id: str
+ session_id: Optional[str]
+
+ # Last session state
+ last_session: Optional[Dict[str, Any]]
+
+ # Performance context (DGM-H's PerformanceTracker)
+ performance: List[PerformanceSnapshot]
+
+ # Synthesized insights (DGM-H's persistent memory)
+ insights: List[Insight]
+
+ # Relevant skills/strategies from the archive
+ skills: List[Dict[str, Any]]
+
+ # Pending intentions (prospective memory)
+ intentions: List[Intention]
+
+ # Proactive warnings
+ warnings: List[str]
+
+ # Top relevant memories (context)
+ memories: List[Dict[str, Any]]
+
+ def to_dict(self) -> Dict[str, Any]:
+ return {
+ "user_id": self.user_id,
+ "session_id": self.session_id,
+ "last_session": self.last_session,
+ "performance": [p.to_dict() for p in self.performance],
+ "insights": [i.to_dict() for i in self.insights],
+ "skills": self.skills[:5],
+ "intentions": [i.to_dict() for i in self.intentions],
+ "warnings": self.warnings,
+ "memories": [
+ {"id": m.get("id"), "memory": m.get("memory", "")[:500],
+ "strength": m.get("strength", 1.0)}
+ for m in self.memories[:10]
+ ],
+ "meta": {
+ "n_insights": len(self.insights),
+ "n_active_intentions": len(self.intentions),
+ "n_warnings": len(self.warnings),
+ "performance_tracked": len(self.performance) > 0,
+ },
+ }
+
+
+# ---------------------------------------------------------------------------
+# Intention detection patterns
+# ---------------------------------------------------------------------------
+
+_INTENTION_PATTERNS = [
+ # "remember to X when/after/before Y"
+ re.compile(
+ r"(?:remember|remind|don't forget|make sure)\s+(?:to\s+)?(.+?)"
+ r"\s+(?:when|after|before|if|once)\s+(.+)",
+ re.IGNORECASE,
+ ),
+ # "I need to X after Y"
+ re.compile(
+ r"(?:I|we)\s+(?:need|want|should|must|have)\s+to\s+(.+?)"
+ r"\s+(?:after|before|when|once)\s+(.+)",
+ re.IGNORECASE,
+ ),
+ # "todo: X" / "TODO X"
+ re.compile(r"(?:todo|TODO|fixme|FIXME|hack|HACK)[:;]?\s+(.+)", re.IGNORECASE),
+]
+
+
+# ---------------------------------------------------------------------------
+# Buddhi — the proactive cognition layer
+# ---------------------------------------------------------------------------
+
+class Buddhi:
+ """Proactive cognition that turns any agent into a HyperAgent.
+
+ Not a gateway or filter. A parallel intelligence that:
+ 1. Observes the memory pipeline (store/search signals)
+ 2. Extracts insights from outcomes (not just stores data)
+ 3. Tracks performance trends per task type
+ 4. Stores and triggers intentions (prospective memory)
+ 5. Pushes context proactively (hyper_context)
+
+ Zero LLM calls on the hot path. Fast and cheap.
+ """
+
+ def __init__(self, data_dir: Optional[str] = None):
+ self._data_dir = data_dir or os.path.join(
+ os.path.expanduser("~"), ".dhee", "buddhi"
+ )
+ os.makedirs(self._data_dir, exist_ok=True)
+
+ # In-memory stores, loaded from disk
+ self._insights: Dict[str, Insight] = {}
+ self._intentions: Dict[str, Intention] = {}
+ self._performance: Dict[str, List[Dict[str, Any]]] = {} # task_type -> records
+ self._query_sequences: Dict[str, List[str]] = {} # user_id -> recent queries
+
+ self._load_state()
+
+ # ------------------------------------------------------------------
+ # Core API: The HyperAgent entry point
+ # ------------------------------------------------------------------
+
+ def get_hyper_context(
+ self,
+ user_id: str = "default",
+ task_description: Optional[str] = None,
+ memory=None,
+ ) -> HyperContext:
+ """The single call that turns any agent into a HyperAgent.
+
+ Called at session start or when context is needed. Returns
+ everything: performance, insights, skills, intentions, warnings.
+ """
+ # 1. Last session
+ last_session = None
+ if memory and hasattr(memory, "get_last_session_digest"):
+ try:
+ last_session = memory.get_last_session_digest(user_id=user_id)
+ except Exception:
+ pass
+
+ # 2. Performance snapshots for relevant task types
+ performance = self._get_performance_snapshots(user_id, task_description)
+
+ # 3. Synthesized insights (filtered by relevance if task given)
+ insights = self._get_relevant_insights(user_id, task_description)
+
+ # 4. Relevant skills
+ skills = []
+ if memory and task_description and hasattr(memory, "skill_store"):
+ try:
+ store = memory.skill_store
+ if store:
+ results = store.search(task_description, limit=5)
+ skills = [
+ {
+ "name": r.get("name", ""),
+ "description": r.get("description", ""),
+ "confidence": r.get("confidence", 0.5),
+ "used_count": r.get("used_count", 0),
+ }
+ for r in (results if isinstance(results, list) else [])
+ ]
+ except Exception:
+ pass
+
+ # 5. Check pending intentions
+ triggered = self._check_intentions(user_id, task_description)
+
+ # 6. Generate proactive warnings
+ warnings = self._generate_warnings(performance, insights)
+
+ # 7. Top memories
+ memories = []
+ if memory:
+ try:
+ if task_description:
+ result = memory.search(
+ query=task_description, user_id=user_id, limit=10
+ )
+ memories = result.get("results", [])
+ else:
+ result = memory.get_all(user_id=user_id, limit=10)
+ memories = result.get("results", [])
+ except Exception:
+ pass
+
+ # 8. Track query sequence (for future pattern prediction)
+ if task_description:
+ seq = self._query_sequences.setdefault(user_id, [])
+ seq.append(task_description[:200])
+ if len(seq) > 50:
+ self._query_sequences[user_id] = seq[-50:]
+
+ return HyperContext(
+ user_id=user_id,
+ session_id=str(uuid.uuid4()),
+ last_session=last_session,
+ performance=performance,
+ insights=insights,
+ skills=skills,
+ intentions=triggered,
+ warnings=warnings,
+ memories=memories,
+ )
+
+ # ------------------------------------------------------------------
+ # Performance tracking (DGM-H's PerformanceTracker)
+ # ------------------------------------------------------------------
+
+ def record_outcome(
+ self,
+ user_id: str,
+ task_type: str,
+ score: float,
+ metadata: Optional[Dict[str, Any]] = None,
+ ) -> Optional[Insight]:
+ """Record a task outcome and check for emergent insights.
+
+ This is the core feedback signal. Every time an agent completes
+ a task, it reports the outcome. Buddhi:
+ 1. Records the score
+ 2. Checks for performance trends
+ 3. Auto-generates insights when patterns emerge
+ """
+ key = f"{user_id}:{task_type}"
+ records = self._performance.setdefault(key, [])
+ records.append({
+ "score": score,
+ "timestamp": datetime.now(timezone.utc).isoformat(),
+ "metadata": metadata or {},
+ })
+
+ # Keep bounded
+ if len(records) > 200:
+ self._performance[key] = records[-200:]
+
+ self._save_performance()
+
+ # Check for emergent insight
+ return self._check_for_insight(user_id, task_type, records)
+
+ def _get_performance_snapshots(
+ self, user_id: str, task_description: Optional[str]
+ ) -> List[PerformanceSnapshot]:
+ """Build performance snapshots for relevant task types."""
+ snapshots = []
+ prefix = f"{user_id}:"
+
+ for key, records in self._performance.items():
+ if not key.startswith(prefix):
+ continue
+ task_type = key[len(prefix):]
+ if not records:
+ continue
+
+ scores = [r["score"] for r in records]
+ timestamps = [r["timestamp"] for r in records]
+
+ # Compute trend (moving average delta)
+ trend = 0.0
+ if len(scores) >= 4:
+ window = min(5, len(scores) // 2)
+ recent = sum(scores[-window:]) / window
+ older = sum(scores[-window * 2:-window]) / window
+ trend = recent - older
+
+ snapshots.append(PerformanceSnapshot(
+ task_type=task_type,
+ scores=scores,
+ timestamps=timestamps,
+ trend=trend,
+ best_score=max(scores),
+ worst_score=min(scores),
+ avg_score=sum(scores) / len(scores),
+ total_attempts=len(scores),
+ ))
+
+ # Sort by relevance to task_description (keyword overlap)
+ if task_description:
+ task_words = set(task_description.lower().split())
+ snapshots.sort(
+ key=lambda s: len(task_words & set(s.task_type.lower().split())),
+ reverse=True,
+ )
+
+ return snapshots
+
+ def _check_for_insight(
+ self, user_id: str, task_type: str, records: List[Dict]
+ ) -> Optional[Insight]:
+ """Auto-generate insights when patterns emerge in performance data.
+
+ This is what DGM-H agents emergently learned to do — synthesize
+ causal hypotheses from performance history. We do it automatically.
+ """
+ if len(records) < 3:
+ return None
+
+ scores = [r["score"] for r in records]
+ latest = scores[-1]
+ prev = scores[-2]
+
+ # Detect regression
+ if len(scores) >= 3 and latest < prev and latest < scores[-3]:
+ # Two consecutive drops = regression warning
+ insight = Insight(
+ id=str(uuid.uuid4()),
+ user_id=user_id,
+ content=(
+ f"Regression detected in '{task_type}': "
+ f"scores dropped {scores[-3]:.2f} → {prev:.2f} → {latest:.2f}. "
+ f"Recent changes may have caused degradation."
+ ),
+ insight_type="warning",
+ source_task_types=[task_type],
+ confidence=0.7,
+ created_at=datetime.now(timezone.utc).isoformat(),
+ last_validated=datetime.now(timezone.utc).isoformat(),
+ validation_count=1,
+ invalidation_count=0,
+ tags=["regression", "auto-detected", task_type],
+ )
+ self._insights[insight.id] = insight
+ self._save_insights()
+ return insight
+
+ # Detect breakthrough (new best after plateau)
+ if len(scores) >= 5:
+ recent_best = max(scores[-3:])
+ prior_best = max(scores[:-3])
+ if recent_best > prior_best * 1.1: # 10% improvement
+ insight = Insight(
+ id=str(uuid.uuid4()),
+ user_id=user_id,
+ content=(
+ f"Breakthrough in '{task_type}': "
+ f"score {recent_best:.2f} exceeds prior best {prior_best:.2f}. "
+ f"Current approach is working — continue this direction."
+ ),
+ insight_type="pattern",
+ source_task_types=[task_type],
+ confidence=0.8,
+ created_at=datetime.now(timezone.utc).isoformat(),
+ last_validated=datetime.now(timezone.utc).isoformat(),
+ validation_count=1,
+ invalidation_count=0,
+ tags=["breakthrough", "auto-detected", task_type],
+ )
+ self._insights[insight.id] = insight
+ self._save_insights()
+ return insight
+
+ return None
+
+ # ------------------------------------------------------------------
+ # Insight management
+ # ------------------------------------------------------------------
+
+ def add_insight(
+ self,
+ user_id: str,
+ content: str,
+ insight_type: str = "strategy",
+ source_task_types: Optional[List[str]] = None,
+ confidence: float = 0.7,
+ tags: Optional[List[str]] = None,
+ ) -> Insight:
+ """Explicitly add an insight (from agent reflection or user feedback)."""
+ insight = Insight(
+ id=str(uuid.uuid4()),
+ user_id=user_id,
+ content=content,
+ insight_type=insight_type,
+ source_task_types=source_task_types or [],
+ confidence=confidence,
+ created_at=datetime.now(timezone.utc).isoformat(),
+ last_validated=datetime.now(timezone.utc).isoformat(),
+ validation_count=0,
+ invalidation_count=0,
+ tags=tags or [],
+ )
+ self._insights[insight.id] = insight
+ self._save_insights()
+ return insight
+
+ def validate_insight(self, insight_id: str, validated: bool = True) -> None:
+ """Mark an insight as validated (useful) or invalidated (wrong)."""
+ insight = self._insights.get(insight_id)
+ if not insight:
+ return
+ if validated:
+ insight.validation_count += 1
+ insight.last_validated = datetime.now(timezone.utc).isoformat()
+ insight.confidence = min(1.0, insight.confidence + 0.05)
+ else:
+ insight.invalidation_count += 1
+ insight.confidence = max(0.0, insight.confidence - 0.1)
+ self._save_insights()
+
+ def _get_relevant_insights(
+ self, user_id: str, task_description: Optional[str]
+ ) -> List[Insight]:
+ """Get insights relevant to a task, sorted by strength."""
+ user_insights = [
+ i for i in self._insights.values()
+ if i.user_id == user_id and i.strength() > 0.1
+ ]
+
+ if task_description:
+ task_words = set(task_description.lower().split())
+ # Score by tag/content overlap
+ scored = []
+ for insight in user_insights:
+ text_words = set(insight.content.lower().split())
+ tag_words = set(w.lower() for t in insight.tags for w in t.split())
+ overlap = len(task_words & (text_words | tag_words))
+ scored.append((insight, overlap + insight.strength()))
+ scored.sort(key=lambda x: x[1], reverse=True)
+ return [i for i, _ in scored[:10]]
+
+ # No task context — return strongest
+ user_insights.sort(key=lambda i: i.strength(), reverse=True)
+ return user_insights[:10]
+
+ # ------------------------------------------------------------------
+ # Intention management (prospective memory)
+ # ------------------------------------------------------------------
+
+ def store_intention(
+ self,
+ user_id: str,
+ description: str,
+ trigger_keywords: Optional[List[str]] = None,
+ trigger_after: Optional[str] = None,
+ action_type: str = "remind",
+ action_payload: Optional[str] = None,
+ ) -> Intention:
+ """Store a future intention — prospective memory.
+
+ Called when the agent or user says something like:
+ "remember to run tests after modifying auth"
+ """
+ intention = Intention(
+ id=str(uuid.uuid4()),
+ user_id=user_id,
+ description=description,
+ trigger_keywords=trigger_keywords or [],
+ trigger_after=trigger_after,
+ action_type=action_type,
+ action_payload=action_payload or description,
+ status="active",
+ created_at=datetime.now(timezone.utc).isoformat(),
+ triggered_at=None,
+ )
+ self._intentions[intention.id] = intention
+ self._save_intentions()
+ return intention
+
+ def detect_intention_in_text(
+ self, text: str, user_id: str
+ ) -> Optional[Intention]:
+ """Auto-detect intentions in natural language and store them."""
+ for pattern in _INTENTION_PATTERNS:
+ match = pattern.search(text)
+ if match:
+ groups = match.groups()
+ if len(groups) >= 2:
+ action = groups[0].strip()
+ trigger = groups[1].strip()
+ keywords = [
+ w for w in trigger.lower().split()
+ if len(w) > 3 and w not in {
+ "the", "this", "that", "when", "after", "before",
+ }
+ ]
+ return self.store_intention(
+ user_id=user_id,
+ description=f"{action} (trigger: {trigger})",
+ trigger_keywords=keywords,
+ action_payload=action,
+ )
+ elif len(groups) == 1:
+ # TODO-style, no trigger
+ return self.store_intention(
+ user_id=user_id,
+ description=groups[0].strip(),
+ action_payload=groups[0].strip(),
+ )
+ return None
+
+ def _check_intentions(
+ self, user_id: str, context: Optional[str]
+ ) -> List[Intention]:
+ """Check for triggered intentions given current context."""
+ triggered = []
+ now = datetime.now(timezone.utc)
+ context_lower = (context or "").lower()
+ context_words = set(context_lower.split()) if context_lower else set()
+
+ for intention in list(self._intentions.values()):
+ if intention.user_id != user_id or intention.status != "active":
+ continue
+
+ fire = False
+
+ # Time-based trigger
+ if intention.trigger_after:
+ try:
+ deadline = datetime.fromisoformat(intention.trigger_after)
+ if deadline.tzinfo is None:
+ deadline = deadline.replace(tzinfo=timezone.utc)
+ if now >= deadline:
+ fire = True
+ except (ValueError, TypeError):
+ pass
+
+ # Keyword trigger
+ if not fire and intention.trigger_keywords and context_words:
+ matched = sum(
+ 1 for kw in intention.trigger_keywords
+ if kw.lower() in context_lower
+ )
+ if matched >= max(1, len(intention.trigger_keywords) // 2):
+ fire = True
+
+ if fire:
+ intention.status = "triggered"
+ intention.triggered_at = now.isoformat()
+ triggered.append(intention)
+
+ if triggered:
+ self._save_intentions()
+
+ return triggered
+
+ # ------------------------------------------------------------------
+ # Proactive warnings
+ # ------------------------------------------------------------------
+
+ def _generate_warnings(
+ self,
+ performance: List[PerformanceSnapshot],
+ insights: List[Insight],
+ ) -> List[str]:
+ """Generate proactive warnings from performance trends and insights."""
+ warnings = []
+
+ for snap in performance:
+ if snap.trend < -0.05 and snap.total_attempts >= 3:
+ warnings.append(
+ f"Performance on '{snap.task_type}' is declining "
+ f"(trend: {snap.trend:+.3f}). Recent scores: "
+ f"{[round(s, 2) for s in snap.scores[-3:]]}"
+ )
+ if snap.total_attempts >= 5 and snap.avg_score < 0.3:
+ warnings.append(
+ f"Low average score ({snap.avg_score:.2f}) on '{snap.task_type}'. "
+ f"Consider changing approach."
+ )
+
+ for insight in insights:
+ if insight.insight_type == "warning" and insight.strength() > 0.3:
+ warnings.append(insight.content)
+
+ return warnings[:5] # Cap at 5 warnings
+
+ # ------------------------------------------------------------------
+ # On-write hook: observe memories being stored
+ # ------------------------------------------------------------------
+
+ def on_memory_stored(
+ self,
+ content: str,
+ user_id: str = "default",
+ metadata: Optional[Dict[str, Any]] = None,
+ ) -> Optional[Intention]:
+ """Called when a memory is stored. Checks for intentions."""
+ return self.detect_intention_in_text(content, user_id)
+
+ # ------------------------------------------------------------------
+ # On-search hook: piggyback proactive signals
+ # ------------------------------------------------------------------
+
+ def on_search(
+ self,
+ query: str,
+ results: List[Dict[str, Any]],
+ user_id: str = "default",
+ ) -> Dict[str, Any]:
+ """Called after search. Returns proactive signals to attach."""
+ signals: Dict[str, Any] = {}
+
+ # Check intentions
+ triggered = self._check_intentions(user_id, query)
+ if triggered:
+ signals["triggered_intentions"] = [i.to_dict() for i in triggered]
+
+ # Check relevant insights
+ insights = self._get_relevant_insights(user_id, query)
+ if insights:
+ signals["relevant_insights"] = [
+ i.to_dict() for i in insights[:3]
+ ]
+
+ return signals
+
+ # ------------------------------------------------------------------
+ # Reflect: synthesize insights from recent trajectory
+ # ------------------------------------------------------------------
+
+ def reflect(
+ self,
+ user_id: str,
+ task_type: str,
+ what_worked: Optional[str] = None,
+ what_failed: Optional[str] = None,
+ key_decision: Optional[str] = None,
+ ) -> List[Insight]:
+ """Agent-triggered reflection. Synthesizes insights from experience.
+
+ Called when an agent completes a task or wants to record learnings.
+ This is the explicit version of DGM-H's persistent memory —
+ the agent tells Dhee what it learned, and Dhee stores it as
+ transferable insight.
+ """
+ new_insights = []
+
+ if what_worked:
+ insight = self.add_insight(
+ user_id=user_id,
+ content=f"What worked for '{task_type}': {what_worked}",
+ insight_type="strategy",
+ source_task_types=[task_type],
+ confidence=0.75,
+ tags=["what_worked", task_type],
+ )
+ new_insights.append(insight)
+
+ if what_failed:
+ insight = self.add_insight(
+ user_id=user_id,
+ content=f"What failed for '{task_type}': {what_failed}",
+ insight_type="warning",
+ source_task_types=[task_type],
+ confidence=0.7,
+ tags=["what_failed", task_type],
+ )
+ new_insights.append(insight)
+
+ if key_decision:
+ insight = self.add_insight(
+ user_id=user_id,
+ content=f"Key decision for '{task_type}': {key_decision}",
+ insight_type="causal",
+ source_task_types=[task_type],
+ confidence=0.65,
+ tags=["decision", task_type],
+ )
+ new_insights.append(insight)
+
+ return new_insights
+
+ # ------------------------------------------------------------------
+ # Persistence
+ # ------------------------------------------------------------------
+
+ def _save_insights(self) -> None:
+ path = os.path.join(self._data_dir, "insights.jsonl")
+ try:
+ with open(path, "w", encoding="utf-8") as f:
+ for insight in self._insights.values():
+ row = {
+ "id": insight.id,
+ "user_id": insight.user_id,
+ "content": insight.content,
+ "insight_type": insight.insight_type,
+ "source_task_types": insight.source_task_types,
+ "confidence": insight.confidence,
+ "created_at": insight.created_at,
+ "last_validated": insight.last_validated,
+ "validation_count": insight.validation_count,
+ "invalidation_count": insight.invalidation_count,
+ "tags": insight.tags,
+ }
+ f.write(json.dumps(row, ensure_ascii=False) + "\n")
+ except OSError as e:
+ logger.debug("Failed to save insights: %s", e)
+
+ def _save_intentions(self) -> None:
+ path = os.path.join(self._data_dir, "intentions.jsonl")
+ try:
+ with open(path, "w", encoding="utf-8") as f:
+ for intention in self._intentions.values():
+ row = {
+ "id": intention.id,
+ "user_id": intention.user_id,
+ "description": intention.description,
+ "trigger_keywords": intention.trigger_keywords,
+ "trigger_after": intention.trigger_after,
+ "action_type": intention.action_type,
+ "action_payload": intention.action_payload,
+ "status": intention.status,
+ "created_at": intention.created_at,
+ "triggered_at": intention.triggered_at,
+ }
+ f.write(json.dumps(row, ensure_ascii=False) + "\n")
+ except OSError as e:
+ logger.debug("Failed to save intentions: %s", e)
+
+ def _save_performance(self) -> None:
+ path = os.path.join(self._data_dir, "performance.json")
+ try:
+ with open(path, "w", encoding="utf-8") as f:
+ json.dump(self._performance, f, ensure_ascii=False)
+ except OSError as e:
+ logger.debug("Failed to save performance: %s", e)
+
+ def _load_state(self) -> None:
+ """Load all persisted state from disk."""
+ # Insights
+ insights_path = os.path.join(self._data_dir, "insights.jsonl")
+ if os.path.exists(insights_path):
+ try:
+ with open(insights_path, "r", encoding="utf-8") as f:
+ for line in f:
+ line = line.strip()
+ if not line:
+ continue
+ row = json.loads(line)
+ insight = Insight(
+ id=row["id"],
+ user_id=row["user_id"],
+ content=row["content"],
+ insight_type=row.get("insight_type", "strategy"),
+ source_task_types=row.get("source_task_types", []),
+ confidence=row.get("confidence", 0.5),
+ created_at=row.get("created_at", ""),
+ last_validated=row.get("last_validated", ""),
+ validation_count=row.get("validation_count", 0),
+ invalidation_count=row.get("invalidation_count", 0),
+ tags=row.get("tags", []),
+ )
+ self._insights[insight.id] = insight
+ except (OSError, json.JSONDecodeError) as e:
+ logger.debug("Failed to load insights: %s", e)
+
+ # Intentions
+ intentions_path = os.path.join(self._data_dir, "intentions.jsonl")
+ if os.path.exists(intentions_path):
+ try:
+ with open(intentions_path, "r", encoding="utf-8") as f:
+ for line in f:
+ line = line.strip()
+ if not line:
+ continue
+ row = json.loads(line)
+ intention = Intention(
+ id=row["id"],
+ user_id=row["user_id"],
+ description=row["description"],
+ trigger_keywords=row.get("trigger_keywords", []),
+ trigger_after=row.get("trigger_after"),
+ action_type=row.get("action_type", "remind"),
+ action_payload=row.get("action_payload", ""),
+ status=row.get("status", "active"),
+ created_at=row.get("created_at", ""),
+ triggered_at=row.get("triggered_at"),
+ )
+ self._intentions[intention.id] = intention
+ except (OSError, json.JSONDecodeError) as e:
+ logger.debug("Failed to load intentions: %s", e)
+
+ # Performance
+ perf_path = os.path.join(self._data_dir, "performance.json")
+ if os.path.exists(perf_path):
+ try:
+ with open(perf_path, "r", encoding="utf-8") as f:
+ self._performance = json.load(f)
+ except (OSError, json.JSONDecodeError) as e:
+ logger.debug("Failed to load performance: %s", e)
+
+ def flush(self) -> None:
+ """Persist all state. Call on shutdown."""
+ self._save_insights()
+ self._save_intentions()
+ self._save_performance()
+
+ def get_stats(self) -> Dict[str, Any]:
+ """Get buddhi status for health checks."""
+ return {
+ "insights": len(self._insights),
+ "active_intentions": sum(
+ 1 for i in self._intentions.values() if i.status == "active"
+ ),
+ "triggered_intentions": sum(
+ 1 for i in self._intentions.values() if i.status == "triggered"
+ ),
+ "task_types_tracked": len(self._performance),
+ "total_performance_records": sum(
+ len(v) for v in self._performance.values()
+ ),
+ }
diff --git a/engram/core/category.py b/dhee/core/category.py
similarity index 99%
rename from engram/core/category.py
rename to dhee/core/category.py
index aa5d5dd..ee591b6 100644
--- a/engram/core/category.py
+++ b/dhee/core/category.py
@@ -27,7 +27,7 @@
from enum import Enum
from typing import Any, Dict, List, Optional, Set, Tuple
-from engram.utils.math import cosine_similarity as _cosine_similarity
+from dhee.utils.math import cosine_similarity as _cosine_similarity
logger = logging.getLogger(__name__)
diff --git a/dhee/core/code_exec_counter.py b/dhee/core/code_exec_counter.py
new file mode 100644
index 0000000..16f1a52
--- /dev/null
+++ b/dhee/core/code_exec_counter.py
@@ -0,0 +1,266 @@
+"""Sandboxed code-exec counting for deterministic aggregation.
+
+Instead of asking the LLM to count/sum items across multiple sessions,
+this module has the LLM emit Python code that enumerates items, then
+executes it in a restricted sandbox to produce a deterministic answer.
+"""
+
+from __future__ import annotations
+
+import io
+import logging
+import re
+import threading
+from datetime import date, datetime, timedelta
+from typing import Any, Dict, List, Optional
+
+logger = logging.getLogger(__name__)
+
+# Allowed builtins for the sandbox — no file I/O, no imports, no exec/eval.
+# Includes datetime types for date arithmetic (e.g., days between two dates).
+_SAFE_BUILTINS = {
+ "len": len,
+ "sum": sum,
+ "max": max,
+ "min": min,
+ "sorted": sorted,
+ "set": set,
+ "list": list,
+ "dict": dict,
+ "int": int,
+ "float": float,
+ "str": str,
+ "range": range,
+ "enumerate": enumerate,
+ "zip": zip,
+ "print": print, # will be redirected to StringIO
+ "abs": abs,
+ "round": round,
+ "tuple": tuple,
+ "True": True,
+ "False": False,
+ "None": None,
+ # Date/time types — safe, no I/O, needed for temporal arithmetic
+ "datetime": datetime,
+ "date": date,
+ "timedelta": timedelta,
+}
+
+# Safe import lines that can be stripped before the blocked-pattern check.
+# LLMs habitually emit these even when the types are already available.
+_SAFE_IMPORT_RE = re.compile(
+ r"^\s*(?:from\s+datetime\s+import\s+[\w\s,]+|import\s+datetime)\s*$",
+ re.MULTILINE,
+)
+
+# Patterns that indicate dangerous code.
+# Only match import/from at statement-start (^) to avoid false positives in
+# comments like "# data from session 1" or strings like "trip from NYC".
+_BLOCKED_PATTERNS = re.compile(
+ r"\b(__\w+__|exec|eval|compile|globals|locals|getattr|setattr|delattr"
+ r"|subprocess|shutil|pathlib)\b"
+ r"|^import\s+(?!datetime\b)" # block `import X` unless X is datetime
+ r"|^from\s+(?!datetime\b)\w" # block `from X` unless X is datetime
+ r"|\bos\.\w" # block os.anything
+ r"|\bsys\.\w" # block sys.anything
+ r"|\bopen\s*\(", # block open() calls, not the word "open"
+ re.MULTILINE,
+)
+
+_CODE_BLOCK_RE = re.compile(r"```(?:python)?\s*\n(.*?)```", re.DOTALL)
+_ANSWER_RE = re.compile(r"^ANSWER:\s*(.+)$", re.MULTILINE)
+_ITEMS_RE = re.compile(r"^ITEMS:\s*(.+)$", re.MULTILINE)
+
+
+_MAX_CODE_EXEC_CONTEXT_CHARS = 12000
+
+
+def build_code_counting_prompt(
+ question: str,
+ retrieved_context: str,
+ question_date: str = "",
+) -> str:
+ """Build a prompt that asks the LLM to generate Python counting code."""
+ # Truncate context to fit smaller models' context windows
+ ctx = retrieved_context[:_MAX_CODE_EXEC_CONTEXT_CHARS] if len(retrieved_context) > _MAX_CODE_EXEC_CONTEXT_CHARS else retrieved_context
+ date_line = f"\nQuestion Date (today): {question_date}" if question_date else ""
+ return f"""You are a precise counting and date-arithmetic assistant. Read the question and context below,
+then write a short Python script following this EXACT pattern:
+
+```python
+# Step 1: Define ONE list of (label, value) tuples — one entry per distinct item
+items = [
+ ("item description from session X", numeric_value),
+ ("item description from session Y", numeric_value),
+]
+
+# Step 2: Compute answer from the items list ONLY
+answer = sum(v for _, v in items) # for sum/duration questions
+# OR: answer = len(items) # for counting questions
+
+# Step 3: Print results — the answer MUST be derived from the items list above
+print(f"ANSWER: {{answer}}")
+print(f"ITEMS: {{[label for label, _ in items]}}")
+```
+
+CRITICAL RULES:
+- Create exactly ONE list called `items` with ALL relevant entries from ALL sessions
+- For "how many hours/days/weeks" questions: each tuple is ("description", hours_or_days_number), answer = sum()
+- For "how many times/items" questions: each tuple is ("description", 1), answer = len()
+- For "how much money" questions: each tuple is ("description", dollar_amount), answer = sum()
+- For "how many days/months between X and Y" questions: use datetime(year, month, day) to compute exact differences
+- For "how many months/days ago" questions: compute from the Question Date using datetime arithmetic
+- The ANSWER line MUST be computed from the `items` list or datetime math — never hardcode it
+- Available without import: datetime, date, timedelta, len, sum, min, max, abs, round
+- Read EVERY session in the context — missing one entry means a wrong answer
+- If the same event appears in multiple sessions, include it only ONCE (deduplicate)
+- Add the unit to the ANSWER (e.g., "8 days", "140 hours", "$5850", "30 days")
+
+Question: {question}{date_line}
+
+Context:
+{ctx}
+
+Write ONLY the Python code inside a code block:
+```python
+"""
+
+
+def execute_counting_code(code: str, timeout: float = 5.0) -> Optional[Dict[str, Any]]:
+ """Execute counting code in a restricted sandbox.
+
+ Returns {{"answer": str, "items": list}} or None on failure.
+ """
+ # Strip safe import lines (datetime) before the blocked-pattern check.
+ # LLMs emit these habitually; the types are already in _SAFE_BUILTINS.
+ code = _SAFE_IMPORT_RE.sub("", code)
+
+ # Validate: block dangerous patterns
+ if _BLOCKED_PATTERNS.search(code):
+ logger.warning("Code-exec blocked: dangerous pattern detected in: %s", code[:200])
+ return None
+
+ # Capture stdout
+ captured = io.StringIO()
+
+ restricted_globals = {"__builtins__": {}}
+ for name, obj in _SAFE_BUILTINS.items():
+ restricted_globals[name] = obj
+
+ # Redirect print to captured output
+ def safe_print(*args, **kwargs):
+ kwargs["file"] = captured
+ print(*args, **kwargs)
+
+ restricted_globals["print"] = safe_print
+
+ result = {"completed": False, "error": None}
+
+ def _run():
+ try:
+ exec(code, restricted_globals) # noqa: S102
+ result["completed"] = True
+ except Exception as e:
+ result["error"] = str(e)
+
+ thread = threading.Thread(target=_run, daemon=True)
+ thread.start()
+ thread.join(timeout=timeout)
+
+ if not result["completed"]:
+ if result["error"]:
+ logger.warning("Code-exec error: %s", result["error"])
+ else:
+ logger.warning("Code-exec timeout after %.1fs", timeout)
+ return None
+
+ output = captured.getvalue()
+
+ # Parse ANSWER line
+ answer_match = _ANSWER_RE.search(output)
+ if not answer_match:
+ logger.debug("Code-exec: no ANSWER line in output: %r", output[:200])
+ return None
+
+ answer = answer_match.group(1).strip()
+
+ # Parse ITEMS line (optional)
+ items: List[str] = []
+ items_match = _ITEMS_RE.search(output)
+ if items_match:
+ items_raw = items_match.group(1).strip()
+ # Parse list by splitting on commas (avoid eval for safety)
+ inner = items_raw.strip("[]")
+ if inner:
+ items = [x.strip().strip("'\"") for x in inner.split(",") if x.strip().strip("'\"")]
+
+ return {"answer": answer, "items": items}
+
+
+def refine_count_with_code_exec(
+ *,
+ llm: Any,
+ question: str,
+ question_type: str,
+ retrieved_context: str,
+ draft_answer: str,
+ question_date: str = "",
+) -> Optional[str]:
+ """Full pipeline: prompt LLM to generate code -> exec -> parse answer.
+
+ Returns the refined answer string, or None if code-exec fails.
+ """
+ prompt = build_code_counting_prompt(question, retrieved_context, question_date=question_date)
+
+ try:
+ raw_response = str(llm.generate(prompt)).strip()
+ except Exception as e:
+ logger.warning("Code-exec LLM call failed: %s", e)
+ return None
+
+ # Extract code block
+ code_match = _CODE_BLOCK_RE.search(raw_response)
+ if code_match:
+ code = code_match.group(1).strip()
+ else:
+ # Try treating the entire response as code if it looks like Python
+ lines = raw_response.strip().splitlines()
+ code_lines = [ln for ln in lines if not ln.startswith("```")]
+ if any(ln.strip().startswith(("items", "total", "count", "print", "#", "result")) for ln in code_lines):
+ code = "\n".join(code_lines)
+ else:
+ logger.debug("Code-exec: no code block found in LLM response")
+ return None
+
+ result = execute_counting_code(code)
+ if not result:
+ return None
+
+ answer = result["answer"]
+ items = result.get("items", [])
+
+ logger.info(
+ "Code-exec result: answer=%r, items_count=%d, draft=%r",
+ answer, len(items), draft_answer,
+ )
+
+ # Cross-check: if we have items and an answer, verify consistency
+ if items and answer:
+ try:
+ answer_num = float(re.sub(r"[^\d.]", "", answer.split()[0]))
+ # For pure counting, items list length should match
+ q_lower = question.lower()
+ if any(w in q_lower for w in ("how many times", "how many", "number of")):
+ if abs(answer_num - len(items)) > 0.5 and not any(
+ w in q_lower for w in ("hours", "days", "weeks", "months", "minutes")
+ ):
+ # Items count is more trustworthy for pure counting
+ logger.debug(
+ "Code-exec cross-check: stated %s but %d items; using items count",
+ answer, len(items),
+ )
+ answer = str(len(items))
+ except (ValueError, IndexError):
+ pass
+
+ return answer if answer else None
diff --git a/dhee/core/cognition.py b/dhee/core/cognition.py
new file mode 100644
index 0000000..fa0bab1
--- /dev/null
+++ b/dhee/core/cognition.py
@@ -0,0 +1,481 @@
+"""Cognitive Decomposition Engine — memory-grounded recursive problem solving.
+
+The memory layer DICTATES the LLM:
+- Memory provides grounded facts
+- Memory identifies gaps
+- Memory decomposes the problem
+- The external LLM only does final reasoning on CLEAN, GROUNDED inputs
+"""
+
+import json
+import logging
+import uuid
+from dataclasses import dataclass, field
+from typing import Any, Callable, Dict, List, Optional
+
+logger = logging.getLogger(__name__)
+
+# Decomposition prompt
+_DECOMPOSE_PROMPT = """Break down this question into simple yes/no sub-questions that can be answered from memory.
+
+QUESTION: {question}
+
+{known_context_block}
+
+Return a JSON array of sub-questions:
+[
+ {{
+ "question": "the sub-question",
+ "is_yes_no": true,
+ "search_queries": ["query1", "query2"],
+ "context_filters": {{}},
+ "parent_question": "{question}"
+ }}
+]
+
+Rules:
+- Each sub-question should be independently searchable
+- Include multiple search angles (synonyms, related terms)
+- Keep sub-questions atomic and concrete
+- Return valid JSON only"""
+
+# Synthesis prompt
+_SYNTHESIS_PROMPT = """Given these VERIFIED facts, answer the question.
+
+QUESTION: {question}
+
+VERIFIED FACTS:
+{facts_block}
+
+GAPS (unanswered sub-questions):
+{gaps_block}
+
+Rules:
+- Only use the verified facts above
+- Do not hallucinate or invent information
+- If gaps exist, acknowledge what is unknown
+- Be concise and direct"""
+
+
+@dataclass
+class SubQuestion:
+ """A decomposed sub-question for memory search."""
+ question: str = ""
+ is_yes_no: bool = True
+ search_queries: List[str] = field(default_factory=list)
+ context_filters: Dict[str, Any] = field(default_factory=dict)
+ parent_question: str = ""
+
+
+@dataclass
+class GroundedFact:
+ """A fact grounded in memory with provenance."""
+ question: str = ""
+ answer: Optional[str] = None
+ source: str = "gap" # memory_deterministic|memory_search|user|gap
+ confidence: float = 0.0
+ memory_ids: List[str] = field(default_factory=list)
+ resolver_path: str = "" # context->sql|vector->rerank|episodic
+
+ def to_dict(self) -> Dict[str, Any]:
+ return {
+ "question": self.question,
+ "answer": self.answer,
+ "source": self.source,
+ "confidence": self.confidence,
+ "memory_ids": self.memory_ids,
+ "resolver_path": self.resolver_path,
+ }
+
+
+@dataclass
+class CognitionResult:
+ """Result of cognitive decomposition and grounding."""
+ answer: str = ""
+ grounded_facts: List[GroundedFact] = field(default_factory=list)
+ gaps: List[str] = field(default_factory=list)
+ reasoning_trace: List[Dict[str, Any]] = field(default_factory=list)
+ stored_memory_id: Optional[str] = None
+ depth_used: int = 0
+
+ def to_dict(self) -> Dict[str, Any]:
+ return {
+ "answer": self.answer,
+ "grounded_facts": [f.to_dict() for f in self.grounded_facts],
+ "gaps": self.gaps,
+ "reasoning_trace": self.reasoning_trace,
+ "stored_memory_id": self.stored_memory_id,
+ "depth_used": self.depth_used,
+ }
+
+
+class CognitionEngine:
+ """Memory-grounded recursive problem solving.
+
+ The memory layer DICTATES the LLM:
+ - Memory provides grounded facts
+ - Memory identifies gaps
+ - Memory decomposes the problem
+ - The external LLM only does final reasoning on CLEAN, GROUNDED inputs
+ """
+
+ def __init__(
+ self,
+ memory,
+ external_llm=None,
+ max_depth: int = 3,
+ max_sub_questions: int = 10,
+ store_solutions: bool = True,
+ ):
+ self.memory = memory
+ self.external_llm = external_llm
+ self.max_depth = max_depth
+ self.max_sub_questions = max_sub_questions
+ self.store_solutions = store_solutions
+
+ def think(
+ self,
+ question: str,
+ user_id: str = "default",
+ max_depth: Optional[int] = None,
+ ask_user_fn: Optional[Callable] = None,
+ ) -> CognitionResult:
+ """Run cognitive decomposition loop.
+
+ 1. Decompose question into sub-questions
+ 2. Search memory for each sub-question
+ 3. Ground facts from memory results
+ 4. Synthesize answer from grounded facts
+ 5. Store solution as new memory
+ """
+ depth = max_depth or self.max_depth
+ trace = []
+
+ # Step 1: Try direct memory search first
+ direct_result = self._try_direct_search(question, user_id)
+ if direct_result and direct_result.confidence >= 0.9:
+ return CognitionResult(
+ answer=direct_result.answer or "",
+ grounded_facts=[direct_result],
+ depth_used=0,
+ reasoning_trace=[{
+ "step": "direct_search",
+ "question": question,
+ "result": direct_result.to_dict(),
+ }],
+ )
+
+ # Step 2: Decompose
+ sub_questions = self._decompose(question, [])
+ trace.append({
+ "step": "decompose",
+ "question": question,
+ "sub_questions": [sq.question for sq in sub_questions],
+ })
+
+ # Step 3: Ground each sub-question
+ grounded_facts = []
+ gaps = []
+ for sq in sub_questions[:self.max_sub_questions]:
+ fact = self._ground(sq, user_id, depth - 1, ask_user_fn)
+ if fact.confidence > 0:
+ grounded_facts.append(fact)
+ else:
+ gaps.append(sq.question)
+ trace.append({
+ "step": "ground",
+ "question": sq.question,
+ "result": fact.to_dict(),
+ })
+
+ # Step 4: Synthesize
+ answer = self._synthesize(question, grounded_facts, gaps)
+ trace.append({
+ "step": "synthesize",
+ "answer": answer,
+ "facts_used": len(grounded_facts),
+ "gaps": gaps,
+ })
+
+ # Step 5: Store solution
+ stored_id = None
+ if self.store_solutions and answer:
+ stored_id = self._store_solution(question, answer, grounded_facts, user_id)
+
+ return CognitionResult(
+ answer=answer,
+ grounded_facts=grounded_facts,
+ gaps=gaps,
+ reasoning_trace=trace,
+ stored_memory_id=stored_id,
+ depth_used=1,
+ )
+
+ def _decompose(
+ self, question: str, known_context: List[Dict[str, Any]]
+ ) -> List[SubQuestion]:
+ """Break question into searchable sub-questions."""
+ # Try LLM decomposition
+ if self.external_llm:
+ sub_qs = self._decompose_with_llm(question, known_context)
+ if sub_qs:
+ return sub_qs
+
+ # Rule-based decomposition
+ return self._decompose_rule_based(question)
+
+ def _decompose_with_llm(
+ self, question: str, known_context: List[Dict[str, Any]]
+ ) -> List[SubQuestion]:
+ """LLM-based question decomposition."""
+ context_block = ""
+ if known_context:
+ context_block = (
+ "KNOWN CONTEXT:\n"
+ + json.dumps(known_context, default=str, indent=2)
+ )
+
+ prompt = _DECOMPOSE_PROMPT.format(
+ question=question,
+ known_context_block=context_block,
+ )
+
+ try:
+ response = self.external_llm.generate(prompt)
+ parsed = self._parse_json_response(response)
+ if isinstance(parsed, list):
+ return [
+ SubQuestion(
+ question=item.get("question", ""),
+ is_yes_no=item.get("is_yes_no", True),
+ search_queries=item.get("search_queries", []),
+ context_filters=item.get("context_filters", {}),
+ parent_question=question,
+ )
+ for item in parsed
+ if item.get("question")
+ ]
+ except Exception as e:
+ logger.warning("LLM decomposition failed: %s", e)
+
+ return []
+
+ def _decompose_rule_based(self, question: str) -> List[SubQuestion]:
+ """Simple rule-based decomposition."""
+ # Generate search variants
+ queries = [question]
+
+ # Add keyword-focused query
+ stop_words = {
+ "what", "when", "where", "who", "how", "why", "which", "is",
+ "are", "was", "were", "do", "does", "did", "the", "a", "an",
+ "my", "your", "i", "me", "we", "can", "could", "would",
+ "should", "have", "has", "had",
+ }
+ keywords = [
+ w for w in question.lower().split()
+ if w.strip("?.,!") not in stop_words and len(w) > 2
+ ]
+ if keywords:
+ queries.append(" ".join(keywords))
+
+ return [
+ SubQuestion(
+ question=question,
+ search_queries=queries,
+ parent_question=question,
+ )
+ ]
+
+ def _ground(
+ self,
+ sub_q: SubQuestion,
+ user_id: str,
+ remaining_depth: int,
+ ask_user_fn: Optional[Callable],
+ ) -> GroundedFact:
+ """Search memory for answer to a sub-question."""
+ # Try context resolver first (deterministic)
+ if hasattr(self.memory, "context_resolver") and self.memory.context_resolver:
+ resolver_result = self.memory.context_resolver.resolve(
+ sub_q.question, user_id=user_id
+ )
+ if resolver_result and resolver_result.answer and resolver_result.has_grounding():
+ return GroundedFact(
+ question=sub_q.question,
+ answer=resolver_result.answer,
+ source="memory_deterministic",
+ confidence=resolver_result.confidence,
+ memory_ids=resolver_result.memory_ids,
+ resolver_path=resolver_result.resolver_path,
+ )
+
+ # Try vector search
+ for query in sub_q.search_queries or [sub_q.question]:
+ try:
+ search_result = self.memory.search(
+ query=query,
+ user_id=user_id,
+ limit=5,
+ )
+ results = search_result.get("results", [])
+ if results:
+ top = results[0]
+ memory_text = top.get("memory", "")
+ return GroundedFact(
+ question=sub_q.question,
+ answer=memory_text,
+ source="memory_search",
+ confidence=min(1.0, top.get("score", 0.5)),
+ memory_ids=[top.get("id", "")],
+ resolver_path="vector->rerank",
+ )
+ except Exception as e:
+ logger.debug("Search failed for '%s': %s", query, e)
+
+ # Ask user if available
+ if ask_user_fn and remaining_depth <= 0:
+ try:
+ user_answer = ask_user_fn(sub_q.question)
+ if user_answer:
+ return GroundedFact(
+ question=sub_q.question,
+ answer=user_answer,
+ source="user",
+ confidence=1.0,
+ )
+ except Exception:
+ pass
+
+ # Gap — no answer found
+ return GroundedFact(
+ question=sub_q.question,
+ source="gap",
+ confidence=0.0,
+ )
+
+ def _try_direct_search(self, question: str, user_id: str) -> Optional[GroundedFact]:
+ """Try to answer directly from memory without decomposition."""
+ try:
+ search_result = self.memory.search(
+ query=question,
+ user_id=user_id,
+ limit=3,
+ )
+ results = search_result.get("results", [])
+ if results and results[0].get("score", 0) >= 0.85:
+ top = results[0]
+ return GroundedFact(
+ question=question,
+ answer=top.get("memory", ""),
+ source="memory_search",
+ confidence=top.get("score", 0.5),
+ memory_ids=[top.get("id", "")],
+ resolver_path="vector->direct",
+ )
+ except Exception:
+ pass
+ return None
+
+ def _synthesize(
+ self,
+ question: str,
+ facts: List[GroundedFact],
+ gaps: List[str],
+ ) -> str:
+ """Synthesize answer from grounded facts."""
+ if not facts:
+ if gaps:
+ return f"I don't have enough information to answer. Missing: {', '.join(gaps)}"
+ return "No relevant information found in memory."
+
+ # If single high-confidence fact, return directly
+ if len(facts) == 1 and facts[0].confidence >= 0.9:
+ return facts[0].answer or ""
+
+ # Use LLM for multi-fact synthesis
+ if self.external_llm:
+ return self._synthesize_with_llm(question, facts, gaps)
+
+ # Simple concatenation
+ answers = [f.answer for f in facts if f.answer]
+ return " ".join(answers)
+
+ def _synthesize_with_llm(
+ self,
+ question: str,
+ facts: List[GroundedFact],
+ gaps: List[str],
+ ) -> str:
+ """LLM-based synthesis from grounded facts."""
+ facts_block = "\n".join(
+ f"- [{f.source}, confidence={f.confidence:.1f}] {f.answer}"
+ for f in facts
+ if f.answer
+ )
+ gaps_block = "\n".join(f"- {g}" for g in gaps) if gaps else "None"
+
+ prompt = _SYNTHESIS_PROMPT.format(
+ question=question,
+ facts_block=facts_block,
+ gaps_block=gaps_block,
+ )
+
+ try:
+ return self.external_llm.generate(prompt)
+ except Exception as e:
+ logger.warning("LLM synthesis failed: %s", e)
+ answers = [f.answer for f in facts if f.answer]
+ return " ".join(answers)
+
+ def _store_solution(
+ self,
+ question: str,
+ answer: str,
+ facts: List[GroundedFact],
+ user_id: str,
+ ) -> Optional[str]:
+ """Store the cognitive result as a new memory."""
+ try:
+ content = f"Q: {question}\nA: {answer}"
+ result = self.memory.add(
+ content,
+ user_id=user_id,
+ metadata={
+ "source": "cognition_engine",
+ "grounded_from": [f.to_dict() for f in facts],
+ "memory_type": "semantic",
+ },
+ )
+ if isinstance(result, dict):
+ results = result.get("results", [])
+ if results:
+ return results[0].get("id")
+ return None
+ except Exception as e:
+ logger.debug("Failed to store cognition result: %s", e)
+ return None
+
+ def _parse_json_response(self, response: str) -> Any:
+ """Parse JSON from LLM response."""
+ if not response:
+ return None
+ text = response.strip()
+ if text.startswith("```"):
+ lines = text.split("\n")
+ if lines[0].startswith("```"):
+ lines = lines[1:]
+ if lines and lines[-1].strip() == "```":
+ lines = lines[:-1]
+ text = "\n".join(lines)
+ try:
+ return json.loads(text)
+ except json.JSONDecodeError:
+ bracket_start = text.find("[")
+ bracket_end = text.rfind("]")
+ if bracket_start >= 0 and bracket_end > bracket_start:
+ try:
+ return json.loads(text[bracket_start : bracket_end + 1])
+ except json.JSONDecodeError:
+ pass
+ return None
diff --git a/engram/core/conflict.py b/dhee/core/conflict.py
similarity index 97%
rename from engram/core/conflict.py
rename to dhee/core/conflict.py
index 3a1c0ea..fd55075 100644
--- a/engram/core/conflict.py
+++ b/dhee/core/conflict.py
@@ -3,7 +3,7 @@
from dataclasses import dataclass
from typing import Any, Dict, Optional
-from engram.utils.prompts import CONFLICT_RESOLUTION_PROMPT
+from dhee.utils.prompts import CONFLICT_RESOLUTION_PROMPT
logger = logging.getLogger(__name__)
diff --git a/engram/core/consolidation.py b/dhee/core/consolidation.py
similarity index 95%
rename from engram/core/consolidation.py
rename to dhee/core/consolidation.py
index dfaedaa..da4f480 100644
--- a/engram/core/consolidation.py
+++ b/dhee/core/consolidation.py
@@ -10,11 +10,11 @@
import logging
from typing import Any, Dict, TYPE_CHECKING
-from engram.configs.active import ActiveMemoryConfig
-from engram.core.active_memory import ActiveMemoryStore
+from dhee.configs.active import ActiveMemoryConfig
+from dhee.core.active_memory import ActiveMemoryStore
if TYPE_CHECKING:
- from engram.memory.main import Memory
+ from dhee.memory.main import Memory
logger = logging.getLogger(__name__)
diff --git a/engram/core/decay.py b/dhee/core/decay.py
similarity index 88%
rename from engram/core/decay.py
rename to dhee/core/decay.py
index ee1be40..322a1db 100644
--- a/engram/core/decay.py
+++ b/dhee/core/decay.py
@@ -1,6 +1,6 @@
"""FadeMem decay calculations.
-Requires engram-accel (Rust) for the core decay math.
+Requires dhee-accel (Rust) for the core decay math.
"""
import math
@@ -8,9 +8,9 @@
from typing import TYPE_CHECKING
if TYPE_CHECKING:
- from engram.configs.base import FadeMemConfig
+ from dhee.configs.base import FadeMemConfig
-from engram_accel import calculate_decayed_strength as _rs_decay
+from dhee_accel import calculate_decayed_strength as _rs_decay
def calculate_decayed_strength(
diff --git a/engram/core/distillation.py b/dhee/core/distillation.py
similarity index 96%
rename from engram/core/distillation.py
rename to dhee/core/distillation.py
index c99ed92..ff1dcf4 100644
--- a/engram/core/distillation.py
+++ b/dhee/core/distillation.py
@@ -14,13 +14,13 @@
from datetime import datetime, timedelta, timezone
from typing import TYPE_CHECKING, Any, Dict, List, Optional
-from engram.memory.utils import strip_code_fences
-from engram.utils.prompts import DISTILLATION_PROMPT
+from dhee.memory.utils import strip_code_fences
+from dhee.utils.prompts import DISTILLATION_PROMPT
if TYPE_CHECKING:
- from engram.configs.base import DistillationConfig
- from engram.db.sqlite import SQLiteManager
- from engram.llms.base import BaseLLM
+ from dhee.configs.base import DistillationConfig
+ from dhee.db.sqlite import SQLiteManager
+ from dhee.llms.base import BaseLLM
logger = logging.getLogger(__name__)
diff --git a/engram/core/echo.py b/dhee/core/echo.py
similarity index 99%
rename from engram/core/echo.py
rename to dhee/core/echo.py
index ad65206..10c9cfe 100644
--- a/engram/core/echo.py
+++ b/dhee/core/echo.py
@@ -18,7 +18,7 @@
from pydantic import BaseModel, ConfigDict, Field, ValidationError, field_validator
-from engram.utils.prompts import BATCH_ECHO_PROCESSING_PROMPT, ECHO_PROCESSING_PROMPT
+from dhee.utils.prompts import BATCH_ECHO_PROCESSING_PROMPT, ECHO_PROCESSING_PROMPT
logger = logging.getLogger(__name__)
diff --git a/dhee/core/engram.py b/dhee/core/engram.py
new file mode 100644
index 0000000..e8519ce
--- /dev/null
+++ b/dhee/core/engram.py
@@ -0,0 +1,431 @@
+"""Universal Engram — the atomic unit of structured memory in Dhee.
+
+Two layers:
+- Context Layer: HOW you find this memory (era -> place -> time -> activity)
+- Content Layer: WHAT it is (facts, entities, associative links)
+
+Mirrors human episodic memory: context narrows first, then content surfaces.
+"""
+
+import hashlib
+import json
+import uuid
+from dataclasses import dataclass, field
+from datetime import datetime, timezone
+from typing import Any, Dict, List, Optional
+
+
+@dataclass
+class ContextAnchor:
+ """HOW you find this memory — hierarchical context filtering.
+ Mirrors human recall: era -> place -> time -> activity -> memory."""
+ era: Optional[str] = None # life phase: "ghazipur_school", "bengaluru_work"
+ place: Optional[str] = None # spatial anchor: "Ghazipur", "Bengaluru"
+ place_type: Optional[str] = None # home|office|travel|school|city
+ place_detail: Optional[str] = None # specific: "grandparents' home", "office 3rd floor"
+ time_absolute: Optional[str] = None # ISO datetime (resolved or derived)
+ time_markers: List[str] = field(default_factory=list) # original refs: ["last Thursday", "class 9"]
+ time_range_start: Optional[str] = None # era/phase start
+ time_range_end: Optional[str] = None # era/phase end (None = ongoing)
+ time_derivation: Optional[str] = None # HOW the time was derived
+ activity: Optional[str] = None # activity type: coding|meeting|travel|movie|exam
+ session_id: Optional[str] = None
+ session_position: int = 0
+
+ def to_dict(self) -> Dict[str, Any]:
+ return {
+ "era": self.era,
+ "place": self.place,
+ "place_type": self.place_type,
+ "place_detail": self.place_detail,
+ "time_absolute": self.time_absolute,
+ "time_markers": self.time_markers,
+ "time_range_start": self.time_range_start,
+ "time_range_end": self.time_range_end,
+ "time_derivation": self.time_derivation,
+ "activity": self.activity,
+ "session_id": self.session_id,
+ "session_position": self.session_position,
+ }
+
+ @classmethod
+ def from_dict(cls, data: Dict[str, Any]) -> "ContextAnchor":
+ if not data:
+ return cls()
+ return cls(
+ era=data.get("era"),
+ place=data.get("place"),
+ place_type=data.get("place_type"),
+ place_detail=data.get("place_detail"),
+ time_absolute=data.get("time_absolute"),
+ time_markers=data.get("time_markers", []),
+ time_range_start=data.get("time_range_start"),
+ time_range_end=data.get("time_range_end"),
+ time_derivation=data.get("time_derivation"),
+ activity=data.get("activity"),
+ session_id=data.get("session_id"),
+ session_position=data.get("session_position", 0),
+ )
+
+ def has_context(self) -> bool:
+ """Return True if any context field is populated."""
+ return bool(
+ self.era or self.place or self.time_absolute
+ or self.activity or self.time_markers
+ )
+
+
+@dataclass
+class SceneSnapshot:
+ """VISUAL scene representation — who/where/what/state at that moment.
+ Humans recall memories as SCENES, not facts."""
+ setting: Optional[str] = None # "grandparents' home in Varanasi"
+ people_present: List[str] = field(default_factory=list)
+ self_state: Optional[str] = None # "recovering from appendix operation"
+ emotional_tone: Optional[str] = None # "relaxed", "anxious", "celebratory"
+ sensory_cues: List[str] = field(default_factory=list) # triggers recall
+
+ def to_dict(self) -> Dict[str, Any]:
+ return {
+ "setting": self.setting,
+ "people_present": self.people_present,
+ "self_state": self.self_state,
+ "emotional_tone": self.emotional_tone,
+ "sensory_cues": self.sensory_cues,
+ }
+
+ @classmethod
+ def from_dict(cls, data: Dict[str, Any]) -> "SceneSnapshot":
+ if not data:
+ return cls()
+ return cls(
+ setting=data.get("setting"),
+ people_present=data.get("people_present", []),
+ self_state=data.get("self_state"),
+ emotional_tone=data.get("emotional_tone"),
+ sensory_cues=data.get("sensory_cues", []),
+ )
+
+
+@dataclass
+class AssociativeLink:
+ """Connections between memories — causal, temporal, emotional chains.
+ These chains enable DERIVED reasoning (dates, sequences, causality)."""
+ target_memory_id: Optional[str] = None
+ target_canonical_key: str = ""
+ link_type: str = "co_occurring" # causal|temporal_sequence|co_occurring|emotional|elaborates
+ direction: str = "forward" # forward|backward
+ qualifier: Optional[str] = None
+
+ _VALID_LINK_TYPES = frozenset({
+ "causal", "temporal_sequence", "co_occurring", "emotional", "elaborates",
+ })
+ _VALID_DIRECTIONS = frozenset({"forward", "backward"})
+
+ def to_dict(self) -> Dict[str, Any]:
+ return {
+ "target_memory_id": self.target_memory_id,
+ "target_canonical_key": self.target_canonical_key,
+ "link_type": self.link_type,
+ "direction": self.direction,
+ "qualifier": self.qualifier,
+ }
+
+ @classmethod
+ def from_dict(cls, data: Dict[str, Any]) -> "AssociativeLink":
+ if not data:
+ return cls()
+ link_type = data.get("link_type", "co_occurring")
+ if link_type not in cls._VALID_LINK_TYPES:
+ link_type = "co_occurring"
+ direction = data.get("direction", "forward")
+ if direction not in cls._VALID_DIRECTIONS:
+ direction = "forward"
+ return cls(
+ target_memory_id=data.get("target_memory_id"),
+ target_canonical_key=data.get("target_canonical_key", ""),
+ link_type=link_type,
+ direction=direction,
+ qualifier=data.get("qualifier"),
+ )
+
+
+@dataclass
+class Fact:
+ """Atomic unit of knowledge. Deterministic queries run over these."""
+ subject: str = ""
+ predicate: str = ""
+ value: str = ""
+ value_numeric: Optional[float] = None
+ value_unit: Optional[str] = None
+ time: Optional[str] = None
+ valid_from: Optional[str] = None
+ valid_until: Optional[str] = None # None = still true
+ qualifier: Optional[str] = None
+ canonical_key: str = "" # "user|visited|tokyo" — dedup key
+ confidence: float = 1.0
+ is_derived: bool = False
+
+ def to_dict(self) -> Dict[str, Any]:
+ return {
+ "subject": self.subject,
+ "predicate": self.predicate,
+ "value": self.value,
+ "value_numeric": self.value_numeric,
+ "value_unit": self.value_unit,
+ "time": self.time,
+ "valid_from": self.valid_from,
+ "valid_until": self.valid_until,
+ "qualifier": self.qualifier,
+ "canonical_key": self.canonical_key,
+ "confidence": self.confidence,
+ "is_derived": self.is_derived,
+ }
+
+ @classmethod
+ def from_dict(cls, data: Dict[str, Any]) -> "Fact":
+ if not data:
+ return cls()
+ return cls(
+ subject=data.get("subject", ""),
+ predicate=data.get("predicate", ""),
+ value=data.get("value", ""),
+ value_numeric=data.get("value_numeric"),
+ value_unit=data.get("value_unit"),
+ time=data.get("time"),
+ valid_from=data.get("valid_from"),
+ valid_until=data.get("valid_until"),
+ qualifier=data.get("qualifier"),
+ canonical_key=data.get("canonical_key", ""),
+ confidence=data.get("confidence", 1.0),
+ is_derived=data.get("is_derived", False),
+ )
+
+ def make_canonical_key(self) -> str:
+ """Generate canonical_key from subject|predicate|value."""
+ parts = [
+ (self.subject or "").strip().lower().replace(" ", "_"),
+ (self.predicate or "").strip().lower().replace(" ", "_"),
+ (self.value or "").strip().lower().replace(" ", "_"),
+ ]
+ return "|".join(p for p in parts if p)
+
+
+@dataclass
+class EntityRef:
+ """Entity mention with state and relationships."""
+ name: str = ""
+ entity_type: str = "unknown" # person|org|technology|location|project|tool
+ state: Optional[str] = None # "current", "former", "planned"
+ relationships: List[Dict[str, str]] = field(default_factory=list)
+
+ _VALID_ENTITY_TYPES = frozenset({
+ "person", "org", "technology", "location", "project", "tool", "unknown",
+ })
+
+ def to_dict(self) -> Dict[str, Any]:
+ return {
+ "name": self.name,
+ "entity_type": self.entity_type,
+ "state": self.state,
+ "relationships": self.relationships,
+ }
+
+ @classmethod
+ def from_dict(cls, data: Dict[str, Any]) -> "EntityRef":
+ if not data:
+ return cls()
+ entity_type = data.get("entity_type", "unknown")
+ if entity_type not in cls._VALID_ENTITY_TYPES:
+ entity_type = "unknown"
+ return cls(
+ name=data.get("name", ""),
+ entity_type=entity_type,
+ state=data.get("state"),
+ relationships=data.get("relationships", []),
+ )
+
+
+@dataclass
+class ProspectiveScene:
+ """A predicted future scene — memory-driven anticipation.
+
+ When a user says "we'll play tennis next Saturday with Ankit",
+ the memory engine doesn't create a todo. It creates a PREDICTED SCENE:
+ - Links to past similar scenes (prior tennis, prior Ankit interactions)
+ - Predicts what you'll need based on past patterns
+ - When the date approaches, proactively surfaces relevant context
+
+ This mirrors how human memory works: you don't set a reminder to "bring
+ racket" — you VISUALIZE the upcoming scene, and your brain auto-surfaces
+ what you'll need from similar past scenes.
+ """
+ predicted_time: Optional[str] = None # ISO datetime of predicted event
+ trigger_window_hours: int = 24 # Surface this N hours before
+ event_type: Optional[str] = None # meeting|activity|travel|deadline|social
+ participants: List[str] = field(default_factory=list)
+ predicted_setting: Optional[str] = None # where (from past patterns)
+ predicted_needs: List[str] = field(default_factory=list) # from past similar events
+ relevant_past_scene_ids: List[str] = field(default_factory=list)
+ status: str = "predicted" # predicted|triggered|occurred|cancelled
+ source_memory_id: str = ""
+ prediction_basis: Optional[str] = None # HOW this was predicted
+
+ _VALID_STATUSES = frozenset({"predicted", "triggered", "occurred", "cancelled"})
+
+ def to_dict(self) -> Dict[str, Any]:
+ return {
+ "predicted_time": self.predicted_time,
+ "trigger_window_hours": self.trigger_window_hours,
+ "event_type": self.event_type,
+ "participants": self.participants,
+ "predicted_setting": self.predicted_setting,
+ "predicted_needs": self.predicted_needs,
+ "relevant_past_scene_ids": self.relevant_past_scene_ids,
+ "status": self.status,
+ "source_memory_id": self.source_memory_id,
+ "prediction_basis": self.prediction_basis,
+ }
+
+ @classmethod
+ def from_dict(cls, data: Dict[str, Any]) -> "ProspectiveScene":
+ if not data:
+ return cls()
+ status = data.get("status", "predicted")
+ if status not in cls._VALID_STATUSES:
+ status = "predicted"
+ return cls(
+ predicted_time=data.get("predicted_time"),
+ trigger_window_hours=data.get("trigger_window_hours", 24),
+ event_type=data.get("event_type"),
+ participants=data.get("participants", []),
+ predicted_setting=data.get("predicted_setting"),
+ predicted_needs=data.get("predicted_needs", []),
+ relevant_past_scene_ids=data.get("relevant_past_scene_ids", []),
+ status=status,
+ source_memory_id=data.get("source_memory_id", ""),
+ prediction_basis=data.get("prediction_basis"),
+ )
+
+ def is_due(self, now_iso: str) -> bool:
+ """Check if this scene should be triggered (within trigger window)."""
+ if not self.predicted_time or self.status != "predicted":
+ return False
+ try:
+ predicted = datetime.fromisoformat(self.predicted_time.replace("Z", "+00:00"))
+ now = datetime.fromisoformat(now_iso.replace("Z", "+00:00"))
+ delta_hours = (predicted - now).total_seconds() / 3600
+ return 0 <= delta_hours <= self.trigger_window_hours
+ except (ValueError, TypeError):
+ return False
+
+
+@dataclass
+class UniversalEngram:
+ """The atomic unit of structured memory in Dhee.
+ Four layers: Context (how you find it), Scene (what you see),
+ Content (what you know), Prospective (what you anticipate)."""
+ id: str = ""
+ raw_content: str = "" # original text (backward compat + vector search)
+
+ # Context Layer (hierarchical retrieval path: era -> place -> time -> activity)
+ context: ContextAnchor = field(default_factory=ContextAnchor)
+
+ # Scene Layer (visual reconstruction)
+ scene: SceneSnapshot = field(default_factory=SceneSnapshot)
+
+ # Content Layer (structured knowledge)
+ facts: List[Fact] = field(default_factory=list)
+ entities: List[EntityRef] = field(default_factory=list)
+ links: List[AssociativeLink] = field(default_factory=list)
+ echo: List[str] = field(default_factory=list) # semantic variants
+
+ # Prospective Layer (predicted future scenes)
+ prospective_scenes: List[ProspectiveScene] = field(default_factory=list)
+
+ # Existing Engram powers (preserved)
+ salience: Dict[str, float] = field(default_factory=dict)
+ scene_id: Optional[str] = None
+ memory_type: str = "episodic" # episodic|semantic
+ strength: float = 1.0
+ traces: Dict[str, float] = field(default_factory=lambda: {
+ "s_fast": 1.0, "s_mid": 0.5, "s_slow": 0.2,
+ })
+
+ # Metadata
+ content_hash: str = ""
+ created_at: str = ""
+ user_id: str = "default"
+ metadata: Dict[str, Any] = field(default_factory=dict)
+
+ def __post_init__(self):
+ if not self.id:
+ self.id = str(uuid.uuid4())
+ if not self.created_at:
+ self.created_at = datetime.now(timezone.utc).isoformat()
+ if not self.content_hash and self.raw_content:
+ self.content_hash = hashlib.sha256(self.raw_content.encode()).hexdigest()
+ # Auto-generate canonical keys for facts that lack them
+ for fact in self.facts:
+ if not fact.canonical_key:
+ fact.canonical_key = fact.make_canonical_key()
+
+ def to_dict(self) -> Dict[str, Any]:
+ return {
+ "id": self.id,
+ "raw_content": self.raw_content,
+ "context": self.context.to_dict(),
+ "scene": self.scene.to_dict(),
+ "facts": [f.to_dict() for f in self.facts],
+ "entities": [e.to_dict() for e in self.entities],
+ "links": [l.to_dict() for l in self.links],
+ "echo": self.echo,
+ "prospective_scenes": [p.to_dict() for p in self.prospective_scenes],
+ "salience": self.salience,
+ "scene_id": self.scene_id,
+ "memory_type": self.memory_type,
+ "strength": self.strength,
+ "traces": self.traces,
+ "content_hash": self.content_hash,
+ "created_at": self.created_at,
+ "user_id": self.user_id,
+ "metadata": self.metadata,
+ }
+
+ @classmethod
+ def from_dict(cls, data: Dict[str, Any]) -> "UniversalEngram":
+ if not data:
+ return cls()
+ return cls(
+ id=data.get("id", ""),
+ raw_content=data.get("raw_content", ""),
+ context=ContextAnchor.from_dict(data.get("context", {})),
+ scene=SceneSnapshot.from_dict(data.get("scene", {})),
+ facts=[Fact.from_dict(f) for f in data.get("facts", [])],
+ entities=[EntityRef.from_dict(e) for e in data.get("entities", [])],
+ links=[AssociativeLink.from_dict(l) for l in data.get("links", [])],
+ echo=data.get("echo", []),
+ prospective_scenes=[
+ ProspectiveScene.from_dict(p) for p in data.get("prospective_scenes", [])
+ ],
+ salience=data.get("salience", {}),
+ scene_id=data.get("scene_id"),
+ memory_type=data.get("memory_type", "episodic"),
+ strength=data.get("strength", 1.0),
+ traces=data.get("traces", {"s_fast": 1.0, "s_mid": 0.5, "s_slow": 0.2}),
+ content_hash=data.get("content_hash", ""),
+ created_at=data.get("created_at", ""),
+ user_id=data.get("user_id", "default"),
+ metadata=data.get("metadata", {}),
+ )
+
+ def get_due_prospective_scenes(self, now_iso: str) -> List[ProspectiveScene]:
+ """Get prospective scenes that should be triggered now."""
+ return [p for p in self.prospective_scenes if p.is_due(now_iso)]
+
+ def to_json(self) -> str:
+ return json.dumps(self.to_dict(), default=str)
+
+ @classmethod
+ def from_json(cls, json_str: str) -> "UniversalEngram":
+ return cls.from_dict(json.loads(json_str))
diff --git a/dhee/core/engram_extractor.py b/dhee/core/engram_extractor.py
new file mode 100644
index 0000000..d29f058
--- /dev/null
+++ b/dhee/core/engram_extractor.py
@@ -0,0 +1,609 @@
+"""Engram Extractor — structured fact + context extraction from raw text.
+
+Uses the existing Engram enrichment pipeline first (echo, episodic index,
+scene, salience, knowledge graph), then adds structured facts + context
+anchors via the LLM.
+
+Integration point: engram/memory/main.py _process_single_memory()
+"""
+
+import json
+import logging
+import re
+import uuid
+from typing import Any, Dict, List, Optional
+
+from dhee.core.engram import (
+ AssociativeLink,
+ ContextAnchor,
+ EntityRef,
+ Fact,
+ ProspectiveScene,
+ SceneSnapshot,
+ UniversalEngram,
+)
+
+logger = logging.getLogger(__name__)
+
+# Extraction prompt for structured engram generation
+_ENGRAM_EXTRACTION_PROMPT = """Extract structured memory from the following text.
+
+TEXT:
+{content}
+
+{session_context_block}
+
+Return a JSON object with these fields:
+{{
+ "context": {{
+ "era": "life phase or null (e.g. 'school', 'college', 'bengaluru_work')",
+ "place": "location or null",
+ "place_type": "home|office|travel|school|city or null",
+ "place_detail": "specific location detail or null",
+ "time_absolute": "ISO date/datetime if determinable, or null",
+ "time_markers": ["original temporal references from text"],
+ "activity": "activity type or null (coding|meeting|travel|movie|exam|conversation|...)"
+ }},
+ "scene": {{
+ "setting": "physical/virtual setting or null",
+ "people_present": ["people mentioned or involved"],
+ "self_state": "user's state/condition or null",
+ "emotional_tone": "dominant emotion or null",
+ "sensory_cues": ["sensory details or activity cues"]
+ }},
+ "facts": [
+ {{
+ "subject": "who/what",
+ "predicate": "action/relation/property",
+ "value": "object/value",
+ "value_numeric": null,
+ "value_unit": null,
+ "time": "when, if known",
+ "valid_from": "when this became true, if known",
+ "valid_until": null,
+ "qualifier": "additional context or null",
+ "confidence": 1.0,
+ "is_derived": false
+ }}
+ ],
+ "entities": [
+ {{
+ "name": "entity name",
+ "entity_type": "person|org|technology|location|project|tool",
+ "state": "current|former|planned or null",
+ "relationships": [{{"target": "other entity", "relation": "relation type"}}]
+ }}
+ ],
+ "links": [
+ {{
+ "target_canonical_key": "subject|predicate|value",
+ "link_type": "causal|temporal_sequence|co_occurring|emotional|elaborates",
+ "direction": "forward|backward",
+ "qualifier": "link description or null"
+ }}
+ ]
+}}
+
+Rules:
+- Extract EVERY factual claim as a SEPARATE fact — "I ate pizza and pasta" = 2 facts
+- Each distinct instance gets its OWN canonical_key: "subject|predicate|value" (lowercase, underscores)
+- For counting queries: "visited Tokyo, Paris, London" = 3 separate visited facts, NOT one
+- For knowledge updates ("switched from X to Y"): create 2 facts — old (valid_until=now) + new (valid_from=now)
+- For preferences ("I prefer/like/use X"): use predicate "prefers" or "uses"
+- Resolve temporal references to absolute dates when session date is provided
+- value_numeric: extract numbers for prices, counts, distances, durations
+- Return valid JSON only, no markdown"""
+
+
+class EngramExtractor:
+ """Extract structured Universal Engrams from raw text content."""
+
+ def __init__(self, llm=None):
+ """Initialize with an LLM for extraction.
+
+ Args:
+ llm: BaseLLM instance. If None, extraction returns minimal engrams.
+ """
+ self.llm = llm
+
+ def extract(
+ self,
+ content: str,
+ session_context: Optional[Dict[str, Any]] = None,
+ user_profile: Optional[Dict[str, Any]] = None,
+ existing_metadata: Optional[Dict[str, Any]] = None,
+ user_id: str = "default",
+ ) -> UniversalEngram:
+ """Extract structured engram with contextual anchoring.
+
+ Uses LLM for structured extraction. Falls back to rule-based
+ extraction if LLM is unavailable.
+ """
+ if not content or not content.strip():
+ return UniversalEngram(raw_content=content, user_id=user_id)
+
+ # Try LLM extraction first
+ if self.llm:
+ engram = self._extract_with_llm(
+ content, session_context, user_profile, user_id
+ )
+ if engram:
+ return engram
+
+ # Rule-based extraction
+ return self._extract_rule_based(
+ content, session_context, existing_metadata, user_id
+ )
+
+ def extract_batch(
+ self,
+ contents: List[str],
+ session_context: Optional[Dict[str, Any]] = None,
+ user_id: str = "default",
+ ) -> List[UniversalEngram]:
+ """Batch extraction for training data pipeline."""
+ return [
+ self.extract(c, session_context=session_context, user_id=user_id)
+ for c in contents
+ ]
+
+ def _extract_with_llm(
+ self,
+ content: str,
+ session_context: Optional[Dict[str, Any]],
+ user_profile: Optional[Dict[str, Any]],
+ user_id: str,
+ ) -> Optional[UniversalEngram]:
+ """LLM-based structured extraction. Fails fast — no retries here
+ (the LLM client already has its own retry logic with shorter timeout)."""
+ session_block = ""
+ if session_context:
+ session_block = f"SESSION CONTEXT:\n{json.dumps(session_context, default=str)}"
+
+ prompt = _ENGRAM_EXTRACTION_PROMPT.format(
+ content=content[:16000],
+ session_context_block=session_block,
+ )
+
+ try:
+ # Temporarily increase max_tokens for extraction — the structured
+ # JSON output (context + scene + facts + entities + links) often
+ # exceeds 4096 tokens for sessions with many facts.
+ original_max = getattr(self.llm, "max_tokens", None)
+ if original_max is not None and original_max < 8192:
+ self.llm.max_tokens = 8192
+ try:
+ response = self.llm.generate(prompt)
+ finally:
+ if original_max is not None:
+ self.llm.max_tokens = original_max
+
+ if response:
+ logger.debug("EngramExtractor raw LLM response (first 500 chars): %s", response[:500])
+ parsed = self._parse_extraction_response(response)
+ if not parsed:
+ logger.warning("EngramExtractor: LLM returned unparseable response")
+ return None
+
+ engram = UniversalEngram(
+ raw_content=content,
+ context=ContextAnchor.from_dict(parsed.get("context", {})),
+ scene=SceneSnapshot.from_dict(parsed.get("scene", {})),
+ facts=[Fact.from_dict(f) for f in parsed.get("facts", [])],
+ entities=[EntityRef.from_dict(e) for e in parsed.get("entities", [])],
+ links=[
+ AssociativeLink.from_dict(l)
+ for l in parsed.get("links", [])
+ ],
+ user_id=user_id,
+ )
+ logger.info(
+ "EngramExtractor: extracted %d facts, %d entities, context=%s",
+ len(engram.facts), len(engram.entities),
+ "yes" if engram.context.has_context() else "no",
+ )
+ return engram
+ except Exception as e:
+ logger.warning("EngramExtractor: LLM extraction failed: %s", e)
+ return None
+
+ def _extract_rule_based(
+ self,
+ content: str,
+ session_context: Optional[Dict[str, Any]],
+ existing_metadata: Optional[Dict[str, Any]],
+ user_id: str,
+ ) -> UniversalEngram:
+ """Rule-based extraction without LLM."""
+ context = self._extract_context_rules(content, session_context)
+ scene = self._extract_scene_rules(content)
+ facts = self._extract_facts_rules(content)
+ entities = self._extract_entities_rules(content)
+ prospective = self._extract_prospective_scenes(content, context, scene)
+
+ return UniversalEngram(
+ raw_content=content,
+ context=context,
+ scene=scene,
+ facts=facts,
+ entities=entities,
+ prospective_scenes=prospective,
+ user_id=user_id,
+ metadata=existing_metadata or {},
+ )
+
+ def _extract_context_rules(
+ self,
+ content: str,
+ session_context: Optional[Dict[str, Any]],
+ ) -> ContextAnchor:
+ """Rule-based context anchor extraction."""
+ lower = content.lower()
+ ctx = ContextAnchor()
+
+ # Activity detection
+ activity_patterns = {
+ "coding": r"\b(code|coding|programming|debug|commit|deploy|refactor)\b",
+ "meeting": r"\b(meeting|standup|call|sync|discussion|1:1)\b",
+ "travel": r"\b(travel|trip|flight|hotel|visited|touring)\b",
+ "movie": r"\b(movie|film|watched|cinema|theater)\b",
+ "exam": r"\b(exam|test|quiz|assessment|grade|marks)\b",
+ "reading": r"\b(read|reading|book|article|paper)\b",
+ "cooking": r"\b(cook|cooking|recipe|kitchen|meal)\b",
+ "exercise": r"\b(gym|workout|exercise|run|running|yoga)\b",
+ }
+ for activity, pattern in activity_patterns.items():
+ if re.search(pattern, lower):
+ ctx.activity = activity
+ break
+
+ # Place type detection
+ place_patterns = {
+ "office": r"\b(office|workplace|desk|coworking)\b",
+ "home": r"\b(home|house|apartment|flat)\b",
+ "school": r"\b(school|class|classroom|college|university)\b",
+ "travel": r"\b(airport|station|hotel|flight)\b",
+ }
+ for place_type, pattern in place_patterns.items():
+ if re.search(pattern, lower):
+ ctx.place_type = place_type
+ break
+
+ # Time marker extraction
+ time_patterns = [
+ r"\b(yesterday|today|tomorrow)\b",
+ r"\b(last|this|next)\s+(week|month|year|monday|tuesday|wednesday|thursday|friday|saturday|sunday)\b",
+ r"\b(in\s+\d{4})\b",
+ r"\b(class\s+\d+)\b",
+ r"\b(\d{1,2}/\d{1,2}/\d{2,4})\b",
+ ]
+ for pattern in time_patterns:
+ matches = re.findall(pattern, lower)
+ for match in matches:
+ marker = match if isinstance(match, str) else " ".join(match)
+ if marker.strip():
+ ctx.time_markers.append(marker.strip())
+
+ # Session context propagation
+ if session_context:
+ if not ctx.era and session_context.get("era"):
+ ctx.era = session_context["era"]
+ if session_context.get("session_id"):
+ ctx.session_id = session_context["session_id"]
+
+ return ctx
+
+ def _extract_scene_rules(self, content: str) -> SceneSnapshot:
+ """Rule-based scene snapshot extraction."""
+ scene = SceneSnapshot()
+ lower = content.lower()
+
+ # Emotional tone detection
+ tone_patterns = {
+ "happy": r"\b(happy|glad|excited|joyful|great|awesome|wonderful)\b",
+ "sad": r"\b(sad|unhappy|disappointed|upset|terrible)\b",
+ "anxious": r"\b(anxious|worried|nervous|stressed|tense)\b",
+ "relaxed": r"\b(relaxed|calm|peaceful|comfortable)\b",
+ "frustrated": r"\b(frustrated|annoyed|irritated|angry)\b",
+ }
+ for tone, pattern in tone_patterns.items():
+ if re.search(pattern, lower):
+ scene.emotional_tone = tone
+ break
+
+ # People extraction (simple pattern)
+ people_pattern = r"\bwith\s+(\w+(?:\s+\w+)?)\b"
+ people_matches = re.findall(people_pattern, lower)
+ stop_words = {"the", "a", "an", "my", "some", "all", "this", "that"}
+ for person in people_matches[:5]:
+ if person.strip() not in stop_words:
+ scene.people_present.append(person.strip())
+
+ return scene
+
+ def _extract_facts_rules(self, content: str) -> List[Fact]:
+ """Rule-based fact extraction — deterministic patterns."""
+ facts = []
+
+ # Pattern: "X prefers Y" / "X likes Y" / "X uses Y"
+ preference_patterns = [
+ (r"(?:I|user)\s+(?:prefer|like|love|enjoy|use)\s+(.+?)(?:\.|$|,)", "prefers"),
+ (r"(?:I|user)\s+(?:switched to|moved to|changed to)\s+(.+?)(?:\.|$|,)", "switched_to"),
+ (r"(?:I|user)\s+(?:work at|work for|employed at)\s+(.+?)(?:\.|$|,)", "works_at"),
+ (r"(?:I|user)\s+(?:visited|went to|traveled to)\s+(.+?)(?:\.|$|,)", "visited"),
+ (r"(?:I|user)\s+(?:bought|purchased)\s+(.+?)(?:\s+for\s+)?([\d,.]+)?\s*(\w+)?", "bought"),
+ ]
+ for pattern, predicate in preference_patterns:
+ matches = re.finditer(pattern, content, re.IGNORECASE)
+ for match in matches:
+ value = match.group(1).strip().rstrip(".")
+ if len(value) > 100:
+ continue
+ fact = Fact(
+ subject="user",
+ predicate=predicate,
+ value=value,
+ )
+ fact.canonical_key = fact.make_canonical_key()
+
+ # Extract numeric values for "bought" pattern
+ if predicate == "bought" and match.lastindex and match.lastindex >= 2:
+ try:
+ numeric = match.group(2)
+ if numeric:
+ fact.value_numeric = float(numeric.replace(",", ""))
+ fact.value_unit = match.group(3) if match.lastindex >= 3 else None
+ except (ValueError, IndexError):
+ pass
+
+ facts.append(fact)
+
+ return facts
+
+ def _extract_entities_rules(self, content: str) -> List[EntityRef]:
+ """Rule-based entity extraction."""
+ entities = []
+
+ # Capitalized words as potential entities (simple heuristic)
+ words = content.split()
+ seen = set()
+ for i, word in enumerate(words):
+ clean = word.strip(".,!?;:'\"()[]")
+ if (
+ clean
+ and clean[0].isupper()
+ and len(clean) > 1
+ and clean.lower() not in {"i", "the", "a", "an", "my", "we", "he", "she", "it", "they"}
+ and clean not in seen
+ ):
+ seen.add(clean)
+ entities.append(EntityRef(name=clean, entity_type="unknown"))
+
+ return entities[:10] # Cap at 10 entities
+
+ def _extract_prospective_scenes(
+ self,
+ content: str,
+ context: ContextAnchor,
+ scene: SceneSnapshot,
+ ) -> List[ProspectiveScene]:
+ """Detect future intent and create ProspectiveScene predictions.
+
+ When someone says "we'll play tennis next Saturday with Ankit",
+ the memory engine creates a predicted scene — NOT a todo.
+ It links to past similar scenes and predicts what you'll need.
+ """
+ lower = content.lower()
+ prospective = []
+
+ # Future intent patterns
+ future_patterns = [
+ # "will/going to/plan to [verb] [with person] [time]"
+ r"(?:will|going to|plan(?:ning)? to|gonna|shall|let's|we(?:'ll| will))\s+(.+?)(?:\.|$)",
+ # "next [day/week/month]"
+ r"(?:next|coming|upcoming|this)\s+(monday|tuesday|wednesday|thursday|friday|saturday|sunday|week|month|weekend)",
+ # "[day] we have/there's a [event]"
+ r"(?:on|this|next)\s+\w+\s+(?:we have|there(?:'s| is)|I have)\s+(.+?)(?:\.|$)",
+ # "meeting/appointment/call with [person] on/at [time]"
+ r"(?:meeting|appointment|call|session|game|match|dinner|lunch)\s+(?:with\s+)?(\w+)\s+(?:on|at|next|this)",
+ ]
+
+ has_future_intent = False
+ future_text = ""
+ for pattern in future_patterns:
+ match = re.search(pattern, lower)
+ if match:
+ has_future_intent = True
+ future_text = match.group(0)
+ break
+
+ if not has_future_intent:
+ return []
+
+ # Extract participants (people mentioned with "with")
+ participants = []
+ with_match = re.search(r"\bwith\s+(\w+(?:\s+(?:and|&)\s+\w+)*)", lower)
+ if with_match:
+ names = re.split(r"\s+(?:and|&)\s+", with_match.group(1))
+ participants = [n.strip().title() for n in names if n.strip()]
+
+ # Also use scene's people_present
+ if scene.people_present:
+ for p in scene.people_present:
+ if p.title() not in participants:
+ participants.append(p.title())
+
+ # Detect event type
+ event_type = None
+ event_patterns = {
+ "sport": r"\b(tennis|cricket|football|soccer|badminton|gym|yoga|run|swim|play)\b",
+ "meeting": r"\b(meeting|standup|sync|call|discussion|1:1|review)\b",
+ "social": r"\b(dinner|lunch|party|hangout|movie|drinks|coffee|birthday)\b",
+ "travel": r"\b(trip|travel|flight|visit|tour)\b",
+ "deadline": r"\b(deadline|due|submit|deliver|launch|release)\b",
+ }
+ for etype, pattern in event_patterns.items():
+ if re.search(pattern, lower):
+ event_type = etype
+ break
+
+ # Extract predicted time (simplified — full resolution would use DheeModel)
+ predicted_time = None
+ time_match = re.search(
+ r"(?:next|coming|this)\s+(monday|tuesday|wednesday|thursday|friday|saturday|sunday)",
+ lower,
+ )
+ if time_match:
+ from datetime import datetime, timedelta, timezone
+ day_name = time_match.group(1).lower()
+ day_map = {
+ "monday": 0, "tuesday": 1, "wednesday": 2, "thursday": 3,
+ "friday": 4, "saturday": 5, "sunday": 6,
+ }
+ target_day = day_map.get(day_name, 0)
+ now = datetime.now(timezone.utc)
+ days_ahead = target_day - now.weekday()
+ if days_ahead <= 0:
+ days_ahead += 7
+ target_date = now + timedelta(days=days_ahead)
+ predicted_time = target_date.replace(hour=10, minute=0, second=0).isoformat()
+
+ if not time_match:
+ # "next month's 1st saturday" pattern
+ month_match = re.search(
+ r"next\s+month(?:'s)?\s+(?:1st|first|2nd|second|3rd|third|last)\s+"
+ r"(monday|tuesday|wednesday|thursday|friday|saturday|sunday)",
+ lower,
+ )
+ if month_match:
+ from datetime import datetime, timedelta, timezone
+ from calendar import monthrange
+ day_name = month_match.group(1).lower()
+ day_map = {
+ "monday": 0, "tuesday": 1, "wednesday": 2, "thursday": 3,
+ "friday": 4, "saturday": 5, "sunday": 6,
+ }
+ target_day = day_map.get(day_name, 5)
+ now = datetime.now(timezone.utc)
+ next_month = now.month + 1 if now.month < 12 else 1
+ next_year = now.year if now.month < 12 else now.year + 1
+ # Find ordinal occurrence
+ ordinal = "1st"
+ if "2nd" in lower or "second" in lower:
+ ordinal = "2nd"
+ elif "3rd" in lower or "third" in lower:
+ ordinal = "3rd"
+ elif "last" in lower:
+ ordinal = "last"
+
+ # Find the Nth occurrence of the day in next month
+ first_of_month = datetime(next_year, next_month, 1, tzinfo=timezone.utc)
+ days_in_month = monthrange(next_year, next_month)[1]
+ occurrences = []
+ for d in range(1, days_in_month + 1):
+ dt = datetime(next_year, next_month, d, tzinfo=timezone.utc)
+ if dt.weekday() == target_day:
+ occurrences.append(dt)
+ if occurrences:
+ if ordinal == "1st":
+ predicted_time = occurrences[0].replace(hour=10).isoformat()
+ elif ordinal == "2nd" and len(occurrences) >= 2:
+ predicted_time = occurrences[1].replace(hour=10).isoformat()
+ elif ordinal == "3rd" and len(occurrences) >= 3:
+ predicted_time = occurrences[2].replace(hour=10).isoformat()
+ elif ordinal == "last":
+ predicted_time = occurrences[-1].replace(hour=10).isoformat()
+
+ prospective.append(ProspectiveScene(
+ predicted_time=predicted_time,
+ trigger_window_hours=24,
+ event_type=event_type,
+ participants=participants,
+ predicted_setting=scene.setting,
+ predicted_needs=[], # Will be enriched with past scene data at storage time
+ status="predicted",
+ prediction_basis=f"Detected future intent: '{future_text}'",
+ ))
+
+ return prospective
+
+ def _parse_extraction_response(self, response: str) -> Optional[Dict[str, Any]]:
+ """Parse LLM extraction response, handling markdown code blocks and truncation."""
+ if not response:
+ return None
+
+ text = response.strip()
+ # Strip markdown code fences
+ if text.startswith("```"):
+ lines = text.split("\n")
+ # Remove first and last fence lines
+ if lines[0].startswith("```"):
+ lines = lines[1:]
+ if lines and lines[-1].strip() == "```":
+ lines = lines[:-1]
+ text = "\n".join(lines)
+
+ try:
+ return json.loads(text)
+ except json.JSONDecodeError:
+ pass
+
+ # Try to find JSON object in the response
+ brace_start = text.find("{")
+ brace_end = text.rfind("}")
+ if brace_start >= 0 and brace_end > brace_start:
+ try:
+ return json.loads(text[brace_start : brace_end + 1])
+ except json.JSONDecodeError:
+ pass
+
+ # Handle truncated JSON (finish_reason=length) — salvage partial data.
+ # The model often produces valid context/scene/facts before running out of tokens.
+ if brace_start >= 0:
+ truncated = text[brace_start:]
+ repaired = self._repair_truncated_json(truncated)
+ if repaired:
+ logger.info("EngramExtractor: salvaged partial JSON from truncated response")
+ return repaired
+
+ logger.warning("Failed to parse LLM extraction response")
+ return None
+
+ @staticmethod
+ def _repair_truncated_json(text: str) -> Optional[Dict[str, Any]]:
+ """Attempt to repair truncated JSON by closing open structures.
+
+ When max_tokens is hit, the JSON is cut mid-stream. This method
+ walks backward from the truncation point to find the last complete
+ JSON value boundary, then closes all open arrays/objects.
+ """
+ # Walk backward to find a safe cut point — the end of a complete
+ # JSON value (after a }, ], number, "string", true, false, null)
+ # followed by optional whitespace and a comma or container-close.
+ # We use a regex to find the last "}, " or "}," or "}]" boundary.
+ cut_re = re.compile(r'(}|])\s*[,\]}\n]')
+ matches = list(cut_re.finditer(text))
+ if not matches:
+ return None
+
+ # Try from the latest cut point backward
+ for match in reversed(matches):
+ cut_pos = match.end()
+ fragment = text[:cut_pos].rstrip().rstrip(",")
+
+ # Count open braces/brackets
+ open_braces = fragment.count("{") - fragment.count("}")
+ open_brackets = fragment.count("[") - fragment.count("]")
+
+ # Close open structures
+ suffix = "]" * max(0, open_brackets) + "}" * max(0, open_braces)
+ candidate = fragment + suffix
+
+ try:
+ result = json.loads(candidate)
+ if isinstance(result, dict):
+ return result
+ except json.JSONDecodeError:
+ continue
+
+ return None
diff --git a/engram/core/enrichment.py b/dhee/core/enrichment.py
similarity index 98%
rename from engram/core/enrichment.py
rename to dhee/core/enrichment.py
index d704e49..17ce58c 100644
--- a/engram/core/enrichment.py
+++ b/dhee/core/enrichment.py
@@ -15,11 +15,11 @@
from pydantic import BaseModel, ConfigDict, Field, field_validator
-from engram.core.category import CategoryMatch
-from engram.core.echo import EchoDepth, EchoProcessor, EchoResult
-from engram.core.graph import Entity, EntityType
-from engram.core.profile import ProfileUpdate
-from engram.utils.prompts import (
+from dhee.core.category import CategoryMatch
+from dhee.core.echo import EchoDepth, EchoProcessor, EchoResult
+from dhee.core.graph import Entity, EntityType
+from dhee.core.profile import ProfileUpdate
+from dhee.utils.prompts import (
UNIFIED_ENRICHMENT_BATCH_PROMPT,
UNIFIED_ENRICHMENT_PROMPT,
)
diff --git a/dhee/core/episodic_index.py b/dhee/core/episodic_index.py
new file mode 100644
index 0000000..36b6305
--- /dev/null
+++ b/dhee/core/episodic_index.py
@@ -0,0 +1,979 @@
+"""Deterministic episodic event extraction for memory indexing.
+
+This module avoids LLM calls and derives structured events from memory text.
+It is used to power low-cost event-first retrieval for counting, sums, and
+recency-style questions.
+"""
+
+from __future__ import annotations
+
+import hashlib
+import re
+from datetime import date, datetime, timedelta, timezone
+from typing import Any, Dict, Iterable, List, Optional, Sequence
+
+
+_SESSION_ID_RE = re.compile(r"^Session ID:\s*(?P\S+)\s*$", re.MULTILINE)
+_SESSION_DATE_RE = re.compile(r"^Session Date:\s*(?P.+?)\s*$", re.MULTILINE)
+_TURN_RE = re.compile(r"^\s*(?P[A-Za-z0-9_ .'-]{1,64}):\s*(?P.+?)\s*$")
+_MONEY_RE = re.compile(r"(?P\$)?\s*(?P\d{1,3}(?:,\d{3})*|\d+)(?:\.(?P\d+))?")
+_MONEY_CONTEXT_RE = re.compile(
+ r"\b(usd|dollars?|spent|spend|cost|price|paid|payment|bought|purchase|salary|income|budget|amount)\b",
+ re.IGNORECASE,
+)
+_DURATION_RE = re.compile(
+ r"(?P\d+(?:\.\d+)?)\s*(?Pyears?|months?|weeks?|days?|hours?|minutes?)",
+ re.IGNORECASE,
+)
+_TRANSCRIPT_MARKER_RE = re.compile(r"^\s*User Transcript:\s*$", re.IGNORECASE)
+_NON_ALNUM_RE = re.compile(r"[^a-z0-9\s]")
+_WS_RE = re.compile(r"\s+")
+_ENTITY_NAME_RE = re.compile(r"\b([A-Z][a-z]{2,}(?:\s+[A-Z][a-z]{2,})?)\b")
+
+# ITEM events: Extract objects/things mentioned alongside action verbs.
+# Pattern: "picked up [the] ITEM", "bought [a] ITEM", etc.
+_ITEM_VERB_RE = re.compile(
+ r"\b(picked up|bought|returned|grabbed|got|ordered|received|"
+ r"exchanged|tried on|wore|cooked|made|played|watched|read|"
+ r"visited|went to|started|finished|completed)\b\s+"
+ r"(?:the |a |an |my |some )?(.+?)(?:\.|,|$|\band\b)",
+ re.IGNORECASE,
+)
+
+# ACTION events: What the user/speaker did (intransitive verbs).
+_ACTION_RE = re.compile(
+ r"\b(I|we|user)\s+(went|traveled|visited|moved|started|"
+ r"quit|changed|switched|joined|left|signed up|enrolled|"
+ r"graduated|retired|married|divorced)\b",
+ re.IGNORECASE,
+)
+_REL_YESTERDAY_RE = re.compile(r"\byesterday\b", re.IGNORECASE)
+_REL_TODAY_RE = re.compile(r"\btoday\b", re.IGNORECASE)
+_REL_TOMORROW_RE = re.compile(r"\btomorrow\b", re.IGNORECASE)
+_REL_LAST_WEEK_RE = re.compile(r"\b(last week|week before|the week before)\b", re.IGNORECASE)
+_REL_NEXT_WEEK_RE = re.compile(r"\b(next week|coming week)\b", re.IGNORECASE)
+_REL_LAST_MONTH_RE = re.compile(r"\b(last month|month before)\b", re.IGNORECASE)
+_REL_NEXT_MONTH_RE = re.compile(r"\b(next month|coming month)\b", re.IGNORECASE)
+_REL_LAST_YEAR_RE = re.compile(r"\b(last year|year before)\b", re.IGNORECASE)
+_REL_NEXT_YEAR_RE = re.compile(r"\b(next year|coming year)\b", re.IGNORECASE)
+_STOPWORDS = frozenset(
+ {
+ "a",
+ "an",
+ "and",
+ "are",
+ "as",
+ "at",
+ "be",
+ "by",
+ "for",
+ "from",
+ "has",
+ "have",
+ "he",
+ "i",
+ "in",
+ "is",
+ "it",
+ "its",
+ "me",
+ "my",
+ "of",
+ "on",
+ "or",
+ "our",
+ "she",
+ "that",
+ "the",
+ "their",
+ "them",
+ "they",
+ "this",
+ "to",
+ "was",
+ "we",
+ "were",
+ "with",
+ "you",
+ "your",
+ }
+)
+
+
+def _normalize_text(text: str) -> str:
+ lowered = _NON_ALNUM_RE.sub(" ", str(text or "").lower())
+ lowered = _WS_RE.sub(" ", lowered).strip()
+ return lowered
+
+
+def _canonical_phrase(text: str, *, max_terms: int = 12) -> str:
+ normalized = _normalize_text(text)
+ terms = [t for t in normalized.split() if t and t not in _STOPWORDS]
+ if not terms:
+ return ""
+ return " ".join(terms[: max(1, int(max_terms))])
+
+
+def normalize_actor_id(name: str) -> str:
+ actor = _normalize_text(name)
+ actor = actor.replace(" ", "_")
+ actor = actor.strip("_")
+ return actor or "unknown"
+
+
+def _parse_event_time(value: Any) -> Optional[str]:
+ if value is None:
+ return None
+ if isinstance(value, datetime):
+ dt = value
+ elif isinstance(value, date):
+ dt = datetime.combine(value, datetime.min.time())
+ else:
+ text = str(value).strip()
+ if not text:
+ return None
+ if text.endswith("Z"):
+ text = text[:-1] + "+00:00"
+ try:
+ dt = datetime.fromisoformat(text)
+ except ValueError:
+ date_match = re.match(r"^(\d{4}-\d{2}-\d{2})", text)
+ if not date_match:
+ return None
+ try:
+ d = date.fromisoformat(date_match.group(1))
+ except ValueError:
+ return None
+ dt = datetime.combine(d, datetime.min.time())
+ if dt.tzinfo is None:
+ dt = dt.replace(tzinfo=timezone.utc)
+ else:
+ dt = dt.astimezone(timezone.utc)
+ return dt.isoformat()
+
+
+def _parse_event_datetime(value: Any) -> Optional[datetime]:
+ normalized = _parse_event_time(value)
+ if not normalized:
+ return None
+ text = str(normalized)
+ if text.endswith("Z"):
+ text = text[:-1] + "+00:00"
+ try:
+ dt = datetime.fromisoformat(text)
+ except ValueError:
+ return None
+ if dt.tzinfo is None:
+ dt = dt.replace(tzinfo=timezone.utc)
+ else:
+ dt = dt.astimezone(timezone.utc)
+ return dt
+
+
+def _dt_iso(value: datetime) -> str:
+ dt = value.astimezone(timezone.utc) if value.tzinfo else value.replace(tzinfo=timezone.utc)
+ return dt.isoformat()
+
+
+def _day_bounds(dt: datetime) -> tuple[datetime, datetime]:
+ start = dt.replace(hour=0, minute=0, second=0, microsecond=0)
+ end = dt.replace(hour=23, minute=59, second=59, microsecond=0)
+ return start, end
+
+
+def _resolve_relative_time_range(text: str, event_time: Optional[str]) -> tuple[Optional[str], Optional[str], str]:
+ base_dt = _parse_event_datetime(event_time)
+ if base_dt is None:
+ return (None, None, "unknown")
+
+ lowered = str(text or "").lower()
+ if _REL_YESTERDAY_RE.search(lowered):
+ start_dt, end_dt = _day_bounds(base_dt - timedelta(days=1))
+ return (_dt_iso(start_dt), _dt_iso(end_dt), "day")
+ if _REL_TODAY_RE.search(lowered):
+ start_dt, end_dt = _day_bounds(base_dt)
+ return (_dt_iso(start_dt), _dt_iso(end_dt), "day")
+ if _REL_TOMORROW_RE.search(lowered):
+ start_dt, end_dt = _day_bounds(base_dt + timedelta(days=1))
+ return (_dt_iso(start_dt), _dt_iso(end_dt), "day")
+ if _REL_LAST_WEEK_RE.search(lowered):
+ end_dt = base_dt
+ start_dt = base_dt - timedelta(days=7)
+ return (_dt_iso(start_dt), _dt_iso(end_dt), "week")
+ if _REL_NEXT_WEEK_RE.search(lowered):
+ start_dt = base_dt + timedelta(days=7)
+ end_dt = base_dt + timedelta(days=14)
+ return (_dt_iso(start_dt), _dt_iso(end_dt), "week")
+ if _REL_LAST_MONTH_RE.search(lowered):
+ end_dt = base_dt
+ start_dt = base_dt - timedelta(days=30)
+ return (_dt_iso(start_dt), _dt_iso(end_dt), "month")
+ if _REL_NEXT_MONTH_RE.search(lowered):
+ start_dt = base_dt + timedelta(days=30)
+ end_dt = base_dt + timedelta(days=60)
+ return (_dt_iso(start_dt), _dt_iso(end_dt), "month")
+ if _REL_LAST_YEAR_RE.search(lowered):
+ end_dt = base_dt
+ start_dt = base_dt - timedelta(days=365)
+ return (_dt_iso(start_dt), _dt_iso(end_dt), "year")
+ if _REL_NEXT_YEAR_RE.search(lowered):
+ start_dt = base_dt + timedelta(days=365)
+ end_dt = base_dt + timedelta(days=730)
+ return (_dt_iso(start_dt), _dt_iso(end_dt), "year")
+ return (event_time, event_time, "instant")
+
+
+def _derive_entity_key(actor_id: str, text: str) -> str:
+ match = _ENTITY_NAME_RE.search(str(text or ""))
+ if match:
+ candidate = normalize_actor_id(match.group(1))
+ if candidate and candidate != "unknown":
+ return candidate
+ actor = normalize_actor_id(actor_id)
+ if actor and actor != "unknown":
+ return actor
+ phrase = _canonical_phrase(text, max_terms=4)
+ return phrase or "unknown"
+
+
+def _normalize_event_value(event: Dict[str, Any]) -> str:
+ event_type = str(event.get("event_type") or "").strip().lower()
+ value_text = str(event.get("value_text") or "").strip()
+ if event_type == "money":
+ value_num = event.get("value_num")
+ if value_num is not None:
+ try:
+ amount = float(value_num)
+ currency = str(event.get("currency") or "").strip().upper() or "USD"
+ return f"{amount:.2f} {currency}"
+ except (TypeError, ValueError):
+ pass
+ if event_type == "duration":
+ value_num = event.get("value_num")
+ unit = _duration_unit(str(event.get("value_unit") or ""))
+ if value_num is not None and unit:
+ try:
+ return f"{float(value_num):g} {unit}"
+ except (TypeError, ValueError):
+ pass
+ if value_text:
+ phrase = _canonical_phrase(value_text, max_terms=16)
+ if phrase:
+ return phrase
+ return value_text.lower()
+ return ""
+
+
+def _enrich_event_metadata(
+ *,
+ event: Dict[str, Any],
+ actor_id: str,
+ text: str,
+ event_time: Optional[str],
+) -> None:
+ norm_start, norm_end, granularity = _resolve_relative_time_range(text=text, event_time=event_time)
+ event["normalized_time_start"] = norm_start or event_time
+ event["normalized_time_end"] = norm_end or event_time
+ event["time_granularity"] = granularity
+ event["entity_key"] = _derive_entity_key(actor_id=actor_id, text=text)
+ event["value_norm"] = _normalize_event_value(event)
+
+
+def _stable_event_id(
+ *,
+ memory_id: str,
+ turn_id: int,
+ event_type: str,
+ canonical_key: str,
+ value_text: str,
+) -> str:
+ raw = f"{memory_id}|{turn_id}|{event_type}|{canonical_key}|{value_text}".encode("utf-8")
+ digest = hashlib.sha256(raw).hexdigest()
+ return f"{memory_id[:8]}_{digest[:24]}"
+
+
+def _session_meta_from_content(content: str, metadata: Dict[str, Any]) -> Dict[str, str]:
+ session_id = str(metadata.get("session_id") or "").strip()
+ if not session_id:
+ match = _SESSION_ID_RE.search(content)
+ if match:
+ session_id = match.group("session_id").strip()
+
+ session_date = (
+ str(metadata.get("event_time") or metadata.get("session_date") or metadata.get("event_date") or "").strip()
+ )
+ if not session_date:
+ match = _SESSION_DATE_RE.search(content)
+ if match:
+ session_date = match.group("session_date").strip()
+
+ return {"session_id": session_id or "unknown", "session_date": session_date}
+
+
+def _speaker_lines(content: str) -> List[Dict[str, str]]:
+ lines = [ln.rstrip() for ln in str(content or "").splitlines()]
+ start_idx = 0
+ for idx, line in enumerate(lines):
+ if _TRANSCRIPT_MARKER_RE.match(line):
+ start_idx = idx + 1
+ break
+
+ out: List[Dict[str, str]] = []
+ for line in lines[start_idx:]:
+ line = line.strip()
+ if not line:
+ continue
+ match = _TURN_RE.match(line)
+ if not match:
+ continue
+ speaker = match.group("speaker").strip()
+ text = match.group("text").strip()
+ if not text:
+ continue
+ out.append({"speaker": speaker or "unknown", "text": text})
+ return out
+
+
+def _duration_unit(unit: str) -> str:
+ u = str(unit or "").strip().lower()
+ if u.endswith("s"):
+ u = u[:-1]
+ aliases = {
+ "yr": "year",
+ "yrs": "year",
+ "hr": "hour",
+ "hrs": "hour",
+ "min": "minute",
+ "mins": "minute",
+ }
+ return aliases.get(u, u)
+
+
+def _emit_utterance_event(
+ *,
+ memory_id: str,
+ user_id: str,
+ conversation_id: str,
+ session_id: str,
+ turn_id: int,
+ actor_id: str,
+ actor_role: str,
+ event_time: Optional[str],
+ text: str,
+) -> Optional[Dict[str, Any]]:
+ phrase = _canonical_phrase(text, max_terms=14)
+ if not phrase:
+ return None
+ canonical_key = f"utterance:{actor_id}:{phrase}"
+ return {
+ "id": _stable_event_id(
+ memory_id=memory_id,
+ turn_id=turn_id,
+ event_type="utterance",
+ canonical_key=canonical_key,
+ value_text=text,
+ ),
+ "memory_id": memory_id,
+ "user_id": user_id,
+ "conversation_id": conversation_id,
+ "session_id": session_id,
+ "turn_id": turn_id,
+ "actor_id": actor_id,
+ "actor_role": actor_role,
+ "event_time": event_time,
+ "event_type": "utterance",
+ "canonical_key": canonical_key,
+ "value_text": text,
+ "value_num": None,
+ "value_unit": None,
+ "currency": None,
+ "confidence": 0.55,
+ "superseded_by": None,
+ }
+
+
+def _emit_money_events(
+ *,
+ memory_id: str,
+ user_id: str,
+ conversation_id: str,
+ session_id: str,
+ turn_id: int,
+ actor_id: str,
+ actor_role: str,
+ event_time: Optional[str],
+ text: str,
+) -> List[Dict[str, Any]]:
+ out: List[Dict[str, Any]] = []
+ for match in _MONEY_RE.finditer(text):
+ start, end = match.span()
+ currency_symbol = match.group("currency")
+ context_window = text[max(0, start - 24): min(len(text), end + 24)]
+ has_money_context = bool(currency_symbol == "$" or _MONEY_CONTEXT_RE.search(context_window))
+ if not has_money_context:
+ continue
+
+ raw_whole = match.group("whole")
+ if not raw_whole:
+ continue
+ try:
+ whole = raw_whole.replace(",", "")
+ frac = match.group("frac")
+ value_num = float(f"{whole}.{frac}") if frac else float(whole)
+ except ValueError:
+ continue
+ currency = "USD" if (currency_symbol == "$" or re.search(r"\b(usd|dollars?)\b", context_window, re.I)) else None
+ value_text = match.group(0).strip()
+ canonical_key = f"money:{actor_id}:{value_num:.2f}:{currency or ''}"
+ out.append(
+ {
+ "id": _stable_event_id(
+ memory_id=memory_id,
+ turn_id=turn_id,
+ event_type="money",
+ canonical_key=canonical_key,
+ value_text=value_text,
+ ),
+ "memory_id": memory_id,
+ "user_id": user_id,
+ "conversation_id": conversation_id,
+ "session_id": session_id,
+ "turn_id": turn_id,
+ "actor_id": actor_id,
+ "actor_role": actor_role,
+ "event_time": event_time,
+ "event_type": "money",
+ "canonical_key": canonical_key,
+ "value_text": value_text,
+ "value_num": value_num,
+ "value_unit": None,
+ "currency": currency,
+ "confidence": 0.9,
+ "superseded_by": None,
+ }
+ )
+ return out
+
+
+def _emit_duration_events(
+ *,
+ memory_id: str,
+ user_id: str,
+ conversation_id: str,
+ session_id: str,
+ turn_id: int,
+ actor_id: str,
+ actor_role: str,
+ event_time: Optional[str],
+ text: str,
+) -> List[Dict[str, Any]]:
+ out: List[Dict[str, Any]] = []
+ for match in _DURATION_RE.finditer(text):
+ value_raw = match.group("value")
+ unit_raw = match.group("unit")
+ if not value_raw or not unit_raw:
+ continue
+ try:
+ value_num = float(value_raw)
+ except ValueError:
+ continue
+ unit = _duration_unit(unit_raw)
+ value_text = match.group(0).strip()
+ canonical_key = f"duration:{actor_id}:{value_num}:{unit}"
+ out.append(
+ {
+ "id": _stable_event_id(
+ memory_id=memory_id,
+ turn_id=turn_id,
+ event_type="duration",
+ canonical_key=canonical_key,
+ value_text=value_text,
+ ),
+ "memory_id": memory_id,
+ "user_id": user_id,
+ "conversation_id": conversation_id,
+ "session_id": session_id,
+ "turn_id": turn_id,
+ "actor_id": actor_id,
+ "actor_role": actor_role,
+ "event_time": event_time,
+ "event_type": "duration",
+ "canonical_key": canonical_key,
+ "value_text": value_text,
+ "value_num": value_num,
+ "value_unit": unit,
+ "currency": None,
+ "confidence": 0.9,
+ "superseded_by": None,
+ }
+ )
+ return out
+
+
+def _emit_item_events(
+ *,
+ memory_id: str,
+ user_id: str,
+ conversation_id: str,
+ session_id: str,
+ turn_id: int,
+ actor_id: str,
+ actor_role: str,
+ event_time: Optional[str],
+ text: str,
+) -> List[Dict[str, Any]]:
+ out: List[Dict[str, Any]] = []
+ seen_phrases: set = set()
+
+ def _add_item(raw_value: str, confidence: float = 0.65) -> None:
+ phrase = _canonical_phrase(raw_value.strip(), max_terms=10)
+ if not phrase or phrase in seen_phrases:
+ return
+ seen_phrases.add(phrase)
+ canonical_key = f"item:{actor_id}:{phrase}"
+ out.append(
+ {
+ "id": _stable_event_id(
+ memory_id=memory_id,
+ turn_id=turn_id,
+ event_type="item",
+ canonical_key=canonical_key,
+ value_text=raw_value.strip(),
+ ),
+ "memory_id": memory_id,
+ "user_id": user_id,
+ "conversation_id": conversation_id,
+ "session_id": session_id,
+ "turn_id": turn_id,
+ "actor_id": actor_id,
+ "actor_role": actor_role,
+ "event_time": event_time,
+ "event_type": "item",
+ "canonical_key": canonical_key,
+ "value_text": raw_value.strip(),
+ "value_num": None,
+ "value_unit": None,
+ "currency": None,
+ "confidence": confidence,
+ "superseded_by": None,
+ }
+ )
+
+ # Strategy 1: Comma-separated list items (existing behavior).
+ if "," in text:
+ parts = [p.strip() for p in text.split(",")]
+ parts = [p for p in parts if p and len(p) <= 80]
+ if len(parts) >= 2:
+ for part in parts[:12]:
+ _add_item(part, confidence=0.65)
+
+ # Strategy 2: Verb-object patterns ("picked up a dress", "bought shoes").
+ for match in _ITEM_VERB_RE.finditer(text):
+ obj = match.group(2).strip()
+ if obj and 1 < len(obj) <= 80:
+ _add_item(obj, confidence=0.75)
+
+ return out
+
+
+def _emit_action_events(
+ *,
+ memory_id: str,
+ user_id: str,
+ conversation_id: str,
+ session_id: str,
+ turn_id: int,
+ actor_id: str,
+ actor_role: str,
+ event_time: Optional[str],
+ text: str,
+) -> List[Dict[str, Any]]:
+ """Extract action events — what the user/speaker did."""
+ out: List[Dict[str, Any]] = []
+ for match in _ACTION_RE.finditer(text):
+ action_verb = match.group(2).strip().lower()
+ # Use a wider context window after the verb for the action object.
+ end_pos = match.end()
+ remaining = text[end_pos:end_pos + 80].strip()
+ # Take up to the first sentence boundary.
+ obj_match = re.match(r"\s*(.+?)(?:\.|,|$)", remaining)
+ action_object = obj_match.group(1).strip() if obj_match else ""
+ value_text = f"{action_verb} {action_object}".strip() if action_object else action_verb
+ phrase = _canonical_phrase(value_text, max_terms=10)
+ if not phrase:
+ continue
+ canonical_key = f"action:{actor_id}:{phrase}"
+ out.append(
+ {
+ "id": _stable_event_id(
+ memory_id=memory_id,
+ turn_id=turn_id,
+ event_type="action",
+ canonical_key=canonical_key,
+ value_text=value_text,
+ ),
+ "memory_id": memory_id,
+ "user_id": user_id,
+ "conversation_id": conversation_id,
+ "session_id": session_id,
+ "turn_id": turn_id,
+ "actor_id": actor_id,
+ "actor_role": actor_role,
+ "event_time": event_time,
+ "event_type": "action",
+ "canonical_key": canonical_key,
+ "value_text": value_text,
+ "value_num": None,
+ "value_unit": None,
+ "currency": None,
+ "confidence": 0.70,
+ "superseded_by": None,
+ }
+ )
+ return out
+
+
+def extract_episodic_events(
+ *,
+ memory_id: str,
+ user_id: str,
+ content: str,
+ metadata: Optional[Dict[str, Any]] = None,
+) -> List[Dict[str, Any]]:
+ md = dict(metadata or {})
+ session_meta = _session_meta_from_content(content, md)
+ session_id = session_meta["session_id"]
+ event_time = _parse_event_time(session_meta["session_date"])
+ conversation_id = str(md.get("conversation_id") or md.get("sample_id") or user_id or "default")
+
+ speaker_rows = _speaker_lines(content)
+ if not speaker_rows:
+ fallback_actor = normalize_actor_id(str(md.get("actor_id") or md.get("speaker") or "unknown"))
+ speaker_rows = [{"speaker": fallback_actor, "text": str(content or "").strip()}]
+
+ events: List[Dict[str, Any]] = []
+ seen_keys = set()
+
+ for idx, row in enumerate(speaker_rows, start=1):
+ speaker = row.get("speaker", "unknown")
+ text = row.get("text", "")
+ actor_id = normalize_actor_id(speaker)
+ actor_role = str(speaker or "unknown")
+ if not text:
+ continue
+
+ utter = _emit_utterance_event(
+ memory_id=memory_id,
+ user_id=user_id,
+ conversation_id=conversation_id,
+ session_id=session_id,
+ turn_id=idx,
+ actor_id=actor_id,
+ actor_role=actor_role,
+ event_time=event_time,
+ text=text,
+ )
+ if utter:
+ _enrich_event_metadata(
+ event=utter,
+ actor_id=actor_id,
+ text=text,
+ event_time=event_time,
+ )
+ key = (
+ utter["event_type"],
+ utter["canonical_key"],
+ utter.get("value_text"),
+ utter.get("turn_id"),
+ )
+ if key not in seen_keys:
+ seen_keys.add(key)
+ events.append(utter)
+
+ emitted = []
+ emitted.extend(
+ _emit_money_events(
+ memory_id=memory_id,
+ user_id=user_id,
+ conversation_id=conversation_id,
+ session_id=session_id,
+ turn_id=idx,
+ actor_id=actor_id,
+ actor_role=actor_role,
+ event_time=event_time,
+ text=text,
+ )
+ )
+ emitted.extend(
+ _emit_duration_events(
+ memory_id=memory_id,
+ user_id=user_id,
+ conversation_id=conversation_id,
+ session_id=session_id,
+ turn_id=idx,
+ actor_id=actor_id,
+ actor_role=actor_role,
+ event_time=event_time,
+ text=text,
+ )
+ )
+ emitted.extend(
+ _emit_item_events(
+ memory_id=memory_id,
+ user_id=user_id,
+ conversation_id=conversation_id,
+ session_id=session_id,
+ turn_id=idx,
+ actor_id=actor_id,
+ actor_role=actor_role,
+ event_time=event_time,
+ text=text,
+ )
+ )
+ emitted.extend(
+ _emit_action_events(
+ memory_id=memory_id,
+ user_id=user_id,
+ conversation_id=conversation_id,
+ session_id=session_id,
+ turn_id=idx,
+ actor_id=actor_id,
+ actor_role=actor_role,
+ event_time=event_time,
+ text=text,
+ )
+ )
+
+ for event in emitted:
+ event_value_text = str(event.get("value_text") or text)
+ _enrich_event_metadata(
+ event=event,
+ actor_id=actor_id,
+ text=event_value_text,
+ event_time=event_time,
+ )
+ key = (
+ event["event_type"],
+ event["canonical_key"],
+ event.get("value_text"),
+ event.get("turn_id"),
+ )
+ if key in seen_keys:
+ continue
+ seen_keys.add(key)
+ events.append(event)
+
+ return events
+
+
+def _coarse_entity_key(event: Dict[str, Any]) -> str:
+ """Normalize event into a coarse entity key for aggregation.
+
+ Strips actor prefix from canonical_key, extracts the activity noun,
+ lowercases, and removes stopwords.
+ """
+ canonical = str(event.get("canonical_key") or "").strip()
+ # Strip the type:actor: prefix (e.g. "duration:user:3.0:day" -> "3.0:day")
+ parts = canonical.split(":", 2)
+ if len(parts) >= 3:
+ suffix = parts[2] # everything after type:actor:
+ elif len(parts) == 2:
+ suffix = parts[1]
+ else:
+ suffix = canonical
+
+ # For duration/money events, try to derive the activity from surrounding text
+ event_type = str(event.get("event_type") or "").lower()
+ value_text = str(event.get("value_text") or "").lower()
+ entity_key = str(event.get("entity_key") or "").lower()
+
+ if event_type in ("duration", "money"):
+ # Use entity_key if it looks meaningful (not just "unknown" or an actor name)
+ if entity_key and entity_key not in ("unknown", "user", "assistant"):
+ key = entity_key.replace(" ", "_")
+ else:
+ # Try to extract the activity noun from the surrounding context
+ # Look at the full canonical_key for context
+ key = suffix.replace(":", "_")
+ return _normalize_text(key).replace(" ", "_").strip("_") or "unknown"
+
+ if event_type == "item":
+ # For items, group by the action verb context
+ if entity_key and entity_key not in ("unknown", "user", "assistant"):
+ return _normalize_text(entity_key).replace(" ", "_").strip("_") or "items"
+ return "items"
+
+ if event_type == "action":
+ # For actions, use the canonical phrase
+ phrase = _canonical_phrase(value_text, max_terms=4)
+ return phrase.replace(" ", "_") if phrase else "actions"
+
+ return _normalize_text(entity_key or "unknown").replace(" ", "_").strip("_") or "unknown"
+
+
+def extract_entity_aggregates(
+ events: List[Dict[str, Any]],
+ session_id: str,
+ memory_id: str,
+) -> List[Dict[str, Any]]:
+ """Extract entity aggregates from episodic events for write-time accumulation.
+
+ Reuses the events already extracted by extract_episodic_events() (no extra cost).
+ Returns a list of aggregate update dicts, each with:
+ entity_key, agg_type, value_delta, value_unit, session_id, memory_id
+ (plus item_value for item_set type)
+ """
+ aggregates: List[Dict[str, Any]] = []
+
+ # Group duration events by activity noun -> duration_sum
+ duration_accum: Dict[str, Dict[str, Any]] = {}
+ # Group money events by context entity -> money_sum
+ money_accum: Dict[str, Dict[str, Any]] = {}
+ # Group item events -> item_set (unique items)
+ item_accum: Dict[str, List[str]] = {}
+ # Group action events -> count
+ action_accum: Dict[str, int] = {}
+
+ for event in events:
+ event_type = str(event.get("event_type") or "").lower()
+ coarse_key = _coarse_entity_key(event)
+
+ if event_type == "duration":
+ value_num = event.get("value_num")
+ if value_num is None:
+ continue
+ try:
+ val = float(value_num)
+ except (TypeError, ValueError):
+ continue
+ unit = _duration_unit(str(event.get("value_unit") or ""))
+ if coarse_key not in duration_accum:
+ duration_accum[coarse_key] = {"total": 0.0, "unit": unit}
+ duration_accum[coarse_key]["total"] += val
+ # Keep most specific unit
+ if unit and not duration_accum[coarse_key]["unit"]:
+ duration_accum[coarse_key]["unit"] = unit
+
+ elif event_type == "money":
+ value_num = event.get("value_num")
+ if value_num is None:
+ continue
+ try:
+ val = float(value_num)
+ except (TypeError, ValueError):
+ continue
+ currency = str(event.get("currency") or "USD")
+ if coarse_key not in money_accum:
+ money_accum[coarse_key] = {"total": 0.0, "currency": currency}
+ money_accum[coarse_key]["total"] += val
+
+ elif event_type == "item":
+ value_text = str(event.get("value_text") or "").strip()
+ if not value_text:
+ continue
+ normalized_item = _canonical_phrase(value_text, max_terms=10)
+ if not normalized_item:
+ continue
+ if coarse_key not in item_accum:
+ item_accum[coarse_key] = []
+ if normalized_item not in item_accum[coarse_key]:
+ item_accum[coarse_key].append(normalized_item)
+
+ elif event_type == "action":
+ if coarse_key not in action_accum:
+ action_accum[coarse_key] = 0
+ action_accum[coarse_key] += 1
+
+ # Emit duration aggregates
+ for key, data in duration_accum.items():
+ aggregates.append({
+ "entity_key": key,
+ "agg_type": "duration_sum",
+ "value_delta": data["total"],
+ "value_unit": data["unit"] or None,
+ "session_id": session_id,
+ "memory_id": memory_id,
+ })
+
+ # Emit money aggregates
+ for key, data in money_accum.items():
+ aggregates.append({
+ "entity_key": key,
+ "agg_type": "money_sum",
+ "value_delta": data["total"],
+ "value_unit": data["currency"],
+ "session_id": session_id,
+ "memory_id": memory_id,
+ })
+
+ # Emit item_set aggregates (one per unique item)
+ for key, items in item_accum.items():
+ for item in items:
+ aggregates.append({
+ "entity_key": key,
+ "agg_type": "item_set",
+ "item_value": item,
+ "value_delta": 1,
+ "value_unit": None,
+ "session_id": session_id,
+ "memory_id": memory_id,
+ })
+
+ # Emit action count aggregates
+ for key, count in action_accum.items():
+ aggregates.append({
+ "entity_key": key,
+ "agg_type": "count",
+ "value_delta": count,
+ "value_unit": None,
+ "session_id": session_id,
+ "memory_id": memory_id,
+ })
+
+ return aggregates
+
+
+def tokenize_query_terms(query: str) -> List[str]:
+ normalized = _normalize_text(query)
+ terms = [term for term in normalized.split() if len(term) > 2 and term not in _STOPWORDS]
+ # Preserve order while de-duplicating.
+ seen = set()
+ out: List[str] = []
+ for term in terms:
+ if term in seen:
+ continue
+ seen.add(term)
+ out.append(term)
+ return out
+
+
+def score_event_match(event: Dict[str, Any], query_terms: Sequence[str]) -> float:
+ if not query_terms:
+ return 1.0
+ haystack = " ".join(
+ [
+ str(event.get("event_type") or ""),
+ str(event.get("canonical_key") or ""),
+ str(event.get("value_text") or ""),
+ str(event.get("actor_id") or ""),
+ str(event.get("actor_role") or ""),
+ ]
+ ).lower()
+ score = 0.0
+ for term in query_terms:
+ if term and term in haystack:
+ score += 1.0
+ return score
+
+
+def intent_event_types(intent_value: str) -> Optional[Iterable[str]]:
+ intent = str(intent_value or "").strip().lower()
+ if intent == "money_sum":
+ return ("money",)
+ if intent == "duration":
+ return ("duration",)
+ if intent == "latest":
+ return None
+ if intent in {"count", "set_members"}:
+ return ("item", "action", "utterance")
+ return None
diff --git a/dhee/core/evolution.py b/dhee/core/evolution.py
new file mode 100644
index 0000000..9d871c7
--- /dev/null
+++ b/dhee/core/evolution.py
@@ -0,0 +1,356 @@
+"""Self-evolution integration — wires samskara, viveka, alaya into the memory pipeline.
+
+This module provides the EvolutionLayer that sits alongside the existing
+memory pipeline without modifying its core logic. It's initialized lazily
+by FullMemory and receives signals from key pipeline stages:
+
+ WRITE path:
+ _process_single_memory → [extraction complete] → viveka.assess_extraction
+ → samskara.on_extraction
+
+ READ path:
+ search → [results returned] → alaya.on_retrieval
+ → viveka.assess_retrieval
+ answer → [answer generated] → alaya.on_activation
+ → viveka.assess_answer
+ → samskara.on_answer_accepted/corrected
+
+ BACKGROUND:
+ nididhyasana.should_evolve() checked periodically
+ → auto-retraining when threshold crossed
+
+Minimal coupling: FullMemory holds one EvolutionLayer instance.
+All self-evolution logic lives here, not scattered across main.py.
+"""
+
+from __future__ import annotations
+
+import json
+import logging
+import os
+from typing import Any, Dict, List, Optional
+
+logger = logging.getLogger(__name__)
+
+
+class EvolutionLayer:
+ """Single entry point for all self-evolution components.
+
+ Initialized lazily by FullMemory. All methods are safe to call
+ even if individual components fail to initialize (graceful degradation).
+ """
+
+ def __init__(
+ self,
+ data_dir: Optional[str] = None,
+ enable_samskara: bool = True,
+ enable_viveka: bool = True,
+ enable_alaya: bool = True,
+ enable_nididhyasana: bool = True,
+ ):
+ self._data_dir = data_dir or os.path.join(
+ os.path.expanduser("~"), ".dhee"
+ )
+
+ self._samskara = None
+ self._viveka = None
+ self._alaya = None
+ self._nididhyasana = None
+
+ if enable_samskara:
+ try:
+ from dhee.core.samskara import SamskaraCollector
+ self._samskara = SamskaraCollector(
+ log_dir=os.path.join(self._data_dir, "samskaras"),
+ )
+ except Exception as e:
+ logger.debug("Samskara init skipped: %s", e)
+
+ if enable_viveka:
+ try:
+ from dhee.core.viveka import Viveka
+ self._viveka = Viveka(
+ samskara_collector=self._samskara,
+ )
+ except Exception as e:
+ logger.debug("Viveka init skipped: %s", e)
+
+ if enable_alaya:
+ try:
+ from dhee.core.alaya import AlayaStore
+ self._alaya = AlayaStore(
+ samskara_collector=self._samskara,
+ )
+ self._load_alaya_state()
+ except Exception as e:
+ logger.debug("Alaya init skipped: %s", e)
+
+ if enable_nididhyasana and self._samskara:
+ try:
+ from dhee.training.nididhyasana import NididhyasanaLoop
+ self._nididhyasana = NididhyasanaLoop(
+ samskara=self._samskara,
+ viveka=self._viveka,
+ alaya=self._alaya,
+ dhee_dir=self._data_dir,
+ )
+ except Exception as e:
+ logger.debug("Nididhyasana init skipped: %s", e)
+
+ # ------------------------------------------------------------------
+ # WRITE path hooks
+ # ------------------------------------------------------------------
+
+ def on_memory_stored(
+ self,
+ memory_id: str,
+ content: str,
+ facts: Optional[List[Dict]] = None,
+ context: Optional[Dict] = None,
+ user_id: str = "default",
+ ) -> None:
+ """Called after a memory is successfully stored and enriched.
+
+ Hook point: end of _process_single_memory, after engram extraction.
+ """
+ # Viveka: assess extraction quality
+ if self._viveka and facts is not None:
+ try:
+ self._viveka.assess_extraction(
+ content=content,
+ facts=facts,
+ context=context,
+ memory_id=memory_id,
+ user_id=user_id,
+ )
+ except Exception as e:
+ logger.debug("Viveka extraction assessment failed: %s", e)
+
+ # Samskara: record extraction impression (if viveka didn't already)
+ if self._samskara and facts is not None and not self._viveka:
+ try:
+ self._samskara.on_extraction(
+ memory_id=memory_id,
+ input_text=content[:500],
+ extracted_output=json.dumps(facts[:3]) if facts else "[]",
+ fact_count=len(facts),
+ user_id=user_id,
+ )
+ except Exception as e:
+ logger.debug("Samskara extraction recording failed: %s", e)
+
+ def on_conflict_resolved(
+ self,
+ memory_id: str,
+ old_value: str,
+ new_value: str,
+ resolved_to: str,
+ user_id: str = "default",
+ ) -> None:
+ """Called when a contradiction between memories is resolved."""
+ if self._samskara:
+ try:
+ self._samskara.on_conflict_detected(
+ memory_id=memory_id,
+ old_value=old_value,
+ new_value=new_value,
+ resolved_to=resolved_to,
+ user_id=user_id,
+ )
+ except Exception as e:
+ logger.debug("Samskara conflict recording failed: %s", e)
+
+ # ------------------------------------------------------------------
+ # READ path hooks
+ # ------------------------------------------------------------------
+
+ def on_search_results(
+ self,
+ query: str,
+ results: List[Dict],
+ user_id: str = "default",
+ ) -> None:
+ """Called after search returns results (before answer synthesis).
+
+ Hook point: end of search(), after reranking.
+ """
+ result_ids = [r.get("id", "") for r in results if r.get("id")]
+
+ # Alaya: record which seeds were surfaced
+ if self._alaya and result_ids:
+ try:
+ self._alaya.on_retrieval(
+ query=query,
+ retrieved_ids=result_ids,
+ user_id=user_id,
+ )
+ except Exception as e:
+ logger.debug("Alaya retrieval recording failed: %s", e)
+
+ # Viveka: assess retrieval quality
+ if self._viveka:
+ try:
+ self._viveka.assess_retrieval(
+ query=query,
+ results=results,
+ user_id=user_id,
+ )
+ except Exception as e:
+ logger.debug("Viveka retrieval assessment failed: %s", e)
+
+ def on_answer_generated(
+ self,
+ query: str,
+ answer: str,
+ source_memory_ids: List[str],
+ source_texts: Optional[List[str]] = None,
+ user_id: str = "default",
+ ) -> None:
+ """Called after an answer is synthesized from memories.
+
+ Hook point: search_orchestrated / answer orchestration output.
+ """
+ # Alaya: record which seeds actually contributed (ripening)
+ if self._alaya and source_memory_ids:
+ try:
+ self._alaya.on_activation(
+ memory_ids=source_memory_ids,
+ query=query,
+ user_id=user_id,
+ )
+ except Exception as e:
+ logger.debug("Alaya activation recording failed: %s", e)
+
+ # Viveka: assess answer quality
+ if self._viveka:
+ try:
+ self._viveka.assess_answer(
+ query=query,
+ answer=answer,
+ source_memories=source_texts,
+ user_id=user_id,
+ )
+ except Exception as e:
+ logger.debug("Viveka answer assessment failed: %s", e)
+
+ # Samskara: record answer acceptance (implicit positive signal)
+ if self._samskara:
+ try:
+ self._samskara.on_answer_accepted(
+ query=query,
+ answer=answer,
+ memory_ids=source_memory_ids,
+ user_id=user_id,
+ )
+ except Exception as e:
+ logger.debug("Samskara answer recording failed: %s", e)
+
+ def on_answer_corrected(
+ self,
+ query: str,
+ wrong_answer: str,
+ correct_answer: str,
+ memory_ids: List[str],
+ user_id: str = "default",
+ ) -> None:
+ """Called when a user explicitly corrects an answer.
+
+ This is the highest-value signal for self-evolution.
+ """
+ if self._samskara:
+ try:
+ self._samskara.on_answer_corrected(
+ query=query,
+ wrong_answer=wrong_answer,
+ correct_answer=correct_answer,
+ memory_ids=memory_ids,
+ user_id=user_id,
+ )
+ except Exception as e:
+ logger.debug("Samskara correction recording failed: %s", e)
+
+ # ------------------------------------------------------------------
+ # Background: evolution check
+ # ------------------------------------------------------------------
+
+ def check_evolution(self) -> Optional[Dict[str, Any]]:
+ """Check if auto-evolution should trigger. Call periodically.
+
+ Returns evolution cycle result if triggered, None otherwise.
+ """
+ if not self._nididhyasana:
+ return None
+
+ try:
+ should, reason = self._nididhyasana.should_evolve()
+ if should:
+ logger.info("Auto-evolution triggered: %s", reason)
+ cycle = self._nididhyasana.evolve()
+ if cycle:
+ return {
+ "cycle_id": cycle.cycle_id,
+ "verdict": cycle.verdict,
+ "karma_net": cycle.karma_net,
+ "hot_swapped": cycle.hot_swapped,
+ "error": cycle.error,
+ }
+ except Exception as e:
+ logger.debug("Evolution check failed: %s", e)
+
+ return None
+
+ # ------------------------------------------------------------------
+ # Status and persistence
+ # ------------------------------------------------------------------
+
+ def get_status(self) -> Dict[str, Any]:
+ """Get comprehensive self-evolution status."""
+ status: Dict[str, Any] = {"enabled": True}
+
+ if self._samskara:
+ status["samskara"] = self._samskara.get_training_signals()
+
+ if self._viveka:
+ status["viveka"] = self._viveka.get_stats()
+
+ if self._alaya:
+ status["alaya"] = self._alaya.get_activation_stats()
+
+ if self._nididhyasana:
+ status["nididhyasana"] = self._nididhyasana.get_status()
+
+ return status
+
+ def flush(self) -> None:
+ """Persist all state. Call on shutdown."""
+ if self._samskara:
+ try:
+ self._samskara.flush()
+ except Exception:
+ pass
+
+ if self._alaya:
+ self._save_alaya_state()
+
+ def _load_alaya_state(self) -> None:
+ """Load alaya seed state from disk."""
+ path = os.path.join(self._data_dir, "alaya_state.json")
+ if not os.path.exists(path) or not self._alaya:
+ return
+ try:
+ with open(path, "r", encoding="utf-8") as f:
+ data = json.load(f)
+ self._alaya.load_dict(data)
+ except (OSError, json.JSONDecodeError):
+ pass
+
+ def _save_alaya_state(self) -> None:
+ """Persist alaya seed state to disk."""
+ if not self._alaya:
+ return
+ path = os.path.join(self._data_dir, "alaya_state.json")
+ try:
+ with open(path, "w", encoding="utf-8") as f:
+ json.dump(self._alaya.to_dict(), f)
+ except OSError:
+ pass
diff --git a/engram/core/forgetting.py b/dhee/core/forgetting.py
similarity index 64%
rename from engram/core/forgetting.py
rename to dhee/core/forgetting.py
index ae9e7b0..861bc52 100644
--- a/engram/core/forgetting.py
+++ b/dhee/core/forgetting.py
@@ -12,8 +12,8 @@
from typing import TYPE_CHECKING, Any, Dict, List, Optional
if TYPE_CHECKING:
- from engram.configs.base import DistillationConfig, FadeMemConfig
- from engram.db.sqlite import SQLiteManager
+ from dhee.configs.base import DistillationConfig, FadeMemConfig
+ from dhee.db.sqlite import SQLiteManager
logger = logging.getLogger(__name__)
@@ -132,10 +132,14 @@ def run(
class RedundancyCollapser:
- """Auto-fuse near-duplicate memories to reduce bloat.
+ """Temporal-semantic clustering fusion (FadeMem-inspired).
- During decay cycles, finds clusters of highly similar memories
- and fuses them using the existing fusion pipeline.
+ Instead of pairwise cosine cutoff, builds a similarity graph over all
+ memories, then uses Union-Find clustering to discover transitive groups.
+ Memories A~B and B~C get grouped even if A is not directly similar to C.
+
+ Temporal proximity is factored in: memories closer in time are more
+ likely to be fused (FadeMem's temporal-semantic proximity).
"""
def __init__(
@@ -155,7 +159,10 @@ def run(
memories: List[Dict[str, Any]],
user_id: Optional[str] = None,
) -> Dict[str, int]:
- """Find and fuse redundant memory groups.
+ """Find and fuse redundant memory clusters.
+
+ Uses Union-Find over a semantic similarity graph to discover
+ transitive clusters, then fuses each cluster.
Returns {"groups_fused": N, "memories_fused": N}.
"""
@@ -166,52 +173,140 @@ def run(
return {"groups_fused": 0, "memories_fused": 0}
threshold = self.config.redundancy_collapse_threshold
- groups_fused = 0
- memories_fused = 0
- already_fused = set()
- for memory in memories:
- mid = memory.get("id")
- if mid in already_fused:
+ # Filter to fuseable memories with embeddings
+ fuseable = []
+ for m in memories:
+ if m.get("immutable"):
continue
- if memory.get("immutable"):
+ if not m.get("embedding"):
continue
+ fuseable.append(m)
- embedding = memory.get("embedding")
- if not embedding:
- continue
+ if len(fuseable) < 2:
+ return {"groups_fused": 0, "memories_fused": 0}
+
+ # Build Union-Find structure for transitive clustering
+ parent: Dict[str, str] = {}
+
+ def find(x: str) -> str:
+ while parent.get(x, x) != x:
+ parent[x] = parent.get(parent[x], parent[x]) # path compression
+ x = parent[x]
+ return x
+
+ def union(a: str, b: str) -> None:
+ ra, rb = find(a), find(b)
+ if ra != rb:
+ parent[ra] = rb
+
+ # Initialize each memory as its own cluster
+ for m in fuseable:
+ parent[m["id"]] = m["id"]
+ # Build similarity graph: for each memory, find neighbors and union
+ for m in fuseable:
+ mid = m["id"]
try:
filters = {"user_id": user_id} if user_id else {}
neighbors = self.search_fn(
query="",
- vectors=embedding,
- limit=5,
+ vectors=m["embedding"],
+ limit=8, # check more neighbors for transitive discovery
filters=filters,
)
- # Find highly similar memories
- group_ids = [mid]
+
for n in neighbors:
- if n.id == mid or n.id in already_fused:
+ if n.id == mid:
continue
+ sim = float(n.score)
+ if sim < threshold:
+ continue
+
+ # Temporal proximity bonus: memories within 24h get a similarity boost
+ # This implements FadeMem's temporal-semantic clustering
n_mem = self.db.get_memory(n.id)
if not n_mem or n_mem.get("immutable"):
continue
- if float(n.score) >= threshold:
- group_ids.append(n.id)
- if len(group_ids) >= 2:
- result = self.fuse_fn(group_ids, user_id=user_id)
- if result and not result.get("error"):
- already_fused.update(group_ids)
- groups_fused += 1
- memories_fused += len(group_ids)
+ effective_sim = self._temporal_adjusted_similarity(
+ sim, m.get("created_at", ""), n_mem.get("created_at", "")
+ )
+
+ if effective_sim >= threshold:
+ # Ensure neighbor is in our fuseable set
+ if n.id in parent:
+ union(mid, n.id)
+
+ except Exception as e:
+ logger.debug("Clustering failed for %s: %s", mid, e)
+
+ # Collect clusters
+ clusters: Dict[str, List[str]] = {}
+ for m in fuseable:
+ root = find(m["id"])
+ clusters.setdefault(root, []).append(m["id"])
+
+ # Fuse clusters with 2+ members
+ groups_fused = 0
+ memories_fused = 0
+
+ for root, member_ids in clusters.items():
+ if len(member_ids) < 2:
+ continue
+ # Cap cluster size to avoid mega-fusions
+ if len(member_ids) > 10:
+ member_ids = member_ids[:10]
+ try:
+ result = self.fuse_fn(member_ids, user_id=user_id)
+ if result and not result.get("error"):
+ groups_fused += 1
+ memories_fused += len(member_ids)
except Exception as e:
- logger.debug("Redundancy collapse failed for %s: %s", mid, e)
+ logger.debug("Fusion failed for cluster %s: %s", root, e)
return {"groups_fused": groups_fused, "memories_fused": memories_fused}
+ @staticmethod
+ def _temporal_adjusted_similarity(
+ semantic_sim: float, ts_a: str, ts_b: str
+ ) -> float:
+ """Boost similarity for temporally close memories (FadeMem approach).
+
+ Memories within 1 hour get +0.05 boost, within 24h get +0.02.
+ This means thematically related memories from the same conversation
+ are more likely to fuse, even if their cosine similarity is slightly
+ below threshold.
+ """
+ if not ts_a or not ts_b:
+ return semantic_sim
+
+ try:
+ from datetime import datetime
+
+ def _parse(ts: str) -> datetime:
+ # Handle ISO formats with/without timezone
+ for fmt in ("%Y-%m-%dT%H:%M:%S.%f", "%Y-%m-%dT%H:%M:%S", "%Y-%m-%d"):
+ try:
+ return datetime.strptime(ts[:26], fmt)
+ except ValueError:
+ continue
+ return datetime.now()
+
+ dt_a = _parse(ts_a)
+ dt_b = _parse(ts_b)
+ hours_apart = abs((dt_a - dt_b).total_seconds()) / 3600.0
+
+ if hours_apart < 1.0:
+ return semantic_sim + 0.05 # same conversation likely
+ elif hours_apart < 24.0:
+ return semantic_sim + 0.02 # same day
+ return semantic_sim
+
+ except Exception:
+ return semantic_sim
+
class HomeostaticNormalizer:
"""Enforce memory budgets per namespace with pressure-based decay.
diff --git a/engram/core/fusion.py b/dhee/core/fusion.py
similarity index 97%
rename from engram/core/fusion.py
rename to dhee/core/fusion.py
index 0cd1706..40d242b 100644
--- a/engram/core/fusion.py
+++ b/dhee/core/fusion.py
@@ -3,7 +3,7 @@
from dataclasses import dataclass
from typing import Any, Dict, List, Optional
-from engram.utils.prompts import FUSION_PROMPT
+from dhee.utils.prompts import FUSION_PROMPT
logger = logging.getLogger(__name__)
diff --git a/engram/core/graph.py b/dhee/core/graph.py
similarity index 100%
rename from engram/core/graph.py
rename to dhee/core/graph.py
diff --git a/engram/core/intent.py b/dhee/core/intent.py
similarity index 100%
rename from engram/core/intent.py
rename to dhee/core/intent.py
diff --git a/engram/core/kernel.py b/dhee/core/kernel.py
similarity index 96%
rename from engram/core/kernel.py
rename to dhee/core/kernel.py
index 4eef436..1004305 100644
--- a/engram/core/kernel.py
+++ b/dhee/core/kernel.py
@@ -9,12 +9,13 @@
import os
from typing import Dict, List, Optional
-from engram.core.log_parser import find_latest_log, parse_conversation_log
+from dhee.core.log_parser import find_latest_log, parse_conversation_log
logger = logging.getLogger(__name__)
# Default path for the handoff SQLite database
-_DEFAULT_DB = os.path.join(os.path.expanduser("~"), ".engram", "handoff.db")
+from dhee.configs.base import _dhee_data_dir
+_DEFAULT_DB = os.path.join(_dhee_data_dir(), "handoff.db")
def _get_bus(db_path: Optional[str] = None):
diff --git a/engram/core/log_parser.py b/dhee/core/log_parser.py
similarity index 100%
rename from engram/core/log_parser.py
rename to dhee/core/log_parser.py
diff --git a/dhee/core/metrics.py b/dhee/core/metrics.py
new file mode 100644
index 0000000..08a0f9f
--- /dev/null
+++ b/dhee/core/metrics.py
@@ -0,0 +1,207 @@
+"""Observability — structured logging and metrics for Dhee.
+
+Counters, histograms, and a @measure decorator for all critical paths.
+Prometheus-compatible /metrics endpoint output.
+"""
+
+import logging
+import time
+import threading
+from collections import defaultdict
+from dataclasses import dataclass, field
+from functools import wraps
+from typing import Any, Callable, Dict, List, Optional
+
+logger = logging.getLogger(__name__)
+
+
+class Counter:
+ """Thread-safe monotonic counter."""
+
+ def __init__(self, name: str, description: str = ""):
+ self.name = name
+ self.description = description
+ self._value = 0
+ self._lock = threading.Lock()
+
+ def inc(self, amount: int = 1) -> None:
+ with self._lock:
+ self._value += amount
+
+ @property
+ def value(self) -> int:
+ return self._value
+
+ def to_prometheus(self) -> str:
+ return (
+ f"# HELP {self.name} {self.description}\n"
+ f"# TYPE {self.name} counter\n"
+ f"{self.name} {self._value}\n"
+ )
+
+
+class Histogram:
+ """Thread-safe latency histogram with percentile tracking."""
+
+ def __init__(self, name: str, description: str = "", max_samples: int = 1000):
+ self.name = name
+ self.description = description
+ self._samples: List[float] = []
+ self._max_samples = max_samples
+ self._lock = threading.Lock()
+ self._sum = 0.0
+ self._count = 0
+
+ def observe(self, value: float) -> None:
+ with self._lock:
+ self._samples.append(value)
+ self._sum += value
+ self._count += 1
+ if len(self._samples) > self._max_samples:
+ self._samples = self._samples[-self._max_samples:]
+
+ @property
+ def count(self) -> int:
+ return self._count
+
+ @property
+ def avg(self) -> float:
+ return self._sum / self._count if self._count else 0.0
+
+ def percentile(self, p: float) -> float:
+ with self._lock:
+ if not self._samples:
+ return 0.0
+ sorted_samples = sorted(self._samples)
+ idx = int(len(sorted_samples) * p / 100)
+ return sorted_samples[min(idx, len(sorted_samples) - 1)]
+
+ def to_prometheus(self) -> str:
+ p50 = self.percentile(50)
+ p95 = self.percentile(95)
+ p99 = self.percentile(99)
+ return (
+ f"# HELP {self.name} {self.description}\n"
+ f"# TYPE {self.name} histogram\n"
+ f'{self.name}{{quantile="0.5"}} {p50:.4f}\n'
+ f'{self.name}{{quantile="0.95"}} {p95:.4f}\n'
+ f'{self.name}{{quantile="0.99"}} {p99:.4f}\n'
+ f"{self.name}_sum {self._sum:.4f}\n"
+ f"{self.name}_count {self._count}\n"
+ )
+
+
+class DheeMetrics:
+ """Centralized metrics registry for Dhee."""
+
+ _instance = None
+ _lock = threading.Lock()
+
+ def __new__(cls):
+ with cls._lock:
+ if cls._instance is None:
+ cls._instance = super().__new__(cls)
+ cls._instance._initialized = False
+ return cls._instance
+
+ def __init__(self):
+ if self._initialized:
+ return
+ self._initialized = True
+
+ # Counters
+ self.memory_add = Counter("dhee_memory_add_total", "Total memories added")
+ self.memory_search = Counter("dhee_memory_search_total", "Total memory searches")
+ self.deterministic_resolve = Counter(
+ "dhee_deterministic_resolve_total", "Queries resolved deterministically via SQL"
+ )
+ self.vector_search = Counter("dhee_vector_search_total", "Vector search operations")
+ self.cognitive_loop = Counter("dhee_cognitive_loop_total", "Cognitive decomposition runs")
+ self.llm_calls = Counter("dhee_llm_calls_total", "Total LLM API calls")
+ self.engram_extractions = Counter(
+ "dhee_engram_extractions_total", "Structured engram extractions"
+ )
+ self.prospective_triggered = Counter(
+ "dhee_prospective_triggered_total", "Prospective scenes triggered"
+ )
+ self.facts_stored = Counter("dhee_facts_stored_total", "Structured facts stored")
+ self.rerank_calls = Counter("dhee_rerank_calls_total", "Reranker invocations")
+
+ # Histograms
+ self.add_latency = Histogram(
+ "dhee_memory_add_seconds", "Memory add latency in seconds"
+ )
+ self.search_latency = Histogram(
+ "dhee_memory_search_seconds", "Memory search latency in seconds"
+ )
+ self.resolve_latency = Histogram(
+ "dhee_deterministic_resolve_seconds", "Deterministic resolution latency"
+ )
+ self.extraction_latency = Histogram(
+ "dhee_engram_extraction_seconds", "Engram extraction latency"
+ )
+ self.cognitive_latency = Histogram(
+ "dhee_cognitive_loop_seconds", "Cognitive loop latency"
+ )
+ self.llm_latency = Histogram("dhee_llm_call_seconds", "LLM call latency")
+ self.rerank_latency = Histogram("dhee_rerank_seconds", "Reranker latency")
+
+ def to_prometheus(self) -> str:
+ """Render all metrics in Prometheus text format."""
+ parts = []
+ for attr_name in dir(self):
+ attr = getattr(self, attr_name)
+ if isinstance(attr, (Counter, Histogram)):
+ parts.append(attr.to_prometheus())
+ return "\n".join(parts)
+
+ def to_dict(self) -> Dict[str, Any]:
+ """Render metrics as a dict for JSON API."""
+ result = {}
+ for attr_name in dir(self):
+ attr = getattr(self, attr_name)
+ if isinstance(attr, Counter):
+ result[attr.name] = attr.value
+ elif isinstance(attr, Histogram):
+ result[attr.name] = {
+ "count": attr.count,
+ "avg": round(attr.avg, 4),
+ "p50": round(attr.percentile(50), 4),
+ "p95": round(attr.percentile(95), 4),
+ "p99": round(attr.percentile(99), 4),
+ }
+ return result
+
+
+def get_metrics() -> DheeMetrics:
+ """Get the singleton metrics instance."""
+ return DheeMetrics()
+
+
+def measure(counter_name: str = "", histogram_name: str = ""):
+ """Decorator to measure function execution.
+
+ Usage:
+ @measure("memory_add", "add_latency")
+ def add(self, ...): ...
+ """
+ def decorator(func: Callable) -> Callable:
+ @wraps(func)
+ def wrapper(*args, **kwargs):
+ metrics = get_metrics()
+ t0 = time.monotonic()
+ try:
+ result = func(*args, **kwargs)
+ return result
+ finally:
+ elapsed = time.monotonic() - t0
+ if counter_name:
+ counter = getattr(metrics, counter_name, None)
+ if counter:
+ counter.inc()
+ if histogram_name:
+ histogram = getattr(metrics, histogram_name, None)
+ if histogram:
+ histogram.observe(elapsed)
+ return wrapper
+ return decorator
diff --git a/engram/core/profile.py b/dhee/core/profile.py
similarity index 83%
rename from engram/core/profile.py
rename to dhee/core/profile.py
index 0e02a3a..221efa7 100644
--- a/engram/core/profile.py
+++ b/dhee/core/profile.py
@@ -21,6 +21,32 @@
logger = logging.getLogger(__name__)
+_ALLOWED_PROFILE_TYPES = frozenset({"self", "contact", "entity"})
+_PROFILE_TYPE_ALIASES = {
+ "user": "self",
+ "me": "self",
+ "person": "contact",
+ "people": "contact",
+ "speaker": "contact",
+ "human": "contact",
+ "organization": "entity",
+ "org": "entity",
+ "company": "entity",
+ "tool": "entity",
+ "project": "entity",
+ "location": "entity",
+}
+
+
+def normalize_profile_type(value: Any, default: str = "contact") -> str:
+ """Normalize model/profile type values to DB-safe enum."""
+ raw = str(value or "").strip().lower()
+ if raw in _ALLOWED_PROFILE_TYPES:
+ return raw
+ if raw in _PROFILE_TYPE_ALIASES:
+ return _PROFILE_TYPE_ALIASES[raw]
+ return default
+
@dataclass
class ProfileUpdate:
@@ -56,9 +82,12 @@ class ProfileUpdate:
r"(?:my name is|call me|I'm|I am)\s+([A-Z][a-z]+(?:\s+[A-Z][a-z]+)*)",
re.IGNORECASE,
)
+_TRANSCRIPT_MARKER_RE = re.compile(r"^\s*User Transcript:\s*$", re.IGNORECASE)
+_SPEAKER_LINE_RE = re.compile(r"^\s*(?P[A-Za-z0-9_ .'-]{1,64}):\s*(?P.+?)\s*$")
+_GENERIC_SPEAKERS = frozenset({"assistant", "system", "bot", "agent", "unknown"})
-from engram.utils.math import cosine_similarity as _cosine_similarity
+from dhee.utils.math import cosine_similarity as _cosine_similarity
class ProfileProcessor:
@@ -87,6 +116,49 @@ def __init__(
# Extraction
# ------------------------------------------------------------------
+ def extract_profile_mentions_from_speakers(
+ self,
+ content: str,
+ metadata: Optional[Dict[str, Any]] = None,
+ ) -> List[ProfileUpdate]:
+ """Extract profile anchors from speaker lines before regex/LLM extraction."""
+ rows = [line.rstrip() for line in str(content or "").splitlines()]
+ start_idx = 0
+ for idx, line in enumerate(rows):
+ if _TRANSCRIPT_MARKER_RE.match(line):
+ start_idx = idx + 1
+ break
+
+ by_profile: Dict[str, ProfileUpdate] = {}
+ for line in rows[start_idx:]:
+ line = line.strip()
+ if not line:
+ continue
+ match = _SPEAKER_LINE_RE.match(line)
+ if not match:
+ continue
+ speaker = match.group("speaker").strip()
+ utterance = match.group("text").strip()
+ if not speaker or not utterance:
+ continue
+
+ lowered = speaker.lower().strip()
+ if lowered in _GENERIC_SPEAKERS:
+ continue
+
+ if lowered in {"i", "me", "myself", "self", "user"}:
+ key = "self:self"
+ update = by_profile.get(key) or ProfileUpdate(profile_name="self", profile_type="self")
+ else:
+ key = f"contact:{speaker}"
+ update = by_profile.get(key) or ProfileUpdate(profile_name=speaker, profile_type="contact")
+
+ if len(update.new_facts) < 3:
+ update.new_facts.append(utterance[:280])
+ by_profile[key] = update
+
+ return list(by_profile.values())
+
def extract_profile_mentions(
self,
content: str,
@@ -208,9 +280,13 @@ def apply_update(
) -> str:
"""Apply a ProfileUpdate to an existing or new profile. Returns profile_id."""
name = profile_update.profile_name
+ normalized_type = normalize_profile_type(profile_update.profile_type)
+ if str(name or "").strip().lower() == "self":
+ normalized_type = "self"
+ profile_update.profile_type = normalized_type
# Find existing profile
- if name == "self" or profile_update.profile_type == "self":
+ if str(name or "").strip().lower() == "self" or normalized_type == "self":
profile = self.db.get_profile_by_name("self", user_id=user_id)
if not profile and self.self_auto_create:
profile = self.ensure_self_profile(user_id)
@@ -230,7 +306,7 @@ def apply_update(
"id": profile_id,
"user_id": user_id,
"name": name,
- "profile_type": profile_update.profile_type,
+ "profile_type": normalized_type,
"facts": profile_update.new_facts[:self.max_facts],
"preferences": profile_update.new_preferences,
"relationships": profile_update.new_relationships,
@@ -240,7 +316,7 @@ def apply_update(
self.db.add_profile(profile_data)
# Link memory
- role = "about" if profile_update.profile_type == "self" else "mentioned"
+ role = "about" if normalized_type == "self" else "mentioned"
self.db.add_profile_memory(profile_id, memory_id, role=role)
# Track updates for narrative regeneration
diff --git a/dhee/core/proposition_context.py b/dhee/core/proposition_context.py
new file mode 100644
index 0000000..7f7642f
--- /dev/null
+++ b/dhee/core/proposition_context.py
@@ -0,0 +1,144 @@
+"""Proposition-based context builder for memory QA.
+
+Instead of feeding 30K chars of raw conversation to an LLM, this module
+builds ~3-8K chars of focused, structured facts with source citations
+from episodic events and retrieval results.
+
+This improves answer accuracy for freeform questions by reducing noise
+and letting even weak models answer correctly with clean input.
+"""
+
+from __future__ import annotations
+
+import re
+from typing import Any, Dict, List, Optional, Sequence
+
+
+def build_proposition_context(
+ *,
+ events: Sequence[Dict[str, Any]],
+ results: Sequence[Dict[str, Any]],
+ question: str,
+ max_chars: int = 8000,
+) -> str:
+ """Build LLM context from propositions + evidence snippets.
+
+ Instead of 30K chars of raw conversation, produces ~3-8K chars of
+ focused, structured facts with source citations.
+
+ Args:
+ events: Episodic events matched to the query.
+ results: Search results from the retrieval pipeline.
+ question: The user's question (used for relevance hints).
+ max_chars: Maximum output length.
+
+ Returns:
+ A compact context string ready for LLM consumption.
+ """
+ lines: List[str] = []
+ remaining = max(1, int(max_chars))
+
+ # Section 1: Structured facts from episodic events.
+ if events:
+ lines.append("Structured Facts:")
+ remaining -= len(lines[-1]) + 1
+ seen_keys: set = set()
+ for event in events:
+ value = str(event.get("value_text") or "").strip()
+ if not value:
+ continue
+ # Deduplicate by canonical key.
+ ckey = str(event.get("canonical_key") or "").strip().lower()
+ if ckey and ckey in seen_keys:
+ continue
+ if ckey:
+ seen_keys.add(ckey)
+
+ session_id = str(event.get("session_id") or "").strip()
+ event_time = str(event.get("event_time") or "").strip()
+ event_type = str(event.get("event_type") or "fact").strip()
+ actor = str(event.get("actor_role") or event.get("actor_id") or "").strip()
+
+ source_parts: List[str] = []
+ if session_id:
+ source_parts.append(f"Session {session_id}")
+ if event_time:
+ # Show only date portion for readability.
+ date_part = event_time[:10] if len(event_time) >= 10 else event_time
+ source_parts.append(date_part)
+ source = " | ".join(source_parts) if source_parts else "unknown"
+
+ fact_parts: List[str] = []
+ if actor:
+ fact_parts.append(actor)
+ fact_parts.append(f"({event_type})")
+ fact_parts.append(value[:200])
+ fact = " ".join(fact_parts)
+
+ line = f"- [{source}] {fact}"
+ if len(line) + 1 > remaining:
+ break
+ lines.append(line)
+ remaining -= len(line) + 1
+
+ # Section 2: Evidence snippets from retrieval results.
+ evidence_results = list(results)[:5]
+ if evidence_results and remaining > 100:
+ lines.append("")
+ lines.append("Evidence Snippets:")
+ remaining -= 20 # header overhead
+
+ for result in evidence_results:
+ evidence = str(
+ result.get("evidence_text") or result.get("memory") or ""
+ ).strip()
+ if not evidence:
+ continue
+ metadata = result.get("metadata") or {}
+ session_id = str(metadata.get("session_id") or "").strip()
+ session_date = str(metadata.get("session_date") or "").strip()
+
+ header_parts: List[str] = []
+ if session_id:
+ header_parts.append(f"Session {session_id}")
+ if session_date:
+ header_parts.append(session_date)
+ header = " | ".join(header_parts) if header_parts else "unknown"
+
+ # Truncate evidence to fit budget.
+ budget = min(1500, remaining - 20)
+ if budget <= 50:
+ break
+ snippet = evidence[:budget]
+
+ block = f"\n[{header}]\n{snippet}"
+ if len(block) + 1 > remaining:
+ break
+ lines.append(block)
+ remaining -= len(block) + 1
+
+ context = "\n".join(lines).strip()
+ return context[:max_chars]
+
+
+def build_proposition_answer_prompt(
+ question: str,
+ prop_context: str,
+ question_date: str = "",
+) -> str:
+ """Build a simplified answer prompt for proposition-based context.
+
+ When the LLM receives clean, structured facts instead of 30K chars
+ of raw conversation, the prompt can be dramatically simpler.
+ """
+ date_str = question_date or "Not specified"
+ return (
+ "Answer this question using ONLY the facts below.\n\n"
+ f"Question: {question}\n"
+ f"Date: {date_str}\n\n"
+ f"Facts:\n{prop_context}\n\n"
+ "Answer concisely using the exact values from the facts above. "
+ "If the answer requires counting items, count the distinct items "
+ "listed in the facts. If the facts do not contain enough "
+ "information, say so."
+ )
diff --git a/dhee/core/resolvers.py b/dhee/core/resolvers.py
new file mode 100644
index 0000000..404e021
--- /dev/null
+++ b/dhee/core/resolvers.py
@@ -0,0 +1,949 @@
+"""Context-first resolver — hierarchical context filtering before content matching.
+
+Implements the human memory model: narrow by era/place/time first, then match content.
+Runs BEFORE the existing vector search pipeline.
+
+Integration point: engram/memory/main.py search()
+"""
+
+import json
+import logging
+import re
+import uuid
+from dataclasses import dataclass, field
+from typing import Any, Dict, List, Optional, Tuple
+
+logger = logging.getLogger(__name__)
+
+# ── Query intent classification patterns (zero-LLM, deterministic) ──
+
+_COUNT_RE = re.compile(
+ r"\bhow many\b(?!.*\b(?:days?|weeks?|months?|years?|hours?|minutes?)\b)",
+ re.I,
+)
+_LATEST_RE = re.compile(
+ r"\b(?:current(?:ly)?|latest|most recent(?:ly)?|right now|now(?:adays)?|at the moment"
+ r"|what (?:is|are) (?:my|the)\b.*\bnow)\b",
+ re.I,
+)
+_SUM_RE = re.compile(
+ r"\b(?:total|sum|how much.*(?:spend|spent|cost|pay|paid)|altogether)\b",
+ re.I,
+)
+_TEMPORAL_RE = re.compile(
+ r"\b(?:when did|what (?:time|date|day|year)|in what year|how long ago|chronolog|timeline|history of)\b",
+ re.I,
+)
+_SET_RE = re.compile(
+ r"\b(?:which|what|list|name|all the|enumerate)\b.*\b(?:have I|did I|do I|I (?:have|did|do))\b",
+ re.I,
+)
+
+# Predicate extraction patterns — maps query phrases to fact predicates
+_PREDICATE_PATTERNS = [
+ (re.compile(r"\b(?:countries?|places?|cities?|locations?)\b.*\b(?:visit|been|travel|go)\b", re.I), "visited"),
+ (re.compile(r"\b(?:visit|been to|travel(?:ed|ing)?\s+to|went to|go(?:ne)?\s+to)\b", re.I), "visited"),
+ (re.compile(r"\b(?:movie|film|show)s?\b.*\b(?:watch|seen|saw)\b", re.I), "watched_movie"),
+ (re.compile(r"\b(?:watch|seen|saw)\b.*\b(?:movie|film|show)s?\b", re.I), "watched_movie"),
+ (re.compile(r"\b(?:book|novel)s?\b.*\b(?:read|finish)\b", re.I), "read_book"),
+ (re.compile(r"\b(?:read|finish)\b.*\b(?:book|novel)s?\b", re.I), "read_book"),
+ (re.compile(r"\b(?:sport|game)s?\b.*\b(?:play|compet)\b", re.I), "played_sport"),
+ (re.compile(r"\b(?:play|compet)\b.*\b(?:sport|game)s?\b", re.I), "played_sport"),
+ (re.compile(r"\b(?:restaurant|eat|din|ate)\b", re.I), "ate_at"),
+ (re.compile(r"\b(?:recipe|cook|bak)\b", re.I), "cooked"),
+ (re.compile(r"\b(?:editor|ide|code editor)\b", re.I), "uses_editor"),
+ (re.compile(r"\b(?:language|programming)\b.*\b(?:use|learn|know|write)\b", re.I), "uses_language"),
+ (re.compile(r"\b(?:subscribe|subscription|membership)\b", re.I), "subscribes_to"),
+ (re.compile(r"\b(?:prefer|favorite|favourite)\b", re.I), "prefers"),
+ (re.compile(r"\b(?:job|work(?:ed)?(?:\s+(?:at|for))?|employ|company|position)\b", re.I), "works_at"),
+ (re.compile(r"\b(?:pet|dog|cat|animal)\b", re.I), "has_pet"),
+ (re.compile(r"\b(?:hobby|hobbies|pastime|interest)\b", re.I), "has_hobby"),
+ (re.compile(r"\b(?:buy|bought|purchas)\b", re.I), "bought"),
+ (re.compile(r"\b(?:learn|stud|course|class)\b", re.I), "learned"),
+ (re.compile(r"\b(?:award|won|prize|achievement)\b", re.I), "won_award"),
+]
+
+
+@dataclass
+class ResolverResult:
+ """Result from deterministic resolution."""
+ answer: Optional[str] = None
+ facts: List[Dict[str, Any]] = field(default_factory=list)
+ memory_ids: List[str] = field(default_factory=list)
+ resolver_path: str = "" # "context->sql", "chain->derived"
+ confidence: float = 1.0
+ is_deterministic: bool = True
+
+ def to_dict(self) -> Dict[str, Any]:
+ return {
+ "answer": self.answer,
+ "facts": self.facts,
+ "memory_ids": self.memory_ids,
+ "resolver_path": self.resolver_path,
+ "confidence": self.confidence,
+ "is_deterministic": self.is_deterministic,
+ }
+
+ def grounded_memory_ids(self) -> List[str]:
+ return list(dict.fromkeys(memory_id for memory_id in self.memory_ids if memory_id))
+
+ def has_grounding(self) -> bool:
+ return bool(self.grounded_memory_ids())
+
+
+@dataclass
+class QueryPlan:
+ """Parsed query with intent and context filters."""
+ intent: str = "freeform" # count|latest|set_members|sum|temporal|freeform
+ context_filters: Dict[str, Any] = field(default_factory=dict)
+ search_terms: List[str] = field(default_factory=list)
+ subject: Optional[str] = None
+ predicate: Optional[str] = None
+ chain_request: bool = False # needs associative chain traversal
+
+
+class ContextResolver:
+ """Hierarchical context-first retrieval + deterministic fact resolution."""
+
+ def __init__(self, db):
+ """Initialize with a SQLiteManager instance."""
+ self.db = db
+
+ @staticmethod
+ def _dedupe_memory_ids(memory_ids: List[str]) -> List[str]:
+ return list(dict.fromkeys(memory_id for memory_id in memory_ids if memory_id))
+
+ @staticmethod
+ def _split_grouped_memory_ids(raw_value: Optional[str]) -> List[str]:
+ if not raw_value:
+ return []
+ return ContextResolver._dedupe_memory_ids(raw_value.split(","))
+
+ def _fact_query_parts(
+ self,
+ *,
+ user_id: Optional[str] = None,
+ predicate: Optional[str] = None,
+ subject: Optional[str] = None,
+ context_ids: Optional[List[str]] = None,
+ valid_only: bool = False,
+ ) -> Tuple[str, List[Any]]:
+ conditions = ["m.id = f.memory_id", "m.tombstone = 0"]
+ params: List[Any] = []
+
+ if user_id:
+ conditions.append("m.user_id = ?")
+ params.append(user_id)
+ if subject:
+ conditions.append("f.subject = ?")
+ params.append(subject)
+ if predicate:
+ conditions.append("f.predicate = ?")
+ params.append(predicate)
+ if context_ids:
+ placeholders = ",".join("?" for _ in context_ids)
+ conditions.append(f"f.memory_id IN ({placeholders})")
+ params.extend(context_ids)
+ if valid_only:
+ conditions.append("f.valid_until IS NULL")
+
+ from_clause = " FROM engram_facts f JOIN memories m ON m.id = f.memory_id"
+ if conditions:
+ from_clause += " WHERE " + " AND ".join(conditions)
+ return from_clause, params
+
+ def resolve(
+ self,
+ query: str,
+ query_plan: Optional[QueryPlan] = None,
+ user_id: str = "default",
+ ) -> Optional[ResolverResult]:
+ """Try deterministic resolution.
+
+ 1. Auto-classify intent if no plan provided
+ 2. Context filtering: era -> place -> time_range -> activity
+ 3. Fact resolution: deterministic SQL over engram_facts
+ 4. Returns structured answer or None (fall through to vector search)
+ """
+ if not self._has_engram_tables():
+ return None
+
+ plan = query_plan or self._classify_query(query, user_id=user_id)
+
+ # Apply context filters to narrow candidate memories
+ context_ids = None
+ if plan.context_filters:
+ context_ids = self.filter_hierarchical(user_id=user_id, **plan.context_filters)
+ if context_ids is not None and not context_ids:
+ return None # Context filter matched nothing
+
+ # Try deterministic resolution based on intent
+ if plan.intent == "count":
+ return self._resolve_count(plan, context_ids, user_id)
+ elif plan.intent == "latest":
+ return self._resolve_latest(plan, context_ids, user_id)
+ elif plan.intent == "set_members":
+ return self._resolve_set_members(plan, context_ids, user_id)
+ elif plan.intent == "sum":
+ return self._resolve_sum(plan, context_ids, user_id)
+ elif plan.intent == "temporal":
+ return self._resolve_temporal(plan, context_ids, user_id)
+
+ # For freeform, try fact-based resolution
+ if plan.subject or plan.predicate:
+ return self._resolve_fact_lookup(plan, context_ids, user_id)
+
+ return None # Fall through to vector search
+
+ # ── Auto Query Classification ──
+
+ def _classify_query(self, query: str, user_id: str = "default") -> QueryPlan:
+ """Classify query intent and extract predicate from natural language.
+ Zero-LLM, deterministic pattern matching."""
+ plan = QueryPlan()
+
+ if not query or not query.strip():
+ return plan
+
+ # Classify intent
+ if _COUNT_RE.search(query):
+ plan.intent = "count"
+ elif _SUM_RE.search(query):
+ plan.intent = "sum"
+ elif _LATEST_RE.search(query):
+ plan.intent = "latest"
+ plan.subject = "user"
+ elif _TEMPORAL_RE.search(query):
+ plan.intent = "temporal"
+ plan.subject = "user"
+ elif _SET_RE.search(query):
+ plan.intent = "set_members"
+
+ # Extract predicate
+ for pattern, predicate in _PREDICATE_PATTERNS:
+ if pattern.search(query):
+ plan.predicate = predicate
+ break
+
+ # If we have an intent but no predicate, try to infer from engram_facts
+ if plan.intent != "freeform" and not plan.predicate:
+ plan.predicate = self._infer_predicate_from_db(query, user_id=user_id)
+
+ # Default subject to "user" for all intents
+ if plan.intent != "freeform" and not plan.subject:
+ plan.subject = "user"
+
+ return plan
+
+ def _infer_predicate_from_db(self, query: str, user_id: Optional[str] = None) -> Optional[str]:
+ """Try to match query keywords against existing predicates in engram_facts."""
+ try:
+ with self.db._get_connection() as conn:
+ params: List[Any] = []
+ sql = (
+ "SELECT DISTINCT f.predicate FROM engram_facts f "
+ "JOIN memories m ON m.id = f.memory_id "
+ "WHERE m.tombstone = 0"
+ )
+ if user_id:
+ sql += " AND m.user_id = ?"
+ params.append(user_id)
+ rows = conn.execute(sql, params).fetchall()
+ predicates = [r["predicate"] for r in rows]
+
+ if not predicates:
+ return None
+
+ # Score each predicate by keyword overlap with query
+ query_words = set(re.findall(r"\b\w{3,}\b", query.lower()))
+ best_pred = None
+ best_score = 0
+ for pred in predicates:
+ pred_words = set(pred.lower().replace("_", " ").split())
+ overlap = len(query_words & pred_words)
+ if overlap > best_score:
+ best_score = overlap
+ best_pred = pred
+
+ return best_pred if best_score > 0 else None
+ except Exception:
+ return None
+
+ # ── Context Filtering ──
+
+ def filter_by_era(self, era: str, user_id: Optional[str] = None) -> List[str]:
+ """Get memory IDs matching an era."""
+ with self.db._get_connection() as conn:
+ params: List[Any] = [era]
+ sql = (
+ "SELECT c.memory_id FROM engram_context c "
+ "JOIN memories m ON m.id = c.memory_id "
+ "WHERE c.era = ? AND m.tombstone = 0"
+ )
+ if user_id:
+ sql += " AND m.user_id = ?"
+ params.append(user_id)
+ rows = conn.execute(sql, params).fetchall()
+ return [r["memory_id"] for r in rows]
+
+ def filter_by_place(self, place: str, user_id: Optional[str] = None) -> List[str]:
+ """Get memory IDs matching a place."""
+ with self.db._get_connection() as conn:
+ params: List[Any] = [place, f"%{place}%"]
+ sql = (
+ "SELECT c.memory_id FROM engram_context c "
+ "JOIN memories m ON m.id = c.memory_id "
+ "WHERE (c.place = ? OR c.place_detail LIKE ?) AND m.tombstone = 0"
+ )
+ if user_id:
+ sql += " AND m.user_id = ?"
+ params.append(user_id)
+ rows = conn.execute(sql, params).fetchall()
+ return [r["memory_id"] for r in rows]
+
+ def filter_by_time_range(
+ self,
+ start: str,
+ end: str,
+ user_id: Optional[str] = None,
+ ) -> List[str]:
+ """Get memory IDs within a time range."""
+ with self.db._get_connection() as conn:
+ params: List[Any] = [start, end]
+ sql = (
+ "SELECT c.memory_id FROM engram_context c "
+ "JOIN memories m ON m.id = c.memory_id "
+ "WHERE c.time_absolute BETWEEN ? AND ? AND m.tombstone = 0"
+ )
+ if user_id:
+ sql += " AND m.user_id = ?"
+ params.append(user_id)
+ rows = conn.execute(sql, params).fetchall()
+ return [r["memory_id"] for r in rows]
+
+ def filter_by_activity(self, activity: str, user_id: Optional[str] = None) -> List[str]:
+ """Get memory IDs matching an activity."""
+ with self.db._get_connection() as conn:
+ params: List[Any] = [activity]
+ sql = (
+ "SELECT c.memory_id FROM engram_context c "
+ "JOIN memories m ON m.id = c.memory_id "
+ "WHERE c.activity = ? AND m.tombstone = 0"
+ )
+ if user_id:
+ sql += " AND m.user_id = ?"
+ params.append(user_id)
+ rows = conn.execute(sql, params).fetchall()
+ return [r["memory_id"] for r in rows]
+
+ def filter_hierarchical(
+ self,
+ era: Optional[str] = None,
+ place: Optional[str] = None,
+ time_range: Optional[Tuple[str, str]] = None,
+ activity: Optional[str] = None,
+ user_id: Optional[str] = None,
+ **kwargs,
+ ) -> Optional[List[str]]:
+ """Compound context filtering — narrows progressively."""
+ conditions = []
+ params = []
+
+ if era:
+ conditions.append("c.era = ?")
+ params.append(era)
+ if place:
+ conditions.append("(c.place = ? OR c.place_detail LIKE ?)")
+ params.extend([place, f"%{place}%"])
+ if time_range and len(time_range) == 2:
+ conditions.append("c.time_absolute BETWEEN ? AND ?")
+ params.extend(time_range)
+ if activity:
+ conditions.append("c.activity = ?")
+ params.append(activity)
+
+ if not conditions:
+ return None # No filters applied
+
+ query = (
+ "SELECT DISTINCT c.memory_id FROM engram_context c "
+ "JOIN memories m ON m.id = c.memory_id "
+ f"WHERE {' AND '.join(conditions)} AND m.tombstone = 0"
+ )
+ if user_id:
+ query += " AND m.user_id = ?"
+ params.append(user_id)
+ with self.db._get_connection() as conn:
+ rows = conn.execute(query, params).fetchall()
+ return [r["memory_id"] for r in rows]
+
+ # ── Deterministic Fact Resolution ──
+
+ def resolve_count(
+ self,
+ predicate: str,
+ context_ids: Optional[List[str]] = None,
+ user_id: Optional[str] = None,
+ ) -> int:
+ """COUNT(DISTINCT canonical_key) with optional context filter."""
+ resolved = self._resolve_count_aggregate(predicate, context_ids, user_id)
+ return resolved["count"] if resolved else 0
+
+ def resolve_latest(
+ self,
+ subject: str,
+ predicate: str,
+ user_id: Optional[str] = None,
+ context_ids: Optional[List[str]] = None,
+ ) -> Optional[Dict[str, Any]]:
+ """Most recent valid fact."""
+ with self.db._get_connection() as conn:
+ from_clause, params = self._fact_query_parts(
+ user_id=user_id,
+ subject=subject,
+ predicate=predicate,
+ context_ids=context_ids,
+ valid_only=True,
+ )
+ row = conn.execute(
+ "SELECT f.*" + from_clause + " ORDER BY COALESCE(f.valid_from, f.created_at) DESC LIMIT 1",
+ params,
+ ).fetchone()
+ if row:
+ return dict(row)
+ return None
+
+ def resolve_set_members(
+ self,
+ predicate: str,
+ context_ids: Optional[List[str]] = None,
+ user_id: Optional[str] = None,
+ ) -> List[str]:
+ """DISTINCT values for a predicate."""
+ rows = self._resolve_set_member_rows(predicate, context_ids, user_id)
+ return [r["value"] for r in rows]
+
+ def resolve_sum(
+ self,
+ predicate: str,
+ unit: Optional[str] = None,
+ context_ids: Optional[List[str]] = None,
+ user_id: Optional[str] = None,
+ ) -> float:
+ """SUM(value_numeric) with unit filtering."""
+ resolved = self._resolve_sum_aggregate(predicate, unit, context_ids, user_id)
+ return resolved["total"] if resolved else 0.0
+
+ def resolve_temporal_sequence(
+ self,
+ subject: str,
+ predicate: str,
+ user_id: Optional[str] = None,
+ context_ids: Optional[List[str]] = None,
+ ) -> List[Dict[str, Any]]:
+ """All values ordered by time — shows change over time."""
+ with self.db._get_connection() as conn:
+ from_clause, params = self._fact_query_parts(
+ user_id=user_id,
+ subject=subject,
+ predicate=predicate,
+ context_ids=context_ids,
+ )
+ rows = conn.execute(
+ "SELECT f.*" + from_clause + " ORDER BY COALESCE(f.time, f.valid_from, f.created_at) ASC",
+ params,
+ ).fetchall()
+ return [dict(r) for r in rows]
+
+ # ── Associative Chain Traversal ──
+
+ def walk_chain(
+ self,
+ start_canonical_key: str,
+ link_type: Optional[str] = None,
+ max_depth: int = 5,
+ ) -> List[Dict[str, Any]]:
+ """Walk associative links from a memory.
+ Returns chain of linked facts/memories."""
+ visited = set()
+ chain = []
+ self._walk_chain_recursive(
+ start_canonical_key, link_type, max_depth, 0, visited, chain
+ )
+ return chain
+
+ def _walk_chain_recursive(
+ self,
+ canonical_key: str,
+ link_type: Optional[str],
+ max_depth: int,
+ depth: int,
+ visited: set,
+ chain: list,
+ ) -> None:
+ if depth >= max_depth or canonical_key in visited:
+ return
+ visited.add(canonical_key)
+
+ with self.db._get_connection() as conn:
+ # Find the source fact/memory
+ fact_row = conn.execute(
+ "SELECT * FROM engram_facts WHERE canonical_key = ? LIMIT 1",
+ (canonical_key,),
+ ).fetchone()
+
+ if fact_row:
+ chain.append({
+ "depth": depth,
+ "canonical_key": canonical_key,
+ "fact": dict(fact_row),
+ })
+
+ # Find outgoing links
+ if link_type:
+ link_rows = conn.execute(
+ """SELECT * FROM engram_links
+ WHERE source_memory_id = ? AND link_type = ?""",
+ (fact_row["memory_id"], link_type),
+ ).fetchall()
+ else:
+ link_rows = conn.execute(
+ "SELECT * FROM engram_links WHERE source_memory_id = ?",
+ (fact_row["memory_id"],),
+ ).fetchall()
+
+ for link in link_rows:
+ target_key = link["target_canonical_key"]
+ if target_key not in visited:
+ self._walk_chain_recursive(
+ target_key, link_type, max_depth,
+ depth + 1, visited, chain,
+ )
+
+ def derive_time(self, canonical_key: str) -> Optional[str]:
+ """Derive a memory's time from its associative chain."""
+ chain = self.walk_chain(canonical_key, link_type="temporal_sequence", max_depth=5)
+ for entry in chain:
+ fact = entry.get("fact", {})
+ time_val = fact.get("time") or fact.get("valid_from")
+ if time_val:
+ return time_val
+ return None
+
+ def find_co_occurring(self, canonical_key: str) -> List[Dict[str, Any]]:
+ """Find memories that co-occurred with this one."""
+ return self.walk_chain(canonical_key, link_type="co_occurring", max_depth=2)
+
+ def reconstruct_scene(self, memory_id: str) -> Optional[Dict[str, Any]]:
+ """Reconstruct the visual scene around a memory."""
+ if not self._has_engram_tables():
+ return None
+
+ with self.db._get_connection() as conn:
+ # Get scene snapshot
+ scene_row = conn.execute(
+ "SELECT * FROM engram_scenes WHERE memory_id = ?",
+ (memory_id,),
+ ).fetchone()
+
+ # Get context anchor
+ ctx_row = conn.execute(
+ "SELECT * FROM engram_context WHERE memory_id = ?",
+ (memory_id,),
+ ).fetchone()
+
+ if not scene_row and not ctx_row:
+ return None
+
+ result = {}
+ if scene_row:
+ result["scene"] = {
+ "setting": scene_row["setting"],
+ "people_present": json.loads(scene_row["people_present"] or "[]"),
+ "self_state": scene_row["self_state"],
+ "emotional_tone": scene_row["emotional_tone"],
+ "sensory_cues": json.loads(scene_row["sensory_cues"] or "[]"),
+ }
+ if ctx_row:
+ result["context"] = {
+ "era": ctx_row["era"],
+ "place": ctx_row["place"],
+ "place_detail": ctx_row["place_detail"],
+ "activity": ctx_row["activity"],
+ "time_absolute": ctx_row["time_absolute"],
+ }
+
+ return result
+
+ # ── Internal Resolution Helpers ──
+
+ def _resolve_count_aggregate(
+ self,
+ predicate: str,
+ context_ids: Optional[List[str]],
+ user_id: Optional[str],
+ ) -> Optional[Dict[str, Any]]:
+ with self.db._get_connection() as conn:
+ from_clause, params = self._fact_query_parts(
+ user_id=user_id,
+ predicate=predicate,
+ context_ids=context_ids,
+ )
+ row = conn.execute(
+ "SELECT COUNT(DISTINCT f.canonical_key) as cnt, "
+ "GROUP_CONCAT(DISTINCT f.memory_id) as memory_ids" + from_clause,
+ params,
+ ).fetchone()
+ if not row:
+ return None
+ memory_ids = self._split_grouped_memory_ids(row["memory_ids"])
+ if not memory_ids:
+ return None
+ return {"count": int(row["cnt"] or 0), "memory_ids": memory_ids}
+
+ def _resolve_set_member_rows(
+ self,
+ predicate: str,
+ context_ids: Optional[List[str]],
+ user_id: Optional[str],
+ ) -> List[Dict[str, Any]]:
+ with self.db._get_connection() as conn:
+ from_clause, params = self._fact_query_parts(
+ user_id=user_id,
+ predicate=predicate,
+ context_ids=context_ids,
+ )
+ rows = conn.execute(
+ "SELECT DISTINCT f.value, f.memory_id" + from_clause + " ORDER BY f.value ASC",
+ params,
+ ).fetchall()
+ return [dict(r) for r in rows]
+
+ def _resolve_sum_aggregate(
+ self,
+ predicate: str,
+ unit: Optional[str],
+ context_ids: Optional[List[str]],
+ user_id: Optional[str],
+ ) -> Optional[Dict[str, Any]]:
+ with self.db._get_connection() as conn:
+ from_clause, params = self._fact_query_parts(
+ user_id=user_id,
+ predicate=predicate,
+ context_ids=context_ids,
+ )
+ conditions = ["f.value_numeric IS NOT NULL"]
+ if unit:
+ conditions.append("f.value_unit = ?")
+ params.append(unit)
+ sql = (
+ "SELECT SUM(f.value_numeric) as total, "
+ "GROUP_CONCAT(DISTINCT f.memory_id) as memory_ids"
+ + from_clause
+ )
+ if conditions:
+ joiner = " AND " if " WHERE " in from_clause else " WHERE "
+ sql += joiner + " AND ".join(conditions)
+ row = conn.execute(sql, params).fetchone()
+ if not row:
+ return None
+ memory_ids = self._split_grouped_memory_ids(row["memory_ids"])
+ if not memory_ids or row["total"] is None:
+ return None
+ return {"total": float(row["total"]), "memory_ids": memory_ids}
+
+ def _resolve_count(
+ self,
+ plan: QueryPlan,
+ context_ids: Optional[List[str]],
+ user_id: Optional[str],
+ ) -> Optional[ResolverResult]:
+ if not plan.predicate:
+ return None
+ resolved = self._resolve_count_aggregate(plan.predicate, context_ids, user_id)
+ if not resolved:
+ return None
+ return ResolverResult(
+ answer=str(resolved["count"]),
+ resolver_path="context->sql->count",
+ memory_ids=resolved["memory_ids"],
+ )
+
+ def _resolve_latest(
+ self,
+ plan: QueryPlan,
+ context_ids: Optional[List[str]],
+ user_id: Optional[str],
+ ) -> Optional[ResolverResult]:
+ subject = plan.subject or "user"
+ predicate = plan.predicate
+ if not predicate:
+ return None
+ fact = self.resolve_latest(subject, predicate, user_id=user_id, context_ids=context_ids)
+ if not fact:
+ return None
+ return ResolverResult(
+ answer=fact.get("value"),
+ facts=[fact],
+ memory_ids=[fact.get("memory_id", "")],
+ resolver_path="context->sql->latest",
+ )
+
+ def _resolve_set_members(
+ self,
+ plan: QueryPlan,
+ context_ids: Optional[List[str]],
+ user_id: Optional[str],
+ ) -> Optional[ResolverResult]:
+ if not plan.predicate:
+ return None
+ rows = self._resolve_set_member_rows(plan.predicate, context_ids, user_id)
+ if not rows:
+ return None
+ members = [row["value"] for row in rows]
+ return ResolverResult(
+ answer=", ".join(members),
+ facts=[{"predicate": plan.predicate, "value": row["value"], "memory_id": row["memory_id"]} for row in rows],
+ memory_ids=self._dedupe_memory_ids([row["memory_id"] for row in rows]),
+ resolver_path="context->sql->set_members",
+ )
+
+ def _resolve_sum(
+ self,
+ plan: QueryPlan,
+ context_ids: Optional[List[str]],
+ user_id: Optional[str],
+ ) -> Optional[ResolverResult]:
+ if not plan.predicate:
+ return None
+ resolved = self._resolve_sum_aggregate(plan.predicate, None, context_ids, user_id)
+ if not resolved:
+ return None
+ return ResolverResult(
+ answer=str(resolved["total"]),
+ memory_ids=resolved["memory_ids"],
+ resolver_path="context->sql->sum",
+ )
+
+ def _resolve_temporal(
+ self,
+ plan: QueryPlan,
+ context_ids: Optional[List[str]],
+ user_id: Optional[str],
+ ) -> Optional[ResolverResult]:
+ subject = plan.subject or "user"
+ predicate = plan.predicate
+ if not predicate:
+ return None
+ sequence = self.resolve_temporal_sequence(
+ subject,
+ predicate,
+ user_id=user_id,
+ context_ids=context_ids,
+ )
+ if not sequence:
+ return None
+ formatted = [
+ f"{s.get('value')} ({s.get('time', 'unknown time')})"
+ for s in sequence
+ ]
+ return ResolverResult(
+ answer=" -> ".join(formatted),
+ facts=sequence,
+ memory_ids=self._dedupe_memory_ids([s.get("memory_id", "") for s in sequence]),
+ resolver_path="context->sql->temporal",
+ )
+
+ def _resolve_fact_lookup(
+ self,
+ plan: QueryPlan,
+ context_ids: Optional[List[str]],
+ user_id: Optional[str],
+ ) -> Optional[ResolverResult]:
+ """General fact lookup by subject and/or predicate."""
+ with self.db._get_connection() as conn:
+ from_clause, params = self._fact_query_parts(
+ user_id=user_id,
+ subject=plan.subject,
+ predicate=plan.predicate,
+ context_ids=context_ids,
+ valid_only=True,
+ )
+ if " WHERE " not in from_clause:
+ return None
+
+ query = "SELECT f.*" + from_clause + " ORDER BY COALESCE(f.valid_from, f.created_at) DESC LIMIT 10"
+ rows = conn.execute(query, params).fetchall()
+ if not rows:
+ return None
+
+ facts = [dict(r) for r in rows]
+ return ResolverResult(
+ answer=facts[0].get("value") if len(facts) == 1 else None,
+ facts=facts,
+ memory_ids=self._dedupe_memory_ids([f.get("memory_id", "") for f in facts]),
+ resolver_path="context->sql->fact_lookup",
+ )
+
+ def _has_engram_tables(self) -> bool:
+ """Check if engram v3 tables exist."""
+ try:
+ with self.db._get_connection() as conn:
+ conn.execute("SELECT 1 FROM engram_facts LIMIT 0")
+ return True
+ except Exception:
+ return False
+
+ # ── Engram Storage ──
+
+ def store_engram(self, engram, memory_id: str) -> None:
+ """Store engram structured data into the v3 tables.
+
+ Args:
+ engram: UniversalEngram instance
+ memory_id: The memory ID from the memories table
+ """
+ if not self._has_engram_tables():
+ return
+
+ with self.db._get_connection() as conn:
+ # Store context anchor
+ if engram.context.has_context():
+ conn.execute(
+ """INSERT OR REPLACE INTO engram_context
+ (memory_id, era, place, place_type, place_detail,
+ time_absolute, time_markers, time_range_start, time_range_end,
+ time_derivation, activity, session_id, session_position)
+ VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)""",
+ (
+ memory_id,
+ engram.context.era,
+ engram.context.place,
+ engram.context.place_type,
+ engram.context.place_detail,
+ engram.context.time_absolute,
+ json.dumps(engram.context.time_markers),
+ engram.context.time_range_start,
+ engram.context.time_range_end,
+ engram.context.time_derivation,
+ engram.context.activity,
+ engram.context.session_id,
+ engram.context.session_position,
+ ),
+ )
+
+ # Store scene snapshot
+ if engram.scene.setting or engram.scene.people_present:
+ conn.execute(
+ """INSERT OR REPLACE INTO engram_scenes
+ (memory_id, setting, people_present, self_state,
+ emotional_tone, sensory_cues)
+ VALUES (?, ?, ?, ?, ?, ?)""",
+ (
+ memory_id,
+ engram.scene.setting,
+ json.dumps(engram.scene.people_present),
+ engram.scene.self_state,
+ engram.scene.emotional_tone,
+ json.dumps(engram.scene.sensory_cues),
+ ),
+ )
+
+ # Store facts (skip any with NULL required fields)
+ # Knowledge-update tracking: when a NEW fact shares the same
+ # (subject, predicate) as an existing valid fact, supersede the
+ # old one by setting its valid_until. This enables the LATEST
+ # resolver to always return the most recent value.
+ for fact in engram.facts:
+ if not fact.subject or not fact.predicate or not fact.value:
+ continue
+ canonical = fact.canonical_key or f"{fact.subject}|{fact.predicate}|{fact.value}"
+ fact_id = str(uuid.uuid4())
+ now_iso = fact.valid_from or fact.time or ""
+
+ # Auto-supersede: if this fact's predicate implies a
+ # single-valued property (lives_in, works_at, uses_editor,
+ # current status, etc.), close previous valid facts.
+ # Heuristic: predicates that start with a state-verb or
+ # match common single-valued patterns get superseded.
+ _SINGLE_VALUED_PREDICATES = {
+ "lives_in", "works_at", "uses_editor", "prefers",
+ "switched_to", "current_status", "has_title",
+ "has_email", "has_phone", "has_address", "has_role",
+ "uses_language", "subscribes_to",
+ }
+ pred_lower = fact.predicate.lower().replace(" ", "_")
+ is_single_valued = (
+ pred_lower in _SINGLE_VALUED_PREDICATES
+ or fact.valid_from # explicit valid_from = temporal update
+ )
+ if is_single_valued and not fact.valid_until:
+ try:
+ conn.execute(
+ """UPDATE engram_facts SET valid_until = ?
+ WHERE subject = ? AND predicate = ? AND valid_until IS NULL
+ AND memory_id != ?""",
+ (now_iso or "superseded", fact.subject, fact.predicate, memory_id),
+ )
+ except Exception:
+ pass
+
+ conn.execute(
+ """INSERT INTO engram_facts
+ (id, memory_id, subject, predicate, value,
+ value_numeric, value_unit, time, valid_from, valid_until,
+ qualifier, canonical_key, confidence, is_derived)
+ VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)""",
+ (
+ fact_id,
+ memory_id,
+ fact.subject,
+ fact.predicate,
+ fact.value,
+ fact.value_numeric,
+ fact.value_unit,
+ fact.time,
+ fact.valid_from,
+ fact.valid_until,
+ fact.qualifier,
+ canonical,
+ fact.confidence,
+ 1 if fact.is_derived else 0,
+ ),
+ )
+
+ # Store entities
+ for entity in engram.entities:
+ entity_id = str(uuid.uuid4())
+ conn.execute(
+ """INSERT INTO engram_entities
+ (id, memory_id, name, entity_type, state, relationships)
+ VALUES (?, ?, ?, ?, ?, ?)""",
+ (
+ entity_id,
+ memory_id,
+ entity.name,
+ entity.entity_type,
+ entity.state,
+ json.dumps(entity.relationships),
+ ),
+ )
+
+ # Store associative links
+ for link in engram.links:
+ link_id = str(uuid.uuid4())
+ conn.execute(
+ """INSERT INTO engram_links
+ (id, source_memory_id, target_memory_id, target_canonical_key,
+ link_type, direction, qualifier)
+ VALUES (?, ?, ?, ?, ?, ?, ?)""",
+ (
+ link_id,
+ memory_id,
+ link.target_memory_id,
+ link.target_canonical_key,
+ link.link_type,
+ link.direction,
+ link.qualifier,
+ ),
+ )
diff --git a/engram/core/retrieval.py b/dhee/core/retrieval.py
similarity index 96%
rename from engram/core/retrieval.py
rename to dhee/core/retrieval.py
index 3b1b1a1..0ad07d6 100644
--- a/engram/core/retrieval.py
+++ b/dhee/core/retrieval.py
@@ -1,12 +1,12 @@
"""Retrieval scoring functions for Engram memory search.
-Requires engram-accel (Rust) for tokenize and BM25 operations.
+Requires dhee-accel (Rust) for tokenize and BM25 operations.
"""
import math
from typing import Dict, List, Any, Optional, Set
-from engram_accel import tokenize as _rs_tokenize, bm25_score_batch as _rs_bm25_batch
+from dhee_accel import tokenize as _rs_tokenize, bm25_score_batch as _rs_bm25_batch
def composite_score(similarity: float, strength: float) -> float:
diff --git a/engram/core/salience.py b/dhee/core/salience.py
similarity index 100%
rename from engram/core/salience.py
rename to dhee/core/salience.py
diff --git a/dhee/core/samskara.py b/dhee/core/samskara.py
new file mode 100644
index 0000000..499079d
--- /dev/null
+++ b/dhee/core/samskara.py
@@ -0,0 +1,510 @@
+"""संस्कार (Samskara) — Impression collector for self-evolving memory.
+
+Every memory operation leaves a samskara — a structural impression on the
+system itself. Samskaras are NOT memories. They are signals about the
+quality and effectiveness of the system's own operations.
+
+Accumulated samskaras form vasanas (tendencies). When vasanas reach
+critical mass (prakrity-apurat), they trigger nididhyasana —
+deep integration that changes the model's weights.
+
+Brihadaranyaka Upanishad 4.4.5:
+ "sa yathakari yathachari tatha bhavati"
+ "as one acts, as one behaves, so one becomes"
+
+The system BECOMES what it repeatedly does.
+
+Three types of samskaras:
+ 1. Dhi (acquisition) — how well did we extract/understand?
+ 2. Dhriti (retention) — how well is the store organized?
+ 3. Smriti (recall) — how well did we retrieve and answer?
+"""
+
+from __future__ import annotations
+
+import json
+import logging
+import os
+import time
+from dataclasses import asdict, dataclass, field
+from enum import Enum
+from typing import Any, Dict, List, Optional
+
+logger = logging.getLogger(__name__)
+
+
+class SamskaraType(str, Enum):
+ """The three phases of memory, each generating its own impressions."""
+
+ # Dhi — acquisition impressions
+ EXTRACTION = "extraction" # fact extraction quality signal
+ ENRICHMENT = "enrichment" # echo/entity/context enrichment quality
+ CONFLICT = "conflict" # contradiction detected with existing memory
+
+ # Dhriti — retention impressions
+ STORAGE = "storage" # memory stored successfully
+ DEDUP = "dedup" # duplicate detected and merged
+ DECAY = "decay" # memory strength decayed
+
+ # Smriti — recall impressions
+ RETRIEVAL_HIT = "retrieval_hit" # memory retrieved and used in answer
+ RETRIEVAL_MISS = "retrieval_miss" # relevant query but memory not retrieved
+ ANSWER_ACCEPTED = "answer_accepted" # user accepted the answer
+ ANSWER_CORRECTED = "answer_corrected" # user corrected the answer
+ GROUNDING_SUCCESS = "grounding_success" # cognition engine grounded a sub-question
+ GROUNDING_FAILURE = "grounding_failure" # cognition engine failed to ground
+
+
+class SamskaraValence(str, Enum):
+ """Klishta vs Aklishta — Yoga Sutra 1.5.
+
+ Every impression is either afflicted (degrading) or non-afflicted (supporting).
+ """
+
+ KLISHTA = "klishta" # afflicted — signals a problem
+ AKLISHTA = "aklishta" # non-afflicted — signals correct operation
+
+
+@dataclass
+class Samskara:
+ """A single impression left by a memory operation.
+
+ Not a memory. A signal about the system's own quality.
+ """
+
+ type: SamskaraType
+ valence: SamskaraValence
+ timestamp: float = field(default_factory=time.time)
+
+ # What operation produced this impression
+ memory_id: str = "" # memory involved (if any)
+ query: str = "" # query involved (if any)
+ user_id: str = "default"
+
+ # Quality signal
+ confidence: float = 1.0 # how confident is this signal (0-1)
+ detail: str = "" # human-readable detail
+
+ # For training data generation
+ input_text: str = "" # the input that was processed
+ output_text: str = "" # what the system produced
+ corrected_text: str = "" # what it should have produced (for corrections)
+
+ def is_positive(self) -> bool:
+ return self.valence == SamskaraValence.AKLISHTA
+
+ def to_dict(self) -> Dict[str, Any]:
+ d = asdict(self)
+ d["type"] = self.type.value
+ d["valence"] = self.valence.value
+ return d
+
+
+@dataclass
+class Vasana:
+ """वासना — Accumulated tendency from repeated samskaras.
+
+ Like perfume lingering on a garment. Aggregated signal
+ about a specific dimension of system quality.
+ """
+
+ dimension: str # what aspect (e.g., "fact_extraction", "temporal_reasoning")
+ strength: float = 0.0 # accumulated signal (-1 to 1). Negative = degrading.
+ count: int = 0 # how many samskaras contributed
+ last_updated: float = field(default_factory=time.time)
+
+ def absorb(self, samskara: Samskara, learning_rate: float = 0.1) -> None:
+ """Absorb a new samskara into this vasana using EMA."""
+ signal = samskara.confidence if samskara.is_positive() else -samskara.confidence
+ self.strength = (1 - learning_rate) * self.strength + learning_rate * signal
+ self.count += 1
+ self.last_updated = time.time()
+
+ @property
+ def is_degrading(self) -> bool:
+ return self.strength < -0.3 and self.count >= 10
+
+ @property
+ def is_thriving(self) -> bool:
+ return self.strength > 0.3 and self.count >= 10
+
+
+class SamskaraCollector:
+ """Collects samskaras from all memory operations.
+
+ Accumulates them into vasanas. When vasanas cross thresholds,
+ signals the need for nididhyasana (model weight update).
+
+ The collector is the Chitragupta of Dhee — the divine accountant
+ who records every action for judgment.
+ """
+
+ def __init__(
+ self,
+ log_dir: Optional[str] = None,
+ nididhyasana_threshold: int = 100, # corrections before auto-retrain
+ prakrti_apurat_threshold: float = -0.3, # vasana floor before alarm
+ ):
+ self.log_dir = log_dir or os.path.join(
+ os.path.expanduser("~"), ".dhee", "samskaras"
+ )
+ os.makedirs(self.log_dir, exist_ok=True)
+
+ self.nididhyasana_threshold = nididhyasana_threshold
+ self.prakrti_apurat_threshold = prakrti_apurat_threshold
+
+ # Vasana accumulators — one per quality dimension
+ self.vasanas: Dict[str, Vasana] = {
+ "fact_extraction": Vasana(dimension="fact_extraction"),
+ "context_anchoring": Vasana(dimension="context_anchoring"),
+ "temporal_reasoning": Vasana(dimension="temporal_reasoning"),
+ "entity_linking": Vasana(dimension="entity_linking"),
+ "retrieval_precision": Vasana(dimension="retrieval_precision"),
+ "retrieval_recall": Vasana(dimension="retrieval_recall"),
+ "answer_quality": Vasana(dimension="answer_quality"),
+ "dedup_quality": Vasana(dimension="dedup_quality"),
+ }
+
+ # Counters
+ self._total_samskaras = 0
+ self._correction_count = 0
+ self._session_samskaras: List[Samskara] = []
+
+ # DPO training pairs (from corrections)
+ self._dpo_pairs: List[Dict[str, str]] = []
+
+ # Load existing vasana state
+ self._load_state()
+
+ # ------------------------------------------------------------------
+ # Dhi (acquisition) samskaras
+ # ------------------------------------------------------------------
+
+ def on_extraction(
+ self,
+ memory_id: str,
+ input_text: str,
+ extracted_output: str,
+ fact_count: int = 0,
+ user_id: str = "default",
+ ) -> None:
+ """Record impression from a memory extraction operation."""
+ # Positive signal: extracted facts successfully
+ valence = (
+ SamskaraValence.AKLISHTA if fact_count > 0
+ else SamskaraValence.KLISHTA
+ )
+ samskara = Samskara(
+ type=SamskaraType.EXTRACTION,
+ valence=valence,
+ memory_id=memory_id,
+ user_id=user_id,
+ confidence=min(1.0, fact_count / 3.0), # more facts = higher confidence
+ detail=f"extracted {fact_count} facts",
+ input_text=input_text[:500],
+ output_text=extracted_output[:500],
+ )
+ self._record(samskara, "fact_extraction")
+
+ def on_conflict_detected(
+ self,
+ memory_id: str,
+ old_value: str,
+ new_value: str,
+ resolved_to: str,
+ user_id: str = "default",
+ ) -> None:
+ """Record impression when a contradiction is found and resolved.
+
+ Conflicts are POSITIVE signals for self-evolution:
+ the system detected its own error and corrected it.
+ """
+ samskara = Samskara(
+ type=SamskaraType.CONFLICT,
+ valence=SamskaraValence.AKLISHTA, # detection is good
+ memory_id=memory_id,
+ user_id=user_id,
+ confidence=0.9,
+ detail=f"conflict: '{old_value}' vs '{new_value}' → '{resolved_to}'",
+ output_text=old_value,
+ corrected_text=resolved_to,
+ )
+ self._record(samskara, "fact_extraction")
+
+ # Store as DPO pair for training
+ if old_value != resolved_to:
+ self._dpo_pairs.append({
+ "input": samskara.input_text,
+ "preferred": resolved_to,
+ "rejected": old_value,
+ "signal": "conflict_resolution",
+ })
+
+ # ------------------------------------------------------------------
+ # Smriti (recall) samskaras
+ # ------------------------------------------------------------------
+
+ def on_retrieval(
+ self,
+ query: str,
+ retrieved_ids: List[str],
+ was_useful: bool = True,
+ user_id: str = "default",
+ ) -> None:
+ """Record impression from a search/retrieval operation."""
+ if was_useful and retrieved_ids:
+ samskara = Samskara(
+ type=SamskaraType.RETRIEVAL_HIT,
+ valence=SamskaraValence.AKLISHTA,
+ query=query[:200],
+ user_id=user_id,
+ confidence=0.8,
+ detail=f"retrieved {len(retrieved_ids)} useful results",
+ )
+ self._record(samskara, "retrieval_precision")
+ elif not was_useful or not retrieved_ids:
+ samskara = Samskara(
+ type=SamskaraType.RETRIEVAL_MISS,
+ valence=SamskaraValence.KLISHTA,
+ query=query[:200],
+ user_id=user_id,
+ confidence=0.6,
+ detail="retrieval miss or irrelevant results",
+ )
+ self._record(samskara, "retrieval_recall")
+
+ def on_answer_accepted(
+ self,
+ query: str,
+ answer: str,
+ memory_ids: List[str],
+ user_id: str = "default",
+ ) -> None:
+ """Record when user accepts an answer (implicit positive signal)."""
+ samskara = Samskara(
+ type=SamskaraType.ANSWER_ACCEPTED,
+ valence=SamskaraValence.AKLISHTA,
+ query=query[:200],
+ user_id=user_id,
+ confidence=0.7,
+ detail=f"answer accepted, grounded in {len(memory_ids)} memories",
+ input_text=query[:500],
+ output_text=answer[:500],
+ )
+ self._record(samskara, "answer_quality")
+
+ def on_answer_corrected(
+ self,
+ query: str,
+ wrong_answer: str,
+ correct_answer: str,
+ memory_ids: List[str],
+ user_id: str = "default",
+ ) -> None:
+ """Record when user corrects an answer (explicit negative signal).
+
+ This is the most valuable samskara — direct supervision.
+ Creates a DPO training pair immediately.
+ """
+ samskara = Samskara(
+ type=SamskaraType.ANSWER_CORRECTED,
+ valence=SamskaraValence.KLISHTA,
+ query=query[:200],
+ user_id=user_id,
+ confidence=1.0, # user corrections are highest confidence
+ detail=f"corrected: '{wrong_answer[:100]}' → '{correct_answer[:100]}'",
+ input_text=query[:500],
+ output_text=wrong_answer[:500],
+ corrected_text=correct_answer[:500],
+ )
+ self._record(samskara, "answer_quality")
+ self._correction_count += 1
+
+ # DPO pair: direct preference signal
+ self._dpo_pairs.append({
+ "input": query,
+ "preferred": correct_answer,
+ "rejected": wrong_answer,
+ "signal": "user_correction",
+ })
+
+ # Check if nididhyasana threshold reached
+ if self._correction_count >= self.nididhyasana_threshold:
+ logger.warning(
+ "Nididhyasana threshold reached: %d corrections accumulated. "
+ "Model retraining recommended.",
+ self._correction_count,
+ )
+
+ def on_grounding(
+ self,
+ sub_question: str,
+ grounded: bool,
+ source: str = "",
+ user_id: str = "default",
+ ) -> None:
+ """Record CognitionEngine grounding result."""
+ samskara = Samskara(
+ type=(
+ SamskaraType.GROUNDING_SUCCESS if grounded
+ else SamskaraType.GROUNDING_FAILURE
+ ),
+ valence=(
+ SamskaraValence.AKLISHTA if grounded
+ else SamskaraValence.KLISHTA
+ ),
+ query=sub_question[:200],
+ user_id=user_id,
+ confidence=0.8,
+ detail=f"grounding {'succeeded' if grounded else 'failed'} via {source}",
+ )
+ dimension = (
+ "retrieval_precision" if grounded
+ else "retrieval_recall"
+ )
+ self._record(samskara, dimension)
+
+ # ------------------------------------------------------------------
+ # State management
+ # ------------------------------------------------------------------
+
+ def _record(self, samskara: Samskara, vasana_dimension: str) -> None:
+ """Record a samskara and update the corresponding vasana."""
+ self._session_samskaras.append(samskara)
+ self._total_samskaras += 1
+
+ # Update vasana
+ if vasana_dimension in self.vasanas:
+ self.vasanas[vasana_dimension].absorb(samskara)
+
+ # Persist to log
+ self._append_log(samskara)
+
+ # Check for degrading vasanas
+ vasana = self.vasanas.get(vasana_dimension)
+ if vasana and vasana.is_degrading:
+ logger.warning(
+ "Vasana '%s' is degrading: strength=%.3f (count=%d). "
+ "System quality declining in this dimension.",
+ vasana_dimension,
+ vasana.strength,
+ vasana.count,
+ )
+
+ def _append_log(self, samskara: Samskara) -> None:
+ """Append samskara to JSONL log for training data generation."""
+ log_path = os.path.join(self.log_dir, "samskaras.jsonl")
+ try:
+ with open(log_path, "a", encoding="utf-8") as f:
+ f.write(json.dumps(samskara.to_dict(), ensure_ascii=False) + "\n")
+ except OSError:
+ pass # non-critical
+
+ def needs_nididhyasana(self) -> bool:
+ """Check if accumulated signals warrant a training cycle.
+
+ Yoga Sutra 4.2: "jaty-antara-parinamah prakrity-apurat"
+ Transformation happens when natural potential overflows.
+ """
+ # Trigger 1: enough corrections accumulated
+ if self._correction_count >= self.nididhyasana_threshold:
+ return True
+
+ # Trigger 2: any vasana severely degrading
+ for vasana in self.vasanas.values():
+ if (
+ vasana.strength < self.prakrti_apurat_threshold
+ and vasana.count >= 20
+ ):
+ return True
+
+ return False
+
+ def get_training_signals(self) -> Dict[str, Any]:
+ """Export accumulated signals for training pipeline.
+
+ Returns:
+ - dpo_pairs: Direct preference pairs from corrections
+ - vasana_report: Current vasana strengths
+ - degrading_dimensions: Which dimensions need attention
+ - total_samskaras: Total impressions recorded
+ """
+ return {
+ "dpo_pairs": list(self._dpo_pairs),
+ "vasana_report": {
+ name: {
+ "strength": v.strength,
+ "count": v.count,
+ "status": (
+ "degrading" if v.is_degrading
+ else "thriving" if v.is_thriving
+ else "neutral"
+ ),
+ }
+ for name, v in self.vasanas.items()
+ },
+ "degrading_dimensions": [
+ name for name, v in self.vasanas.items()
+ if v.is_degrading
+ ],
+ "total_samskaras": self._total_samskaras,
+ "correction_count": self._correction_count,
+ "needs_nididhyasana": self.needs_nididhyasana(),
+ }
+
+ def _save_state(self) -> None:
+ """Persist vasana state to disk."""
+ state_path = os.path.join(self.log_dir, "vasana_state.json")
+ state = {
+ "vasanas": {
+ name: {
+ "dimension": v.dimension,
+ "strength": v.strength,
+ "count": v.count,
+ "last_updated": v.last_updated,
+ }
+ for name, v in self.vasanas.items()
+ },
+ "total_samskaras": self._total_samskaras,
+ "correction_count": self._correction_count,
+ }
+ try:
+ with open(state_path, "w", encoding="utf-8") as f:
+ json.dump(state, f, indent=2)
+ except OSError:
+ pass
+
+ def _load_state(self) -> None:
+ """Restore vasana state from disk."""
+ state_path = os.path.join(self.log_dir, "vasana_state.json")
+ if not os.path.exists(state_path):
+ return
+ try:
+ with open(state_path, "r", encoding="utf-8") as f:
+ state = json.load(f)
+ for name, vdata in state.get("vasanas", {}).items():
+ if name in self.vasanas:
+ self.vasanas[name].strength = vdata.get("strength", 0.0)
+ self.vasanas[name].count = vdata.get("count", 0)
+ self.vasanas[name].last_updated = vdata.get(
+ "last_updated", time.time()
+ )
+ self._total_samskaras = state.get("total_samskaras", 0)
+ self._correction_count = state.get("correction_count", 0)
+ except (OSError, json.JSONDecodeError):
+ pass
+
+ def flush(self) -> None:
+ """Persist current state. Call periodically or on shutdown."""
+ self._save_state()
+
+ # Also flush DPO pairs if any
+ if self._dpo_pairs:
+ dpo_path = os.path.join(self.log_dir, "dpo_pairs.jsonl")
+ try:
+ with open(dpo_path, "a", encoding="utf-8") as f:
+ for pair in self._dpo_pairs:
+ f.write(json.dumps(pair, ensure_ascii=False) + "\n")
+ self._dpo_pairs.clear()
+ except OSError:
+ pass
diff --git a/engram/core/scene.py b/dhee/core/scene.py
similarity index 89%
rename from engram/core/scene.py
rename to dhee/core/scene.py
index b98beb3..0ed45be 100644
--- a/engram/core/scene.py
+++ b/dhee/core/scene.py
@@ -38,7 +38,7 @@ class SceneDetectionResult:
)
-from engram.utils.math import cosine_similarity as _cosine_similarity
+from dhee.utils.math import cosine_similarity as _cosine_similarity
def _detect_location(content: str) -> Optional[str]:
@@ -227,15 +227,18 @@ def close_scene(self, scene_id: str, timestamp: Optional[str] = None) -> None:
if not scene.get("end_time"):
updates["end_time"] = timestamp or datetime.now(timezone.utc).isoformat()
- # Generate summary
+ # Generate summary (LLM when enabled, otherwise deterministic extractive fallback).
+ memories = self.db.get_scene_memories(scene_id)
+ summary = None
if self.use_llm_summarization and self.llm:
- memories = self.db.get_scene_memories(scene_id)
summary = self._summarize_scene(scene, memories)
- if summary:
- updates["summary"] = summary
- # Derive title from summary
- title = summary.split(".")[0][:120]
- updates["title"] = title
+ if not summary:
+ summary = self._extractive_scene_summary(memories)
+ if summary:
+ updates["summary"] = summary
+ # Derive title from summary
+ title = summary.split(".")[0][:120]
+ updates["title"] = title
if updates:
self.db.update_scene(scene_id, updates)
@@ -294,6 +297,28 @@ def _summarize_scene(
logger.warning(f"Scene summarization failed: {e}")
return None
+ @staticmethod
+ def _extractive_scene_summary(memories: List[Dict[str, Any]], max_lines: int = 4) -> Optional[str]:
+ """Low-cost extractive summary used when LLM summarization is disabled."""
+ snippets: List[str] = []
+ for memory in memories:
+ text = str(memory.get("memory", "")).strip()
+ if not text:
+ continue
+ # Prefer salient transcript lines over headers.
+ lines = [ln.strip() for ln in text.splitlines() if ln.strip()]
+ for line in lines:
+ lowered = line.lower()
+ if lowered.startswith("session id:") or lowered.startswith("session date:") or lowered.startswith("user transcript:"):
+ continue
+ snippets.append(line[:180])
+ break
+ if len(snippets) >= max(1, int(max_lines)):
+ break
+ if not snippets:
+ return None
+ return " | ".join(snippets)
+
# ------------------------------------------------------------------
# Search
# ------------------------------------------------------------------
diff --git a/engram/core/traces.py b/dhee/core/traces.py
similarity index 95%
rename from engram/core/traces.py
rename to dhee/core/traces.py
index 7fd200c..44516bd 100644
--- a/engram/core/traces.py
+++ b/dhee/core/traces.py
@@ -3,7 +3,7 @@
Each memory has three traces (fast, mid, slow) that decay at different rates
and cascade information from fast -> mid -> slow during sleep cycles.
-Requires engram-accel (Rust) for batch decay operations.
+Requires dhee-accel (Rust) for batch decay operations.
"""
from __future__ import annotations
@@ -13,9 +13,9 @@
from typing import TYPE_CHECKING, List, Tuple
if TYPE_CHECKING:
- from engram.configs.base import DistillationConfig
+ from dhee.configs.base import DistillationConfig
-from engram_accel import decay_traces_batch as _rs_decay_traces_batch
+from dhee_accel import decay_traces_batch as _rs_decay_traces_batch
def initialize_traces(
diff --git a/dhee/core/viveka.py b/dhee/core/viveka.py
new file mode 100644
index 0000000..f2797cf
--- /dev/null
+++ b/dhee/core/viveka.py
@@ -0,0 +1,708 @@
+"""विवेक (Viveka) — Continuous discriminative awareness for memory quality.
+
+Yoga Sutra 2.26: "viveka-khyatir aviplava hanopayah"
+Uninterrupted discriminative awareness is the means of liberation [from error].
+
+Every memory operation passes through viveka — not periodic evaluation,
+but CONTINUOUS assessment. Each output is classified as:
+
+ - Aklishta (non-afflicted): correct, well-formed, useful
+ - Klishta (afflicted): erroneous, malformed, misleading
+
+Viveka does NOT fix problems. It detects them and reports to the
+SamskaraCollector, which accumulates signals into vasanas.
+Fixing happens in nididhyasana (model retraining).
+
+Assessment depth follows Pancha Kosha (five sheaths):
+ 1. Annamaya — structural checks (is it well-formed?)
+ 2. Pranamaya — energy checks (does it have substance?)
+ 3. Manomaya — consistency checks (does it contradict itself?)
+ 4. Vijnanamaya — coherence checks (does it fit the context?)
+ 5. Anandamaya — completeness checks (did it miss anything?)
+"""
+
+from __future__ import annotations
+
+import logging
+import re
+from dataclasses import dataclass, field
+from enum import IntEnum
+from typing import Any, Dict, List, Optional, TYPE_CHECKING
+
+if TYPE_CHECKING:
+ from dhee.core.samskara import SamskaraCollector
+
+logger = logging.getLogger(__name__)
+
+
+class VivekaVerdict(IntEnum):
+ """Granular quality verdict — not just pass/fail."""
+
+ AKLISHTA = 2 # non-afflicted, high quality
+ SATTVA = 1 # acceptable, minor issues
+ RAJAS = 0 # uncertain, needs attention
+ TAMAS = -1 # poor quality, likely wrong
+ KLISHTA = -2 # afflicted, definitely wrong
+
+
+class AssessmentKosha(IntEnum):
+ """Pancha Kosha depth levels — each checks progressively deeper."""
+
+ ANNAMAYA = 1 # structural: is it well-formed?
+ PRANAMAYA = 2 # energy: does it have substance?
+ MANOMAYA = 3 # consistency: does it contradict itself?
+ VIJNANAMAYA = 4 # coherence: does it fit context?
+ ANANDAMAYA = 5 # completeness: did it capture everything?
+
+
+@dataclass
+class VivekaAssessment:
+ """Result of viveka assessment on a single operation output."""
+
+ verdict: VivekaVerdict
+ confidence: float = 1.0 # 0-1, how sure is the assessment
+ kosha_reached: AssessmentKosha = AssessmentKosha.ANNAMAYA
+
+ # Dimensional quality (maps to KarmaAxis for training signals)
+ dimension_scores: Dict[str, float] = field(default_factory=dict)
+
+ # What was assessed
+ operation: str = "" # e.g. "extraction", "retrieval", "answer"
+ memory_id: str = ""
+ query: str = ""
+
+ # Issues found
+ issues: List[str] = field(default_factory=list)
+
+ # Suggestions (not fixes — viveka observes, doesn't act)
+ notes: List[str] = field(default_factory=list)
+
+ @property
+ def is_klishta(self) -> bool:
+ return self.verdict.value < 0
+
+ @property
+ def is_aklishta(self) -> bool:
+ return self.verdict.value > 0
+
+
+# ---------------------------------------------------------------------------
+# Heuristic assessment functions (zero-LLM, deterministic)
+# ---------------------------------------------------------------------------
+
+def _check_extraction_annamaya(facts: List[Dict], content: str) -> List[str]:
+ """Annamaya (structural): Are extracted facts well-formed?"""
+ issues = []
+ for i, fact in enumerate(facts):
+ if not fact.get("subject"):
+ issues.append(f"fact[{i}]: missing subject")
+ if not fact.get("predicate"):
+ issues.append(f"fact[{i}]: missing predicate")
+ if not fact.get("value"):
+ issues.append(f"fact[{i}]: missing value")
+ canonical = fact.get("canonical_key", "")
+ if canonical and canonical.count("|") < 2:
+ issues.append(f"fact[{i}]: malformed canonical_key '{canonical}'")
+ return issues
+
+
+def _check_extraction_pranamaya(facts: List[Dict], content: str) -> List[str]:
+ """Pranamaya (substance): Do facts have real content, not just structure?"""
+ issues = []
+ content_lower = content.lower()
+ for i, fact in enumerate(facts):
+ value = str(fact.get("value", ""))
+ # Vacuous values
+ if value.lower() in ("unknown", "n/a", "none", "null", ""):
+ issues.append(f"fact[{i}]: vacuous value '{value}'")
+ # Subject/predicate/value identical
+ if fact.get("subject") == fact.get("value"):
+ issues.append(f"fact[{i}]: subject equals value (tautological)")
+ # Value not grounded in content (hallucination signal)
+ if len(value) > 3 and value.lower() not in content_lower:
+ # Allow numeric values and common transformations
+ if not re.match(r"^[\d.$,\-+]+$", value):
+ issues.append(f"fact[{i}]: value '{value[:50]}' not found in source text")
+ return issues
+
+
+def _check_extraction_manomaya(facts: List[Dict]) -> List[str]:
+ """Manomaya (consistency): Do facts contradict each other?"""
+ issues = []
+ # Check for contradictory facts with same canonical_key
+ seen_keys: Dict[str, str] = {}
+ for i, fact in enumerate(facts):
+ key = fact.get("canonical_key", "")
+ if not key:
+ continue
+ value = str(fact.get("value", ""))
+ if key in seen_keys and seen_keys[key] != value:
+ issues.append(
+ f"fact[{i}]: contradicts earlier fact with same key '{key}': "
+ f"'{seen_keys[key]}' vs '{value}'"
+ )
+ seen_keys[key] = value
+
+ # Check temporal consistency
+ for i, fact in enumerate(facts):
+ valid_from = fact.get("valid_from", "")
+ valid_until = fact.get("valid_until", "")
+ if valid_from and valid_until and valid_from > valid_until:
+ issues.append(f"fact[{i}]: valid_from > valid_until (temporal inversion)")
+ return issues
+
+
+def _check_extraction_vijnanamaya(
+ facts: List[Dict], context: Optional[Dict],
+) -> List[str]:
+ """Vijnanamaya (coherence): Do facts fit the context anchor?"""
+ issues = []
+ if not context:
+ return issues
+
+ era = context.get("era", "")
+ place = context.get("place", "")
+
+ for i, fact in enumerate(facts):
+ time_val = fact.get("time", "")
+ # If fact has a time and context has an era, check plausibility
+ if time_val and era:
+ # School era with dates after 2020 is suspicious
+ if "school" in era.lower() and time_val.startswith("202"):
+ issues.append(
+ f"fact[{i}]: time '{time_val}' seems late for era '{era}'"
+ )
+ # If fact references a place different from context place
+ value = str(fact.get("value", "")).lower()
+ predicate = str(fact.get("predicate", "")).lower()
+ if place and predicate in ("visited", "traveled_to", "went_to"):
+ # This is expected — travel facts naturally reference other places
+ pass
+ return issues
+
+
+def _check_extraction_anandamaya(
+ facts: List[Dict], content: str,
+) -> List[str]:
+ """Anandamaya (completeness): Did extraction miss obvious content?"""
+ issues = []
+ content_lower = content.lower()
+ fact_values_lower = {str(f.get("value", "")).lower() for f in facts}
+
+ # Check for unextracted monetary amounts
+ money_pattern = re.findall(r"\$\s*[\d,]+(?:\.\d+)?", content)
+ for m in money_pattern:
+ amount = m.replace("$", "").replace(",", "").strip()
+ if not any(amount in v for v in fact_values_lower):
+ issues.append(f"missed monetary amount: {m}")
+
+ # Check for unextracted dates
+ date_pattern = re.findall(
+ r"\b(?:January|February|March|April|May|June|July|August|"
+ r"September|October|November|December)\s+\d{1,2},?\s*\d{4}\b",
+ content,
+ )
+ for d in date_pattern:
+ if not any(d.lower() in v for v in fact_values_lower):
+ issues.append(f"missed date reference: {d}")
+
+ # Check for unextracted named entities (capitalized multi-word)
+ entities = re.findall(r"\b[A-Z][a-z]+(?:\s+[A-Z][a-z]+)+\b", content)
+ entity_names = {str(f.get("subject", "")).lower() for f in facts} | fact_values_lower
+ for ent in set(entities):
+ if ent.lower() not in entity_names and len(ent) > 4:
+ issues.append(f"potentially missed entity: {ent}")
+
+ return issues
+
+
+def _check_retrieval_quality(
+ query: str,
+ results: List[Dict],
+ top_k: int = 10,
+) -> VivekaAssessment:
+ """Assess retrieval quality without LLM."""
+ issues = []
+ notes = []
+ scores: Dict[str, float] = {}
+
+ if not results:
+ return VivekaAssessment(
+ verdict=VivekaVerdict.KLISHTA,
+ confidence=0.9,
+ kosha_reached=AssessmentKosha.ANNAMAYA,
+ operation="retrieval",
+ query=query[:200],
+ issues=["zero results returned"],
+ dimension_scores={"retrieval_recall": -1.0},
+ )
+
+ # Annamaya: structural checks
+ for i, r in enumerate(results[:top_k]):
+ if not r.get("memory") and not r.get("content"):
+ issues.append(f"result[{i}]: empty content")
+ score = r.get("score") or r.get("similarity") or 0
+ if isinstance(score, (int, float)) and score < 0.1:
+ issues.append(f"result[{i}]: very low similarity ({score:.3f})")
+
+ # Pranamaya: do results have substance?
+ query_words = set(re.findall(r"\b\w{3,}\b", query.lower()))
+ query_words -= {"the", "what", "how", "did", "does", "was", "were", "are", "has", "have"}
+ hit_count = 0
+ for r in results[:top_k]:
+ text = str(r.get("memory") or r.get("content") or "").lower()
+ result_words = set(re.findall(r"\b\w{3,}\b", text))
+ if query_words & result_words:
+ hit_count += 1
+
+ if hit_count == 0:
+ issues.append("no results contain any query terms")
+ scores["retrieval_precision"] = -0.8
+ else:
+ precision = hit_count / min(len(results), top_k)
+ scores["retrieval_precision"] = 2.0 * precision - 1.0
+
+ # Manomaya: consistency across results
+ # (multiple results shouldn't contradict each other for simple queries)
+ # This is lightweight — full contradiction detection is in conflict.py
+
+ # Determine verdict
+ if not issues:
+ verdict = VivekaVerdict.AKLISHTA
+ confidence = 0.7
+ elif len(issues) <= 2:
+ verdict = VivekaVerdict.SATTVA
+ confidence = 0.6
+ elif any("zero results" in i for i in issues):
+ verdict = VivekaVerdict.KLISHTA
+ confidence = 0.9
+ else:
+ verdict = VivekaVerdict.RAJAS
+ confidence = 0.5
+
+ return VivekaAssessment(
+ verdict=verdict,
+ confidence=confidence,
+ kosha_reached=AssessmentKosha.PRANAMAYA,
+ operation="retrieval",
+ query=query[:200],
+ issues=issues,
+ notes=notes,
+ dimension_scores=scores,
+ )
+
+
+def _check_answer_quality(
+ query: str,
+ answer: str,
+ source_memories: List[str],
+) -> VivekaAssessment:
+ """Assess answer quality without LLM.
+
+ Checks structural quality, grounding, and format.
+ Deep semantic assessment requires the DheeModel.
+ """
+ issues = []
+ notes = []
+ scores: Dict[str, float] = {}
+
+ # Annamaya: structural
+ if not answer or not answer.strip():
+ return VivekaAssessment(
+ verdict=VivekaVerdict.KLISHTA,
+ confidence=1.0,
+ kosha_reached=AssessmentKosha.ANNAMAYA,
+ operation="answer",
+ query=query[:200],
+ issues=["empty answer"],
+ dimension_scores={"answer_quality": -1.0},
+ )
+
+ if len(answer) < 2:
+ issues.append("answer too short (< 2 chars)")
+
+ # Pranamaya: substance
+ # Detect non-answer patterns
+ non_answers = [
+ r"(?i)^i\s+(?:don't|do not|cannot|can't)\s+(?:know|remember|recall|find)",
+ r"(?i)^(?:sorry|unfortunately|i'm not sure)",
+ r"(?i)^no\s+(?:information|data|memory|record)",
+ r"(?i)^(?:there is no|i have no)\s+(?:information|data|memory|record)",
+ ]
+ for pattern in non_answers:
+ if re.match(pattern, answer.strip()):
+ issues.append("answer is a non-answer / refusal")
+ scores["answer_quality"] = -0.5
+ break
+
+ # Check if answer is grounded in source memories
+ if source_memories:
+ answer_lower = answer.lower()
+ source_text = " ".join(source_memories).lower()
+ # Extract key content words from answer
+ answer_words = set(re.findall(r"\b\w{4,}\b", answer_lower))
+ answer_words -= {
+ "that", "this", "with", "from", "they", "were", "have",
+ "been", "also", "about", "which", "their", "some", "would",
+ }
+ if answer_words:
+ grounded_count = sum(
+ 1 for w in answer_words if w in source_text
+ )
+ grounding_ratio = grounded_count / len(answer_words)
+ if grounding_ratio < 0.3:
+ issues.append(
+ f"low grounding: only {grounding_ratio:.0%} of answer "
+ f"terms found in source memories"
+ )
+ scores["answer_quality"] = -0.3
+ else:
+ scores["answer_quality"] = 2.0 * grounding_ratio - 1.0
+
+ # Manomaya: consistency — does answer contradict the query?
+ query_lower = query.lower()
+ answer_lower = answer.lower()
+
+ # "how many" questions should get numeric answers
+ if re.search(r"\bhow many\b", query_lower):
+ if not re.search(r"\d", answer):
+ issues.append("counting question but answer has no number")
+ scores["temporal_reasoning"] = -0.5
+
+ # "when" questions should get date/time answers
+ if re.search(r"\bwhen\b", query_lower):
+ date_in_answer = bool(re.search(
+ r"\b\d{4}\b|\b(?:jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\w*\b"
+ r"|\b(?:monday|tuesday|wednesday|thursday|friday|saturday|sunday)\b"
+ r"|\blast\s+(?:week|month|year)\b",
+ answer_lower,
+ ))
+ if not date_in_answer:
+ issues.append("temporal question but answer has no date/time reference")
+ scores["temporal_reasoning"] = -0.4
+
+ # Determine verdict
+ if not issues:
+ verdict = VivekaVerdict.AKLISHTA
+ confidence = 0.6 # heuristics alone can't be fully confident
+ elif len(issues) == 1 and "non-answer" not in issues[0]:
+ verdict = VivekaVerdict.SATTVA
+ confidence = 0.5
+ elif any("empty" in i or "non-answer" in i for i in issues):
+ verdict = VivekaVerdict.KLISHTA
+ confidence = 0.9
+ else:
+ verdict = VivekaVerdict.RAJAS
+ confidence = 0.5
+
+ return VivekaAssessment(
+ verdict=verdict,
+ confidence=confidence,
+ kosha_reached=AssessmentKosha.MANOMAYA,
+ operation="answer",
+ query=query[:200],
+ issues=issues,
+ notes=notes,
+ dimension_scores=scores,
+ )
+
+
+# ---------------------------------------------------------------------------
+# Viveka — the continuous discriminator
+# ---------------------------------------------------------------------------
+
+class Viveka:
+ """Continuous discriminative awareness for every memory operation.
+
+ Aviplava — uninterrupted. Not periodic batch evaluation,
+ but inline assessment that runs on every operation.
+
+ Uses heuristic checks (zero-LLM cost) at all five kosha depths.
+ Reports to SamskaraCollector for vasana accumulation.
+ """
+
+ def __init__(
+ self,
+ samskara_collector: Optional[SamskaraCollector] = None,
+ strict_mode: bool = False,
+ ):
+ self.samskara = samskara_collector
+ self.strict_mode = strict_mode # if True, raise on klishta
+
+ # Running stats (lightweight counters, not stored)
+ self._assessed = 0
+ self._klishta_count = 0
+ self._aklishta_count = 0
+
+ def assess_extraction(
+ self,
+ content: str,
+ facts: List[Dict],
+ context: Optional[Dict] = None,
+ memory_id: str = "",
+ user_id: str = "default",
+ ) -> VivekaAssessment:
+ """Assess fact extraction quality through all five koshas.
+
+ Called after EngramExtractor produces structured output.
+ """
+ all_issues: List[str] = []
+ all_notes: List[str] = []
+ dimension_scores: Dict[str, float] = {}
+ deepest_kosha = AssessmentKosha.ANNAMAYA
+
+ # Kosha 1: Annamaya — structural well-formedness
+ issues = _check_extraction_annamaya(facts, content)
+ all_issues.extend(issues)
+ if not issues:
+ deepest_kosha = AssessmentKosha.PRANAMAYA
+
+ # Kosha 2: Pranamaya — substance
+ issues = _check_extraction_pranamaya(facts, content)
+ all_issues.extend(issues)
+ hallucination_issues = [
+ i for i in issues if "not found in source" in i
+ ]
+ if hallucination_issues:
+ dimension_scores["fact_precision"] = -0.5
+ if not issues:
+ deepest_kosha = AssessmentKosha.MANOMAYA
+
+ # Kosha 3: Manomaya — internal consistency
+ issues = _check_extraction_manomaya(facts)
+ all_issues.extend(issues)
+ if not issues:
+ deepest_kosha = AssessmentKosha.VIJNANAMAYA
+
+ # Kosha 4: Vijnanamaya — contextual coherence
+ issues = _check_extraction_vijnanamaya(facts, context)
+ all_issues.extend(issues)
+ if context:
+ dimension_scores["context_accuracy"] = (
+ 0.8 if not issues else -0.3
+ )
+ if not issues:
+ deepest_kosha = AssessmentKosha.ANANDAMAYA
+
+ # Kosha 5: Anandamaya — completeness
+ issues = _check_extraction_anandamaya(facts, content)
+ all_issues.extend(issues)
+ missed = [
+ i for i in issues if "missed" in i
+ ]
+ if missed:
+ dimension_scores["fact_recall"] = (
+ -0.3 * min(len(missed), 3)
+ )
+
+ # Determine verdict
+ structural_issues = [
+ i for i in all_issues
+ if "missing" in i or "malformed" in i
+ ]
+ hallucination_issues = [
+ i for i in all_issues if "not found in source" in i
+ ]
+ contradiction_issues = [
+ i for i in all_issues if "contradicts" in i
+ ]
+
+ if not all_issues:
+ verdict = VivekaVerdict.AKLISHTA
+ confidence = 0.8
+ dimension_scores.setdefault("fact_precision", 0.8)
+ dimension_scores.setdefault("fact_recall", 0.5)
+ elif structural_issues:
+ verdict = VivekaVerdict.KLISHTA
+ confidence = 0.9
+ dimension_scores.setdefault("fact_precision", -0.8)
+ elif hallucination_issues:
+ verdict = VivekaVerdict.TAMAS
+ confidence = 0.7
+ elif contradiction_issues:
+ verdict = VivekaVerdict.TAMAS
+ confidence = 0.8
+ elif len(all_issues) <= 2:
+ verdict = VivekaVerdict.SATTVA
+ confidence = 0.6
+ else:
+ verdict = VivekaVerdict.RAJAS
+ confidence = 0.5
+
+ assessment = VivekaAssessment(
+ verdict=verdict,
+ confidence=confidence,
+ kosha_reached=deepest_kosha,
+ operation="extraction",
+ memory_id=memory_id,
+ issues=all_issues,
+ notes=all_notes,
+ dimension_scores=dimension_scores,
+ )
+
+ self._record(assessment, user_id, content)
+ return assessment
+
+ def assess_retrieval(
+ self,
+ query: str,
+ results: List[Dict],
+ top_k: int = 10,
+ user_id: str = "default",
+ ) -> VivekaAssessment:
+ """Assess retrieval quality.
+
+ Called after search() returns results, before answer synthesis.
+ """
+ assessment = _check_retrieval_quality(query, results, top_k)
+ self._record(assessment, user_id)
+ return assessment
+
+ def assess_answer(
+ self,
+ query: str,
+ answer: str,
+ source_memories: Optional[List[str]] = None,
+ user_id: str = "default",
+ ) -> VivekaAssessment:
+ """Assess answer quality.
+
+ Called after answer synthesis, before returning to user.
+ """
+ assessment = _check_answer_quality(
+ query, answer, source_memories or [],
+ )
+ self._record(assessment, user_id)
+ return assessment
+
+ def assess_storage(
+ self,
+ content: str,
+ memory_id: str,
+ is_duplicate: bool = False,
+ duplicate_of: str = "",
+ user_id: str = "default",
+ ) -> VivekaAssessment:
+ """Assess storage operation quality.
+
+ Lightweight: mainly checks for vacuous or duplicate storage.
+ """
+ issues = []
+ scores: Dict[str, float] = {}
+
+ # Annamaya: is content substantive?
+ stripped = content.strip()
+ if not stripped:
+ issues.append("empty content stored")
+ elif len(stripped) < 5:
+ issues.append(f"very short content ({len(stripped)} chars)")
+
+ # Pranamaya: is it a meaningful dedup?
+ if is_duplicate and duplicate_of:
+ # Dedup detection is GOOD — it's a positive signal
+ return VivekaAssessment(
+ verdict=VivekaVerdict.AKLISHTA,
+ confidence=0.8,
+ kosha_reached=AssessmentKosha.PRANAMAYA,
+ operation="storage",
+ memory_id=memory_id,
+ issues=[],
+ notes=[f"correctly deduplicated with {duplicate_of}"],
+ dimension_scores={"dedup_quality": 0.8},
+ )
+
+ verdict = VivekaVerdict.AKLISHTA if not issues else VivekaVerdict.RAJAS
+ return VivekaAssessment(
+ verdict=verdict,
+ confidence=0.7,
+ kosha_reached=AssessmentKosha.PRANAMAYA,
+ operation="storage",
+ memory_id=memory_id,
+ issues=issues,
+ dimension_scores=scores,
+ )
+
+ # ------------------------------------------------------------------
+ # Integration with SamskaraCollector
+ # ------------------------------------------------------------------
+
+ def _record(
+ self,
+ assessment: VivekaAssessment,
+ user_id: str = "default",
+ input_text: str = "",
+ ) -> None:
+ """Report assessment to samskara collector and update counters."""
+ self._assessed += 1
+ if assessment.is_klishta:
+ self._klishta_count += 1
+ elif assessment.is_aklishta:
+ self._aklishta_count += 1
+
+ if not self.samskara:
+ return
+
+ # Map operation to samskara recording methods
+ if assessment.operation == "extraction":
+ fact_count = 0
+ if assessment.is_aklishta:
+ # Estimate fact count from dimension scores
+ fact_count = max(1, int(
+ assessment.dimension_scores.get("fact_recall", 0.5) * 5
+ ))
+ self.samskara.on_extraction(
+ memory_id=assessment.memory_id,
+ input_text=input_text[:500],
+ extracted_output="; ".join(assessment.issues) if assessment.issues else "ok",
+ fact_count=fact_count,
+ user_id=user_id,
+ )
+
+ elif assessment.operation == "retrieval":
+ was_useful = assessment.is_aklishta
+ self.samskara.on_retrieval(
+ query=assessment.query,
+ retrieved_ids=[assessment.memory_id] if assessment.memory_id else [],
+ was_useful=was_useful,
+ user_id=user_id,
+ )
+
+ elif assessment.operation == "answer":
+ if assessment.is_aklishta:
+ self.samskara.on_answer_accepted(
+ query=assessment.query,
+ answer="", # we don't have the answer text here
+ memory_ids=[],
+ user_id=user_id,
+ )
+
+ if assessment.issues:
+ logger.debug(
+ "Viveka [%s] %s: %s (%d issues, kosha=%s)",
+ assessment.operation,
+ assessment.verdict.name,
+ assessment.memory_id or assessment.query[:40],
+ len(assessment.issues),
+ AssessmentKosha(assessment.kosha_reached).name,
+ )
+
+ # ------------------------------------------------------------------
+ # Stats
+ # ------------------------------------------------------------------
+
+ def get_stats(self) -> Dict[str, Any]:
+ """Get viveka assessment statistics."""
+ total = self._assessed or 1
+ return {
+ "total_assessed": self._assessed,
+ "klishta_count": self._klishta_count,
+ "aklishta_count": self._aklishta_count,
+ "klishta_ratio": self._klishta_count / total,
+ "aklishta_ratio": self._aklishta_count / total,
+ }
+
+ @property
+ def quality_ratio(self) -> float:
+ """Overall quality ratio: aklishta / total. Higher is better."""
+ total = self._assessed or 1
+ return self._aklishta_count / total
diff --git a/engram-enterprise/engram_enterprise/api/__init__.py b/dhee/db/__init__.py
similarity index 100%
rename from engram-enterprise/engram_enterprise/api/__init__.py
rename to dhee/db/__init__.py
diff --git a/engram/db/sqlite.py b/dhee/db/sqlite.py
similarity index 74%
rename from engram/db/sqlite.py
rename to dhee/db/sqlite.py
index b331bae..297b312 100644
--- a/engram/db/sqlite.py
+++ b/dhee/db/sqlite.py
@@ -1,3 +1,4 @@
+import hashlib
import json
import logging
import os
@@ -395,6 +396,14 @@ def delete_memory(self, memory_id: str, use_tombstone: bool = True) -> bool:
if use_tombstone:
return self.update_memory(memory_id, {"tombstone": 1})
with self._get_connection() as conn:
+ # Cascade delete v3 structured tables BEFORE deleting the memory row.
+ for table in ("engram_facts", "engram_context", "engram_scenes",
+ "engram_entities", "engram_links"):
+ try:
+ col = "source_memory_id" if table == "engram_links" else "memory_id"
+ conn.execute(f"DELETE FROM {table} WHERE {col} = ?", (memory_id,))
+ except Exception:
+ pass # Table may not exist yet
conn.execute("DELETE FROM memories WHERE id = ?", (memory_id,))
self._log_event(memory_id, "DELETE")
return True
@@ -775,6 +784,10 @@ def _ensure_v2_schema(self, conn: sqlite3.Connection) -> None:
if self._is_migration_applied(conn, "v2_columns_complete"):
# CLS Distillation Memory columns (idempotent).
self._ensure_cls_columns(conn)
+ self._ensure_episodic_tables(conn)
+ self._ensure_episodic_v2_columns(conn)
+ self._ensure_cost_counter_tables(conn)
+ self._ensure_v3_universal_engram(conn)
return
# v2 columns on existing canonical tables.
@@ -880,6 +893,11 @@ def _ensure_v2_schema(self, conn: sqlite3.Connection) -> None:
# Deferred enrichment columns (idempotent).
self._ensure_deferred_enrichment_columns(conn)
+ self._ensure_episodic_tables(conn)
+ self._ensure_episodic_v2_columns(conn)
+ self._ensure_cost_counter_tables(conn)
+ self._ensure_entity_aggregates_table(conn)
+ self._ensure_v3_universal_engram(conn)
def _ensure_deferred_enrichment_columns(self, conn: sqlite3.Connection) -> None:
"""Add conversation_context and enrichment_status columns for deferred enrichment."""
@@ -898,6 +916,289 @@ def _ensure_deferred_enrichment_columns(self, conn: sqlite3.Connection) -> None:
"INSERT OR IGNORE INTO schema_migrations (version) VALUES ('v2_deferred_enrichment')"
)
+ def _ensure_episodic_tables(self, conn: sqlite3.Connection) -> None:
+ """Add deterministic episodic event index tables."""
+ if self._is_migration_applied(conn, "v2_episodic_events"):
+ return
+ conn.executescript(
+ """
+ CREATE TABLE IF NOT EXISTS episodic_events (
+ id TEXT PRIMARY KEY,
+ memory_id TEXT NOT NULL,
+ user_id TEXT NOT NULL,
+ conversation_id TEXT,
+ session_id TEXT,
+ turn_id INTEGER DEFAULT 0,
+ actor_id TEXT,
+ actor_role TEXT,
+ event_time TEXT,
+ event_type TEXT NOT NULL,
+ canonical_key TEXT NOT NULL,
+ value_text TEXT,
+ value_num REAL,
+ value_unit TEXT,
+ currency TEXT,
+ normalized_time_start TEXT,
+ normalized_time_end TEXT,
+ time_granularity TEXT,
+ entity_key TEXT,
+ value_norm TEXT,
+ confidence REAL DEFAULT 0.0,
+ superseded_by TEXT
+ );
+ CREATE INDEX IF NOT EXISTS idx_episodic_user_actor_time
+ ON episodic_events(user_id, actor_id, event_time DESC);
+ CREATE INDEX IF NOT EXISTS idx_episodic_user_key
+ ON episodic_events(user_id, canonical_key);
+ CREATE INDEX IF NOT EXISTS idx_episodic_memory
+ ON episodic_events(memory_id);
+ CREATE INDEX IF NOT EXISTS idx_episodic_user_type_time
+ ON episodic_events(user_id, event_type, event_time DESC);
+ CREATE INDEX IF NOT EXISTS idx_episodic_user_entity_time
+ ON episodic_events(user_id, entity_key, normalized_time_start DESC);
+ CREATE INDEX IF NOT EXISTS idx_episodic_user_type_entity
+ ON episodic_events(user_id, event_type, entity_key);
+ """
+ )
+ conn.execute(
+ "INSERT OR IGNORE INTO schema_migrations (version) VALUES ('v2_episodic_events')"
+ )
+
+ def _ensure_episodic_v2_columns(self, conn: sqlite3.Connection) -> None:
+ """Add v2 episodic fields for deterministic temporal/entity normalization."""
+ if self._is_migration_applied(conn, "v2_episodic_events_v2"):
+ return
+ table_exists = conn.execute(
+ "SELECT 1 FROM sqlite_master WHERE type = 'table' AND name = 'episodic_events'"
+ ).fetchone()
+ if not table_exists:
+ return
+
+ # Backward-safe for existing DBs that already created episodic_events.
+ try:
+ conn.execute("ALTER TABLE episodic_events ADD COLUMN normalized_time_start TEXT")
+ except sqlite3.OperationalError:
+ pass
+ try:
+ conn.execute("ALTER TABLE episodic_events ADD COLUMN normalized_time_end TEXT")
+ except sqlite3.OperationalError:
+ pass
+ try:
+ conn.execute("ALTER TABLE episodic_events ADD COLUMN time_granularity TEXT")
+ except sqlite3.OperationalError:
+ pass
+ try:
+ conn.execute("ALTER TABLE episodic_events ADD COLUMN entity_key TEXT")
+ except sqlite3.OperationalError:
+ pass
+ try:
+ conn.execute("ALTER TABLE episodic_events ADD COLUMN value_norm TEXT")
+ except sqlite3.OperationalError:
+ pass
+
+ conn.executescript(
+ """
+ CREATE INDEX IF NOT EXISTS idx_episodic_user_entity_time
+ ON episodic_events(user_id, entity_key, normalized_time_start DESC);
+ CREATE INDEX IF NOT EXISTS idx_episodic_user_type_entity
+ ON episodic_events(user_id, event_type, entity_key);
+ CREATE INDEX IF NOT EXISTS idx_episodic_user_norm_time
+ ON episodic_events(user_id, normalized_time_start DESC);
+ """
+ )
+
+ # Minimal backfill so existing rows stay queryable by new filters.
+ conn.execute(
+ """
+ UPDATE episodic_events
+ SET normalized_time_start = COALESCE(normalized_time_start, event_time),
+ normalized_time_end = COALESCE(normalized_time_end, event_time),
+ time_granularity = COALESCE(NULLIF(time_granularity, ''), 'instant'),
+ entity_key = COALESCE(NULLIF(entity_key, ''), NULLIF(actor_id, ''), NULLIF(actor_role, ''), 'unknown'),
+ value_norm = COALESCE(NULLIF(value_norm, ''), NULLIF(value_text, ''), CAST(value_num AS TEXT))
+ """
+ )
+
+ conn.execute(
+ "INSERT OR IGNORE INTO schema_migrations (version) VALUES ('v2_episodic_events_v2')"
+ )
+
+ def _ensure_cost_counter_tables(self, conn: sqlite3.Connection) -> None:
+ """Add write/query cost counter table for unit-economics guardrails."""
+ if self._is_migration_applied(conn, "v2_cost_counters"):
+ return
+ conn.executescript(
+ """
+ CREATE TABLE IF NOT EXISTS cost_counters (
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
+ ts TEXT DEFAULT CURRENT_TIMESTAMP,
+ user_id TEXT,
+ phase TEXT NOT NULL CHECK (phase IN ('write', 'query')),
+ llm_calls REAL DEFAULT 0,
+ input_tokens REAL DEFAULT 0,
+ output_tokens REAL DEFAULT 0,
+ embed_calls REAL DEFAULT 0
+ );
+ CREATE INDEX IF NOT EXISTS idx_cost_counters_phase_ts
+ ON cost_counters(phase, ts DESC);
+ CREATE INDEX IF NOT EXISTS idx_cost_counters_user_ts
+ ON cost_counters(user_id, ts DESC);
+ """
+ )
+ conn.execute(
+ "INSERT OR IGNORE INTO schema_migrations (version) VALUES ('v2_cost_counters')"
+ )
+
+ def _ensure_entity_aggregates_table(self, conn: sqlite3.Connection) -> None:
+ """Add entity_aggregates table for write-time accumulation of counts/sums."""
+ if self._is_migration_applied(conn, "v2_entity_aggregates"):
+ return
+ conn.executescript(
+ """
+ CREATE TABLE IF NOT EXISTS entity_aggregates (
+ id TEXT PRIMARY KEY,
+ user_id TEXT NOT NULL,
+ entity_key TEXT NOT NULL,
+ agg_type TEXT NOT NULL,
+ value_num REAL DEFAULT 0.0,
+ value_unit TEXT,
+ item_set TEXT,
+ contributing_sessions TEXT,
+ contributing_memory_ids TEXT,
+ last_updated TEXT,
+ created_at TEXT
+ );
+ CREATE INDEX IF NOT EXISTS idx_entity_agg_lookup
+ ON entity_aggregates(user_id, agg_type, entity_key);
+ """
+ )
+ conn.execute(
+ "INSERT OR IGNORE INTO schema_migrations (version) VALUES ('v2_entity_aggregates')"
+ )
+
+ def _ensure_v3_universal_engram(self, conn: sqlite3.Connection) -> None:
+ """Add Universal Engram v3 tables (additive — zero breaking changes).
+
+ Tables: engram_context, engram_scenes, engram_facts, engram_links,
+ engram_entities, engram_prospective_scenes.
+ """
+ if self._is_migration_applied(conn, "v3_universal_engram"):
+ return
+ conn.executescript(
+ """
+ -- Context anchors (hierarchical retrieval: era -> place -> time -> activity)
+ CREATE TABLE IF NOT EXISTS engram_context (
+ memory_id TEXT PRIMARY KEY REFERENCES memories(id),
+ era TEXT,
+ place TEXT,
+ place_type TEXT,
+ place_detail TEXT,
+ time_absolute TEXT,
+ time_markers TEXT DEFAULT '[]',
+ time_range_start TEXT,
+ time_range_end TEXT,
+ time_derivation TEXT,
+ activity TEXT,
+ session_id TEXT,
+ session_position INTEGER DEFAULT 0
+ );
+ CREATE INDEX IF NOT EXISTS idx_ec_era ON engram_context(era);
+ CREATE INDEX IF NOT EXISTS idx_ec_place ON engram_context(place);
+ CREATE INDEX IF NOT EXISTS idx_ec_time ON engram_context(time_absolute);
+ CREATE INDEX IF NOT EXISTS idx_ec_activity ON engram_context(activity);
+ CREATE INDEX IF NOT EXISTS idx_ec_era_place ON engram_context(era, place);
+
+ -- Scene snapshots (visual reconstruction)
+ CREATE TABLE IF NOT EXISTS engram_scenes (
+ memory_id TEXT PRIMARY KEY REFERENCES memories(id),
+ setting TEXT,
+ people_present TEXT DEFAULT '[]',
+ self_state TEXT,
+ emotional_tone TEXT,
+ sensory_cues TEXT DEFAULT '[]'
+ );
+ CREATE INDEX IF NOT EXISTS idx_es_setting ON engram_scenes(setting);
+ CREATE INDEX IF NOT EXISTS idx_es_tone ON engram_scenes(emotional_tone);
+
+ -- Structured facts (deterministic query resolution)
+ CREATE TABLE IF NOT EXISTS engram_facts (
+ id TEXT PRIMARY KEY,
+ memory_id TEXT NOT NULL REFERENCES memories(id),
+ subject TEXT NOT NULL,
+ predicate TEXT NOT NULL,
+ value TEXT NOT NULL,
+ value_numeric REAL,
+ value_unit TEXT,
+ time TEXT,
+ valid_from TEXT,
+ valid_until TEXT,
+ qualifier TEXT,
+ canonical_key TEXT NOT NULL,
+ confidence REAL DEFAULT 1.0,
+ is_derived INTEGER DEFAULT 0,
+ created_at TEXT DEFAULT CURRENT_TIMESTAMP
+ );
+ CREATE INDEX IF NOT EXISTS idx_ef_canonical ON engram_facts(canonical_key);
+ CREATE INDEX IF NOT EXISTS idx_ef_subject ON engram_facts(subject);
+ CREATE INDEX IF NOT EXISTS idx_ef_predicate ON engram_facts(predicate);
+ CREATE INDEX IF NOT EXISTS idx_ef_valid ON engram_facts(valid_from, valid_until);
+ CREATE INDEX IF NOT EXISTS idx_ef_memory ON engram_facts(memory_id);
+ CREATE INDEX IF NOT EXISTS idx_ef_subject_pred ON engram_facts(subject, predicate);
+
+ -- Associative links (causal/temporal/emotional chains between memories)
+ CREATE TABLE IF NOT EXISTS engram_links (
+ id TEXT PRIMARY KEY,
+ source_memory_id TEXT NOT NULL REFERENCES memories(id),
+ target_memory_id TEXT,
+ target_canonical_key TEXT NOT NULL,
+ link_type TEXT NOT NULL,
+ direction TEXT NOT NULL,
+ qualifier TEXT,
+ created_at TEXT DEFAULT CURRENT_TIMESTAMP
+ );
+ CREATE INDEX IF NOT EXISTS idx_el_source ON engram_links(source_memory_id);
+ CREATE INDEX IF NOT EXISTS idx_el_target ON engram_links(target_memory_id);
+ CREATE INDEX IF NOT EXISTS idx_el_target_key ON engram_links(target_canonical_key);
+ CREATE INDEX IF NOT EXISTS idx_el_type ON engram_links(link_type);
+
+ -- Entity references (knowledge graph backing)
+ CREATE TABLE IF NOT EXISTS engram_entities (
+ id TEXT PRIMARY KEY,
+ memory_id TEXT NOT NULL REFERENCES memories(id),
+ name TEXT NOT NULL,
+ entity_type TEXT NOT NULL,
+ state TEXT,
+ relationships TEXT DEFAULT '[]',
+ created_at TEXT DEFAULT CURRENT_TIMESTAMP
+ );
+ CREATE INDEX IF NOT EXISTS idx_ee_name ON engram_entities(name);
+ CREATE INDEX IF NOT EXISTS idx_ee_type ON engram_entities(entity_type);
+
+ -- Prospective scenes (predicted future events — memory-driven anticipation)
+ CREATE TABLE IF NOT EXISTS engram_prospective_scenes (
+ id TEXT PRIMARY KEY,
+ memory_id TEXT NOT NULL REFERENCES memories(id),
+ user_id TEXT NOT NULL,
+ predicted_time TEXT,
+ trigger_window_hours INTEGER DEFAULT 24,
+ event_type TEXT,
+ participants TEXT DEFAULT '[]',
+ predicted_setting TEXT,
+ predicted_needs TEXT DEFAULT '[]',
+ relevant_past_scene_ids TEXT DEFAULT '[]',
+ status TEXT DEFAULT 'predicted' CHECK (status IN ('predicted', 'triggered', 'occurred', 'cancelled')),
+ prediction_basis TEXT,
+ created_at TEXT DEFAULT CURRENT_TIMESTAMP
+ );
+ CREATE INDEX IF NOT EXISTS idx_eps_user_status ON engram_prospective_scenes(user_id, status);
+ CREATE INDEX IF NOT EXISTS idx_eps_time ON engram_prospective_scenes(predicted_time);
+ CREATE INDEX IF NOT EXISTS idx_eps_event ON engram_prospective_scenes(event_type);
+ """
+ )
+ conn.execute(
+ "INSERT OR IGNORE INTO schema_migrations (version) VALUES ('v3_universal_engram')"
+ )
+
def _ensure_content_hash_column(self, conn: sqlite3.Connection) -> None:
"""Add content_hash column + index for SHA-256 dedup."""
if self._is_migration_applied(conn, "v2_content_hash"):
@@ -1293,10 +1594,57 @@ def update_memory(self, memory_id: str, updates: Dict[str, Any]) -> bool:
)
return True
+ def _table_exists_conn(self, conn: sqlite3.Connection, table_name: str) -> bool:
+ row = conn.execute(
+ "SELECT 1 FROM sqlite_master WHERE type = 'table' AND name = ?",
+ (table_name,),
+ ).fetchone()
+ return row is not None
+
+ def _delete_memory_query_artifacts_conn(
+ self,
+ conn: sqlite3.Connection,
+ memory_ids: List[str],
+ ) -> None:
+ active_memory_ids = [memory_id for memory_id in memory_ids if memory_id]
+ if not active_memory_ids:
+ return
+
+ placeholders = ",".join("?" for _ in active_memory_ids)
+ memory_tables = (
+ "engram_context",
+ "engram_scenes",
+ "engram_facts",
+ "engram_entities",
+ "engram_prospective_scenes",
+ "episodic_events",
+ )
+ for table_name in memory_tables:
+ if not self._table_exists_conn(conn, table_name):
+ continue
+ conn.execute(
+ f"DELETE FROM {table_name} WHERE memory_id IN ({placeholders})",
+ active_memory_ids,
+ )
+
+ if self._table_exists_conn(conn, "engram_links"):
+ link_params = active_memory_ids + active_memory_ids
+ conn.execute(
+ f"DELETE FROM engram_links WHERE source_memory_id IN ({placeholders}) "
+ f"OR target_memory_id IN ({placeholders})",
+ link_params,
+ )
+
def delete_memory(self, memory_id: str, use_tombstone: bool = True) -> bool:
if use_tombstone:
- return self.update_memory(memory_id, {"tombstone": 1})
+ success = self.update_memory(memory_id, {"tombstone": 1})
+ if not success:
+ return False
+ with self._get_connection() as conn:
+ self._delete_memory_query_artifacts_conn(conn, [memory_id])
+ return True
with self._get_connection() as conn:
+ self._delete_memory_query_artifacts_conn(conn, [memory_id])
conn.execute("DELETE FROM memories WHERE id = ?", (memory_id,))
self._log_event(memory_id, "DELETE")
return True
@@ -1490,6 +1838,7 @@ def purge_tombstoned(self) -> int:
VALUES (?, ?, ?, NULL, NULL, NULL, NULL, NULL)""",
(row["id"], "PURGE", row["memory"]),
)
+ self._delete_memory_query_artifacts_conn(conn, ids)
conn.execute("DELETE FROM memories WHERE tombstone = 1")
return count
@@ -2055,6 +2404,176 @@ def list_user_ids(self) -> List[str]:
).fetchall()
return [str(row["user_id"]) for row in rows if row["user_id"]]
+ # =========================================================================
+ # Episodic event index + cost counters
+ # =========================================================================
+
+ def delete_episodic_events_for_memory(self, memory_id: str) -> int:
+ with self._get_connection() as conn:
+ cur = conn.execute(
+ "DELETE FROM episodic_events WHERE memory_id = ?",
+ (memory_id,),
+ )
+ return int(cur.rowcount or 0)
+
+ def add_episodic_events(self, events: List[Dict[str, Any]]) -> int:
+ if not events:
+ return 0
+ rows = []
+ for event in events:
+ rows.append(
+ (
+ event.get("id"),
+ event.get("memory_id"),
+ event.get("user_id"),
+ event.get("conversation_id"),
+ event.get("session_id"),
+ int(event.get("turn_id", 0) or 0),
+ event.get("actor_id"),
+ event.get("actor_role"),
+ event.get("event_time"),
+ event.get("event_type"),
+ event.get("canonical_key"),
+ event.get("value_text"),
+ event.get("value_num"),
+ event.get("value_unit"),
+ event.get("currency"),
+ event.get("normalized_time_start"),
+ event.get("normalized_time_end"),
+ event.get("time_granularity"),
+ event.get("entity_key"),
+ event.get("value_norm"),
+ event.get("confidence", 0.0),
+ event.get("superseded_by"),
+ )
+ )
+ with self._get_connection() as conn:
+ conn.executemany(
+ """
+ INSERT OR REPLACE INTO episodic_events (
+ id, memory_id, user_id, conversation_id, session_id, turn_id,
+ actor_id, actor_role, event_time, event_type, canonical_key,
+ value_text, value_num, value_unit, currency,
+ normalized_time_start, normalized_time_end, time_granularity, entity_key, value_norm,
+ confidence, superseded_by
+ ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
+ """,
+ rows,
+ )
+ return len(rows)
+
+ def get_episodic_events(
+ self,
+ *,
+ user_id: str,
+ actor_id: Optional[str] = None,
+ event_types: Optional[List[str]] = None,
+ time_anchor: Optional[str] = None,
+ entity_hints: Optional[List[str]] = None,
+ include_superseded: bool = False,
+ limit: int = 300,
+ ) -> List[Dict[str, Any]]:
+ query = "SELECT * FROM episodic_events WHERE user_id = ?"
+ params: List[Any] = [user_id]
+ if actor_id:
+ query += " AND actor_id = ?"
+ params.append(actor_id)
+ if event_types:
+ placeholders = ",".join("?" for _ in event_types)
+ query += f" AND event_type IN ({placeholders})"
+ params.extend(event_types)
+ if time_anchor:
+ query += " AND COALESCE(normalized_time_start, event_time) <= ?"
+ params.append(str(time_anchor))
+ normalized_hints = [str(h).strip().lower() for h in (entity_hints or []) if str(h).strip()]
+ if normalized_hints:
+ clauses = []
+ for hint in normalized_hints:
+ wildcard = f"%{hint}%"
+ clauses.append(
+ "("
+ "LOWER(COALESCE(entity_key, '')) LIKE ? "
+ "OR LOWER(COALESCE(actor_id, '')) LIKE ? "
+ "OR LOWER(COALESCE(actor_role, '')) LIKE ?"
+ ")"
+ )
+ params.extend([wildcard, wildcard, wildcard])
+ query += " AND (" + " OR ".join(clauses) + ")"
+ if not include_superseded:
+ query += " AND (superseded_by IS NULL OR superseded_by = '')"
+ query += " ORDER BY COALESCE(normalized_time_start, event_time) DESC, turn_id DESC LIMIT ?"
+ params.append(max(1, int(limit)))
+ with self._get_connection() as conn:
+ rows = conn.execute(query, params).fetchall()
+ return [dict(row) for row in rows]
+
+ def record_cost_counter(
+ self,
+ *,
+ phase: str,
+ user_id: Optional[str] = None,
+ llm_calls: float = 0.0,
+ input_tokens: float = 0.0,
+ output_tokens: float = 0.0,
+ embed_calls: float = 0.0,
+ ) -> None:
+ with self._get_connection() as conn:
+ conn.execute(
+ """
+ INSERT INTO cost_counters (
+ user_id, phase, llm_calls, input_tokens, output_tokens, embed_calls
+ ) VALUES (?, ?, ?, ?, ?, ?)
+ """,
+ (
+ user_id,
+ str(phase),
+ float(llm_calls or 0.0),
+ float(input_tokens or 0.0),
+ float(output_tokens or 0.0),
+ float(embed_calls or 0.0),
+ ),
+ )
+
+ def aggregate_cost_counters(
+ self,
+ *,
+ phase: str,
+ user_id: Optional[str] = None,
+ ) -> Dict[str, Any]:
+ query = """
+ SELECT
+ COUNT(*) AS samples,
+ COALESCE(SUM(llm_calls), 0) AS llm_calls,
+ COALESCE(SUM(input_tokens), 0) AS input_tokens,
+ COALESCE(SUM(output_tokens), 0) AS output_tokens,
+ COALESCE(SUM(embed_calls), 0) AS embed_calls
+ FROM cost_counters
+ WHERE phase = ?
+ """
+ params: List[Any] = [str(phase)]
+ if user_id:
+ query += " AND user_id = ?"
+ params.append(user_id)
+ with self._get_connection() as conn:
+ row = conn.execute(query, params).fetchone()
+ if not row:
+ return {
+ "phase": phase,
+ "samples": 0,
+ "llm_calls": 0.0,
+ "input_tokens": 0.0,
+ "output_tokens": 0.0,
+ "embed_calls": 0.0,
+ }
+ return {
+ "phase": phase,
+ "samples": int(row["samples"] or 0),
+ "llm_calls": float(row["llm_calls"] or 0.0),
+ "input_tokens": float(row["input_tokens"] or 0.0),
+ "output_tokens": float(row["output_tokens"] or 0.0),
+ "embed_calls": float(row["embed_calls"] or 0.0),
+ }
+
# =========================================================================
# Dashboard / Visualization methods
# =========================================================================
@@ -2133,6 +2652,177 @@ def get_decay_log_entries(self, limit: int = 20) -> List[Dict[str, Any]]:
).fetchall()
return [dict(row) for row in rows]
+ # =========================================================================
+ # Entity Aggregates
+ # =========================================================================
+
+ def _ensure_entity_table(self, conn: sqlite3.Connection) -> None:
+ """Lazily ensure entity_aggregates table exists."""
+ conn.execute("""
+ CREATE TABLE IF NOT EXISTS entity_aggregates (
+ id TEXT PRIMARY KEY,
+ user_id TEXT NOT NULL,
+ entity_key TEXT NOT NULL,
+ agg_type TEXT NOT NULL,
+ value_num REAL DEFAULT 0.0,
+ value_unit TEXT,
+ item_set TEXT,
+ contributing_sessions TEXT,
+ contributing_memory_ids TEXT,
+ last_updated TEXT,
+ created_at TEXT
+ )
+ """)
+ conn.execute("""
+ CREATE INDEX IF NOT EXISTS idx_entity_agg_lookup
+ ON entity_aggregates(user_id, agg_type, entity_key)
+ """)
+
+ def upsert_entity_aggregate(
+ self,
+ user_id: str,
+ entity_key: str,
+ agg_type: str,
+ value_delta: float,
+ value_unit: Optional[str] = None,
+ session_id: Optional[str] = None,
+ memory_id: Optional[str] = None,
+ ) -> None:
+ """Atomically increment an entity aggregate and append contributing session/memory."""
+ agg_id = hashlib.sha256(f"{user_id}|{agg_type}|{entity_key}".encode()).hexdigest()
+ now = datetime.now(timezone.utc).isoformat()
+ with self._get_connection() as conn:
+ self._ensure_entity_table(conn)
+ existing = conn.execute(
+ "SELECT value_num, contributing_sessions, contributing_memory_ids FROM entity_aggregates WHERE id = ?",
+ (agg_id,),
+ ).fetchone()
+ if existing:
+ cur_val = float(existing["value_num"] or 0)
+ sessions = json.loads(existing["contributing_sessions"] or "[]")
+ memories = json.loads(existing["contributing_memory_ids"] or "[]")
+ if session_id and session_id not in sessions:
+ sessions.append(session_id)
+ if memory_id and memory_id not in memories:
+ memories.append(memory_id)
+ conn.execute(
+ """UPDATE entity_aggregates
+ SET value_num = ?, value_unit = COALESCE(?, value_unit),
+ contributing_sessions = ?, contributing_memory_ids = ?,
+ last_updated = ?
+ WHERE id = ?""",
+ (cur_val + value_delta, value_unit,
+ json.dumps(sessions), json.dumps(memories), now, agg_id),
+ )
+ else:
+ sessions = [session_id] if session_id else []
+ memories = [memory_id] if memory_id else []
+ conn.execute(
+ """INSERT INTO entity_aggregates
+ (id, user_id, entity_key, agg_type, value_num, value_unit,
+ item_set, contributing_sessions, contributing_memory_ids,
+ last_updated, created_at)
+ VALUES (?, ?, ?, ?, ?, ?, '[]', ?, ?, ?, ?)""",
+ (agg_id, user_id, entity_key, agg_type, value_delta, value_unit,
+ json.dumps(sessions), json.dumps(memories), now, now),
+ )
+
+ def upsert_entity_set_member(
+ self,
+ user_id: str,
+ entity_key: str,
+ item_value: str,
+ session_id: Optional[str] = None,
+ memory_id: Optional[str] = None,
+ ) -> None:
+ """Add a unique item to an item_set aggregate and increment count."""
+ agg_id = hashlib.sha256(f"{user_id}|item_set|{entity_key}".encode()).hexdigest()
+ now = datetime.now(timezone.utc).isoformat()
+ with self._get_connection() as conn:
+ self._ensure_entity_table(conn)
+ existing = conn.execute(
+ "SELECT value_num, item_set, contributing_sessions, contributing_memory_ids "
+ "FROM entity_aggregates WHERE id = ?",
+ (agg_id,),
+ ).fetchone()
+ if existing:
+ items = json.loads(existing["item_set"] or "[]")
+ sessions = json.loads(existing["contributing_sessions"] or "[]")
+ memories = json.loads(existing["contributing_memory_ids"] or "[]")
+ if item_value not in items:
+ items.append(item_value)
+ if session_id and session_id not in sessions:
+ sessions.append(session_id)
+ if memory_id and memory_id not in memories:
+ memories.append(memory_id)
+ conn.execute(
+ """UPDATE entity_aggregates
+ SET value_num = ?, item_set = ?,
+ contributing_sessions = ?, contributing_memory_ids = ?,
+ last_updated = ?
+ WHERE id = ?""",
+ (len(items), json.dumps(items),
+ json.dumps(sessions), json.dumps(memories), now, agg_id),
+ )
+ else:
+ sessions = [session_id] if session_id else []
+ memories = [memory_id] if memory_id else []
+ conn.execute(
+ """INSERT INTO entity_aggregates
+ (id, user_id, entity_key, agg_type, value_num, value_unit,
+ item_set, contributing_sessions, contributing_memory_ids,
+ last_updated, created_at)
+ VALUES (?, ?, ?, 'item_set', 1, NULL, ?, ?, ?, ?, ?)""",
+ (agg_id, user_id, entity_key,
+ json.dumps([item_value]),
+ json.dumps(sessions), json.dumps(memories), now, now),
+ )
+
+ def get_entity_aggregates(
+ self,
+ user_id: str,
+ agg_type: Optional[str] = None,
+ entity_hints: Optional[List[str]] = None,
+ ) -> List[Dict[str, Any]]:
+ """Query entity aggregates with optional fuzzy match on entity_key."""
+ with self._get_connection() as conn:
+ self._ensure_entity_table(conn)
+ if agg_type and entity_hints:
+ # Build fuzzy LIKE conditions for each hint
+ conditions = " OR ".join(["entity_key LIKE ?" for _ in entity_hints])
+ params: list = [user_id, agg_type] + [f"%{h}%" for h in entity_hints]
+ rows = conn.execute(
+ f"SELECT * FROM entity_aggregates WHERE user_id = ? AND agg_type = ? AND ({conditions})",
+ params,
+ ).fetchall()
+ elif agg_type:
+ rows = conn.execute(
+ "SELECT * FROM entity_aggregates WHERE user_id = ? AND agg_type = ?",
+ (user_id, agg_type),
+ ).fetchall()
+ elif entity_hints:
+ conditions = " OR ".join(["entity_key LIKE ?" for _ in entity_hints])
+ params = [user_id] + [f"%{h}%" for h in entity_hints]
+ rows = conn.execute(
+ f"SELECT * FROM entity_aggregates WHERE user_id = ? AND ({conditions})",
+ params,
+ ).fetchall()
+ else:
+ rows = conn.execute(
+ "SELECT * FROM entity_aggregates WHERE user_id = ?",
+ (user_id,),
+ ).fetchall()
+ return [dict(row) for row in rows]
+
+ def delete_entity_aggregates_for_user(self, user_id: str) -> int:
+ """Delete all entity aggregates for a user (benchmark isolation)."""
+ with self._get_connection() as conn:
+ self._ensure_entity_table(conn)
+ cursor = conn.execute(
+ "DELETE FROM entity_aggregates WHERE user_id = ?", (user_id,)
+ )
+ return cursor.rowcount
+
# =========================================================================
# Utilities
# =========================================================================
diff --git a/engram/db/sqlite_backup.py b/dhee/db/sqlite_backup.py
similarity index 100%
rename from engram/db/sqlite_backup.py
rename to dhee/db/sqlite_backup.py
diff --git a/engram/decay/__init__.py b/dhee/decay/__init__.py
similarity index 56%
rename from engram/decay/__init__.py
rename to dhee/decay/__init__.py
index 3fa13d7..0b7b506 100644
--- a/engram/decay/__init__.py
+++ b/dhee/decay/__init__.py
@@ -1,5 +1,5 @@
"""Decay helpers for Engram v2."""
-from engram.decay.refcounts import RefCountManager
+from dhee.decay.refcounts import RefCountManager
__all__ = ["RefCountManager"]
diff --git a/engram-enterprise/engram_enterprise/integrations/__init__.py b/dhee/embeddings/__init__.py
similarity index 100%
rename from engram-enterprise/engram_enterprise/integrations/__init__.py
rename to dhee/embeddings/__init__.py
diff --git a/engram/embeddings/base.py b/dhee/embeddings/base.py
similarity index 100%
rename from engram/embeddings/base.py
rename to dhee/embeddings/base.py
diff --git a/engram/embeddings/gemini.py b/dhee/embeddings/gemini.py
similarity index 98%
rename from engram/embeddings/gemini.py
rename to dhee/embeddings/gemini.py
index 8cf5657..2cf6f85 100644
--- a/engram/embeddings/gemini.py
+++ b/dhee/embeddings/gemini.py
@@ -4,7 +4,7 @@
from google import genai
-from engram.embeddings.base import BaseEmbedder
+from dhee.embeddings.base import BaseEmbedder
logger = logging.getLogger(__name__)
diff --git a/engram/embeddings/nvidia.py b/dhee/embeddings/nvidia.py
similarity index 93%
rename from engram/embeddings/nvidia.py
rename to dhee/embeddings/nvidia.py
index 52837df..eb3cad1 100644
--- a/engram/embeddings/nvidia.py
+++ b/dhee/embeddings/nvidia.py
@@ -2,7 +2,7 @@
import os
from typing import List, Optional
-from engram.embeddings.base import BaseEmbedder
+from dhee.embeddings.base import BaseEmbedder
logger = logging.getLogger(__name__)
@@ -32,6 +32,8 @@ def __init__(self, config: Optional[dict] = None):
timeout = self.config.get("timeout", 60)
self.client = OpenAI(base_url=base_url, api_key=api_key, timeout=timeout)
self.model = self.config.get("model", "nvidia/nv-embed-v1")
+ default_truncate = "NONE" if "nemotron-embed" in self.model else "END"
+ self.truncate = str(self.config.get("truncate", default_truncate)).upper()
def _extra_body(self, memory_action: Optional[str] = None, count: int = 1) -> dict:
"""Build extra_body for models that need input_type differentiation.
@@ -43,10 +45,10 @@ def _extra_body(self, memory_action: Optional[str] = None, count: int = 1) -> di
"""
if "e5" in self.model or "embedqa" in self.model:
input_type = "query" if memory_action in ("search", "forget") else "passage"
- return {"input_type": input_type, "truncate": "END"}
+ return {"input_type": input_type, "truncate": self.truncate}
if "nemotron-embed" in self.model:
input_type = "query" if memory_action in ("search", "forget") else "passage"
- return {"modality": ["text"] * count, "input_type": input_type, "truncate": "END"}
+ return {"modality": ["text"] * count, "input_type": input_type, "truncate": self.truncate}
return {}
def _truncate_if_needed(self, text: str) -> str:
diff --git a/engram/embeddings/ollama.py b/dhee/embeddings/ollama.py
similarity index 97%
rename from engram/embeddings/ollama.py
rename to dhee/embeddings/ollama.py
index b5b61cc..f3ad3dd 100644
--- a/engram/embeddings/ollama.py
+++ b/dhee/embeddings/ollama.py
@@ -3,7 +3,7 @@
import os
from typing import List, Optional
-from engram.embeddings.base import BaseEmbedder
+from dhee.embeddings.base import BaseEmbedder
class OllamaEmbedder(BaseEmbedder):
diff --git a/engram/embeddings/openai.py b/dhee/embeddings/openai.py
similarity index 97%
rename from engram/embeddings/openai.py
rename to dhee/embeddings/openai.py
index 53a9ab2..1a4bc9a 100644
--- a/engram/embeddings/openai.py
+++ b/dhee/embeddings/openai.py
@@ -1,7 +1,7 @@
import logging
from typing import List, Optional
-from engram.embeddings.base import BaseEmbedder
+from dhee.embeddings.base import BaseEmbedder
logger = logging.getLogger(__name__)
diff --git a/dhee/embeddings/qwen.py b/dhee/embeddings/qwen.py
new file mode 100644
index 0000000..cc19e4d
--- /dev/null
+++ b/dhee/embeddings/qwen.py
@@ -0,0 +1,139 @@
+"""Qwen3-Embedding-0.6B embedder — local CPU-native embedding.
+
+0.6B params, flexible 32-1024 dims, MTEB English 70.70.
+Supports sentence-transformers or GGUF/Ollama backends.
+"""
+
+import logging
+import os
+from typing import Any, Dict, List, Optional
+
+from dhee.embeddings.base import BaseEmbedder
+
+logger = logging.getLogger(__name__)
+
+_DEFAULT_MODEL = "Qwen/Qwen3-Embedding-0.6B"
+_DEFAULT_DIMS = 1024
+
+
+class QwenEmbedder(BaseEmbedder):
+ """Qwen3-Embedding-0.6B via sentence-transformers or Ollama."""
+
+ def __init__(self, config: Optional[dict] = None):
+ super().__init__(config)
+ self.model_name = self.config.get("model", _DEFAULT_MODEL)
+ self.dims = self.config.get("embedding_dims", _DEFAULT_DIMS)
+ self.backend = self.config.get("backend", "sentence_transformers")
+ self.device = self.config.get("device", "cpu")
+ self._model = None
+
+ def _ensure_model(self):
+ """Lazy-load the embedding model."""
+ if self._model is not None:
+ return
+
+ if self.backend == "ollama":
+ self._init_ollama()
+ else:
+ self._init_sentence_transformers()
+
+ def _init_sentence_transformers(self):
+ """Initialize via sentence-transformers."""
+ try:
+ from sentence_transformers import SentenceTransformer
+ except ImportError:
+ raise ImportError(
+ "sentence-transformers is required for QwenEmbedder. "
+ "Install with: pip install sentence-transformers"
+ )
+
+ logger.info("Loading Qwen3 embedding model: %s", self.model_name)
+ self._model = SentenceTransformer(
+ self.model_name,
+ device=self.device,
+ truncate_dim=self.dims,
+ )
+ logger.info("Qwen3 embedder loaded (%d dims)", self.dims)
+
+ def _init_ollama(self):
+ """Initialize via Ollama."""
+ try:
+ import ollama as ollama_client
+ self._model = ollama_client
+ # Verify model is available
+ self._model.embeddings(model=self.model_name, prompt="test")
+ logger.info("Qwen3 embedder via Ollama: %s", self.model_name)
+ except Exception as e:
+ raise RuntimeError(
+ f"Failed to initialize Qwen3 embedder via Ollama: {e}. "
+ f"Make sure Ollama is running and the model is pulled."
+ )
+
+ def embed(self, text: str, memory_action: Optional[str] = None) -> List[float]:
+ """Embed a single text."""
+ self._ensure_model()
+
+ if not text or not text.strip():
+ return [0.0] * self.dims
+
+ # Truncate long texts
+ if len(text) > 8000:
+ text = text[:8000]
+
+ if self.backend == "ollama":
+ return self._embed_ollama(text)
+ return self._embed_st(text)
+
+ def embed_batch(
+ self, texts: List[str], memory_action: Optional[str] = None
+ ) -> List[List[float]]:
+ """Batch embed multiple texts efficiently."""
+ self._ensure_model()
+
+ if not texts:
+ return []
+
+ # Truncate and clean
+ clean_texts = []
+ for t in texts:
+ t = (t or "").strip()
+ if not t:
+ t = " "
+ if len(t) > 8000:
+ t = t[:8000]
+ clean_texts.append(t)
+
+ if self.backend == "ollama":
+ return [self._embed_ollama(t) for t in clean_texts]
+ return self._embed_st_batch(clean_texts)
+
+ def _embed_st(self, text: str) -> List[float]:
+ """Embed via sentence-transformers."""
+ embedding = self._model.encode(
+ text,
+ normalize_embeddings=True,
+ show_progress_bar=False,
+ )
+ return embedding.tolist()
+
+ def _embed_st_batch(self, texts: List[str]) -> List[List[float]]:
+ """Batch embed via sentence-transformers."""
+ embeddings = self._model.encode(
+ texts,
+ normalize_embeddings=True,
+ show_progress_bar=False,
+ batch_size=32,
+ )
+ return [e.tolist() for e in embeddings]
+
+ def _embed_ollama(self, text: str) -> List[float]:
+ """Embed via Ollama."""
+ response = self._model.embeddings(
+ model=self.model_name,
+ prompt=text,
+ )
+ embedding = response.get("embedding", [])
+ # Truncate to desired dims
+ if len(embedding) > self.dims:
+ embedding = embedding[:self.dims]
+ return embedding
diff --git a/engram/embeddings/simple.py b/dhee/embeddings/simple.py
similarity index 98%
rename from engram/embeddings/simple.py
rename to dhee/embeddings/simple.py
index c273e03..99808fe 100644
--- a/engram/embeddings/simple.py
+++ b/dhee/embeddings/simple.py
@@ -9,7 +9,7 @@
import struct
from typing import List, Optional
-from engram.embeddings.base import BaseEmbedder
+from dhee.embeddings.base import BaseEmbedder
_DEFAULT_DIMS = 384
diff --git a/engram/exceptions.py b/dhee/exceptions.py
similarity index 100%
rename from engram/exceptions.py
rename to dhee/exceptions.py
diff --git a/engram/integrations/__init__.py b/dhee/integrations/__init__.py
similarity index 100%
rename from engram/integrations/__init__.py
rename to dhee/integrations/__init__.py
diff --git a/engram/db/__init__.py b/dhee/llms/__init__.py
similarity index 100%
rename from engram/db/__init__.py
rename to dhee/llms/__init__.py
diff --git a/dhee/llms/base.py b/dhee/llms/base.py
new file mode 100644
index 0000000..e90930b
--- /dev/null
+++ b/dhee/llms/base.py
@@ -0,0 +1,56 @@
+from abc import ABC, abstractmethod
+from dataclasses import dataclass, field
+from typing import Optional
+
+
+@dataclass
+class TokenUsage:
+ """Tracks token usage across all LLM calls."""
+ total_input_tokens: int = 0
+ total_output_tokens: int = 0
+ total_calls: int = 0
+ calls_by_purpose: dict = field(default_factory=dict) # purpose → {input, output, count}
+
+ def record(self, input_tokens: int, output_tokens: int, purpose: str = "unknown"):
+ self.total_input_tokens += input_tokens
+ self.total_output_tokens += output_tokens
+ self.total_calls += 1
+ if purpose not in self.calls_by_purpose:
+ self.calls_by_purpose[purpose] = {"input": 0, "output": 0, "count": 0}
+ self.calls_by_purpose[purpose]["input"] += input_tokens
+ self.calls_by_purpose[purpose]["output"] += output_tokens
+ self.calls_by_purpose[purpose]["count"] += 1
+
+ @property
+ def total_tokens(self) -> int:
+ return self.total_input_tokens + self.total_output_tokens
+
+ def to_dict(self) -> dict:
+ return {
+ "total_input_tokens": self.total_input_tokens,
+ "total_output_tokens": self.total_output_tokens,
+ "total_tokens": self.total_tokens,
+ "total_calls": self.total_calls,
+ "calls_by_purpose": dict(self.calls_by_purpose),
+ }
+
+ def reset(self):
+ self.total_input_tokens = 0
+ self.total_output_tokens = 0
+ self.total_calls = 0
+ self.calls_by_purpose.clear()
+
+
+class BaseLLM(ABC):
+ def __init__(self, config: Optional[dict] = None):
+ self.config = config or {}
+ self.usage = TokenUsage()
+ self._current_purpose = "unknown"
+
+ @abstractmethod
+ def generate(self, prompt: str) -> str:
+ pass
+
+ def set_purpose(self, purpose: str):
+ """Set the current purpose for cost tracking (e.g., 'extraction', 'answer', 'enrichment')."""
+ self._current_purpose = purpose
diff --git a/dhee/llms/dhee.py b/dhee/llms/dhee.py
new file mode 100644
index 0000000..3b7e533
--- /dev/null
+++ b/dhee/llms/dhee.py
@@ -0,0 +1,295 @@
+"""DheeModel LLM provider — fine-tuned Qwen3.5-2B.
+
+Two backends:
+ 1. GGUF via llama-cpp-python (CPU-native, no GPU required)
+ 2. HuggingFace PEFT via transformers (LoRA adapters, MPS/CUDA/CPU)
+
+Auto-detects which backend to use based on available artifacts.
+Zero API cost in both modes.
+"""
+
+import logging
+import os
+from pathlib import Path
+from typing import Any, Dict, Optional
+
+from dhee.llms.base import BaseLLM
+
+logger = logging.getLogger(__name__)
+
+_DEFAULT_ADAPTER_DIR = Path(__file__).resolve().parents[2] / "models" / "dhee_lora_adapters"
+_BASE_MODEL_ID = "Qwen/Qwen3.5-2B"
+
+
+def _find_adapter_dir(config: Optional[dict] = None) -> Optional[str]:
+ """Find LoRA adapter directory."""
+ cfg = config or {}
+ # Explicit config
+ if cfg.get("adapter_dir"):
+ p = Path(cfg["adapter_dir"])
+ if (p / "adapter_config.json").exists():
+ return str(p)
+ # Environment variable
+ env = os.environ.get("DHEE_ADAPTER_DIR", "").strip()
+ if env and (Path(env) / "adapter_config.json").exists():
+ return env
+ # Default project location
+ if (_DEFAULT_ADAPTER_DIR / "adapter_config.json").exists():
+ return str(_DEFAULT_ADAPTER_DIR)
+ # Home directory
+ home_dir = Path.home() / ".dhee" / "adapters"
+ if (home_dir / "adapter_config.json").exists():
+ return str(home_dir)
+ return None
+
+
+def _find_gguf_path(config: Optional[dict] = None) -> Optional[str]:
+ """Find GGUF model file."""
+ try:
+ from dhee_shared.model_paths import resolve_model_path
+ path = resolve_model_path(
+ explicit_path=(config or {}).get("model_path"),
+ model_dir=(config or {}).get("model_dir"),
+ )
+ if os.path.exists(path):
+ return path
+ except ImportError:
+ pass
+ return None
+
+
+def _detect_device() -> str:
+ """Pick best available device for HF inference."""
+ try:
+ import torch
+ if torch.cuda.is_available():
+ return "cuda"
+ if hasattr(torch.backends, "mps") and torch.backends.mps.is_available():
+ return "mps"
+ except ImportError:
+ pass
+ return "cpu"
+
+
+class DheeLLM(BaseLLM):
+ """LLM provider backed by fine-tuned Dhee model.
+
+ Auto-selects backend:
+ - HuggingFace PEFT if LoRA adapters found (models/dhee_lora_adapters/)
+ - GGUF via llama-cpp if .gguf file found (~/.dhee/models/)
+ Task heads: [ENGRAM], [QUERY], [ANSWER], [DECOMPOSE], [CONTEXT], [SCENE]
+ """
+
+ def __init__(self, config: Optional[dict] = None):
+ super().__init__(config)
+ self.temperature = self.config.get("temperature", 0.1)
+ self.max_tokens = self.config.get("max_tokens", 256)
+ self.top_p = self.config.get("top_p", 0.9)
+
+ # Detect backend
+ self._backend = self.config.get("backend") # "hf" or "gguf" or None (auto)
+ self._adapter_dir = _find_adapter_dir(self.config)
+ self._gguf_path = _find_gguf_path(self.config)
+ self._model = None
+ self._tokenizer = None
+
+ if not self._backend:
+ # Prefer GGUF (15-20 tok/s) over HF PEFT (0.6 tok/s)
+ if self._gguf_path:
+ self._backend = "gguf"
+ elif self._adapter_dir:
+ self._backend = "hf"
+ else:
+ self._backend = "gguf" # will error at load time with clear message
+
+ logger.info("DheeLLM backend=%s", self._backend)
+
+ def _ensure_model(self):
+ """Lazy-load the model."""
+ if self._model is not None:
+ return
+ if self._backend == "hf":
+ self._load_hf()
+ else:
+ self._load_gguf()
+
+ def _load_hf(self):
+ """Load base model + LoRA adapters via HuggingFace."""
+ try:
+ import torch
+ from transformers import AutoModelForCausalLM, AutoTokenizer
+ from peft import PeftModel
+ except ImportError as e:
+ raise ImportError(
+ f"HuggingFace backend requires: pip install torch transformers peft. "
+ f"Missing: {e.name}"
+ )
+
+ if not self._adapter_dir:
+ raise FileNotFoundError(
+ "No LoRA adapters found. Place adapter_config.json + "
+ "adapter_model.safetensors in models/dhee_lora_adapters/ "
+ "or set DHEE_ADAPTER_DIR."
+ )
+
+ base_model_id = self.config.get("base_model", _BASE_MODEL_ID)
+ device = self.config.get("device", _detect_device())
+ dtype = torch.float16
+
+ logger.info("Loading base model %s on %s...", base_model_id, device)
+
+ if device == "mps":
+ device_map = "mps"
+ elif device == "cuda":
+ device_map = {"": 0}
+ else:
+ device_map = "cpu"
+
+ self._model = AutoModelForCausalLM.from_pretrained(
+ base_model_id,
+ dtype=dtype,
+ device_map=device_map,
+ trust_remote_code=True,
+ )
+
+ logger.info("Applying LoRA adapters from %s...", self._adapter_dir)
+ self._model = PeftModel.from_pretrained(self._model, self._adapter_dir)
+ self._model.eval()
+
+ # Load tokenizer from adapter dir (has the right chat template)
+ self._tokenizer = AutoTokenizer.from_pretrained(
+ self._adapter_dir, trust_remote_code=True
+ )
+ if self._tokenizer.pad_token is None:
+ self._tokenizer.pad_token = self._tokenizer.eos_token
+
+ self._device = device
+ logger.info("DheeLLM (HF) ready on %s", device)
+
+ def _load_gguf(self):
+ """Load GGUF model via llama-cpp-python."""
+ try:
+ from llama_cpp import Llama
+ except ImportError:
+ raise ImportError(
+ "GGUF backend requires: pip install llama-cpp-python"
+ )
+
+ if not self._gguf_path or not os.path.exists(self._gguf_path):
+ raise FileNotFoundError(
+ f"GGUF model not found at {self._gguf_path}. "
+ "Set DHEE_MODEL_PATH or place model in ~/.dhee/models/"
+ )
+
+ n_ctx = self.config.get("n_ctx", 4096)
+ n_threads = self.config.get("n_threads", 4)
+
+ logger.info("Loading DheeModel GGUF from %s", self._gguf_path)
+ self._model = Llama(
+ model_path=self._gguf_path,
+ n_ctx=n_ctx,
+ n_threads=n_threads,
+ verbose=False,
+ )
+ self._device = "cpu"
+ logger.info("DheeLLM (GGUF) ready")
+
+ def generate(self, prompt: str) -> str:
+ """Generate text using the local model."""
+ self._ensure_model()
+
+ if self._backend == "hf":
+ return self._generate_hf(prompt)
+ return self._generate_gguf(prompt)
+
+ def _generate_hf(self, prompt: str) -> str:
+ """Generate via HuggingFace transformers."""
+ import torch
+
+ inputs = self._tokenizer(prompt, return_tensors="pt")
+ input_ids = inputs["input_ids"].to(self._device)
+ attention_mask = inputs.get("attention_mask")
+ if attention_mask is not None:
+ attention_mask = attention_mask.to(self._device)
+
+ with torch.no_grad():
+ outputs = self._model.generate(
+ input_ids=input_ids,
+ attention_mask=attention_mask,
+ max_new_tokens=self.max_tokens,
+ temperature=max(self.temperature, 0.01),
+ top_p=self.top_p,
+ do_sample=self.temperature > 0,
+ pad_token_id=self._tokenizer.pad_token_id,
+ )
+
+ new_tokens = outputs[0][input_ids.shape[1]:]
+ text = self._tokenizer.decode(new_tokens, skip_special_tokens=True)
+ return text.strip()
+
+ def _generate_gguf(self, prompt: str) -> str:
+ """Generate via llama-cpp-python."""
+ result = self._model.create_completion(
+ prompt,
+ max_tokens=self.max_tokens,
+ temperature=self.temperature,
+ top_p=self.top_p,
+ stop=["", "<|endoftext|>", "<|im_end|>"],
+ )
+ text = result["choices"][0]["text"] if result.get("choices") else ""
+ return text.strip()
+
+ def generate_with_task(self, task: str, content: str) -> str:
+ """Generate with a task prefix token.
+
+ Task heads:
+ - [ENGRAM]: text -> UniversalEngram JSON
+ - [QUERY]: question -> {intent, context_filters, search_terms}
+ - [ANSWER]: question + facts -> natural language
+ - [DECOMPOSE]: complex question -> sub-questions
+ - [CONTEXT]: text -> ContextAnchor
+ - [SCENE]: text -> SceneSnapshot
+ """
+ prompt = f"[{task.upper()}]\n{content}"
+ return self.generate(prompt)
+
+ def extract_engram(self, content: str, session_ctx: Optional[Dict] = None) -> str:
+ """[ENGRAM] task: extract structured engram from text."""
+ ctx_block = ""
+ if session_ctx:
+ import json
+ ctx_block = f"\nSESSION: {json.dumps(session_ctx, default=str)}"
+ return self.generate_with_task("ENGRAM", content + ctx_block)
+
+ def classify_query(self, query: str) -> str:
+ """[QUERY] task: classify intent and extract search params."""
+ return self.generate_with_task("QUERY", query)
+
+ def synthesize_answer(self, question: str, facts_json: str) -> str:
+ """[ANSWER] task: synthesize answer from structured facts."""
+ return self.generate_with_task("ANSWER", f"Q: {question}\nFACTS: {facts_json}")
+
+ def decompose(self, question: str) -> str:
+ """[DECOMPOSE] task: break into sub-questions."""
+ return self.generate_with_task("DECOMPOSE", question)
+
+ def extract_context(self, text: str) -> str:
+ """[CONTEXT] task: extract context anchor."""
+ return self.generate_with_task("CONTEXT", text)
+
+ def extract_scene(self, text: str) -> str:
+ """[SCENE] task: extract scene snapshot."""
+ return self.generate_with_task("SCENE", text)
+
+ @property
+ def backend(self) -> str:
+ return self._backend
+
+
+def is_dhee_model_available() -> bool:
+ """Check if any Dhee model (LoRA adapters or GGUF) is available locally."""
+ if _find_adapter_dir():
+ return True
+ if _find_gguf_path():
+ return True
+ return False
diff --git a/engram/llms/gemini.py b/dhee/llms/gemini.py
similarity index 98%
rename from engram/llms/gemini.py
rename to dhee/llms/gemini.py
index 2d038d5..2d70d01 100644
--- a/engram/llms/gemini.py
+++ b/dhee/llms/gemini.py
@@ -4,7 +4,7 @@
from google import genai
-from engram.llms.base import BaseLLM
+from dhee.llms.base import BaseLLM
logger = logging.getLogger(__name__)
diff --git a/engram/llms/mock.py b/dhee/llms/mock.py
similarity index 96%
rename from engram/llms/mock.py
rename to dhee/llms/mock.py
index e4c2f96..f428640 100644
--- a/engram/llms/mock.py
+++ b/dhee/llms/mock.py
@@ -1,7 +1,7 @@
import json
from typing import Optional
-from engram.llms.base import BaseLLM
+from dhee.llms.base import BaseLLM
class MockLLM(BaseLLM):
diff --git a/dhee/llms/nvidia.py b/dhee/llms/nvidia.py
new file mode 100644
index 0000000..234a45d
--- /dev/null
+++ b/dhee/llms/nvidia.py
@@ -0,0 +1,136 @@
+import logging
+import os
+import time
+from typing import Optional
+
+from dhee.llms.base import BaseLLM
+
+logger = logging.getLogger(__name__)
+
+
+class NvidiaLLM(BaseLLM):
+ """LLM provider for NVIDIA API (OpenAI-compatible). Default model: Qwen 3.5 397B."""
+
+ def __init__(self, config: Optional[dict] = None):
+ super().__init__(config)
+ try:
+ from openai import OpenAI
+ except Exception as exc:
+ raise ImportError("openai package is required for NvidiaLLM") from exc
+
+ api_key = (
+ self.config.get("api_key")
+ or os.getenv("NVIDIA_QWEN_API_KEY")
+ or os.getenv("LLAMA_API_KEY")
+ or os.getenv("NVIDIA_API_KEY")
+ )
+ if not api_key:
+ raise ValueError(
+ "NVIDIA API key required. Set config['api_key'], "
+ "NVIDIA_QWEN_API_KEY, LLAMA_API_KEY, or NVIDIA_API_KEY env var."
+ )
+
+ base_url = self.config.get("base_url", "https://integrate.api.nvidia.com/v1")
+ timeout = self.config.get("timeout", 120)
+ max_retries = self.config.get("max_retries")
+ client_kwargs = {
+ "base_url": base_url,
+ "api_key": api_key,
+ "timeout": timeout,
+ }
+ if max_retries is not None:
+ client_kwargs["max_retries"] = int(max_retries)
+ self.client = OpenAI(**client_kwargs)
+ self.model = self.config.get("model", "openai/gpt-oss-120b")
+ self.temperature = self.config.get("temperature", 0.2)
+ self.max_tokens = self.config.get("max_tokens", 4096)
+ self.top_p = self.config.get("top_p", 0.7)
+ self.enable_thinking = self.config.get("enable_thinking", False)
+
+ def generate(self, prompt: str) -> str:
+ from openai import APITimeoutError, APIConnectionError
+
+ max_app_retries = self.config.get("app_retries", 3)
+ backoff_base = 10
+
+ for attempt in range(1, max_app_retries + 1):
+ try:
+ extra_kwargs = {}
+ if self.enable_thinking:
+ extra_kwargs["extra_body"] = {
+ "chat_template_kwargs": {"thinking": True}
+ }
+
+ use_stream = self.enable_thinking or self.config.get("stream", False)
+
+ create_kwargs = {
+ "model": self.model,
+ "messages": [{"role": "user", "content": prompt}],
+ "temperature": self.temperature,
+ "top_p": self.top_p,
+ "max_tokens": self.max_tokens,
+ "stream": use_stream,
+ **extra_kwargs,
+ }
+ if use_stream:
+ create_kwargs["stream_options"] = {"include_usage": True}
+ response = self.client.chat.completions.create(**create_kwargs)
+
+ if use_stream:
+ reasoning_parts: list[str] = []
+ content_parts: list[str] = []
+ stream_usage = None
+ for chunk in response:
+ # Capture usage from final chunk if available
+ if hasattr(chunk, "usage") and chunk.usage:
+ stream_usage = chunk.usage
+ if not getattr(chunk, "choices", None):
+ continue
+ delta = chunk.choices[0].delta
+ reasoning_piece = getattr(delta, "reasoning_content", None)
+ if reasoning_piece:
+ reasoning_parts.append(str(reasoning_piece))
+ content_piece = getattr(delta, "content", None)
+ if content_piece:
+ content_parts.append(str(content_piece))
+ content = "".join(content_parts).strip()
+ if not content and reasoning_parts:
+ content = "".join(reasoning_parts).strip()
+ # Track tokens
+ if stream_usage:
+ in_tok = getattr(stream_usage, "prompt_tokens", 0) or 0
+ out_tok = getattr(stream_usage, "completion_tokens", 0) or 0
+ else:
+ in_tok = len(prompt) // 4 # estimate
+ out_tok = len(content) // 4
+ self.usage.record(in_tok, out_tok, self._current_purpose)
+ return content
+ else:
+ result = response.choices[0].message.content or ""
+ # Track tokens from response usage
+ if hasattr(response, "usage") and response.usage:
+ in_tok = response.usage.prompt_tokens or 0
+ out_tok = response.usage.completion_tokens or 0
+ else:
+ in_tok = len(prompt) // 4
+ out_tok = len(result) // 4
+ self.usage.record(in_tok, out_tok, self._current_purpose)
+ return result
+ except (APITimeoutError, APIConnectionError) as exc:
+ if attempt < max_app_retries:
+ wait = backoff_base * attempt
+ logger.warning(
+ "NVIDIA LLM timeout/connection error (model=%s, attempt %d/%d), retrying in %ds: %s",
+ self.model, attempt, max_app_retries, wait, exc,
+ )
+ time.sleep(wait)
+ continue
+ logger.error("NVIDIA LLM generate failed after %d attempts (model=%s): %s", max_app_retries, self.model, exc)
+ raise RuntimeError(
+ f"NVIDIA LLM generation failed after {max_app_retries} attempts (model={self.model}): {exc}"
+ ) from exc
+ except Exception as exc:
+ logger.error("NVIDIA LLM generate failed (model=%s): %s", self.model, exc)
+ raise RuntimeError(
+ f"NVIDIA LLM generation failed (model={self.model}): {exc}"
+ ) from exc
diff --git a/engram/llms/ollama.py b/dhee/llms/ollama.py
similarity index 98%
rename from engram/llms/ollama.py
rename to dhee/llms/ollama.py
index c61b8fa..992c71a 100644
--- a/engram/llms/ollama.py
+++ b/dhee/llms/ollama.py
@@ -3,7 +3,7 @@
import os
from typing import Optional
-from engram.llms.base import BaseLLM
+from dhee.llms.base import BaseLLM
class OllamaLLM(BaseLLM):
diff --git a/engram/llms/openai.py b/dhee/llms/openai.py
similarity index 97%
rename from engram/llms/openai.py
rename to dhee/llms/openai.py
index 510cbc3..f6bbdac 100644
--- a/engram/llms/openai.py
+++ b/dhee/llms/openai.py
@@ -1,7 +1,7 @@
import logging
from typing import Optional
-from engram.llms.base import BaseLLM
+from dhee.llms.base import BaseLLM
logger = logging.getLogger(__name__)
diff --git a/dhee/llms/teacher_logger.py b/dhee/llms/teacher_logger.py
new file mode 100644
index 0000000..8749d56
--- /dev/null
+++ b/dhee/llms/teacher_logger.py
@@ -0,0 +1,243 @@
+"""Teacher Logging LLM — wraps any LLM to capture (prompt, response) pairs.
+
+Used for distillation and self-improvement: capture teacher model outputs to
+train DheeModel. Logs are annotated with quality signals from Viveka and
+benchmark judge verdicts, enabling the Nididhyasana loop to curate training
+data automatically.
+
+Self-improvement data flow:
+ 1. Teacher logs captured during benchmark/live operation
+ 2. Judge verdicts or Viveka scores annotated retroactively
+ 3. Nididhyasana reads logs → filters by quality → produces training JSONL
+ 4. DheeModel fine-tuned on curated data → hot-swapped
+"""
+
+import json
+import logging
+import os
+import time
+import uuid
+from typing import Any, Dict, List, Optional
+
+from dhee.llms.base import BaseLLM
+
+logger = logging.getLogger(__name__)
+
+_DEFAULT_LOG_DIR = os.path.join(os.path.expanduser("~"), ".dhee", "teacher_logs")
+
+
+class TeacherLoggingLLM(BaseLLM):
+ """Wraps any LLM to capture (prompt, response) pairs for distillation.
+
+ Each entry gets a unique ID so it can be retroactively annotated with:
+ - benchmark judge verdict (correct/incorrect)
+ - Viveka quality score
+ - gold answer (for SFT training data)
+ """
+
+ def __init__(
+ self,
+ inner: BaseLLM,
+ log_dir: Optional[str] = None,
+ config: Optional[dict] = None,
+ run_id: Optional[str] = None,
+ ):
+ super().__init__(config)
+ self.inner = inner
+ self.log_dir = log_dir or _DEFAULT_LOG_DIR
+ self.run_id = run_id or datetime_tag()
+ os.makedirs(self.log_dir, exist_ok=True)
+ self._log_file = os.path.join(self.log_dir, "teacher_log.jsonl")
+ self._annotation_file = os.path.join(self.log_dir, "annotations.jsonl")
+ self._count = 0
+ self._entry_index: Dict[str, int] = {} # entry_id → line number
+
+ def generate(self, prompt: str) -> str:
+ """Generate via inner LLM and log the pair."""
+ t0 = time.monotonic()
+ response = self.inner.generate(prompt)
+ elapsed_ms = (time.monotonic() - t0) * 1000
+
+ task_type = self._classify_task(prompt)
+ entry_id = self._log(prompt, response, task_type, elapsed_ms)
+ self._last_entry_id = entry_id
+
+ return response
+
+ @property
+ def last_entry_id(self) -> Optional[str]:
+ return getattr(self, "_last_entry_id", None)
+
+ def annotate(
+ self,
+ entry_id: str,
+ *,
+ verdict: Optional[str] = None,
+ gold_answer: Optional[str] = None,
+ viveka_score: Optional[float] = None,
+ question_type: Optional[str] = None,
+ question_id: Optional[str] = None,
+ metadata: Optional[Dict[str, Any]] = None,
+ ) -> None:
+ """Retroactively annotate a logged entry with quality signals.
+
+ Called by the benchmark judge after evaluating system vs gold answer.
+ """
+ annotation = {
+ "entry_id": entry_id,
+ "timestamp": time.time(),
+ "run_id": self.run_id,
+ }
+ if verdict is not None:
+ annotation["verdict"] = verdict # "correct" | "incorrect" | "partial"
+ if gold_answer is not None:
+ annotation["gold_answer"] = gold_answer
+ if viveka_score is not None:
+ annotation["viveka_score"] = viveka_score
+ if question_type is not None:
+ annotation["question_type"] = question_type
+ if question_id is not None:
+ annotation["question_id"] = question_id
+ if metadata:
+ annotation["metadata"] = metadata
+
+ try:
+ with open(self._annotation_file, "a", encoding="utf-8") as f:
+ f.write(json.dumps(annotation, default=str) + "\n")
+ except Exception as e:
+ logger.warning("Failed to write annotation: %s", e)
+
+ def get_training_candidates(
+ self,
+ min_viveka_score: float = 0.0,
+ verdict_filter: Optional[str] = "correct",
+ ) -> List[Dict[str, Any]]:
+ """Load logged entries that pass quality filters for training.
+
+ Returns entries where:
+ - verdict matches filter (default: only correct answers)
+ - viveka_score >= min threshold
+ """
+ # Load annotations index
+ annotations: Dict[str, Dict] = {}
+ if os.path.exists(self._annotation_file):
+ with open(self._annotation_file, "r", encoding="utf-8") as f:
+ for line in f:
+ if line.strip():
+ ann = json.loads(line)
+ annotations[ann["entry_id"]] = ann
+
+ # Load entries and filter
+ candidates = []
+ if not os.path.exists(self._log_file):
+ return candidates
+
+ with open(self._log_file, "r", encoding="utf-8") as f:
+ for line in f:
+ if not line.strip():
+ continue
+ entry = json.loads(line)
+ eid = entry.get("entry_id", "")
+ ann = annotations.get(eid, {})
+
+ # Apply filters
+ if verdict_filter and ann.get("verdict") != verdict_filter:
+ continue
+ if ann.get("viveka_score", 1.0) < min_viveka_score:
+ continue
+
+ entry["annotation"] = ann
+ candidates.append(entry)
+
+ return candidates
+
+ def export_sft_data(self, output_path: str, task_types: Optional[List[str]] = None) -> int:
+ """Export quality-filtered entries as SFT training JSONL.
+
+ Format: {"instruction": prompt, "output": response_or_gold}
+ Uses gold_answer when available (from benchmark), falls back to response.
+ """
+ candidates = self.get_training_candidates(verdict_filter="correct")
+ count = 0
+ with open(output_path, "w", encoding="utf-8") as f:
+ for entry in candidates:
+ if task_types and entry.get("task_type") not in task_types:
+ continue
+ ann = entry.get("annotation", {})
+ output = ann.get("gold_answer") or entry["response"]
+ row = {
+ "instruction": entry["prompt"],
+ "output": output,
+ "task_type": entry.get("task_type", "other"),
+ "source": "teacher_log",
+ "run_id": entry.get("run_id", self.run_id),
+ }
+ f.write(json.dumps(row, default=str) + "\n")
+ count += 1
+ logger.info("Exported %d SFT examples to %s", count, output_path)
+ return count
+
+ def _classify_task(self, prompt: str) -> str:
+ lower = prompt.lower()
+ if "extract" in lower and ("fact" in lower or "engram" in lower):
+ return "engram"
+ if "classify" in lower and ("intent" in lower or "query" in lower):
+ return "query"
+ if "answer" in lower and "question" in lower:
+ return "answer"
+ if "decompose" in lower or "sub-question" in lower:
+ return "decompose"
+ if "context" in lower and ("era" in lower or "place" in lower or "time" in lower):
+ return "context"
+ if "scene" in lower and ("setting" in lower or "people" in lower):
+ return "scene"
+ if "echo" in lower or "paraphrase" in lower:
+ return "echo"
+ if "category" in lower or "categorize" in lower:
+ return "category"
+ if "entity" in lower or "extract" in lower:
+ return "entity"
+ return "other"
+
+ def _log(self, prompt: str, response: str, task_type: str, elapsed_ms: float) -> str:
+ entry_id = f"tl_{uuid.uuid4().hex[:12]}"
+ entry = {
+ "entry_id": entry_id,
+ "run_id": self.run_id,
+ "timestamp": time.time(),
+ "task_type": task_type,
+ "prompt": prompt,
+ "response": response,
+ "elapsed_ms": round(elapsed_ms, 1),
+ "prompt_tokens": len(prompt.split()),
+ "response_tokens": len(response.split()),
+ }
+ try:
+ with open(self._log_file, "a", encoding="utf-8") as f:
+ f.write(json.dumps(entry, default=str) + "\n")
+ self._count += 1
+ if self._count % 100 == 0:
+ logger.info(
+ "Teacher logger: %d pairs captured in %s",
+ self._count, self._log_file,
+ )
+ except Exception as e:
+ logger.warning("Failed to log teacher pair: %s", e)
+ return entry_id
+
+ @property
+ def log_count(self) -> int:
+ return self._count
+
+ @property
+ def log_path(self) -> str:
+ return self._log_file
+
+ @property
+ def annotation_path(self) -> str:
+ return self._annotation_file
+
+
+def datetime_tag() -> str:
+ from datetime import datetime
+ return datetime.now().strftime("%Y%m%d_%H%M%S")
diff --git a/engram/mcp_server.py b/dhee/mcp_server.py
similarity index 69%
rename from engram/mcp_server.py
rename to dhee/mcp_server.py
index d6c1963..681ba8e 100644
--- a/engram/mcp_server.py
+++ b/dhee/mcp_server.py
@@ -1,11 +1,11 @@
-"""Engram MCP Server — 19 tools, minimal boilerplate.
+"""Dhee MCP Server — 24 tools, minimal boilerplate.
Tools:
1. remember — Quick-save (content → memory, infer=False)
2. search_memory — Semantic search
3. get_memory — Fetch by ID
4. get_all_memories — List with filters
- 5. engram_context — Session-start digest (top memories)
+ 5. engram_context — HyperAgent session bootstrap (Buddhi-powered)
6. get_last_session — Handoff: load prior session
7. save_session_digest — Handoff: save current session
8. get_memory_stats — Quick health check
@@ -20,6 +20,11 @@
17. decompose_skill — Trigger structural decomposition of a flat skill
18. apply_skill_with_bindings — Apply skill with slot values, includes gap analysis
19. enrich_pending — Batch-enrich deferred memories
+20. think — Cognitive decomposition (memory-grounded reasoning)
+21. anticipate — Proactive scene + intention surfacing (Buddhi-powered)
+22. record_outcome — Report task outcome for performance tracking
+23. reflect — Agent-triggered insight synthesis
+24. store_intention — Store a future trigger (prospective memory)
"""
import json
@@ -31,8 +36,8 @@
from mcp.server.stdio import stdio_server
from mcp.types import Tool, TextContent
-from engram.memory.main import FullMemory, Memory
-from engram.configs.base import (
+from dhee.memory.main import FullMemory, Memory
+from dhee.configs.base import (
MemoryConfig,
VectorStoreConfig,
LLMConfig,
@@ -66,10 +71,29 @@ def _get_embedding_dims_for_model(model: str, provider: str) -> int:
def get_memory_instance() -> Memory:
"""Create and return a configured Memory instance (FullMemory for MCP)."""
- gemini_key = os.environ.get("GOOGLE_API_KEY") or os.environ.get("GEMINI_API_KEY")
openai_key = os.environ.get("OPENAI_API_KEY")
+ gemini_key = os.environ.get("GOOGLE_API_KEY") or os.environ.get("GEMINI_API_KEY")
+ nvidia_key = (
+ os.environ.get("NVIDIA_API_KEY")
+ or os.environ.get("NVIDIA_QWEN_API_KEY")
+ or os.environ.get("NVIDIA_EMBEDDING_API_KEY")
+ )
- if gemini_key:
+ if openai_key:
+ embedder_model = os.environ.get("FADEM_EMBEDDER_MODEL", "text-embedding-3-small")
+ embedding_dims = _get_embedding_dims_for_model(embedder_model, "openai")
+ llm_config = LLMConfig(
+ provider="openai",
+ config={
+ "model": os.environ.get("FADEM_LLM_MODEL", "gpt-4o-mini"),
+ "temperature": 0.1, "max_tokens": 1024, "api_key": openai_key,
+ }
+ )
+ embedder_config = EmbedderConfig(
+ provider="openai",
+ config={"model": embedder_model, "api_key": openai_key},
+ )
+ elif gemini_key:
embedder_model = os.environ.get("FADEM_EMBEDDER_MODEL", "gemini-embedding-001")
embedding_dims = _get_embedding_dims_for_model(embedder_model, "gemini")
llm_config = LLMConfig(
@@ -83,19 +107,20 @@ def get_memory_instance() -> Memory:
provider="gemini",
config={"model": embedder_model, "api_key": gemini_key},
)
- elif openai_key:
- embedder_model = os.environ.get("FADEM_EMBEDDER_MODEL", "text-embedding-3-small")
- embedding_dims = _get_embedding_dims_for_model(embedder_model, "openai")
+ elif nvidia_key:
+ # Internal provider — not customer-documented
+ embedder_model = os.environ.get("FADEM_EMBEDDER_MODEL", "nvidia/llama-nemotron-embed-vl-1b-v2")
+ embedding_dims = 2048
llm_config = LLMConfig(
- provider="openai",
+ provider="nvidia",
config={
- "model": os.environ.get("FADEM_LLM_MODEL", "gpt-4o-mini"),
- "temperature": 0.1, "max_tokens": 1024, "api_key": openai_key,
+ "model": os.environ.get("FADEM_LLM_MODEL", "qwen/qwen3.5-397b-a17b"),
+ "temperature": 0.2, "max_tokens": 4096, "api_key": nvidia_key,
}
)
embedder_config = EmbedderConfig(
- provider="openai",
- config={"model": embedder_model, "api_key": openai_key},
+ provider="nvidia",
+ config={"model": embedder_model, "api_key": nvidia_key},
)
else:
# Zero-config: SimpleEmbedder + MockLLM
@@ -105,9 +130,10 @@ def get_memory_instance() -> Memory:
provider="simple", config={"embedding_dims": 384},
)
+ from dhee.configs.base import _dhee_data_dir
vec_db_path = os.environ.get(
"FADEM_VEC_DB_PATH",
- os.path.join(os.path.expanduser("~"), ".engram", "zvec"),
+ os.path.join(_dhee_data_dir(), "zvec"),
)
# Use in-memory vector store for simple embedder (no persistent storage needed)
@@ -131,7 +157,7 @@ def get_memory_instance() -> Memory:
history_db_path = os.environ.get(
"FADEM_HISTORY_DB",
- os.path.join(os.path.expanduser("~"), ".engram", "history.db"),
+ os.path.join(_dhee_data_dir(), "history.db"),
)
fadem_config = FadeMemConfig(
@@ -152,8 +178,9 @@ def get_memory_instance() -> Memory:
return FullMemory(config)
-# Global memory instance (lazy)
+# Global instances (lazy)
_memory: Optional[Memory] = None
+_buddhi = None # type: ignore
def get_memory() -> Memory:
@@ -163,9 +190,18 @@ def get_memory() -> Memory:
return _memory
+def get_buddhi():
+ """Lazy singleton for the Buddhi cognition layer."""
+ global _buddhi
+ if _buddhi is None:
+ from dhee.core.buddhi import Buddhi
+ _buddhi = Buddhi()
+ return _buddhi
+
+
# ── MCP Server ──
-server = Server("engram-memory")
+server = Server("dhee")
# Tool definitions — 8 tools total
TOOLS = [
@@ -203,6 +239,14 @@ def get_memory() -> Memory:
"agent_id": {"type": "string", "description": "Agent identifier to scope search to (optional)"},
"limit": {"type": "integer", "description": "Maximum number of results to return (default: 10)"},
"categories": {"type": "array", "items": {"type": "string"}, "description": "Filter results by categories"},
+ "orchestration_mode": {
+ "type": "string",
+ "enum": ["off", "hybrid", "strict"],
+ "description": "Optional orchestrated retrieval mode (default: off for backward compatibility).",
+ },
+ "question_type": {"type": "string", "description": "Optional question type for intent routing."},
+ "question_date": {"type": "string", "description": "Optional question date for temporal reasoning."},
+ "answer_context_top_k": {"type": "integer", "description": "Context result cap in orchestrated mode (default: 10)."},
},
"required": ["query"],
},
@@ -233,12 +277,13 @@ def get_memory() -> Memory:
),
Tool(
name="engram_context",
- description="Session-start digest. Call once at the beginning of a new conversation to load context from prior sessions. Returns top memories sorted by strength with long-term memories (LML) first.",
+ description="HyperAgent session bootstrap. Call at conversation start to get EVERYTHING: performance trends, synthesized insights from prior runs, relevant skills, pending intentions, proactive warnings, and top memories. This single call turns any agent into a HyperAgent with persistent memory and self-improvement awareness.",
inputSchema={
"type": "object",
"properties": {
"user_id": {"type": "string", "description": "User identifier to load context for (default: 'default')"},
- "limit": {"type": "integer", "description": "Maximum number of memories to return in the digest (default: 15)"},
+ "task_description": {"type": "string", "description": "What the agent is about to work on — used to filter relevant insights, skills, and performance history"},
+ "limit": {"type": "integer", "description": "Maximum number of memories to return (default: 10)"},
},
},
),
@@ -455,6 +500,74 @@ def get_memory() -> Memory:
},
},
),
+ Tool(
+ name="think",
+ description="Cognitive decomposition — memory-grounded reasoning. Decomposes a complex question into sub-questions, grounds each in memory, and synthesizes an answer from verified facts. Use for questions that require reasoning across multiple memories.",
+ inputSchema={
+ "type": "object",
+ "properties": {
+ "question": {"type": "string", "description": "The question to reason about"},
+ "user_id": {"type": "string", "description": "User identifier (default: 'default')"},
+ "max_depth": {"type": "integer", "description": "Maximum decomposition depth (default: 3)"},
+ },
+ "required": ["question"],
+ },
+ ),
+ Tool(
+ name="anticipate",
+ description="Proactive intelligence — surfaces triggered intentions, upcoming scenes, and relevant insights. Buddhi checks what you need before you ask. Use at session start or periodically.",
+ inputSchema={
+ "type": "object",
+ "properties": {
+ "user_id": {"type": "string", "description": "User identifier (default: 'default')"},
+ "context": {"type": "string", "description": "Current task or query context for intention matching"},
+ },
+ },
+ ),
+ Tool(
+ name="record_outcome",
+ description="Report a task outcome for performance tracking. Buddhi records the score, detects trends (regressions, breakthroughs), and auto-generates insights. Call after completing any measurable task.",
+ inputSchema={
+ "type": "object",
+ "properties": {
+ "task_type": {"type": "string", "description": "Category of the task (e.g., 'code_review', 'bug_fix', 'refactor')"},
+ "score": {"type": "number", "description": "Outcome score 0.0-1.0 (1.0 = perfect)"},
+ "user_id": {"type": "string", "description": "User identifier (default: 'default')"},
+ "metadata": {"type": "object", "description": "Optional metadata about the outcome"},
+ },
+ "required": ["task_type", "score"],
+ },
+ ),
+ Tool(
+ name="reflect",
+ description="Agent-triggered reflection — synthesize insights from experience. Call when a task completes to record what worked, what failed, and key decisions. These become transferable insights that improve future runs across domains.",
+ inputSchema={
+ "type": "object",
+ "properties": {
+ "task_type": {"type": "string", "description": "Category of the task"},
+ "what_worked": {"type": "string", "description": "What approach or strategy worked well"},
+ "what_failed": {"type": "string", "description": "What approach or strategy failed"},
+ "key_decision": {"type": "string", "description": "A key decision made and its rationale"},
+ "user_id": {"type": "string", "description": "User identifier (default: 'default')"},
+ },
+ "required": ["task_type"],
+ },
+ ),
+ Tool(
+ name="store_intention",
+ description="Store a future trigger — prospective memory. When the agent or user says 'remember to X when Y', store it as an intention. Buddhi will surface it when the trigger condition matches.",
+ inputSchema={
+ "type": "object",
+ "properties": {
+ "description": {"type": "string", "description": "What to remember to do"},
+ "trigger_keywords": {"type": "array", "items": {"type": "string"}, "description": "Keywords that trigger this intention"},
+ "trigger_after": {"type": "string", "description": "ISO timestamp deadline for time-based triggers"},
+ "action_type": {"type": "string", "enum": ["remind", "suggest", "warn"], "description": "How to surface: remind (neutral), suggest (positive), warn (caution)"},
+ "user_id": {"type": "string", "description": "User identifier (default: 'default')"},
+ },
+ "required": ["description"],
+ },
+ ),
]
@@ -477,13 +590,35 @@ def _handle_search_memory(memory, args):
limit = max(1, min(1000, int(args.get("limit", 10))))
except (ValueError, TypeError):
limit = 10
- result = memory.search(
- query=args.get("query", ""),
- user_id=args.get("user_id", "default"),
- agent_id=args.get("agent_id"),
- limit=limit,
- categories=args.get("categories"),
- )
+ orchestration_mode = str(args.get("orchestration_mode", "off") or "off").strip().lower()
+ if orchestration_mode in {"hybrid", "strict"}:
+ try:
+ context_top_k = max(1, min(200, int(args.get("answer_context_top_k", 10))))
+ except (ValueError, TypeError):
+ context_top_k = 10
+ result = memory.search_orchestrated(
+ query=args.get("query", ""),
+ user_id=args.get("user_id", "default"),
+ agent_id=args.get("agent_id"),
+ categories=args.get("categories"),
+ limit=limit,
+ question_type=args.get("question_type", ""),
+ question_date=args.get("question_date", ""),
+ orchestration_mode=orchestration_mode,
+ base_search_limit=limit,
+ base_context_limit=context_top_k,
+ include_evidence=True,
+ keyword_search=True,
+ rerank=True,
+ )
+ else:
+ result = memory.search(
+ query=args.get("query", ""),
+ user_id=args.get("user_id", "default"),
+ agent_id=args.get("agent_id"),
+ limit=limit,
+ categories=args.get("categories"),
+ )
if "results" in result:
result["results"] = [
{
@@ -539,37 +674,24 @@ def _handle_get_all_memories(memory, args):
def _handle_engram_context(memory, args):
+ """HyperAgent session bootstrap — Buddhi-powered.
+
+ Returns performance trends, synthesized insights, relevant skills,
+ pending intentions, proactive warnings, and top memories.
+ """
user_id = args.get("user_id", "default")
- try:
- limit = max(1, min(100, int(args.get("limit", 15))))
- except (ValueError, TypeError):
- limit = 15
- all_result = memory.get_all(user_id=user_id, limit=limit * 3)
- all_memories = all_result.get("results", [])
- layer_order = {"lml": 0, "sml": 1}
- all_memories.sort(key=lambda m: (
- layer_order.get(m.get("layer", "sml"), 1),
- -float(m.get("strength", 1.0)),
- ))
- digest = [
- {
- "id": m["id"],
- "memory": m.get("memory", ""),
- "layer": m.get("layer", "sml"),
- "strength": round(float(m.get("strength", 1.0)), 3),
- "categories": m.get("categories", []),
- }
- for m in all_memories[:limit]
- ]
- return {
- "digest": digest,
- "total_in_store": len(all_memories),
- "returned": len(digest),
- }
+ task_description = args.get("task_description")
+ buddhi = get_buddhi()
+ hyper_ctx = buddhi.get_hyper_context(
+ user_id=user_id,
+ task_description=task_description,
+ memory=memory,
+ )
+ return hyper_ctx.to_dict()
def _handle_get_last_session(_memory, args):
- from engram.core.kernel import get_last_session
+ from dhee.core.kernel import get_last_session
session = get_last_session(
agent_id=args.get("agent_id", "mcp-server"),
repo=args.get("repo"),
@@ -581,7 +703,7 @@ def _handle_get_last_session(_memory, args):
def _handle_save_session_digest(_memory, args):
- from engram.core.kernel import save_session_digest
+ from dhee.core.kernel import save_session_digest
return save_session_digest(
task_summary=args.get("task_summary", ""),
agent_id=args.get("agent_id", "claude-code"),
@@ -715,6 +837,125 @@ def _handle_enrich_pending(memory, args):
)
+def _handle_think(memory, arguments: Dict[str, Any]) -> Dict[str, Any]:
+ """Handle the think tool — cognitive decomposition loop."""
+ question = arguments.get("question", "")
+ user_id = arguments.get("user_id", "default")
+ max_depth = arguments.get("max_depth", 3)
+
+ if not question:
+ return {"error": "question is required"}
+
+ if hasattr(memory, "think"):
+ result = memory.think(
+ question=question,
+ user_id=user_id,
+ max_depth=max_depth,
+ )
+ if hasattr(result, "to_dict"):
+ return result.to_dict()
+ return result
+ return {"error": "Cognition engine not available. Ensure cognition is enabled in config."}
+
+
+def _handle_anticipate(memory, arguments: Dict[str, Any]) -> Dict[str, Any]:
+ """Proactive intelligence — Buddhi checks intentions, insights, and scenes."""
+ user_id = arguments.get("user_id", "default")
+ context = arguments.get("context")
+
+ buddhi = get_buddhi()
+ result: Dict[str, Any] = {}
+
+ # 1. Check triggered intentions
+ triggered = buddhi._check_intentions(user_id, context)
+ if triggered:
+ result["triggered_intentions"] = [i.to_dict() for i in triggered]
+
+ # 2. Relevant insights for current context
+ insights = buddhi._get_relevant_insights(user_id, context)
+ if insights:
+ result["relevant_insights"] = [i.to_dict() for i in insights[:5]]
+
+ # 3. Proactive warnings from performance data
+ performance = buddhi._get_performance_snapshots(user_id, context)
+ warnings = buddhi._generate_warnings(performance, insights)
+ if warnings:
+ result["warnings"] = warnings
+
+ # 4. Prospective scenes (legacy support)
+ if hasattr(memory, "get_prospective_scenes"):
+ scenes = memory.get_prospective_scenes(user_id=user_id)
+ if scenes:
+ result["upcoming_scenes"] = scenes
+
+ result["buddhi_stats"] = buddhi.get_stats()
+ return result
+
+
+def _handle_record_outcome(_memory, arguments: Dict[str, Any]) -> Dict[str, Any]:
+ """Record task outcome for performance tracking."""
+ task_type = arguments.get("task_type", "")
+ score = float(arguments.get("score", 0.0))
+ user_id = arguments.get("user_id", "default")
+ metadata = arguments.get("metadata")
+
+ if not task_type:
+ return {"error": "task_type is required"}
+
+ buddhi = get_buddhi()
+ insight = buddhi.record_outcome(
+ user_id=user_id,
+ task_type=task_type,
+ score=max(0.0, min(1.0, score)),
+ metadata=metadata,
+ )
+ result: Dict[str, Any] = {"recorded": True, "task_type": task_type, "score": score}
+ if insight:
+ result["auto_insight"] = insight.to_dict()
+ return result
+
+
+def _handle_reflect(_memory, arguments: Dict[str, Any]) -> Dict[str, Any]:
+ """Agent-triggered reflection — synthesize insights from experience."""
+ task_type = arguments.get("task_type", "")
+ user_id = arguments.get("user_id", "default")
+
+ if not task_type:
+ return {"error": "task_type is required"}
+
+ buddhi = get_buddhi()
+ new_insights = buddhi.reflect(
+ user_id=user_id,
+ task_type=task_type,
+ what_worked=arguments.get("what_worked"),
+ what_failed=arguments.get("what_failed"),
+ key_decision=arguments.get("key_decision"),
+ )
+ return {
+ "insights_created": len(new_insights),
+ "insights": [i.to_dict() for i in new_insights],
+ }
+
+
+def _handle_store_intention(_memory, arguments: Dict[str, Any]) -> Dict[str, Any]:
+ """Store a future trigger — prospective memory."""
+ description = arguments.get("description", "")
+ user_id = arguments.get("user_id", "default")
+
+ if not description:
+ return {"error": "description is required"}
+
+ buddhi = get_buddhi()
+ intention = buddhi.store_intention(
+ user_id=user_id,
+ description=description,
+ trigger_keywords=arguments.get("trigger_keywords"),
+ trigger_after=arguments.get("trigger_after"),
+ action_type=arguments.get("action_type", "remind"),
+ )
+ return {"stored": True, "intention": intention.to_dict()}
+
+
HANDLERS = {
"remember": _handle_remember,
"search_memory": _handle_search_memory,
@@ -735,9 +976,17 @@ def _handle_enrich_pending(memory, args):
"decompose_skill": _handle_decompose_skill,
"apply_skill_with_bindings": _handle_apply_skill_with_bindings,
"enrich_pending": _handle_enrich_pending,
+ "think": _handle_think,
+ "anticipate": _handle_anticipate,
+ "record_outcome": _handle_record_outcome,
+ "reflect": _handle_reflect,
+ "store_intention": _handle_store_intention,
}
-_MEMORY_FREE_TOOLS = {"get_last_session", "save_session_digest"}
+_MEMORY_FREE_TOOLS = {
+ "get_last_session", "save_session_digest",
+ "record_outcome", "reflect", "store_intention",
+}
@server.list_tools()
diff --git a/dhee/mcp_slim.py b/dhee/mcp_slim.py
new file mode 100644
index 0000000..142c3fe
--- /dev/null
+++ b/dhee/mcp_slim.py
@@ -0,0 +1,442 @@
+"""Dhee — 4-tool MCP server. Cognition as a Service.
+
+Install: pip install dhee[openai,mcp]
+Config: export OPENAI_API_KEY=sk-...
+Run: dhee-mcp
+
+Tools:
+ 1. remember — Store a fact (0 LLM on hot path, 1 embed). Enrichment deferred to checkpoint.
+ 2. recall — Search memory, get top-K results (0 LLM, 1 embed)
+ 3. context — HyperAgent bootstrap: performance + insights + intentions + memories
+ 4. checkpoint — Save session + batch-enrich stored memories (1 LLM per ~10 memories)
+
+Cost model:
+ Hot path (remember/recall): ~$0.0002 per call (1 embedding only)
+ Checkpoint: ~$0.001 per 10 memories enriched (1 LLM batch call)
+ Enrichment adds echo paraphrases + keywords → dramatically better recall quality.
+"""
+
+import json
+import logging
+import os
+from typing import Any, Dict, List, Optional
+
+from mcp.server import Server
+from mcp.server.stdio import stdio_server
+from mcp.types import Tool, TextContent
+
+logger = logging.getLogger(__name__)
+
+# ---------------------------------------------------------------------------
+# Lazy singletons
+# ---------------------------------------------------------------------------
+
+_memory = None
+_buddhi = None
+
+
+def _get_memory():
+ """Create memory instance with deferred enrichment (0 LLM on hot path)."""
+ global _memory
+ if _memory is None:
+ from dhee.mcp_server import get_memory_instance
+ _memory = get_memory_instance()
+ # Enable deferred enrichment: 0 LLM calls at ingestion,
+ # batch-enrich later at checkpoint time for retrieval quality.
+ if hasattr(_memory, "config") and hasattr(_memory.config, "enrichment"):
+ _memory.config.enrichment.defer_enrichment = True
+ _memory.config.enrichment.enable_unified = True
+ return _memory
+
+
+def _get_buddhi():
+ global _buddhi
+ if _buddhi is None:
+ from dhee.core.buddhi import Buddhi
+ _buddhi = Buddhi()
+ return _buddhi
+
+
+# ---------------------------------------------------------------------------
+# 4 Tools
+# ---------------------------------------------------------------------------
+
+server = Server("dhee")
+
+TOOLS = [
+ Tool(
+ name="remember",
+ description=(
+ "Store a fact, preference, or conversation context to memory. "
+ "Fast: 0 LLM calls on hot path, 1 embedding. "
+ "Echo enrichment (paraphrases, keywords) runs at checkpoint for better recall quality. "
+ "Examples: 'User prefers dark mode', 'Project uses FastAPI + PostgreSQL'."
+ ),
+ inputSchema={
+ "type": "object",
+ "properties": {
+ "content": {
+ "type": "string",
+ "description": "The fact or preference to remember",
+ },
+ "user_id": {
+ "type": "string",
+ "description": "User identifier (default: 'default')",
+ },
+ },
+ "required": ["content"],
+ },
+ ),
+ Tool(
+ name="recall",
+ description=(
+ "Search memory for relevant facts. Returns top-K results ranked by relevance. "
+ "Lightweight: 0 LLM calls, 1 embedding call. "
+ "Use for: 'What does the user prefer?', 'What did we discuss about X?'"
+ ),
+ inputSchema={
+ "type": "object",
+ "properties": {
+ "query": {
+ "type": "string",
+ "description": "What you're trying to remember",
+ },
+ "user_id": {
+ "type": "string",
+ "description": "User identifier (default: 'default')",
+ },
+ "limit": {
+ "type": "integer",
+ "description": "Max results to return (default: 5)",
+ },
+ },
+ "required": ["query"],
+ },
+ ),
+ Tool(
+ name="context",
+ description=(
+ "HyperAgent session bootstrap. Call ONCE at conversation start. "
+ "Returns: last session state, performance trends, synthesized insights, "
+ "pending intentions, proactive warnings, and top memories. "
+ "This single call gives you everything you need to continue where you left off."
+ ),
+ inputSchema={
+ "type": "object",
+ "properties": {
+ "task_description": {
+ "type": "string",
+ "description": "What you're about to work on (filters relevant context)",
+ },
+ "user_id": {
+ "type": "string",
+ "description": "User identifier (default: 'default')",
+ },
+ },
+ },
+ ),
+ Tool(
+ name="checkpoint",
+ description=(
+ "Save session state and learnings before ending a conversation. "
+ "Also batch-enriches any memories stored since last checkpoint (1 LLM call per ~10 memories) "
+ "to add echo paraphrases and keywords for better future recall. "
+ "Combines: session digest, batch enrichment, outcome recording, reflection, and intention storage. "
+ "Include whatever fields are relevant — all are optional except summary."
+ ),
+ inputSchema={
+ "type": "object",
+ "properties": {
+ "summary": {
+ "type": "string",
+ "description": "What you were working on (the task)",
+ },
+ "status": {
+ "type": "string",
+ "enum": ["active", "paused", "completed"],
+ "description": "Session status (default: 'paused')",
+ },
+ "decisions": {
+ "type": "array",
+ "items": {"type": "string"},
+ "description": "Key decisions made during the session",
+ },
+ "todos": {
+ "type": "array",
+ "items": {"type": "string"},
+ "description": "Remaining work items",
+ },
+ "files_touched": {
+ "type": "array",
+ "items": {"type": "string"},
+ "description": "Files modified during the session",
+ },
+ "outcome_score": {
+ "type": "number",
+ "description": "Task outcome score 0.0-1.0 (for performance tracking)",
+ },
+ "task_type": {
+ "type": "string",
+ "description": "Category of the task (e.g., 'bug_fix', 'refactor')",
+ },
+ "what_worked": {
+ "type": "string",
+ "description": "What approach worked well (becomes transferable insight)",
+ },
+ "what_failed": {
+ "type": "string",
+ "description": "What approach failed (becomes a warning for future runs)",
+ },
+ "key_decision": {
+ "type": "string",
+ "description": "A key decision and its rationale",
+ },
+ "remember_to": {
+ "type": "string",
+ "description": "Future intention — 'remember to X when Y' (prospective memory)",
+ },
+ "trigger_keywords": {
+ "type": "array",
+ "items": {"type": "string"},
+ "description": "Keywords that trigger the intention",
+ },
+ "repo": {
+ "type": "string",
+ "description": "Repository/project path for scoping",
+ },
+ "user_id": {
+ "type": "string",
+ "description": "User identifier (default: 'default')",
+ },
+ "agent_id": {
+ "type": "string",
+ "description": "Agent identifier (default: 'agent')",
+ },
+ },
+ "required": ["summary"],
+ },
+ ),
+]
+
+
+# ---------------------------------------------------------------------------
+# Handlers
+# ---------------------------------------------------------------------------
+
+def _handle_remember(args: Dict[str, Any]) -> Dict[str, Any]:
+ """Store a memory. 0 LLM calls on hot path, 1 embed. Enrichment deferred."""
+ memory = _get_memory()
+ content = args.get("content", "")
+ if not content:
+ return {"error": "content is required"}
+
+ user_id = args.get("user_id", "default")
+
+ # infer=False: agent explicitly stated the fact, no need to re-extract.
+ # defer_enrichment (set in _get_memory): echo/keywords added at checkpoint.
+ result = memory.add(
+ messages=content,
+ user_id=user_id,
+ agent_id="agent",
+ source_app="dhee-mcp",
+ infer=False,
+ )
+
+ # Buddhi: detect intentions in the content
+ buddhi = _get_buddhi()
+ intention = buddhi.on_memory_stored(content=content, user_id=user_id)
+
+ response: Dict[str, Any] = {"stored": True}
+ if isinstance(result, dict):
+ results = result.get("results", [])
+ if results:
+ response["id"] = results[0].get("id")
+ if intention:
+ response["detected_intention"] = intention.to_dict()
+ return response
+
+
+def _handle_recall(args: Dict[str, Any]) -> Dict[str, Any]:
+ """Search memory. 0 LLM calls, 1 embed."""
+ memory = _get_memory()
+ query = args.get("query", "")
+ if not query:
+ return {"error": "query is required"}
+
+ user_id = args.get("user_id", "default")
+ limit = min(max(1, int(args.get("limit", 5))), 20)
+
+ result = memory.search(
+ query=query,
+ user_id=user_id,
+ limit=limit,
+ )
+ results = result.get("results", [])
+
+ # Compact output — only what the agent needs
+ memories = [
+ {
+ "id": r.get("id"),
+ "memory": r.get("memory", ""),
+ "score": round(r.get("composite_score", r.get("score", 0)), 3),
+ }
+ for r in results
+ ]
+
+ response: Dict[str, Any] = {"memories": memories, "count": len(memories)}
+
+ # Attach Buddhi proactive signals if any
+ buddhi_signals = result.get("buddhi")
+ if buddhi_signals:
+ response["proactive"] = buddhi_signals
+
+ return response
+
+
+def _handle_context(args: Dict[str, Any]) -> Dict[str, Any]:
+ """HyperAgent bootstrap. Buddhi-powered."""
+ memory = _get_memory()
+ buddhi = _get_buddhi()
+ user_id = args.get("user_id", "default")
+ task_description = args.get("task_description")
+
+ hyper_ctx = buddhi.get_hyper_context(
+ user_id=user_id,
+ task_description=task_description,
+ memory=memory,
+ )
+ return hyper_ctx.to_dict()
+
+
+def _handle_checkpoint(args: Dict[str, Any]) -> Dict[str, Any]:
+ """Session lifecycle — save digest + enrich + outcome + reflect + intention."""
+ summary = args.get("summary", "")
+ if not summary:
+ return {"error": "summary is required"}
+
+ user_id = args.get("user_id", "default")
+ agent_id = args.get("agent_id", "agent")
+ result: Dict[str, Any] = {}
+
+ # 1. Save session digest (for handoff)
+ try:
+ from dhee.core.kernel import save_session_digest
+ digest = save_session_digest(
+ task_summary=summary,
+ agent_id=agent_id,
+ repo=args.get("repo"),
+ status=args.get("status", "paused"),
+ decisions_made=args.get("decisions"),
+ files_touched=args.get("files_touched"),
+ todos_remaining=args.get("todos"),
+ )
+ result["session_saved"] = True
+ if isinstance(digest, dict):
+ result["session_id"] = digest.get("session_id")
+ except Exception as e:
+ logger.debug("Session save skipped: %s", e)
+ result["session_saved"] = False
+
+ # 2. Batch-enrich deferred memories (1 LLM call per ~10 memories)
+ # This is where retrieval quality gets added — echo paraphrases, keywords,
+ # categories — all in one batched LLM call. Not on the hot path.
+ memory = _get_memory()
+ if hasattr(memory, "enrich_pending"):
+ try:
+ enrich_result = memory.enrich_pending(
+ user_id=user_id, batch_size=10, max_batches=5,
+ )
+ enriched = enrich_result.get("enriched_count", 0)
+ if enriched > 0:
+ result["memories_enriched"] = enriched
+ except Exception as e:
+ logger.debug("Batch enrichment skipped: %s", e)
+
+ buddhi = _get_buddhi()
+
+ # 3. Record outcome (for performance tracking)
+ task_type = args.get("task_type")
+ outcome_score = args.get("outcome_score")
+ if task_type and outcome_score is not None:
+ score = max(0.0, min(1.0, float(outcome_score)))
+ insight = buddhi.record_outcome(
+ user_id=user_id, task_type=task_type, score=score,
+ )
+ result["outcome_recorded"] = True
+ if insight:
+ result["auto_insight"] = insight.to_dict()
+
+ # 4. Reflect (for insight synthesis)
+ what_worked = args.get("what_worked")
+ what_failed = args.get("what_failed")
+ key_decision = args.get("key_decision")
+ if any([what_worked, what_failed, key_decision]):
+ reflections = buddhi.reflect(
+ user_id=user_id,
+ task_type=task_type or "general",
+ what_worked=what_worked,
+ what_failed=what_failed,
+ key_decision=key_decision,
+ )
+ result["insights_created"] = len(reflections)
+
+ # 5. Store intention (for prospective memory)
+ remember_to = args.get("remember_to")
+ if remember_to:
+ intention = buddhi.store_intention(
+ user_id=user_id,
+ description=remember_to,
+ trigger_keywords=args.get("trigger_keywords"),
+ )
+ result["intention_stored"] = intention.to_dict()
+
+ return result
+
+
+HANDLERS = {
+ "remember": _handle_remember,
+ "recall": _handle_recall,
+ "context": _handle_context,
+ "checkpoint": _handle_checkpoint,
+}
+
+
+# ---------------------------------------------------------------------------
+# MCP Protocol
+# ---------------------------------------------------------------------------
+
+@server.list_tools()
+async def list_tools() -> List[Tool]:
+ return list(TOOLS)
+
+
+@server.call_tool()
+async def call_tool(name: str, arguments: Dict[str, Any]) -> List[TextContent]:
+ try:
+ handler = HANDLERS.get(name)
+ if not handler:
+ result = {"error": f"Unknown tool: {name}"}
+ else:
+ result = handler(arguments)
+ return [TextContent(type="text", text=json.dumps(result, indent=2, default=str))]
+ except Exception as e:
+ logger.exception("Tool '%s' failed", name)
+ return [TextContent(
+ type="text",
+ text=json.dumps({"error": f"{type(e).__name__}: {e}"}, indent=2),
+ )]
+
+
+async def main():
+ async with stdio_server() as (read_stream, write_stream):
+ await server.run(read_stream, write_stream, server.create_initialization_options())
+
+
+def run():
+ """Entry point: dhee-mcp"""
+ import asyncio
+ asyncio.run(main())
+
+
+if __name__ == "__main__":
+ run()
diff --git a/dhee/memory/__init__.py b/dhee/memory/__init__.py
new file mode 100644
index 0000000..602db46
--- /dev/null
+++ b/dhee/memory/__init__.py
@@ -0,0 +1,14 @@
+from dhee.memory.core import CoreMemory
+from dhee.memory.smart import SmartMemory
+from dhee.memory.main import FullMemory, Memory
+from dhee.memory.tasks import TaskManager
+from dhee.memory.projects import ProjectManager
+
+__all__ = [
+ "CoreMemory",
+ "SmartMemory",
+ "FullMemory",
+ "Memory",
+ "TaskManager",
+ "ProjectManager",
+]
diff --git a/engram/memory/base.py b/dhee/memory/base.py
similarity index 100%
rename from engram/memory/base.py
rename to dhee/memory/base.py
diff --git a/engram/memory/core.py b/dhee/memory/core.py
similarity index 96%
rename from engram/memory/core.py
rename to dhee/memory/core.py
index 7661d1c..51fb7f2 100644
--- a/engram/memory/core.py
+++ b/dhee/memory/core.py
@@ -4,7 +4,7 @@
and in-memory vector store by default. Supports content-hash deduplication
and query embedding cache.
-Dependencies: SQLiteManager, Embedder, VectorStore, engram_accel (for cosine sim).
+Dependencies: SQLiteManager, Embedder, VectorStore, dhee_accel (for cosine sim).
NO LLM, NO echo, NO categories, NO scenes, NO profiles.
"""
@@ -18,18 +18,18 @@
from datetime import datetime, timezone
from typing import Any, Dict, List, Optional
-from engram.configs.base import MemoryConfig
-from engram.core.decay import calculate_decayed_strength, should_forget, should_promote
-from engram.core.retrieval import composite_score
-from engram.core.traces import (
+from dhee.configs.base import MemoryConfig
+from dhee.core.decay import calculate_decayed_strength, should_forget, should_promote
+from dhee.core.retrieval import composite_score
+from dhee.core.traces import (
boost_fast_trace,
compute_effective_strength,
initialize_traces,
)
-from engram.db.sqlite import SQLiteManager
-from engram.skills.hashing import content_hash as _content_hash
-from engram.utils.factory import EmbedderFactory, VectorStoreFactory
-from engram.utils.math import cosine_similarity_batch
+from dhee.db.sqlite import SQLiteManager
+from dhee.skills.hashing import content_hash as _content_hash
+from dhee.utils.factory import EmbedderFactory, VectorStoreFactory
+from dhee.utils.math import cosine_similarity_batch
logger = logging.getLogger(__name__)
diff --git a/engram/memory/main.py b/dhee/memory/main.py
similarity index 62%
rename from engram/memory/main.py
rename to dhee/memory/main.py
index eadd0d9..144aa7e 100644
--- a/engram/memory/main.py
+++ b/dhee/memory/main.py
@@ -1,39 +1,61 @@
from __future__ import annotations
+import hashlib
import json
import logging
+import math
import os
import re
+import time
import uuid
from dataclasses import dataclass
from datetime import datetime, date, timezone
from enum import Enum
-from typing import Any, Dict, List, Optional, Union
-
-from engram.configs.base import MemoryConfig
-from engram.core.decay import calculate_decayed_strength, should_forget, should_promote
-from engram.core.conflict import resolve_conflict
-from engram.core.distillation import ReplayDistiller
-from engram.core.echo import EchoProcessor, EchoDepth, EchoResult
-from engram.core.forgetting import HomeostaticNormalizer, InterferencePruner, RedundancyCollapser
-from engram.core.fusion import fuse_memories
-from engram.core.intent import QueryIntent, classify_intent
-from engram.core.retrieval import composite_score, tokenize, HybridSearcher
-from engram.core.traces import (
+from typing import Any, Dict, List, Optional, Tuple, Union
+
+from dhee.configs.base import MemoryConfig
+from dhee.core.decay import calculate_decayed_strength, should_forget, should_promote
+from dhee.core.conflict import resolve_conflict
+from dhee.core.distillation import ReplayDistiller
+from dhee.core.echo import EchoProcessor, EchoDepth, EchoResult
+from dhee.core.forgetting import HomeostaticNormalizer, InterferencePruner, RedundancyCollapser
+from dhee.core.fusion import fuse_memories
+from dhee.core.intent import QueryIntent, classify_intent
+from dhee.core.retrieval import composite_score, tokenize, HybridSearcher
+from dhee.core.traces import (
boost_fast_trace,
cascade_traces,
compute_effective_strength,
decay_traces,
initialize_traces,
)
-from engram.core.category import CategoryProcessor, CategoryMatch
-from engram.core.graph import KnowledgeGraph
-from engram.core.scene import SceneProcessor
-from engram.core.profile import ProfileProcessor
-from engram.db.sqlite import SQLiteManager
-from engram.exceptions import FadeMemValidationError
-from engram.memory.base import MemoryBase
-from engram.memory.utils import (
+from dhee.core.category import CategoryProcessor, CategoryMatch
+from dhee.core.graph import KnowledgeGraph
+from dhee.core.scene import SceneProcessor
+from dhee.core.profile import ProfileProcessor
+from dhee.core.answer_orchestration import (
+ AnswerIntent,
+ build_map_candidates,
+ build_query_plan,
+ deterministic_inconsistency_check,
+ extract_atomic_facts,
+ is_low_confidence_answer,
+ reduce_atomic_facts,
+ render_fact_context,
+ should_override_with_reducer,
+)
+from dhee.core.episodic_index import (
+ extract_entity_aggregates,
+ extract_episodic_events,
+ intent_event_types,
+ normalize_actor_id,
+ score_event_match,
+ tokenize_query_terms,
+)
+from dhee.db.sqlite import SQLiteManager
+from dhee.exceptions import FadeMemValidationError
+from dhee.memory.base import MemoryBase
+from dhee.memory.utils import (
build_filters_and_metadata,
matches_filters,
normalize_categories,
@@ -41,11 +63,11 @@
parse_messages,
strip_code_fences,
)
-from engram.memory.parallel import ParallelExecutor
-from engram.memory.smart import SmartMemory
-from engram.observability import metrics
-from engram.utils.factory import EmbedderFactory, LLMFactory, VectorStoreFactory
-from engram.utils.prompts import AGENT_MEMORY_EXTRACTION_PROMPT, MEMORY_EXTRACTION_PROMPT
+from dhee.memory.parallel import ParallelExecutor
+from dhee.memory.smart import SmartMemory
+from dhee.observability import metrics
+from dhee.utils.factory import EmbedderFactory, LLMFactory, VectorStoreFactory
+from dhee.utils.prompts import AGENT_MEMORY_EXTRACTION_PROMPT, MEMORY_EXTRACTION_PROMPT
logger = logging.getLogger(__name__)
@@ -128,6 +150,18 @@ def detect_explicit_intent(text: str) -> ExplicitIntent:
r"\b(my goal is|i want to|i plan to|i'm working on|i am working on|long[- ]term)\b",
re.IGNORECASE,
)
+_TEMPORAL_RECENT_QUERY_RE = re.compile(
+ r"\b(latest|most recent|currently|current|as of|recent|newest|last)\b",
+ re.IGNORECASE,
+)
+_TEMPORAL_RANGE_QUERY_RE = re.compile(
+ r"\b(past|in the past|within the last|last month|last week|last year)\b",
+ re.IGNORECASE,
+)
+_TEMPORAL_TRANSACTIONAL_QUERY_RE = re.compile(
+ r"\b(spent|spend|cost|price|payment|paid|bought|purchase|transaction|grocery|amount|money|dollars?|usd)\b",
+ re.IGNORECASE,
+)
def detect_sensitive_categories(text: str) -> List[str]:
@@ -260,10 +294,20 @@ def __init__(self, config: Optional[MemoryConfig] = None, preset: Optional[str]
self._trajectory_store: Optional[Any] = None
self._skill_miner: Optional[Any] = None
self._active_recorders: Dict[str, Any] = {}
+ self._guardrail_auto_disabled = False
+ self._reducer_cache: Dict[str, Dict[str, Any]] = {}
# Parallel executor (lazy: created only when config enables it)
self._executor: Optional[ParallelExecutor] = None
if self.config.parallel.enable_parallel:
self._executor = ParallelExecutor(max_workers=self.config.parallel.max_workers)
+ # Dhee: Universal Engram extraction + context-first resolver + cognition
+ self._engram_extractor: Optional[Any] = None
+ self._context_resolver: Optional[Any] = None
+ self._cognition_engine: Optional[Any] = None
+ # Dhee: Self-evolution layer (samskara + viveka + alaya + nididhyasana)
+ self._evolution_layer: Optional[Any] = None
+ # Dhee: Buddhi — proactive cognition (HyperAgent layer)
+ self._buddhi_layer: Optional[Any] = None
@property
def scene_processor(self) -> Optional[SceneProcessor]:
@@ -302,11 +346,80 @@ def profile_processor(self) -> Optional[ProfileProcessor]:
)
return self._profile_processor
+ @property
+ def engram_extractor(self):
+ """Lazy-initialized EngramExtractor for structured memory extraction."""
+ if self._engram_extractor is None and self.config.engram_extraction.enable_extraction:
+ from dhee.core.engram_extractor import EngramExtractor
+ llm = None
+ if self.config.engram_extraction.use_llm_extraction:
+ # Create a SEPARATE LLM instance for extraction with shorter timeout.
+ # The main LLM (120s timeout, 3 retries) blocks too long when rate-limited.
+ # Extraction must fail fast and fall back to rule-based extraction.
+ from dhee.utils.factory import LLMFactory
+ extraction_llm_config = dict(self.config.llm.config)
+ extraction_llm_config["timeout"] = 30 # 30s vs 120s default
+ extraction_llm_config["app_retries"] = 1 # 1 retry vs 3 default
+ extraction_llm_config["max_retries"] = 0 # no OpenAI client retries
+ extraction_llm_config["max_tokens"] = 2048 # extraction output is smaller
+ try:
+ llm = LLMFactory.create(self.config.llm.provider, extraction_llm_config)
+ logger.info("EngramExtractor: created dedicated LLM (timeout=30s, retries=1)")
+ except Exception as e:
+ logger.warning("EngramExtractor: failed to create dedicated LLM, using main: %s", e)
+ llm = self.llm
+ self._engram_extractor = EngramExtractor(llm=llm)
+ return self._engram_extractor
+
+ @property
+ def context_resolver(self):
+ """Lazy-initialized ContextResolver for deterministic fact resolution."""
+ if self._context_resolver is None:
+ from dhee.core.resolvers import ContextResolver
+ self._context_resolver = ContextResolver(db=self.db)
+ return self._context_resolver
+
+ @property
+ def cognition_engine(self):
+ """Lazy-initialized CognitionEngine for memory-grounded reasoning."""
+ if self._cognition_engine is None and self.config.cognition.enable_cognition:
+ from dhee.core.cognition import CognitionEngine
+ self._cognition_engine = CognitionEngine(
+ memory=self,
+ external_llm=self.llm,
+ max_depth=self.config.cognition.max_depth,
+ max_sub_questions=self.config.cognition.max_sub_questions,
+ store_solutions=self.config.cognition.store_solutions,
+ )
+ return self._cognition_engine
+
+ @property
+ def evolution_layer(self):
+ """Lazy-initialized self-evolution layer (samskara + viveka + alaya)."""
+ if self._evolution_layer is None:
+ try:
+ from dhee.core.evolution import EvolutionLayer
+ self._evolution_layer = EvolutionLayer()
+ except Exception as e:
+ logger.debug("Evolution layer init skipped: %s", e)
+ return self._evolution_layer
+
+ @property
+ def buddhi_layer(self):
+ """Lazy-initialized Buddhi — proactive cognition layer (HyperAgent)."""
+ if self._buddhi_layer is None:
+ try:
+ from dhee.core.buddhi import Buddhi
+ self._buddhi_layer = Buddhi()
+ except Exception as e:
+ logger.debug("Buddhi layer init skipped: %s", e)
+ return self._buddhi_layer
+
@property
def trajectory_store(self):
"""Lazy-initialized TrajectoryStore for persisting agent trajectories."""
if self._trajectory_store is None:
- from engram.skills.trajectory import TrajectoryStore
+ from dhee.skills.trajectory import TrajectoryStore
self._trajectory_store = TrajectoryStore(
db=self.db,
embedder=self.embedder,
@@ -319,7 +432,7 @@ def skill_miner(self):
"""Lazy-initialized SkillMiner for extracting skills from trajectories."""
skill_cfg = getattr(self.config, "skill", None)
if self._skill_miner is None and skill_cfg and skill_cfg.enable_mining:
- from engram.skills.miner import SkillMiner
+ from dhee.skills.miner import SkillMiner
self._skill_miner = SkillMiner(
trajectory_store=self.trajectory_store,
skill_store=self.skill_store,
@@ -334,7 +447,7 @@ def reranker(self):
"""Lazy-initialized neural reranker (only if enabled in config)."""
rerank_cfg = getattr(self.config, "rerank", None)
if self._reranker is None and rerank_cfg and rerank_cfg.enable_rerank:
- from engram.retrieval.reranker import create_reranker
+ from dhee.retrieval.reranker import create_reranker
self._reranker = create_reranker({
"provider": rerank_cfg.provider,
"model": rerank_cfg.model,
@@ -354,7 +467,7 @@ def start_trajectory(
Returns the recorder ID to be used with record_trajectory_step()
and complete_trajectory().
"""
- from engram.skills.trajectory import TrajectoryRecorder
+ from dhee.skills.trajectory import TrajectoryRecorder
recorder = TrajectoryRecorder(
task_description=task_description,
user_id=user_id,
@@ -485,6 +598,12 @@ def get_skill_stats(self) -> Dict[str, Any]:
def close(self) -> None:
"""Release all resources held by the Memory instance."""
+ # Flush self-evolution state before shutdown
+ if self._evolution_layer is not None:
+ try:
+ self._evolution_layer.flush()
+ except Exception:
+ pass
# Shutdown parallel executor if it was created
if self._executor is not None:
self._executor.shutdown()
@@ -503,6 +622,1122 @@ def __repr__(self) -> str:
# from_config inherited from SmartMemory
+ def _record_cost_counter(
+ self,
+ *,
+ phase: str,
+ user_id: Optional[str],
+ llm_calls: float = 0.0,
+ input_tokens: float = 0.0,
+ output_tokens: float = 0.0,
+ embed_calls: float = 0.0,
+ ) -> None:
+ cost_cfg = getattr(self.config, "cost_guardrail", None)
+ if not cost_cfg or not cost_cfg.enable_cost_counters:
+ return
+ try:
+ self.db.record_cost_counter(
+ phase=phase,
+ user_id=user_id,
+ llm_calls=llm_calls,
+ input_tokens=input_tokens,
+ output_tokens=output_tokens,
+ embed_calls=embed_calls,
+ )
+ if str(phase) == "write":
+ self._enforce_write_cost_guardrail(user_id=user_id)
+ except Exception as e:
+ logger.debug("Cost counter record failed: %s", e)
+
+ @staticmethod
+ def _estimate_token_count(value: Any) -> float:
+ """Lightweight token estimate for guardrail telemetry."""
+ if value is None:
+ return 0.0
+ if not isinstance(value, str):
+ try:
+ value = json.dumps(value, default=str)
+ except Exception:
+ value = str(value)
+ text = str(value or "").strip()
+ if not text:
+ return 0.0
+ # Rough English token estimate; good enough for trend guardrails.
+ return float(max(1, math.ceil(len(text) / 4.0)))
+
+ @staticmethod
+ def _estimate_output_tokens(input_tokens: float) -> float:
+ base = max(0.0, float(input_tokens or 0.0))
+ return float(max(8, math.ceil(base * 0.3)))
+
+ def _intent_coverage_threshold(self, intent_value: str, fallback: float) -> float:
+ orch_cfg = getattr(self.config, "orchestration", None)
+ thresholds = getattr(orch_cfg, "intent_coverage_thresholds", {}) or {}
+ key = str(intent_value or "freeform").strip().lower()
+ value = thresholds.get(key, fallback)
+ try:
+ return max(0.0, min(1.0, float(value)))
+ except (TypeError, ValueError):
+ return max(0.0, min(1.0, float(fallback)))
+
+ @staticmethod
+ def _stable_hash_text(text: str) -> str:
+ return hashlib.sha256(str(text or "").encode("utf-8")).hexdigest()
+
+ def _build_reducer_cache_key(
+ self,
+ *,
+ user_id: str,
+ intent_value: str,
+ query: str,
+ results: List[Dict[str, Any]],
+ ) -> str:
+ evidence_fingerprint_parts: List[str] = []
+ for row in results[:30]:
+ mem_id = str(row.get("id") or "").strip()
+ score = float(row.get("composite_score", row.get("score", 0.0)) or 0.0)
+ evidence_fingerprint_parts.append(f"{mem_id}:{score:.4f}")
+ evidence_fingerprint = "|".join(evidence_fingerprint_parts)
+ base = "|".join(
+ [
+ str(user_id or ""),
+ str(intent_value or ""),
+ self._stable_hash_text(query),
+ self._stable_hash_text(evidence_fingerprint),
+ ]
+ )
+ return self._stable_hash_text(base)
+
+ def _get_reducer_cache(self, cache_key: str) -> Optional[Dict[str, Any]]:
+ orch_cfg = getattr(self.config, "orchestration", None)
+ ttl_seconds = int(getattr(orch_cfg, "reducer_cache_ttl_seconds", 900) or 900)
+ record = self._reducer_cache.get(cache_key)
+ if not record:
+ return None
+ ts = float(record.get("ts", 0.0) or 0.0)
+ if ts <= 0.0:
+ return None
+ if (time.time() - ts) > max(1, ttl_seconds):
+ self._reducer_cache.pop(cache_key, None)
+ return None
+ return record
+
+ def _put_reducer_cache(
+ self,
+ *,
+ cache_key: str,
+ reduced_answer: Optional[str],
+ facts: List[Dict[str, Any]],
+ ) -> None:
+ orch_cfg = getattr(self.config, "orchestration", None)
+ max_entries = int(getattr(orch_cfg, "reducer_cache_max_entries", 2048) or 2048)
+ self._reducer_cache[cache_key] = {
+ "ts": time.time(),
+ "reduced_answer": reduced_answer,
+ "facts": list(facts or []),
+ }
+ # Keep insertion-order bounded cache.
+ while len(self._reducer_cache) > max(1, max_entries):
+ oldest_key = next(iter(self._reducer_cache))
+ self._reducer_cache.pop(oldest_key, None)
+
+ def _enforce_write_cost_guardrail(self, *, user_id: Optional[str]) -> None:
+ cost_cfg = getattr(self.config, "cost_guardrail", None)
+ orch_cfg = getattr(self.config, "orchestration", None)
+ if not cost_cfg or not cost_cfg.strict_write_path_cap or not orch_cfg:
+ return
+
+ # Baseline values default to 0.0; treat that as "not configured" to avoid
+ # accidental auto-disable on fresh installs.
+ base_calls = float(getattr(cost_cfg, "baseline_write_llm_calls_per_memory", 0.0) or 0.0)
+ base_tokens = float(getattr(cost_cfg, "baseline_write_tokens_per_memory", 0.0) or 0.0)
+ if base_calls <= 0.0 and base_tokens <= 0.0:
+ return
+
+ summary = self.db.aggregate_cost_counters(phase="write", user_id=user_id)
+ samples = max(1, int(summary.get("samples", 0) or 0))
+ avg_calls = float(summary.get("llm_calls", 0.0) or 0.0) / float(samples)
+ avg_tokens = (
+ float(summary.get("input_tokens", 0.0) or 0.0)
+ + float(summary.get("output_tokens", 0.0) or 0.0)
+ ) / float(samples)
+
+ violates_calls = base_calls > 0.0 and avg_calls > base_calls
+ violates_tokens = base_tokens > 0.0 and avg_tokens > base_tokens
+ if not (violates_calls or violates_tokens):
+ return
+
+ if getattr(cost_cfg, "auto_disable_on_violation", False):
+ if not self._guardrail_auto_disabled:
+ orch_cfg.enable_episodic_index = False
+ orch_cfg.enable_hierarchical_retrieval = False
+ orch_cfg.enable_orchestrated_search = False
+ self._guardrail_auto_disabled = True
+ logger.warning(
+ "Write-cost guardrail violated (avg_calls=%.4f avg_tokens=%.2f). "
+ "Auto-disabled orchestration features.",
+ avg_calls,
+ avg_tokens,
+ )
+ else:
+ logger.warning(
+ "Write-cost guardrail violated (avg_calls=%.4f avg_tokens=%.2f), "
+ "strict mode active and auto-disable disabled.",
+ avg_calls,
+ avg_tokens,
+ )
+
+ def _infer_actor_id_from_query(self, *, query: str, user_id: str) -> Optional[str]:
+ """Infer actor from query using profile names/aliases for speaker-anchored retrieval."""
+ text = str(query or "").strip().lower()
+ if not text or not user_id:
+ return None
+ try:
+ profiles = self.db.get_all_profiles(user_id=user_id)
+ except Exception:
+ return None
+ for profile in profiles:
+ name = str(profile.get("name") or "").strip()
+ aliases = list(profile.get("aliases") or [])
+ candidates = [name] + [str(a).strip() for a in aliases if str(a).strip()]
+ for candidate in candidates:
+ lowered = candidate.lower()
+ if not lowered:
+ continue
+ if lowered in {"self", "me", "myself"} and re.search(r"\b(i|my|me)\b", text):
+ return normalize_actor_id(candidate)
+ if re.search(rf"\b{re.escape(lowered)}\b", text):
+ return normalize_actor_id(candidate)
+ return None
+
+ def _build_hierarchical_anchors(
+ self,
+ *,
+ query: str,
+ user_id: str,
+ limit: int = 3,
+ ) -> List[str]:
+ anchors: List[str] = []
+ if not user_id:
+ return anchors
+ # Tier 2a: scene summaries (episodic compression).
+ if self.scene_processor:
+ try:
+ for scene in self.scene_processor.search_scenes(query=query, user_id=user_id, limit=max(1, int(limit))):
+ scene_id = str(scene.get("id") or "")[:8]
+ summary = str(scene.get("summary") or scene.get("title") or "").strip()
+ if summary:
+ anchors.append(f"scene[{scene_id}] {summary[:220]}")
+ except Exception as e:
+ logger.debug("Scene anchor retrieval failed: %s", e)
+ # Tier 2b: profile anchors (entity continuity).
+ if self.profile_processor:
+ try:
+ for profile in self.profile_processor.search_profiles(query=query, user_id=user_id, limit=max(1, int(limit))):
+ name = str(profile.get("name") or "unknown").strip()
+ narrative = str(profile.get("narrative") or "").strip()
+ if narrative:
+ anchors.append(f"profile[{name}] {narrative[:220]}")
+ else:
+ facts = profile.get("facts") or []
+ if facts:
+ anchors.append(f"profile[{name}] {str(facts[0])[:220]}")
+ except Exception as e:
+ logger.debug("Profile anchor retrieval failed: %s", e)
+ return anchors[: max(0, int(limit) * 2)]
+
+ def _index_episodic_events_for_memory(
+ self,
+ *,
+ memory_id: str,
+ user_id: Optional[str],
+ content: str,
+ metadata: Optional[Dict[str, Any]],
+ ) -> int:
+ orch_cfg = getattr(self.config, "orchestration", None)
+ if not orch_cfg or not orch_cfg.enable_episodic_index:
+ return 0
+ if not user_id:
+ return 0
+ if not content:
+ return 0
+ try:
+ events = extract_episodic_events(
+ memory_id=memory_id,
+ user_id=user_id,
+ content=content,
+ metadata=metadata or {},
+ )
+ # Re-index memory deterministically on updates/duplicate writes.
+ self.db.delete_episodic_events_for_memory(memory_id)
+ count = self.db.add_episodic_events(events)
+
+ # Accumulate entity aggregates from extracted events.
+ if events and hasattr(self.db, "upsert_entity_aggregate"):
+ session_id = (metadata or {}).get("session_id", "")
+ aggregates = extract_entity_aggregates(events, session_id, memory_id)
+ for agg in aggregates:
+ try:
+ if agg["agg_type"] == "item_set":
+ self.db.upsert_entity_set_member(
+ user_id=user_id,
+ entity_key=agg["entity_key"],
+ item_value=agg.get("item_value", ""),
+ session_id=agg.get("session_id"),
+ memory_id=agg.get("memory_id"),
+ )
+ else:
+ self.db.upsert_entity_aggregate(
+ user_id=user_id,
+ entity_key=agg["entity_key"],
+ agg_type=agg["agg_type"],
+ value_delta=agg.get("value_delta", 0),
+ value_unit=agg.get("value_unit"),
+ session_id=agg.get("session_id"),
+ memory_id=agg.get("memory_id"),
+ )
+ except Exception as agg_exc:
+ logger.debug("Entity aggregate upsert failed: %s", agg_exc)
+
+ return count
+ except Exception as e:
+ logger.debug("Episodic indexing failed for %s: %s", memory_id, e)
+ return 0
+
+ def search_episodes(
+ self,
+ *,
+ query: str,
+ user_id: str,
+ intent: Optional[AnswerIntent] = None,
+ actor_id: Optional[str] = None,
+ time_anchor: Optional[str] = None,
+ entity_hints: Optional[List[str]] = None,
+ min_coverage: Optional[float] = None,
+ limit: int = 80,
+ ) -> Dict[str, Any]:
+ orch_cfg = getattr(self.config, "orchestration", None)
+ if not orch_cfg or not orch_cfg.enable_episodic_index:
+ return {"results": [], "coverage": {"event_hit_count": 0, "unique_canonical_keys": 0, "sufficient": False}}
+
+ intent_value = (intent.value if isinstance(intent, AnswerIntent) else str(intent or "")).strip().lower()
+ event_types = intent_event_types(intent_value)
+ if event_types is not None:
+ event_types = list(event_types)
+
+ normalized_hints = [str(h).strip().lower() for h in (entity_hints or []) if str(h).strip()]
+ anchor_dt = self._parse_bitemporal_datetime(time_anchor) if time_anchor else None
+
+ # Pull a broader window and score in Python to stay deterministic across intents.
+ events = self.db.get_episodic_events(
+ user_id=user_id,
+ actor_id=actor_id,
+ event_types=event_types,
+ time_anchor=time_anchor,
+ entity_hints=normalized_hints,
+ limit=max(50, int(limit) * 6),
+ )
+ query_terms = tokenize_query_terms(query)
+ if normalized_hints:
+ query_terms = list(dict.fromkeys(query_terms + normalized_hints))
+
+ scored_events: List[Dict[str, Any]] = []
+ for event in events:
+ score = score_event_match(event, query_terms)
+ if normalized_hints:
+ event_entity = str(event.get("entity_key") or event.get("actor_id") or event.get("actor_role") or "").lower()
+ if any(h in event_entity for h in normalized_hints):
+ score += 1.0
+ # For typed intents (money/duration/latest/etc.), keep events even when
+ # lexical overlap is sparse; intent filtering already constrained types.
+ if query_terms and score <= 0 and event_types is None:
+ continue
+ if score <= 0 and event_types is not None:
+ score = 0.25
+ # Prefer recency for latest-style questions.
+ if intent_value == "latest":
+ dt = self._parse_bitemporal_datetime(event.get("event_time"))
+ if dt is not None:
+ age_days = max(0.0, (datetime.now(timezone.utc) - dt).total_seconds() / 86400.0)
+ score += max(0.0, 2.0 - (age_days / 30.0))
+ # Anchor-aware boost: favor evidence near the caller-provided time anchor.
+ if anchor_dt is not None:
+ ev_dt = self._parse_bitemporal_datetime(
+ event.get("normalized_time_start") or event.get("event_time")
+ )
+ if ev_dt is not None:
+ dist_days = abs((anchor_dt - ev_dt).total_seconds()) / 86400.0
+ score += max(0.0, 0.75 - (dist_days / 45.0))
+ event_copy = dict(event)
+ event_copy["match_score"] = float(score)
+ scored_events.append(event_copy)
+
+ scored_events.sort(
+ key=lambda row: (
+ float(row.get("match_score", 0.0)),
+ str(row.get("event_time") or ""),
+ int(row.get("turn_id", 0) or 0),
+ ),
+ reverse=True,
+ )
+ top_events = scored_events[: max(1, int(limit))]
+ unique_keys = {str(row.get("canonical_key") or "") for row in top_events if row.get("canonical_key")}
+ unique_entities = {
+ str(row.get("entity_key") or row.get("actor_id") or "").strip().lower()
+ for row in top_events
+ if str(row.get("entity_key") or row.get("actor_id") or "").strip()
+ }
+ numeric_fact_count = sum(1 for row in top_events if row.get("value_num") is not None)
+ dated_fact_count = sum(
+ 1
+ for row in top_events
+ if str(row.get("normalized_time_start") or row.get("event_time") or "").strip()
+ )
+
+ context_cap = max(1, int(getattr(orch_cfg, "context_cap", 20)))
+ coverage_ratio = min(1.0, len(unique_keys) / float(context_cap)) if unique_keys else 0.0
+ intent_coverage = coverage_ratio
+ if intent_value in {"count", "set_members"}:
+ intent_coverage = min(1.0, len(unique_entities) / float(max(1, min(context_cap, 8))))
+ elif intent_value in {"money_sum", "duration"}:
+ intent_coverage = min(1.0, numeric_fact_count / float(max(1, min(context_cap, 8))))
+ elif intent_value == "latest":
+ intent_coverage = min(1.0, dated_fact_count / float(max(1, min(context_cap, 6))))
+
+ default_threshold = float(getattr(orch_cfg, "map_reduce_coverage_threshold", 0.6))
+ threshold = self._intent_coverage_threshold(intent_value, default_threshold)
+ if min_coverage is not None:
+ try:
+ threshold = max(0.0, min(1.0, float(min_coverage)))
+ except (TypeError, ValueError):
+ threshold = self._intent_coverage_threshold(intent_value, default_threshold)
+
+ coverage = {
+ "event_hit_count": len(top_events),
+ "unique_canonical_keys": len(unique_keys),
+ "unique_entities": len(unique_entities),
+ "numeric_fact_count": int(numeric_fact_count),
+ "dated_fact_count": int(dated_fact_count),
+ "coverage_ratio": round(coverage_ratio, 4),
+ "intent_coverage": round(float(intent_coverage), 4),
+ "threshold": round(float(threshold), 4),
+ "sufficient": bool(intent_coverage >= threshold and len(top_events) > 0),
+ }
+ return {"results": top_events, "coverage": coverage}
+
+ def lookup_entity_aggregates(
+ self,
+ query: str,
+ user_id: str,
+ intent: Optional[str] = None,
+ ) -> Optional[str]:
+ """Look up pre-computed entity aggregates that match a query.
+
+ Returns a formatted answer string (e.g. "8 days", "$140", "3") or None.
+ """
+ if not hasattr(self.db, "get_entity_aggregates"):
+ return None
+
+ # Extract entity keywords from query
+ keywords = tokenize_query_terms(query)
+ if not keywords:
+ return None
+
+ # Determine which agg_type to look for based on intent / query phrasing
+ q_lower = query.lower()
+ agg_types: List[str] = []
+ if intent:
+ intent_lower = intent.lower()
+ if intent_lower in ("duration", "duration_sum"):
+ agg_types = ["duration_sum"]
+ elif intent_lower in ("money", "money_sum"):
+ agg_types = ["money_sum"]
+ elif intent_lower in ("count", "set_members"):
+ agg_types = ["count", "item_set"]
+
+ if not agg_types:
+ # Infer from question phrasing
+ if any(w in q_lower for w in ("how long", "how many days", "how many hours",
+ "how many weeks", "how many months", "duration")):
+ agg_types = ["duration_sum"]
+ elif any(w in q_lower for w in ("how much", "cost", "spent", "price", "money")):
+ agg_types = ["money_sum"]
+ else:
+ agg_types = ["count", "item_set", "duration_sum"]
+
+ best_match = None
+ best_score = 0.0
+
+ for agg_type in agg_types:
+ rows = self.db.get_entity_aggregates(
+ user_id=user_id,
+ agg_type=agg_type,
+ entity_hints=keywords,
+ )
+ for row in rows:
+ # Score how well this aggregate matches the query
+ entity_key = str(row.get("entity_key") or "").lower()
+ score = sum(1.0 for kw in keywords if kw in entity_key)
+ # Bonus for having multiple contributing sessions (multi-session aggregation)
+ sessions = row.get("contributing_sessions")
+ if sessions:
+ try:
+ n_sessions = len(json.loads(sessions)) if isinstance(sessions, str) else len(sessions)
+ except Exception:
+ n_sessions = 0
+ if n_sessions > 1:
+ score += 0.5 # prefer multi-session aggregates
+
+ if score > best_score:
+ best_score = score
+ best_match = row
+
+ if not best_match or best_score < 1.0:
+ return None
+
+ # Format the answer
+ agg_type = best_match.get("agg_type", "")
+ value_num = best_match.get("value_num")
+ value_unit = best_match.get("value_unit")
+ item_set = best_match.get("item_set")
+
+ if agg_type == "item_set" and item_set:
+ try:
+ items = json.loads(item_set) if isinstance(item_set, str) else item_set
+ return str(len(items))
+ except Exception:
+ pass
+
+ if value_num is not None:
+ try:
+ num = float(value_num)
+ if abs(num - round(num)) < 1e-9:
+ formatted = str(int(round(num)))
+ else:
+ formatted = f"{num:g}"
+ if value_unit:
+ if agg_type == "money_sum":
+ return f"${formatted}" if value_unit == "USD" else f"{formatted} {value_unit}"
+ return f"{formatted} {value_unit}{'s' if num != 1 else ''}"
+ return formatted
+ except (TypeError, ValueError):
+ pass
+
+ return None
+
+ @staticmethod
+ def _build_orchestrated_context(
+ *,
+ results: List[Dict[str, Any]],
+ event_hits: List[Dict[str, Any]],
+ hierarchical_anchors: Optional[List[str]],
+ max_results: int,
+ max_chars: int,
+ per_result_max_chars: int,
+ ) -> str:
+ lines: List[str] = []
+ remaining = max(1, int(max_chars))
+
+ if hierarchical_anchors:
+ lines.append("Hierarchical Anchors:")
+ remaining -= len(lines[-1]) + 1
+ for anchor in hierarchical_anchors[:10]:
+ row = f"- {str(anchor).strip()}"
+ if len(row) + 1 > remaining:
+ break
+ lines.append(row)
+ remaining -= len(row) + 1
+ if remaining > 20:
+ lines.append("")
+ remaining -= 1
+
+ if event_hits:
+ lines.append("Episodic Events:")
+ remaining -= len(lines[-1]) + 1
+ for idx, event in enumerate(event_hits[:20], start=1):
+ value = str(event.get("value_text") or "").strip()
+ if not value:
+ continue
+ actor = str(event.get("actor_role") or event.get("actor_id") or "unknown")
+ etype = str(event.get("event_type") or "event")
+ stamp = str(event.get("event_time") or "")
+ row = f"- [{idx}] type={etype} actor={actor} time={stamp} value={value[:200]}"
+ if len(row) + 1 > remaining:
+ break
+ lines.append(row)
+ remaining -= len(row) + 1
+ if remaining > 20:
+ lines.append("")
+ remaining -= 1
+
+ lines.append("Retrieved Memories:")
+ remaining -= len(lines[-1]) + 1
+ for idx, row in enumerate(results[: max(1, int(max_results))], start=1):
+ evidence = str(row.get("evidence_text") or row.get("memory") or "").strip()
+ if not evidence:
+ continue
+ snippet = evidence[: max(1, int(per_result_max_chars))]
+ mem_id = str(row.get("id") or "")
+ meta = row.get("metadata") or {}
+ session_date = str(
+ meta.get("event_time")
+ or meta.get("session_date")
+ or meta.get("event_date")
+ or ""
+ ).strip()
+ date_tag = f" date={session_date}" if session_date else ""
+ session_id = str(meta.get("session_id") or "").strip()
+ sid_tag = f" session={session_id}" if session_id else ""
+ block = f"[Memory {idx}] id={mem_id}{sid_tag}{date_tag}\n{snippet}"
+ if len(block) + 2 > remaining:
+ break
+ lines.append(block)
+ lines.append("")
+ remaining -= len(block) + 2
+
+ text = "\n".join(lines).strip()
+ return text[: max(1, int(max_chars))]
+
+ def search_orchestrated(
+ self,
+ *,
+ query: str,
+ user_id: str,
+ question_type: str = "",
+ question_date: str = "",
+ agent_id: Optional[str] = None,
+ run_id: Optional[str] = None,
+ app_id: Optional[str] = None,
+ filters: Optional[Dict[str, Any]] = None,
+ categories: Optional[List[str]] = None,
+ limit: int = 10,
+ orchestration_mode: str = "hybrid",
+ base_search_limit: Optional[int] = None,
+ base_context_limit: int = 10,
+ search_cap: Optional[int] = None,
+ context_cap: Optional[int] = None,
+ map_max_candidates: Optional[int] = None,
+ map_max_chars: Optional[int] = None,
+ keyword_search: bool = True,
+ hybrid_alpha: float = 0.7,
+ include_evidence: bool = True,
+ evidence_strategy: str = "full",
+ evidence_max_chars: int = 3500,
+ evidence_context_lines: int = 1,
+ max_context_chars: int = 28000,
+ rerank: bool = True,
+ orchestrator_llm: Optional[Any] = None,
+ reflection_max_hops: Optional[int] = None,
+ ) -> Dict[str, Any]:
+ mode = str(orchestration_mode or "off").strip().lower()
+ orch_cfg = getattr(self.config, "orchestration", None)
+ enabled = bool(orch_cfg and orch_cfg.enable_orchestrated_search and mode in {"hybrid", "strict"})
+
+ if not enabled:
+ base = self.search(
+ query=query,
+ user_id=user_id,
+ agent_id=agent_id,
+ run_id=run_id,
+ app_id=app_id,
+ filters=filters,
+ categories=categories,
+ limit=limit,
+ rerank=rerank,
+ keyword_search=keyword_search,
+ hybrid_alpha=hybrid_alpha,
+ include_evidence=include_evidence,
+ evidence_strategy=evidence_strategy,
+ evidence_max_chars=evidence_max_chars,
+ evidence_context_lines=evidence_context_lines,
+ )
+ return {
+ "results": base.get("results", []),
+ "event_hits": [],
+ "coverage": {
+ "event_hit_count": 0,
+ "unique_canonical_keys": 0,
+ "unique_entities": 0,
+ "numeric_fact_count": 0,
+ "dated_fact_count": 0,
+ "coverage_ratio": 0.0,
+ "intent_coverage": 0.0,
+ "threshold": 0.0,
+ "sufficient": False,
+ },
+ "orchestration": {
+ "mode": "off",
+ "intent": "freeform",
+ "map_reduce_used": False,
+ "reflection_hops": 0,
+ "reason_codes": ["orchestration_disabled"],
+ "cache_hit": False,
+ "intent_coverage": 0.0,
+ },
+ "reason_codes": ["orchestration_disabled"],
+ "cache_hit": False,
+ "intent_coverage": 0.0,
+ "context": self._build_orchestrated_context(
+ results=base.get("results", []),
+ event_hits=[],
+ hierarchical_anchors=None,
+ max_results=max(1, int(base_context_limit)),
+ max_chars=max_context_chars,
+ per_result_max_chars=evidence_max_chars,
+ ),
+ "reduced_answer": None,
+ "facts": [],
+ }
+
+ search_cap_value = int(search_cap or getattr(orch_cfg, "search_cap", 30))
+ context_cap_value = int(context_cap or getattr(orch_cfg, "context_cap", 20))
+ query_plan = build_query_plan(
+ query,
+ question_type,
+ base_search_limit=int(base_search_limit or max(limit, 10)),
+ base_context_limit=int(base_context_limit),
+ search_cap=search_cap_value,
+ context_cap=context_cap_value,
+ )
+ search_query = query_plan.rewritten_query or query
+ search_limit = max(1, int(query_plan.search_limit))
+ context_limit = max(1, int(query_plan.context_limit))
+ map_max_candidates_value = int(map_max_candidates or getattr(orch_cfg, "map_max_candidates", 8))
+ map_max_chars_value = int(map_max_chars or getattr(orch_cfg, "map_candidate_max_chars", 1200))
+
+ actor_id = self._infer_actor_id_from_query(query=query, user_id=user_id)
+ entity_hints: List[str] = []
+ if actor_id:
+ entity_hints.append(actor_id.replace("_", " "))
+ event_payload = self.search_episodes(
+ query=query,
+ user_id=user_id,
+ intent=query_plan.intent,
+ actor_id=actor_id,
+ time_anchor=question_date or None,
+ entity_hints=entity_hints,
+ min_coverage=self._intent_coverage_threshold(
+ query_plan.intent.value,
+ float(getattr(orch_cfg, "map_reduce_coverage_threshold", 0.6)),
+ ),
+ limit=max(20, context_limit * 2),
+ )
+ event_hits = event_payload.get("results", [])
+ coverage = event_payload.get("coverage", {}) or {}
+ reason_codes: List[str] = []
+
+ search_payload = self.search(
+ query=search_query,
+ user_id=user_id,
+ agent_id=agent_id,
+ run_id=run_id,
+ app_id=app_id,
+ filters=filters,
+ categories=categories,
+ limit=max(limit, search_limit),
+ rerank=rerank,
+ keyword_search=keyword_search,
+ hybrid_alpha=hybrid_alpha,
+ include_evidence=include_evidence,
+ evidence_strategy=evidence_strategy,
+ evidence_max_chars=evidence_max_chars,
+ evidence_context_lines=evidence_context_lines,
+ )
+ results = list(search_payload.get("results", []))
+
+ if event_hits and orch_cfg.enable_hierarchical_retrieval:
+ ordered_ids: List[str] = []
+ for event in event_hits:
+ memory_id = str(event.get("memory_id") or "").strip()
+ if memory_id and memory_id not in ordered_ids:
+ ordered_ids.append(memory_id)
+ if ordered_ids:
+ ranked = {str(row.get("id")): row for row in results}
+ missing_ids = [mid for mid in ordered_ids if mid not in ranked]
+ if missing_ids:
+ try:
+ hydrated = self.db.get_memories_bulk(missing_ids, include_tombstoned=False)
+ except Exception as e:
+ logger.debug("Event-hit hydration failed: %s", e)
+ hydrated = {}
+ for memory_id in missing_ids:
+ memory = hydrated.get(memory_id)
+ if not memory:
+ continue
+ memory_text = str(memory.get("memory") or "").strip()
+ evidence_text = memory_text[: max(1, int(evidence_max_chars))]
+ ranked[memory_id] = {
+ "id": memory_id,
+ "memory": memory_text,
+ "score": 0.0,
+ "keyword_score": 0.0,
+ "composite_score": 0.0,
+ "metadata": memory.get("metadata") or {},
+ "categories": memory.get("categories") or [],
+ "layer": memory.get("layer"),
+ "strength": memory.get("strength"),
+ "evidence_text": evidence_text,
+ "evidence_source": "event_hydration",
+ "evidence_chars": len(evidence_text),
+ }
+ head = [ranked[mid] for mid in ordered_ids if mid in ranked]
+ tail = [row for row in results if str(row.get("id")) not in ordered_ids]
+ results = head + tail
+ reason_codes.append("event_first_reorder")
+
+ hierarchical_anchors: List[str] = []
+ if orch_cfg.enable_hierarchical_retrieval:
+ hierarchical_anchors = self._build_hierarchical_anchors(
+ query=query,
+ user_id=user_id,
+ limit=3,
+ )
+
+ (
+ reduced_answer,
+ facts,
+ map_reduce_used,
+ reflection_hops,
+ llm_calls_used,
+ cache_hit,
+ orchestration_reasons,
+ results,
+ ) = self._execute_map_reduce(
+ query_plan=query_plan,
+ orchestrator_llm=orchestrator_llm,
+ results=results,
+ event_hits=event_hits,
+ coverage=coverage,
+ query=query,
+ question_type=question_type,
+ question_date=question_date,
+ mode=mode,
+ search_cap_value=search_cap_value,
+ map_max_candidates_value=map_max_candidates_value,
+ map_max_chars_value=map_max_chars_value,
+ reflection_max_hops=reflection_max_hops,
+ search_query=search_query,
+ search_limit=search_limit,
+ rerank=rerank,
+ keyword_search=keyword_search,
+ hybrid_alpha=hybrid_alpha,
+ include_evidence=include_evidence,
+ evidence_strategy=evidence_strategy,
+ evidence_max_chars=evidence_max_chars,
+ evidence_context_lines=evidence_context_lines,
+ user_id=user_id,
+ filters=filters,
+ categories=categories,
+ agent_id=agent_id,
+ run_id=run_id,
+ app_id=app_id,
+ )
+ reason_codes.extend(orchestration_reasons)
+
+ # Always use full retrieval context — proposition context (Phase 3)
+ # is deferred until episodic event coverage is proven reliable.
+ context = self._build_orchestrated_context(
+ results=results,
+ event_hits=event_hits,
+ hierarchical_anchors=hierarchical_anchors,
+ max_results=context_limit,
+ max_chars=max_context_chars,
+ per_result_max_chars=evidence_max_chars,
+ )
+ if facts:
+ fact_context = render_fact_context(facts, max_facts=20)
+ if fact_context:
+ if mode == "strict":
+ context = "Canonical Facts:\n" + fact_context
+ else:
+ context = "Canonical Facts:\n" + fact_context + "\n\nRetrieved Context:\n" + context
+
+ self._record_cost_counter(
+ phase="query",
+ user_id=user_id,
+ llm_calls=llm_calls_used,
+ input_tokens=0.0,
+ output_tokens=0.0,
+ embed_calls=0.0,
+ )
+
+ intent_coverage = float(coverage.get("intent_coverage", coverage.get("coverage_ratio", 0.0)) or 0.0)
+
+ # Dhee: Self-evolution — record answer generation signal
+ if self.evolution_layer and reduced_answer:
+ try:
+ source_ids = [r.get("id", "") for r in results[:context_limit] if r.get("id")]
+ source_texts = [r.get("memory", "") for r in results[:context_limit] if r.get("memory")]
+ self.evolution_layer.on_answer_generated(
+ query=query,
+ answer=str(reduced_answer),
+ source_memory_ids=source_ids,
+ source_texts=source_texts,
+ user_id=user_id or "default",
+ )
+ except Exception as e:
+ logger.debug("Evolution answer hook skipped: %s", e)
+
+ return {
+ "results": results[: max(1, int(limit))],
+ "event_hits": event_hits,
+ "coverage": coverage,
+ "orchestration": {
+ "mode": mode,
+ "intent": query_plan.intent.value,
+ "rewritten_query": search_query if search_query != query else None,
+ "search_limit": search_limit,
+ "context_limit": context_limit,
+ "map_reduce_used": map_reduce_used,
+ "reflection_hops": reflection_hops,
+ "reduced_answer": reduced_answer,
+ "reason_codes": list(dict.fromkeys(reason_codes)),
+ "cache_hit": bool(cache_hit),
+ "intent_coverage": round(intent_coverage, 4),
+ },
+ "reason_codes": list(dict.fromkeys(reason_codes)),
+ "cache_hit": bool(cache_hit),
+ "intent_coverage": round(intent_coverage, 4),
+ "context": context,
+ "reduced_answer": reduced_answer,
+ "facts": facts,
+ }
+
+ def _execute_map_reduce(
+ self,
+ *,
+ query_plan: Any,
+ orchestrator_llm: Optional[Any],
+ results: List[Dict[str, Any]],
+ event_hits: Optional[List[Dict[str, Any]]] = None,
+ coverage: Optional[Dict[str, Any]],
+ query: str,
+ question_type: str,
+ question_date: str,
+ mode: str,
+ search_cap_value: int,
+ map_max_candidates_value: int,
+ map_max_chars_value: int,
+ reflection_max_hops: Optional[int],
+ search_query: str,
+ search_limit: int,
+ rerank: bool,
+ keyword_search: bool,
+ hybrid_alpha: float,
+ include_evidence: bool,
+ evidence_strategy: str,
+ evidence_max_chars: int,
+ evidence_context_lines: int,
+ user_id: str,
+ filters: Optional[Dict[str, Any]],
+ categories: Optional[List[str]],
+ agent_id: Optional[str],
+ run_id: Optional[str],
+ app_id: Optional[str],
+ ) -> Tuple[Optional[str], List[Dict[str, Any]], bool, int, float, bool, List[str], List[Dict[str, Any]]]:
+ """Execute map-reduce orchestration with optional reflection.
+
+ Tries event-first reduction (zero LLM cost) before falling back
+ to LLM-based atomic fact extraction.
+
+ Returns:
+ (
+ reduced_answer,
+ facts,
+ map_reduce_used,
+ reflection_hops,
+ llm_calls_used,
+ cache_hit,
+ reason_codes,
+ updated_results,
+ )
+ """
+ reduced_answer: Optional[str] = None
+ facts: List[Dict[str, Any]] = []
+ map_reduce_used = False
+ reflection_hops = 0
+ llm_calls_used = 0.0
+ cache_hit = False
+ reason_codes: List[str] = []
+ active_orchestrator_llm = orchestrator_llm or self.llm
+ orch_cfg = getattr(self.config, "orchestration", None)
+ max_query_llm_calls = int(getattr(orch_cfg, "max_query_llm_calls", 2) or 2)
+
+ coverage_sufficient = bool((coverage or {}).get("sufficient"))
+ if coverage_sufficient:
+ reason_codes.append("coverage_sufficient")
+ else:
+ reason_codes.append("coverage_insufficient")
+
+ inconsistency = deterministic_inconsistency_check(
+ question=query,
+ intent=query_plan.intent,
+ results=results,
+ coverage=coverage,
+ )
+ inconsistency_detected = bool(inconsistency.get("inconsistent"))
+ if inconsistency_detected:
+ reason_codes.extend(list(inconsistency.get("reasons") or []))
+
+ # NOTE: Event-first reduction (Phase 2) disabled — episodic events
+ # alone lack sufficient coverage for accurate multi-session counting.
+ # The LLM-based map-reduce path below is more reliable.
+
+ should_run_map_reduce = bool(
+ query_plan.should_map_reduce
+ and active_orchestrator_llm is not None
+ and results
+ and (mode in ("strict", "hybrid") or not coverage_sufficient or inconsistency_detected)
+ )
+ if query_plan.should_map_reduce and active_orchestrator_llm is None:
+ reason_codes.append("no_orchestrator_llm")
+ if should_run_map_reduce and max_query_llm_calls <= 0:
+ reason_codes.append("query_llm_budget_exhausted")
+ should_run_map_reduce = False
+
+ if should_run_map_reduce:
+ cache_key = self._build_reducer_cache_key(
+ user_id=user_id,
+ intent_value=query_plan.intent.value,
+ query=query,
+ results=results,
+ )
+ cached = self._get_reducer_cache(cache_key)
+ if cached and str(cached.get("reduced_answer") or "").strip():
+ cached_answer = str(cached.get("reduced_answer") or "").strip()
+ if not is_low_confidence_answer(cached_answer):
+ reduced_answer = cached_answer
+ facts = list(cached.get("facts") or [])
+ cache_hit = True
+ reason_codes.append("reducer_cache_hit")
+
+ if not cache_hit:
+ map_candidates = build_map_candidates(
+ results,
+ max_candidates=map_max_candidates_value,
+ per_candidate_max_chars=map_max_chars_value,
+ )
+ if llm_calls_used < float(max_query_llm_calls):
+ facts = extract_atomic_facts(
+ llm=active_orchestrator_llm,
+ question=query,
+ question_type=question_type,
+ question_date=question_date,
+ candidates=map_candidates,
+ )
+ reduced_answer, _ = reduce_atomic_facts(
+ question=query,
+ intent=query_plan.intent,
+ facts=facts,
+ )
+ llm_calls_used += 1.0
+ map_reduce_used = True
+ reason_codes.append("map_reduce_executed")
+ if reduced_answer or facts:
+ self._put_reducer_cache(
+ cache_key=cache_key,
+ reduced_answer=reduced_answer,
+ facts=facts,
+ )
+ else:
+ reason_codes.append("query_llm_budget_exhausted")
+
+ max_hops = int(
+ reflection_max_hops
+ if reflection_max_hops is not None
+ else getattr(self.config.orchestration, "reflection_max_hops", 1)
+ )
+ if (
+ max_hops > 0
+ and (not reduced_answer or is_low_confidence_answer(reduced_answer))
+ and search_limit < search_cap_value
+ and llm_calls_used < float(max_query_llm_calls)
+ ):
+ reflection_hops = 1
+ reason_codes.append("reflection_executed")
+ expanded_limit = min(search_cap_value, max(search_limit + 8, search_limit * 2))
+ reflection_payload = self.search(
+ query=search_query,
+ user_id=user_id,
+ agent_id=agent_id,
+ run_id=run_id,
+ app_id=app_id,
+ filters=filters,
+ categories=categories,
+ limit=expanded_limit,
+ rerank=rerank,
+ keyword_search=keyword_search,
+ hybrid_alpha=hybrid_alpha,
+ include_evidence=include_evidence,
+ evidence_strategy=evidence_strategy,
+ evidence_max_chars=evidence_max_chars,
+ evidence_context_lines=evidence_context_lines,
+ )
+ reflected_results = list(reflection_payload.get("results", []))
+ merged: Dict[str, Dict[str, Any]] = {}
+ for row in results + reflected_results:
+ memory_id = str(row.get("id") or "")
+ existing = merged.get(memory_id)
+ if not existing or float(row.get("composite_score", row.get("score", 0.0))) > float(
+ existing.get("composite_score", existing.get("score", 0.0))
+ ):
+ merged[memory_id] = row
+ results = sorted(
+ merged.values(),
+ key=lambda row: float(row.get("composite_score", row.get("score", 0.0))),
+ reverse=True,
+ )
+ map_candidates = build_map_candidates(
+ results,
+ max_candidates=map_max_candidates_value,
+ per_candidate_max_chars=map_max_chars_value,
+ )
+ if llm_calls_used < float(max_query_llm_calls):
+ facts = extract_atomic_facts(
+ llm=active_orchestrator_llm,
+ question=query,
+ question_type=question_type,
+ question_date=question_date,
+ candidates=map_candidates,
+ )
+ reduced_answer, _ = reduce_atomic_facts(
+ question=query,
+ intent=query_plan.intent,
+ facts=facts,
+ )
+ llm_calls_used += 1.0
+ map_reduce_used = True
+ if reduced_answer or facts:
+ self._put_reducer_cache(
+ cache_key=self._build_reducer_cache_key(
+ user_id=user_id,
+ intent_value=query_plan.intent.value,
+ query=query,
+ results=results,
+ ),
+ reduced_answer=reduced_answer,
+ facts=facts,
+ )
+ else:
+ reason_codes.append("query_llm_budget_exhausted")
+ elif (
+ max_hops > 0
+ and (not reduced_answer or is_low_confidence_answer(reduced_answer))
+ and search_limit < search_cap_value
+ ):
+ reason_codes.append("reflection_skipped_budget")
+
+ return (
+ reduced_answer,
+ facts,
+ map_reduce_used,
+ reflection_hops,
+ llm_calls_used,
+ cache_hit,
+ list(dict.fromkeys(reason_codes)),
+ results,
+ )
+
def add(
self,
messages: Union[str, List[Dict[str, str]]],
@@ -708,6 +1943,12 @@ def _process_memory_batch(
item_meta.update(item.get("metadata") or {})
item_metadata_list.append(item_meta)
+ # Write-path telemetry aggregates for this batch (later normalized per memory).
+ batch_llm_calls_total = 0.0
+ batch_embed_calls_total = 0.0
+ batch_input_tokens_total = 0.0
+ batch_output_tokens_total = 0.0
+
# 0. Try unified enrichment (single LLM call for echo+category+entities+profiles)
echo_results = [None] * len(contents)
category_results = [None] * len(contents)
@@ -744,6 +1985,11 @@ def _process_memory_batch(
include_entities=enrichment_config.include_entities if enrichment_config else True,
include_profiles=enrichment_config.include_profiles if enrichment_config else True,
)
+ sub_input_tokens = sum(self._estimate_token_count(c) for c in sub_contents)
+ sub_input_tokens += self._estimate_token_count(existing_cats)
+ batch_llm_calls_total += 1.0
+ batch_input_tokens_total += sub_input_tokens
+ batch_output_tokens_total += self._estimate_output_tokens(sub_input_tokens)
for j, enrichment in enumerate(sub_results):
idx = start + j
if enrichment.echo_result:
@@ -764,8 +2010,14 @@ def _process_memory_batch(
# 1. Batch echo encoding (fallback if unified was not used or failed)
if not _use_unified:
if self.echo_processor and self.echo_config.enable_echo and batch_config.batch_echo:
+ depth_override = EchoDepth(echo_depth) if echo_depth else EchoDepth(self.echo_config.default_depth)
+ if depth_override != EchoDepth.SHALLOW:
+ echo_input_tokens = sum(self._estimate_token_count(c) for c in contents if c)
+ non_empty_count = sum(1 for c in contents if c)
+ batch_llm_calls_total += float(non_empty_count)
+ batch_input_tokens_total += echo_input_tokens
+ batch_output_tokens_total += self._estimate_output_tokens(echo_input_tokens)
try:
- depth_override = EchoDepth(echo_depth) if echo_depth else None
echo_results = self.echo_processor.process_batch(
contents, depth=depth_override
)
@@ -785,6 +2037,12 @@ def _process_memory_batch(
and self.category_config.auto_categorize
and batch_config.batch_category
):
+ if self.category_config.use_llm_categorization:
+ cat_input_tokens = sum(self._estimate_token_count(c) for c in contents if c)
+ non_empty_count = sum(1 for c in contents if c)
+ batch_llm_calls_total += float(non_empty_count)
+ batch_input_tokens_total += cat_input_tokens
+ batch_output_tokens_total += self._estimate_output_tokens(cat_input_tokens)
try:
category_results = self.category_processor.detect_categories_batch(
contents,
@@ -806,15 +2064,18 @@ def _process_memory_batch(
for start in range(0, len(primary_texts), 50):
sub = primary_texts[start:start + 50]
embeddings.extend(self.embedder.embed_batch(sub, memory_action="add"))
+ batch_embed_calls_total += 1.0
except Exception as e:
logger.warning("Batch embed failed, falling back to sequential: %s", e)
embeddings = [
self.embedder.embed(t, memory_action="add") for t in primary_texts
]
+ batch_embed_calls_total += float(len(primary_texts))
else:
embeddings = [
self.embedder.embed(t, memory_action="add") for t in primary_texts
]
+ batch_embed_calls_total += float(len(primary_texts))
# 3b. Pre-embed all echo node texts (paraphrases, questions, content variants)
# so _build_index_vectors can use the cache instead of individual embed() calls.
@@ -847,6 +2108,7 @@ def _process_memory_batch(
sub = unique_texts[start:start + 50]
sub_embs = self.embedder.embed_batch(sub, memory_action="add")
all_echo_embeddings.extend(sub_embs)
+ batch_embed_calls_total += 1.0
for text, emb in zip(unique_texts, all_echo_embeddings):
embedding_cache[text] = emb
logger.info("Batch-embedded %d echo node texts in %d API calls",
@@ -867,6 +2129,7 @@ def _process_memory_batch(
now = datetime.now(timezone.utc).isoformat()
memory_records = []
+ episodic_rows: List[Tuple[str, Optional[str], str, Dict[str, Any]]] = []
vector_batch = [] # (vectors, payloads, ids)
results = []
@@ -877,6 +2140,7 @@ def _process_memory_batch(
memory_id = str(uuid.uuid4())
mem_metadata = dict(processed_metadata_base)
mem_metadata.update(item_metadata_list[i])
+ mem_metadata = self._attach_bitemporal_metadata(mem_metadata, observed_time=now)
echo_result = echo_results[i]
effective_strength = initial_strength
@@ -936,6 +2200,14 @@ def _process_memory_batch(
"s_slow": s_slow_val,
}
memory_records.append(memory_data)
+ episodic_rows.append(
+ (
+ memory_id,
+ items[i].get("user_id") or user_id,
+ content,
+ mem_metadata,
+ )
+ )
# Build vector index entries
vectors, payloads, vector_ids = self._build_index_vectors(
@@ -983,6 +2255,15 @@ def _process_memory_batch(
except Exception as e:
logger.error("Vector insert failed in batch: %s", e)
+ # Deterministic episodic index.
+ for memory_id, owner_user_id, content, mem_metadata in episodic_rows:
+ self._index_episodic_events_for_memory(
+ memory_id=memory_id,
+ user_id=owner_user_id,
+ content=content,
+ metadata=mem_metadata,
+ )
+
# Post-store hooks: category stats
for i, record in enumerate(memory_records):
if self.category_processor and record.get("categories"):
@@ -1010,6 +2291,7 @@ def _process_memory_batch(
for fs in range(0, len(all_fact_texts), 50):
sub = all_fact_texts[fs:fs + 50]
fact_embeddings.extend(self.embedder.embed_batch(sub, memory_action="add"))
+ batch_embed_calls_total += 1.0
fact_vectors = []
fact_payloads = []
fact_ids = []
@@ -1064,6 +2346,39 @@ def _process_memory_batch(
except Exception as e:
logger.warning("Profile update failed for %s: %s", memory_id, e)
+ # Post-store hooks: Universal Engram extraction (structured facts + context anchors)
+ if self.engram_extractor:
+ for i, record in enumerate(memory_records):
+ memory_id = record["id"]
+ content = record.get("memory", "")
+ try:
+ engram = self.engram_extractor.extract(
+ content=content,
+ session_context=None,
+ existing_metadata=record.get("metadata"),
+ user_id=record.get("user_id") or user_id or "default",
+ )
+ if self.context_resolver and engram:
+ self.context_resolver.store_engram(engram, memory_id)
+ except Exception as e:
+ logger.warning("Engram extraction failed for %s: %s", memory_id, e)
+
+ if episodic_rows:
+ sample_count = float(len(episodic_rows))
+ llm_calls_per_memory = batch_llm_calls_total / sample_count
+ input_tokens_per_memory = batch_input_tokens_total / sample_count
+ output_tokens_per_memory = batch_output_tokens_total / sample_count
+ embed_calls_per_memory = batch_embed_calls_total / sample_count
+ for _, owner_user_id, _, _ in episodic_rows:
+ self._record_cost_counter(
+ phase="write",
+ user_id=owner_user_id,
+ llm_calls=llm_calls_per_memory,
+ input_tokens=input_tokens_per_memory,
+ output_tokens=output_tokens_per_memory,
+ embed_calls=embed_calls_per_memory,
+ )
+
return results
def _resolve_memory_metadata(
@@ -1178,6 +2493,18 @@ def _process_single_memory(
if not content:
return None
+ write_llm_calls = 0.0
+ write_embed_calls = 0.0
+ write_input_tokens = 0.0
+ write_output_tokens = 0.0
+
+ def _add_llm_cost(input_tokens: float) -> None:
+ nonlocal write_llm_calls, write_input_tokens, write_output_tokens
+ tokens = max(0.0, float(input_tokens or 0.0))
+ write_llm_calls += 1.0
+ write_input_tokens += tokens
+ write_output_tokens += self._estimate_output_tokens(tokens)
+
mem_categories = normalize_categories(categories or mem.get("categories"))
mem_metadata = dict(processed_metadata)
mem_metadata.update(mem.get("metadata", {}))
@@ -1304,6 +2631,9 @@ def _process_single_memory(
for c in cats[:30]
)
+ unified_input_tokens = self._estimate_token_count(content) + self._estimate_token_count(existing_cats)
+ _add_llm_cost(unified_input_tokens)
+
enrichment = self.unified_enrichment.enrich(
content=content,
depth=_depth_for_echo or EchoDepth.MEDIUM,
@@ -1336,6 +2666,7 @@ def _process_single_memory(
# Generate embedding
primary_text = self._select_primary_text(content, echo_result)
embedding = self.embedder.embed(primary_text, memory_action="add")
+ write_embed_calls += 1.0
else:
# Site 1: Parallel echo encoding + category detection
@@ -1350,6 +2681,12 @@ def _process_single_memory(
if _use_parallel:
# Run echo and category detection in parallel (both only read content)
+ depth_for_parallel = EchoDepth(echo_depth) if echo_depth else (_depth_for_echo or EchoDepth(self.echo_config.default_depth))
+ if self.echo_config.enable_echo and depth_for_parallel != EchoDepth.SHALLOW:
+ _add_llm_cost(self._estimate_token_count(content))
+ if _should_categorize and self.category_config.use_llm_categorization:
+ _add_llm_cost(self._estimate_token_count(content))
+
def _do_echo():
depth_override = EchoDepth(echo_depth) if echo_depth else None
return self.echo_processor.process(content, depth=depth_override)
@@ -1380,10 +2717,13 @@ def _do_category():
# Generate embedding (depends on echo result, must be serial)
primary_text = self._select_primary_text(content, echo_result_p)
embedding = self.embedder.embed(primary_text, memory_action="add")
+ write_embed_calls += 1.0
echo_result = echo_result_p
else:
# Sequential path (original behavior)
if _should_categorize:
+ if self.category_config.use_llm_categorization:
+ _add_llm_cost(self._estimate_token_count(content))
category_match = self.category_processor.detect_category(
content,
metadata=mem_metadata,
@@ -1394,9 +2734,13 @@ def _do_category():
mem_metadata["category_auto"] = True
# Encode memory (echo + embedding).
+ depth_for_encode = EchoDepth(echo_depth) if echo_depth else (_depth_for_echo or EchoDepth(self.echo_config.default_depth))
+ if self.echo_config.enable_echo and depth_for_encode != EchoDepth.SHALLOW:
+ _add_llm_cost(self._estimate_token_count(content))
echo_result, effective_strength, mem_categories, embedding = self._encode_memory(
content, echo_depth, mem_categories, mem_metadata, initial_strength,
)
+ write_embed_calls += 1.0
nearest, similarity = self._nearest_memory(embedding, store_filters)
repeated_threshold = max(self.fadem_config.conflict_similarity_threshold - 0.05, 0.7)
@@ -1415,6 +2759,8 @@ def _do_category():
existing = nearest
if existing and self.fadem_config.enable_forgetting:
+ conflict_input_tokens = self._estimate_token_count(existing.get("memory", "")) + self._estimate_token_count(content)
+ _add_llm_cost(conflict_input_tokens)
resolution = resolve_conflict(existing, content, self.llm, self.config.custom_conflict_prompt)
if resolution.classification == "CONTRADICTORY":
@@ -1428,6 +2774,14 @@ def _do_category():
boosted_strength = min(1.0, float(existing.get("strength", 1.0)) + 0.05)
self.db.update_memory(existing["id"], {"strength": boosted_strength})
self.db.increment_access(existing["id"])
+ self._record_cost_counter(
+ phase="write",
+ user_id=user_id,
+ llm_calls=write_llm_calls,
+ input_tokens=write_input_tokens,
+ output_tokens=write_output_tokens,
+ embed_calls=write_embed_calls,
+ )
return {
"id": existing["id"],
"memory": existing.get("memory", ""),
@@ -1438,9 +2792,13 @@ def _do_category():
if existing and event == "UPDATE" and resolution and resolution.classification == "SUBSUMES":
# Re-encode merged content.
+ depth_for_encode = EchoDepth(echo_depth) if echo_depth else (_depth_for_echo or EchoDepth(self.echo_config.default_depth))
+ if self.echo_config.enable_echo and depth_for_encode != EchoDepth.SHALLOW:
+ _add_llm_cost(self._estimate_token_count(content))
echo_result, _, mem_categories, embedding = self._encode_memory(
content, echo_depth, mem_categories, mem_metadata, initial_strength,
)
+ write_embed_calls += 1.0
if policy_repeated:
mem_metadata["policy_repeated"] = True
@@ -1490,6 +2848,7 @@ def _do_category():
effective_memory_id = memory_id or str(uuid.uuid4())
now = datetime.now(timezone.utc).isoformat()
+ mem_metadata = self._attach_bitemporal_metadata(mem_metadata, observed_time=now)
memory_data = {
"id": effective_memory_id,
"memory": content,
@@ -1570,6 +2929,7 @@ def _do_category():
try:
fact_texts = [ft for _, ft in valid_facts]
fact_embeddings = self.embedder.embed_batch(fact_texts, memory_action="add")
+ write_embed_calls += 1.0
fact_vectors = []
fact_payloads = []
fact_ids = []
@@ -1609,6 +2969,8 @@ def _do_category():
e.name for e in _unified_entities
}
else:
+ if self.graph_config.use_llm_extraction:
+ _add_llm_cost(self._estimate_token_count(content))
self.knowledge_graph.extract_entities(
content=content,
memory_id=effective_memory_id,
@@ -1634,10 +2996,84 @@ def _do_category():
user_id=user_id or "default",
)
else:
+ if self.profile_config.use_llm_extraction:
+ _add_llm_cost(self._estimate_token_count(content))
self._update_profiles(effective_memory_id, content, mem_metadata, user_id)
except Exception as e:
logger.warning("Profile update failed for %s: %s", effective_memory_id, e)
+ self._index_episodic_events_for_memory(
+ memory_id=effective_memory_id,
+ user_id=user_id,
+ content=content,
+ metadata=mem_metadata,
+ )
+
+ # Dhee: Universal Engram extraction — structured facts + context anchors + prospective scenes.
+ # Runs AFTER existing enrichment pipeline to avoid duplication.
+ if self.engram_extractor:
+ try:
+ session_ctx = None
+ if context_messages:
+ session_ctx = {"recent_messages": context_messages[-5:]}
+ engram = self.engram_extractor.extract(
+ content=content,
+ session_context=session_ctx,
+ existing_metadata=mem_metadata,
+ user_id=user_id or "default",
+ )
+ # Store structured engram data into v3 tables
+ if self.context_resolver:
+ self.context_resolver.store_engram(engram, effective_memory_id)
+ # Store prospective scenes (predicted future events)
+ if engram.prospective_scenes and self.config.prospective_scene.enable_prospective_scenes:
+ self._store_prospective_scenes(
+ engram.prospective_scenes,
+ effective_memory_id,
+ user_id or "default",
+ )
+ except Exception as e:
+ logger.warning("Engram extraction failed for %s: %s", effective_memory_id, e)
+
+ # Dhee: Self-evolution — record extraction quality signal
+ if self.evolution_layer:
+ try:
+ engram_facts = None
+ engram_context = None
+ if self.engram_extractor and 'engram' in dir() and engram:
+ engram_facts = [f.to_dict() if hasattr(f, 'to_dict') else f for f in getattr(engram, 'facts', [])]
+ engram_context = getattr(engram, 'context', None)
+ if engram_context and hasattr(engram_context, '__dict__'):
+ engram_context = engram_context.__dict__
+ self.evolution_layer.on_memory_stored(
+ memory_id=effective_memory_id,
+ content=content,
+ facts=engram_facts,
+ context=engram_context,
+ user_id=user_id or "default",
+ )
+ except Exception as e:
+ logger.debug("Evolution write hook skipped: %s", e)
+
+ # Buddhi write hook: detect intentions in stored content
+ if self.buddhi_layer:
+ try:
+ self.buddhi_layer.on_memory_stored(
+ content=content,
+ user_id=user_id or "default",
+ )
+ except Exception as e:
+ logger.debug("Buddhi write hook skipped: %s", e)
+
+ self._record_cost_counter(
+ phase="write",
+ user_id=user_id,
+ llm_calls=write_llm_calls,
+ input_tokens=write_input_tokens,
+ output_tokens=write_output_tokens,
+ embed_calls=write_embed_calls,
+ )
+
return {
"id": effective_memory_id,
"memory": content,
@@ -1787,7 +3223,7 @@ def _process_single_memory_lite(
s_fast_val, s_mid_val, s_slow_val = initialize_traces(effective_strength, is_new=True)
# Content hash for dedup
- from engram.memory.core import _content_hash
+ from dhee.memory.core import _content_hash
ch = _content_hash(content)
existing = self.db.get_memory_by_content_hash(ch, user_id) if hasattr(self.db, 'get_memory_by_content_hash') else None
if existing:
@@ -1802,6 +3238,7 @@ def _process_single_memory_lite(
effective_memory_id = memory_id or str(uuid.uuid4())
now = datetime.now(timezone.utc).isoformat()
+ mem_metadata = self._attach_bitemporal_metadata(mem_metadata, observed_time=now)
# Serialize conversation context
context_json = None
@@ -1879,6 +3316,21 @@ def _process_single_memory_lite(
except Exception as e:
logger.warning("Scene assignment failed for %s (lite): %s", effective_memory_id, e)
+ self._index_episodic_events_for_memory(
+ memory_id=effective_memory_id,
+ user_id=user_id,
+ content=content,
+ metadata=mem_metadata,
+ )
+ self._record_cost_counter(
+ phase="write",
+ user_id=user_id,
+ llm_calls=0.0,
+ input_tokens=0.0,
+ output_tokens=0.0,
+ embed_calls=1.0,
+ )
+
return {
"id": effective_memory_id,
"memory": content,
@@ -2054,6 +3506,117 @@ def enrich_pending(
"remaining": remaining_count,
}
+ @staticmethod
+ def _normalize_bitemporal_value(value: Any) -> Optional[str]:
+ if value is None:
+ return None
+ if isinstance(value, datetime):
+ dt = value
+ if dt.tzinfo is None:
+ dt = dt.replace(tzinfo=timezone.utc)
+ else:
+ dt = dt.astimezone(timezone.utc)
+ return dt.isoformat()
+ if isinstance(value, date):
+ return value.isoformat()
+ text = str(value).strip()
+ return text or None
+
+ @classmethod
+ def _parse_bitemporal_datetime(cls, value: Any) -> Optional[datetime]:
+ normalized = cls._normalize_bitemporal_value(value)
+ if not normalized:
+ return None
+ text = normalized
+ if text.endswith("Z"):
+ text = text[:-1] + "+00:00"
+ try:
+ dt = datetime.fromisoformat(text)
+ except ValueError:
+ # Allow plain YYYY-MM-DD values.
+ date_match = re.match(r"^(\d{4}-\d{2}-\d{2})", text)
+ if not date_match:
+ return None
+ try:
+ d = date.fromisoformat(date_match.group(1))
+ except ValueError:
+ return None
+ dt = datetime.combine(d, datetime.min.time())
+
+ if dt.tzinfo is None:
+ dt = dt.replace(tzinfo=timezone.utc)
+ else:
+ dt = dt.astimezone(timezone.utc)
+ return dt
+
+ @classmethod
+ def _attach_bitemporal_metadata(
+ cls,
+ metadata: Optional[Dict[str, Any]],
+ observed_time: str,
+ ) -> Dict[str, Any]:
+ md = dict(metadata or {})
+
+ observed_norm = cls._normalize_bitemporal_value(md.get("observed_time")) or observed_time
+ md["observed_time"] = observed_norm
+
+ event_candidate = (
+ md.get("event_time")
+ or md.get("session_date")
+ or md.get("event_date")
+ or md.get("timestamp")
+ or md.get("date")
+ )
+ event_norm = cls._normalize_bitemporal_value(event_candidate)
+ if event_norm:
+ md["event_time"] = event_norm
+ return md
+
+ @staticmethod
+ def _query_prefers_recency(query: str) -> bool:
+ q = str(query or "")
+ return bool(_TEMPORAL_RECENT_QUERY_RE.search(q) or _TEMPORAL_RANGE_QUERY_RE.search(q))
+
+ @staticmethod
+ def _query_is_transactional(query: str) -> bool:
+ return bool(_TEMPORAL_TRANSACTIONAL_QUERY_RE.search(str(query or "")))
+
+ def _compute_temporal_boost(
+ self,
+ *,
+ query: str,
+ metadata: Dict[str, Any],
+ query_intent: Optional[QueryIntent],
+ ) -> float:
+ if not metadata:
+ return 0.0
+ if not self._query_prefers_recency(query) and query_intent not in {QueryIntent.EPISODIC}:
+ return 0.0
+
+ event_time = metadata.get("event_time") or metadata.get("session_date")
+ event_dt = self._parse_bitemporal_datetime(event_time)
+ if event_dt is None:
+ return 0.0
+
+ now = datetime.now(timezone.utc)
+ age_days = max(0.0, (now - event_dt).total_seconds() / 86400.0)
+
+ # Transaction-like facts should decay faster than profile-like facts.
+ decay_days = 30.0 if self._query_is_transactional(query) else 180.0
+ recency = math.exp(-age_days / decay_days)
+ boost = 0.20 * recency
+
+ # If query explicitly limits a recent window, penalize very old memories.
+ if _TEMPORAL_RANGE_QUERY_RE.search(str(query or "")) and age_days > 45.0:
+ penalty = min(0.20, (age_days - 45.0) / 365.0)
+ boost -= penalty
+
+ if boost > 0.25:
+ return 0.25
+ if boost < -0.25:
+ return -0.25
+ return boost
+
def search(
self,
query: str,
@@ -2074,11 +3637,29 @@ def search(
boost_on_access: bool = True,
use_echo_rerank: bool = True, # EchoMem: use echo metadata for re-ranking
use_category_boost: bool = True, # CategoryMem: boost by category relevance
+ include_evidence: bool = False,
+ evidence_strategy: str = "vector_or_snippet",
+ evidence_max_chars: int = 900,
+ evidence_context_lines: int = 1,
**kwargs: Any,
) -> Dict[str, Any]:
if not query or not query.strip():
return {"results": [], "context_packet": None}
+ # Dhee: Run context resolver for metadata enrichment only.
+ # NEVER short-circuit: the resolver can't guarantee complete coverage
+ # across all relevant sessions for multi-session queries (count, set,
+ # temporal, sum). Example: "how many tanks did I buy?" needs 3-5
+ # sessions but the resolver finds 1 fact and would return only that.
+ # Instead, pass resolver hints to the vector pipeline as boosting
+ # signals.
+ resolver_result = None
+ if self.context_resolver:
+ try:
+ resolver_result = self.context_resolver.resolve(query, user_id=user_id or "default")
+ except Exception as e:
+ logger.debug("Context resolver skipped: %s", e)
+
_, effective_filters = build_filters_and_metadata(
user_id=user_id,
agent_id=agent_id,
@@ -2260,6 +3841,15 @@ def search(
intent_boost = dc.intersection_boost
combined = combined * (1 + intent_boost)
+ # Bitemporal recency policy: boost/penalize memories using event_time vs query recency signals.
+ temporal_boost = self._compute_temporal_boost(
+ query=query,
+ metadata=metadata,
+ query_intent=query_intent,
+ )
+ if temporal_boost:
+ combined = combined * (1 + temporal_boost)
+
# KnowledgeGraph: Boost for memories sharing entities with query terms
graph_boost = 0.0
if self.knowledge_graph:
@@ -2344,6 +3934,7 @@ def search(
"intent_boost": intent_boost,
"proc_boost": proc_boost,
"salience_boost": salience_boost,
+ "temporal_boost": temporal_boost,
"memory_type": mem_type,
"query_intent": query_intent.value if query_intent else None,
"confidence": metadata.get("mm_confidence"),
@@ -2387,7 +3978,44 @@ def search(
rerank_cfg = getattr(self.config, "rerank", None)
if rerank and self.reranker and results:
try:
- passages = [r.get("memory", "") for r in results[:limit]]
+ rerank_opts = (rerank_cfg.config if rerank_cfg else {}) or {}
+ passage_strategy = str(rerank_opts.get("passage_strategy", "full")).strip().lower()
+ if passage_strategy not in {"full", "snippet", "vector_text"}:
+ passage_strategy = "full"
+ try:
+ max_passage_chars = int(rerank_opts.get("max_passage_chars", 3500))
+ except (TypeError, ValueError):
+ max_passage_chars = 3500
+ max_passage_chars = max(1, max_passage_chars)
+ try:
+ context_lines = int(rerank_opts.get("context_lines", 1))
+ except (TypeError, ValueError):
+ context_lines = 1
+ context_lines = max(0, context_lines)
+ try:
+ candidates_multiplier = int(rerank_opts.get("candidates_multiplier", 1))
+ except (TypeError, ValueError):
+ candidates_multiplier = 1
+ candidates_multiplier = max(1, candidates_multiplier)
+
+ try:
+ limit_for_rerank = int(limit)
+ except (TypeError, ValueError):
+ limit_for_rerank = 1
+ limit_for_rerank = max(1, limit_for_rerank)
+ rerank_k = min(len(results), limit_for_rerank * candidates_multiplier)
+ rerank_window = results[:rerank_k]
+ passages: List[str] = []
+ for row in rerank_window:
+ passage = self._build_rerank_passage(
+ result=row,
+ query_terms=query_terms,
+ strategy=passage_strategy,
+ max_chars=max_passage_chars,
+ context_lines=context_lines,
+ )
+ row["rerank_passage_chars"] = len(passage)
+ passages.append(passage)
reranked = self.reranker.rerank(
query=query,
passages=passages,
@@ -2395,16 +4023,43 @@ def search(
)
# Re-order results by reranker logits
idx_to_logit = {r["index"]: r["logit"] for r in reranked}
- for i, result in enumerate(results[:limit]):
+ for i, result in enumerate(rerank_window):
result["rerank_logit"] = idx_to_logit.get(i, float("-inf"))
- results[:limit] = sorted(
- results[:limit],
+ results[:rerank_k] = sorted(
+ rerank_window,
key=lambda x: x.get("rerank_logit", float("-inf")),
reverse=True,
)
except Exception as e:
logger.warning("Reranking failed, using composite_score order: %s", e)
+ if include_evidence and results:
+ try:
+ strategy = str(evidence_strategy or "vector_or_snippet").strip().lower()
+ if strategy not in {"vector_or_snippet", "vector_text", "snippet", "full"}:
+ strategy = "vector_or_snippet"
+ max_chars = max(1, int(evidence_max_chars))
+ context_lines = max(0, int(evidence_context_lines))
+ try:
+ evidence_limit = int(limit)
+ except (TypeError, ValueError):
+ evidence_limit = len(results)
+ if evidence_limit <= 0:
+ evidence_limit = len(results)
+ for result in results[: min(len(results), evidence_limit)]:
+ evidence_text, evidence_source = self._build_result_evidence(
+ result=result,
+ query_terms=query_terms,
+ strategy=strategy,
+ max_chars=max_chars,
+ context_lines=context_lines,
+ )
+ result["evidence_text"] = evidence_text
+ result["evidence_source"] = evidence_source
+ result["evidence_chars"] = len(evidence_text)
+ except Exception as e:
+ logger.debug("Evidence extraction failed: %s", e)
+
# Metamemory: auto-log knowledge gap when search returns no results
if not results and self.config.metamemory.auto_log_gaps:
try:
@@ -2416,7 +4071,32 @@ def search(
except Exception as e:
logger.debug("Auto-gap logging failed: %s", e)
- return {"results": results[:limit]}
+ # Dhee: Self-evolution — record retrieval quality signal
+ if self.evolution_layer and results:
+ try:
+ self.evolution_layer.on_search_results(
+ query=query,
+ results=results[:limit],
+ user_id=user_id or "default",
+ )
+ except Exception as e:
+ logger.debug("Evolution search hook skipped: %s", e)
+
+ # Buddhi search hook: piggyback proactive signals (intentions, insights)
+ final_results = results[:limit]
+ if self.buddhi_layer and final_results:
+ try:
+ buddhi_signals = self.buddhi_layer.on_search(
+ query=query,
+ results=final_results,
+ user_id=user_id or "default",
+ )
+ if buddhi_signals:
+ return {"results": final_results, "buddhi": buddhi_signals}
+ except Exception as e:
+ logger.debug("Buddhi search hook skipped: %s", e)
+
+ return {"results": final_results}
# Stop words to exclude from echo boost term matching
_ECHO_STOP_WORDS = frozenset({
@@ -2478,6 +4158,199 @@ def _calculate_echo_boost(
# Cap boost at 0.3 (30% max increase)
return min(0.3, boost)
+ def _build_rerank_passage(
+ self,
+ *,
+ result: Dict[str, Any],
+ query_terms: set,
+ strategy: str,
+ max_chars: int,
+ context_lines: int,
+ ) -> str:
+ memory_text = str(result.get("memory", "") or "")
+ strategy = str(strategy or "full").strip().lower()
+ if strategy == "vector_text":
+ memory_id = str(result.get("id", "") or "")
+ vector_text = self._select_vector_text_for_memory(memory_id=memory_id, query_terms=query_terms)
+ if vector_text:
+ return self._truncate_rerank_text(vector_text, max_chars)
+ return self._truncate_rerank_text(memory_text, max_chars)
+ if strategy == "snippet":
+ return self._build_rerank_snippet(
+ memory_text=memory_text,
+ query_terms=query_terms,
+ max_chars=max_chars,
+ context_lines=context_lines,
+ )
+ return self._truncate_rerank_text(memory_text, max_chars)
+
+ def _build_result_evidence(
+ self,
+ *,
+ result: Dict[str, Any],
+ query_terms: set,
+ strategy: str,
+ max_chars: int,
+ context_lines: int,
+ ) -> Tuple[str, str]:
+ normalized_strategy = str(strategy or "vector_or_snippet").strip().lower()
+ if normalized_strategy not in {"vector_or_snippet", "vector_text", "snippet", "full"}:
+ normalized_strategy = "vector_or_snippet"
+
+ memory_text = str(result.get("memory", "") or "")
+ memory_id = str(result.get("id", "") or "")
+
+ # Minimum evidence size: if vector_text or snippet is too small relative
+ # to the full memory, fall through to a richer strategy to avoid losing context.
+ min_evidence_chars = min(300, len(memory_text) // 3) if memory_text else 0
+
+ if normalized_strategy in {"vector_or_snippet", "vector_text"}:
+ vector_text = self._select_vector_text_for_memory(memory_id=memory_id, query_terms=query_terms)
+ if vector_text and len(vector_text) >= min_evidence_chars:
+ return self._truncate_rerank_text(vector_text, max_chars), "vector_text"
+ if normalized_strategy == "vector_text":
+ # vector_text too small — fall back to full memory
+ return self._truncate_rerank_text(memory_text, max_chars), "memory"
+
+ if normalized_strategy in {"vector_or_snippet", "snippet"}:
+ snippet = self._build_rerank_snippet(
+ memory_text=memory_text,
+ query_terms=query_terms,
+ max_chars=max_chars,
+ context_lines=context_lines,
+ )
+ if snippet and len(snippet) >= min_evidence_chars:
+ return snippet, "snippet"
+
+ return self._truncate_rerank_text(memory_text, max_chars), "memory"
+
+ def _select_vector_text_for_memory(self, memory_id: str, query_terms: set) -> Optional[str]:
+ if not memory_id:
+ return None
+ try:
+ vector_nodes = self.vector_store.list(filters={"memory_id": memory_id})
+ except Exception as e:
+ logger.debug("Unable to list vector nodes for memory %s: %s", memory_id, e)
+ return None
+ if not vector_nodes:
+ return None
+
+ content_terms = {
+ term.lower()
+ for term in query_terms
+ if isinstance(term, str) and len(term) > 3 and term.lower() not in self._ECHO_STOP_WORDS
+ }
+ best_fact: Tuple[int, int, str] = (-1, -1, "")
+ best_text: Tuple[int, int, str] = (-1, -1, "")
+
+ for node in vector_nodes:
+ payload = getattr(node, "payload", None) or {}
+ if not isinstance(payload, dict):
+ continue
+
+ fact_text = payload.get("fact_text")
+ if isinstance(fact_text, str) and fact_text.strip():
+ cleaned_fact = fact_text.strip()
+ overlap = self._term_overlap_count(cleaned_fact, content_terms)
+ fact_rank = (overlap, len(cleaned_fact), cleaned_fact)
+ if fact_rank > best_fact:
+ best_fact = fact_rank
+
+ text_value = payload.get("text")
+ if isinstance(text_value, str) and text_value.strip():
+ cleaned_text = text_value.strip()
+ overlap = self._term_overlap_count(cleaned_text, content_terms)
+ text_rank = (overlap, len(cleaned_text), cleaned_text)
+ if text_rank > best_text:
+ best_text = text_rank
+
+ if best_fact[2]:
+ return best_fact[2]
+ if best_text[2]:
+ return best_text[2]
+ return None
+
+ @classmethod
+ def _build_rerank_snippet(
+ cls,
+ *,
+ memory_text: str,
+ query_terms: set,
+ max_chars: int,
+ context_lines: int,
+ ) -> str:
+ normalized_text = str(memory_text or "")
+ if not normalized_text.strip():
+ return ""
+
+ lines = [line.strip() for line in normalized_text.splitlines() if line.strip()]
+ if not lines:
+ return cls._truncate_rerank_text(normalized_text, max_chars)
+
+ header_prefixes = ("session date:", "user transcript:")
+ selected_indices = set()
+ for idx, line in enumerate(lines):
+ lowered = line.lower()
+ if lowered.startswith(header_prefixes):
+ selected_indices.add(idx)
+
+ content_terms = {
+ str(term).lower()
+ for term in query_terms
+ if isinstance(term, str) and len(term) > 3 and str(term).lower() not in cls._ECHO_STOP_WORDS
+ }
+
+ # Use at least 3 context lines around hits for better evidence quality
+ effective_context = max(context_lines, 3)
+
+ hit_found = False
+ if content_terms:
+ for idx, line in enumerate(lines):
+ lowered = line.lower()
+ if any(term in lowered for term in content_terms):
+ hit_found = True
+ start = max(0, idx - effective_context)
+ end = min(len(lines), idx + effective_context + 1)
+ selected_indices.update(range(start, end))
+
+ if not hit_found:
+ # No keyword hits — include broader coverage to avoid missing facts
+ if len(lines) <= 30:
+ # Short session: include everything
+ selected_indices.update(range(len(lines)))
+ else:
+ selected_indices.update(range(0, min(len(lines), 15)))
+ # Include middle section where conversational facts often appear
+ mid = len(lines) // 2
+ mid_start = max(0, mid - 5)
+ mid_end = min(len(lines), mid + 5)
+ selected_indices.update(range(mid_start, mid_end))
+ tail_start = max(0, len(lines) - 10)
+ selected_indices.update(range(tail_start, len(lines)))
+
+ ordered_lines = [lines[idx] for idx in sorted(selected_indices)]
+ snippet = "\n".join(ordered_lines)
+ return cls._truncate_rerank_text(snippet, max_chars)
+
+ @staticmethod
+ def _truncate_rerank_text(text: str, max_chars: int) -> str:
+ try:
+ limit = int(max_chars)
+ except (TypeError, ValueError):
+ limit = 3500
+ limit = max(1, limit)
+ normalized = str(text or "").strip()
+ if len(normalized) <= limit:
+ return normalized
+ return normalized[:limit].rstrip()
+
+ @staticmethod
+ def _term_overlap_count(text: str, terms: set) -> int:
+ if not terms:
+ return 0
+ lowered = str(text or "").lower()
+ return sum(1 for term in terms if term and term in lowered)
+
def _reecho_memory(self, memory_id: str) -> None:
"""Re-process a memory through deeper echo to strengthen it."""
memory = self.db.get_memory(memory_id)
@@ -2654,12 +4527,37 @@ def update(self, memory_id: str, data: Union[str, Dict[str, Any]]) -> Dict[str,
memory_id, e,
)
+ if success:
+ self._index_episodic_events_for_memory(
+ memory_id=memory_id,
+ user_id=memory.get("user_id"),
+ content=content,
+ metadata=metadata,
+ )
+ self._record_cost_counter(
+ phase="write",
+ user_id=memory.get("user_id"),
+ llm_calls=0.0,
+ input_tokens=0.0,
+ output_tokens=0.0,
+ embed_calls=1.0 if content_changed else 0.0,
+ )
+
return {"id": memory_id, "memory": content, "event": "UPDATE" if success else "ERROR"}
def delete(self, memory_id: str) -> Dict[str, Any]:
logger.info("Deleting memory %s (tombstone=%s)", memory_id, self.fadem_config.use_tombstone_deletion)
+ memory = self.db.get_memory(memory_id)
self.db.delete_memory(memory_id, use_tombstone=self.fadem_config.use_tombstone_deletion)
self._delete_vectors_for_memory(memory_id)
+ self._record_cost_counter(
+ phase="write",
+ user_id=(memory or {}).get("user_id"),
+ llm_calls=0.0,
+ input_tokens=0.0,
+ output_tokens=0.0,
+ embed_calls=0.0,
+ )
return {"id": memory_id, "deleted": True}
def delete_all(
@@ -2692,6 +4590,31 @@ def delete_all(
for memory in memories:
self.delete(memory["id"])
count += 1
+
+ # Clean up entity aggregates for benchmark isolation.
+ if hasattr(self.db, "delete_entity_aggregates_for_user") and user_id:
+ self.db.delete_entity_aggregates_for_user(user_id)
+
+ # Cascade-clean v3 structured tables.
+ # delete() handles per-memory cleanup, but tombstoned memories leave
+ # orphan rows. Belt-and-suspenders: purge by user_id via JOIN.
+ if user_id:
+ try:
+ with self.db._get_connection() as conn:
+ for table in ("engram_facts", "engram_context", "engram_scenes",
+ "engram_entities", "engram_links"):
+ col = "source_memory_id" if table == "engram_links" else "memory_id"
+ try:
+ conn.execute(
+ f"DELETE FROM {table} WHERE {col} IN "
+ f"(SELECT id FROM memories WHERE user_id = ?)",
+ (user_id,),
+ )
+ except Exception:
+ pass # Table may not exist yet
+ except Exception as e:
+ logger.debug("v3 table cleanup skipped: %s", e)
+
return {"deleted_count": count}
def history(self, memory_id: str) -> List[Dict[str, Any]]:
@@ -2888,6 +4811,31 @@ def _run_collapser():
)
homeostasis_stats = normalizer.run(user_id)
+ # Distillation: episodic → semantic consolidation (the "sleep cycle")
+ # This is the most impactful fusion operation per FadeMem ablation (53.7% F1 drop without it).
+ # Runs after decay so it works on surviving memories only.
+ distillation_stats = {}
+ if (
+ user_id
+ and self.distillation_config
+ and self.distillation_config.enable_distillation
+ and self.llm
+ ):
+ try:
+ distiller = ReplayDistiller(
+ db=self.db,
+ llm=self.llm,
+ config=self.distillation_config,
+ )
+ distillation_stats = distiller.run(
+ user_id=user_id,
+ memory_add_fn=self.add,
+ )
+ logger.info("Distillation: %s", distillation_stats)
+ except Exception as e:
+ logger.warning("Distillation failed: %s", e)
+ distillation_stats = {"error": str(e)}
+
self.db.log_decay(decayed, forgotten, promoted)
return {
"decayed": decayed,
@@ -2897,8 +4845,21 @@ def _run_collapser():
"interference": interference_stats,
"redundancy": redundancy_stats,
"homeostasis": homeostasis_stats,
+ "distillation": distillation_stats,
}
+ def sleep_cycle(self, user_id: str = "default") -> Dict[str, Any]:
+ """Run a full sleep cycle: decay + distillation + fusion.
+
+ Models the hippocampus-to-neocortex transfer in Complementary Learning
+ Systems theory. Call this periodically (e.g. daily) to:
+ 1. Decay weak memories (Ebbinghaus forgetting curve)
+ 2. Fuse redundant memories (compression without information loss)
+ 3. Distill episodic → semantic knowledge (consolidation)
+ 4. Enforce memory budgets (homeostasis)
+ """
+ return self.apply_decay(scope={"user_id": user_id})
+
def fuse_memories(self, memory_ids: List[str], user_id: Optional[str] = None) -> Dict[str, Any]:
memories = [self.db.get_memory(mid) for mid in memory_ids]
memories = [m for m in memories if m]
@@ -2923,6 +4884,155 @@ def fuse_memories(self, memory_ids: List[str], user_id: Optional[str] = None) ->
fused_id = result.get("results", [{}])[0].get("id") if result.get("results") else None
return {"fused_id": fused_id, "source_ids": memory_ids, "fused_memory": fused.content}
+ # ── Dhee: Cognition + Prospective Scenes ──
+
+ def think(
+ self,
+ question: str,
+ user_id: str = "default",
+ max_depth: Optional[int] = None,
+ ask_user_fn=None,
+ ):
+ """Cognitive decomposition loop — memory-grounded reasoning.
+
+ Decomposes the question, searches memory for each sub-question,
+ grounds facts, and synthesizes an answer from verified facts.
+ """
+ if not self.cognition_engine:
+ # Direct search if cognition engine not configured
+ return self.search(query=question, user_id=user_id)
+ return self.cognition_engine.think(
+ question=question,
+ user_id=user_id,
+ max_depth=max_depth,
+ ask_user_fn=ask_user_fn,
+ )
+
+ def get_prospective_scenes(
+ self,
+ user_id: str = "default",
+ now_iso: Optional[str] = None,
+ ) -> List[Dict[str, Any]]:
+ """Get predicted scenes that should be triggered now.
+
+ Returns upcoming events with relevant past context — the memory
+ engine proactively surfaces what you'll need before you ask.
+ """
+ if now_iso is None:
+ from datetime import datetime, timezone
+ now_iso = datetime.now(timezone.utc).isoformat()
+
+ try:
+ with self.db._get_connection() as conn:
+ rows = conn.execute(
+ """SELECT * FROM engram_prospective_scenes
+ WHERE user_id = ? AND status = 'predicted'
+ ORDER BY predicted_time ASC""",
+ (user_id,),
+ ).fetchall()
+
+ due_scenes = []
+ for row in rows:
+ predicted_time = row["predicted_time"]
+ trigger_hours = row["trigger_window_hours"] or 24
+ if predicted_time:
+ try:
+ from datetime import datetime as dt
+ predicted = dt.fromisoformat(predicted_time.replace("Z", "+00:00"))
+ now = dt.fromisoformat(now_iso.replace("Z", "+00:00"))
+ delta_hours = (predicted - now).total_seconds() / 3600
+ if 0 <= delta_hours <= trigger_hours:
+ scene_data = dict(row)
+ # Parse JSON fields
+ import json
+ for json_field in ["participants", "predicted_needs", "relevant_past_scene_ids"]:
+ val = scene_data.get(json_field, "[]")
+ if isinstance(val, str):
+ try:
+ scene_data[json_field] = json.loads(val)
+ except (json.JSONDecodeError, TypeError):
+ scene_data[json_field] = []
+
+ # Enrich with relevant past memories
+ past_ids = scene_data.get("relevant_past_scene_ids", [])
+ if past_ids:
+ past_memories = self.db.get_memories_bulk(past_ids)
+ scene_data["past_context"] = [
+ {"id": mid, "memory": m.get("memory", "")}
+ for mid, m in past_memories.items()
+ ]
+
+ due_scenes.append(scene_data)
+ # Mark as triggered
+ conn.execute(
+ "UPDATE engram_prospective_scenes SET status = 'triggered' WHERE id = ?",
+ (row["id"],),
+ )
+ except (ValueError, TypeError):
+ continue
+
+ return due_scenes
+ except Exception as e:
+ logger.debug("Prospective scene check failed: %s", e)
+ return []
+
+ def _store_prospective_scenes(
+ self,
+ scenes,
+ memory_id: str,
+ user_id: str,
+ ) -> None:
+ """Store prospective scenes (predicted future events) in DB."""
+ import json
+ import uuid
+ try:
+ with self.db._get_connection() as conn:
+ for scene in scenes:
+ scene_id = str(uuid.uuid4())
+
+ # Find relevant past scenes by searching for similar activities/participants
+ relevant_past_ids = []
+ if scene.participants or scene.event_type:
+ search_query = " ".join(scene.participants or [])
+ if scene.event_type:
+ search_query += f" {scene.event_type}"
+ if search_query.strip():
+ try:
+ past_results = self.search(
+ query=search_query, user_id=user_id, limit=5,
+ )
+ relevant_past_ids = [
+ r.get("id", "") for r in past_results.get("results", [])
+ if r.get("id")
+ ]
+ except Exception:
+ pass
+ scene.relevant_past_scene_ids = relevant_past_ids
+
+ conn.execute(
+ """INSERT INTO engram_prospective_scenes
+ (id, memory_id, user_id, predicted_time, trigger_window_hours,
+ event_type, participants, predicted_setting, predicted_needs,
+ relevant_past_scene_ids, status, prediction_basis)
+ VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)""",
+ (
+ scene_id,
+ memory_id,
+ user_id,
+ scene.predicted_time,
+ scene.trigger_window_hours,
+ scene.event_type,
+ json.dumps(scene.participants),
+ scene.predicted_setting,
+ json.dumps(scene.predicted_needs),
+ json.dumps(scene.relevant_past_scene_ids),
+ scene.status,
+ scene.prediction_basis,
+ ),
+ )
+ except Exception as e:
+ logger.debug("Failed to store prospective scene: %s", e)
+
def get_stats(self, user_id: Optional[str] = None, agent_id: Optional[str] = None) -> Dict[str, Any]:
memories = self.db.get_all_memories(user_id=user_id, agent_id=agent_id)
sml_count = sum(1 for m in memories if m.get("layer") == "sml")
@@ -2940,6 +5050,9 @@ def get_stats(self, user_id: Optional[str] = None, agent_id: Optional[str] = Non
else:
echo_stats["none"] += 1
+ write_cost = self.db.aggregate_cost_counters(phase="write", user_id=user_id)
+ query_cost = self.db.aggregate_cost_counters(phase="query", user_id=user_id)
+
return {
"total": len(memories),
"sml_count": sml_count,
@@ -2947,8 +5060,42 @@ def get_stats(self, user_id: Optional[str] = None, agent_id: Optional[str] = Non
"avg_strength": round(avg_strength, 3),
"echo_stats": echo_stats,
"echo_enabled": self.echo_config.enable_echo if self.echo_config else False,
+ "cost_counters": {
+ "write": write_cost,
+ "query": query_cost,
+ },
}
+ def snapshot_cost_baseline(self, *, output_path: str, user_id: Optional[str] = None) -> Dict[str, Any]:
+ """Persist write/query counter aggregates for guardrail baselining."""
+ write_cost = self.db.aggregate_cost_counters(phase="write", user_id=user_id)
+ query_cost = self.db.aggregate_cost_counters(phase="query", user_id=user_id)
+
+ write_samples = max(1, int(write_cost.get("samples", 0) or 0))
+ write_llm_calls_per_memory = float(write_cost.get("llm_calls", 0.0) or 0.0) / float(write_samples)
+ write_tokens_per_memory = (
+ float(write_cost.get("input_tokens", 0.0) or 0.0)
+ + float(write_cost.get("output_tokens", 0.0) or 0.0)
+ ) / float(write_samples)
+
+ payload = {
+ "generated_at_utc": datetime.now(timezone.utc).isoformat(),
+ "user_id": user_id,
+ "write": write_cost,
+ "query": query_cost,
+ "write_llm_calls_per_memory": round(write_llm_calls_per_memory, 6),
+ "write_tokens_per_memory": round(write_tokens_per_memory, 6),
+ }
+
+ out_path = str(output_path or "").strip()
+ if out_path:
+ out_dir = os.path.dirname(out_path)
+ if out_dir:
+ os.makedirs(out_dir, exist_ok=True)
+ with open(out_path, "w", encoding="utf-8") as f:
+ json.dump(payload, f, indent=2)
+ return payload
+
def promote(self, memory_id: str) -> Dict[str, Any]:
return {"success": self.db.update_memory(memory_id, {"layer": "lml"})}
@@ -3825,13 +5972,45 @@ def _update_profiles(
if not self.profile_processor or not user_id:
return
- updates = self.profile_processor.extract_profile_mentions(
+ updates: List[Any] = []
+ if hasattr(self.profile_processor, "extract_profile_mentions_from_speakers"):
+ try:
+ updates.extend(
+ self.profile_processor.extract_profile_mentions_from_speakers(
+ content=content,
+ metadata=metadata,
+ )
+ )
+ except Exception as e:
+ logger.debug("Speaker-based profile extraction failed: %s", e)
+
+ updates.extend(
+ self.profile_processor.extract_profile_mentions(
content=content,
metadata=metadata,
user_id=user_id,
+ )
)
+ # Merge duplicate profile updates before applying to reduce churn.
+ merged_updates: Dict[Tuple[str, str], Any] = {}
for update in updates:
+ key = (str(update.profile_name or "").strip(), str(update.profile_type or "").strip())
+ existing = merged_updates.get(key)
+ if existing is None:
+ merged_updates[key] = update
+ continue
+ for fact in list(getattr(update, "new_facts", []) or []):
+ if fact not in existing.new_facts:
+ existing.new_facts.append(fact)
+ for pref in list(getattr(update, "new_preferences", []) or []):
+ if pref not in existing.new_preferences:
+ existing.new_preferences.append(pref)
+ for rel in list(getattr(update, "new_relationships", []) or []):
+ if rel not in existing.new_relationships:
+ existing.new_relationships.append(rel)
+
+ for update in merged_updates.values():
self.profile_processor.apply_update(
profile_update=update,
memory_id=memory_id,
diff --git a/engram/memory/parallel.py b/dhee/memory/parallel.py
similarity index 100%
rename from engram/memory/parallel.py
rename to dhee/memory/parallel.py
diff --git a/engram/memory/projects.py b/dhee/memory/projects.py
similarity index 98%
rename from engram/memory/projects.py
rename to dhee/memory/projects.py
index 5c932cc..66d2935 100644
--- a/engram/memory/projects.py
+++ b/dhee/memory/projects.py
@@ -82,6 +82,7 @@ def create_project(
name: str,
color: str = "#6366f1",
description: str = "",
+ repo_path: str = "",
user_id: str = "default",
) -> Dict[str, Any]:
now = datetime.now(timezone.utc).isoformat()
@@ -90,6 +91,7 @@ def create_project(
"project_name": name,
"project_color": color,
"project_description": description,
+ "project_repo_path": repo_path,
"project_created_at": now,
"project_identifier": name[:3].upper(),
"project_issue_counter": 0,
@@ -103,6 +105,7 @@ def create_project(
"name": name,
"color": color,
"description": description,
+ "repo_path": repo_path,
"identifier": meta["project_identifier"],
"issue_counter": 0,
"created_at": now,
@@ -118,6 +121,7 @@ def list_projects(self, user_id: str = "default") -> List[Dict[str, Any]]:
"name": md.get("project_name", ""),
"color": md.get("project_color", "#6366f1"),
"description": md.get("project_description", ""),
+ "repo_path": md.get("project_repo_path", ""),
"identifier": md.get("project_identifier", ""),
"issue_counter": md.get("project_issue_counter", 0),
"created_at": md.get("project_created_at", m.get("created_at", "")),
@@ -136,6 +140,7 @@ def get_project(self, project_id: str) -> Optional[Dict[str, Any]]:
"name": md.get("project_name", ""),
"color": md.get("project_color", "#6366f1"),
"description": md.get("project_description", ""),
+ "repo_path": md.get("project_repo_path", ""),
"identifier": md.get("project_identifier", ""),
"issue_counter": md.get("project_issue_counter", 0),
"created_at": md.get("project_created_at", mem.get("created_at", "")),
@@ -153,6 +158,7 @@ def update_project(self, project_id: str, updates: Dict[str, Any]) -> Optional[D
"name": "project_name",
"color": "project_color",
"description": "project_description",
+ "repo_path": "project_repo_path",
}
for key, val in updates.items():
if key in field_map:
diff --git a/engram/memory/smart.py b/dhee/memory/smart.py
similarity index 95%
rename from engram/memory/smart.py
rename to dhee/memory/smart.py
index aaa84df..97c3b51 100644
--- a/engram/memory/smart.py
+++ b/dhee/memory/smart.py
@@ -12,9 +12,9 @@
import logging
from typing import Any, Dict, List, Optional
-from engram.configs.base import MemoryConfig
-from engram.memory.core import CoreMemory, _content_hash
-from engram.utils.factory import LLMFactory
+from dhee.configs.base import MemoryConfig
+from dhee.memory.core import CoreMemory, _content_hash
+from dhee.utils.factory import LLMFactory
logger = logging.getLogger(__name__)
@@ -58,7 +58,7 @@ def __init__(
@property
def echo_processor(self):
if self._echo_processor is None and self.echo_config.enable_echo:
- from engram.core.echo import EchoProcessor
+ from dhee.core.echo import EchoProcessor
self._echo_processor = EchoProcessor(
self.llm,
config={
@@ -71,7 +71,7 @@ def echo_processor(self):
@property
def category_processor(self):
if self._category_processor is None and self.category_config.enable_categories:
- from engram.core.category import CategoryProcessor
+ from dhee.core.category import CategoryProcessor
self._category_processor = CategoryProcessor(
llm=self.llm,
embedder=self.embedder,
@@ -90,7 +90,7 @@ def category_processor(self):
@property
def knowledge_graph(self):
if self._knowledge_graph is None and self.graph_config.enable_graph:
- from engram.core.graph import KnowledgeGraph
+ from dhee.core.graph import KnowledgeGraph
self._knowledge_graph = KnowledgeGraph(
llm=self.llm if self.graph_config.use_llm_extraction else None
)
@@ -100,7 +100,7 @@ def knowledge_graph(self):
def unified_enrichment(self):
enrichment_config = getattr(self.config, "enrichment", None)
if self._unified_enrichment is None and enrichment_config and enrichment_config.enable_unified:
- from engram.core.enrichment import UnifiedEnrichmentProcessor
+ from dhee.core.enrichment import UnifiedEnrichmentProcessor
self._unified_enrichment = UnifiedEnrichmentProcessor(
llm=self.llm,
echo_processor=self.echo_processor,
@@ -113,8 +113,8 @@ def unified_enrichment(self):
@property
def skill_store(self):
if self._skill_store is None and self.skill_config and self.skill_config.enable_skills:
- from engram.skills.discovery import discover_skill_dirs
- from engram.skills.store import SkillStore
+ from dhee.skills.discovery import discover_skill_dirs
+ from dhee.skills.store import SkillStore
skill_dirs = discover_skill_dirs()
self._skill_store = SkillStore(
skill_dirs=skill_dirs,
@@ -128,7 +128,7 @@ def skill_store(self):
@property
def skill_executor(self):
if self._skill_executor is None and self.skill_store is not None:
- from engram.skills.executor import SkillExecutor
+ from dhee.skills.executor import SkillExecutor
self._skill_executor = SkillExecutor(self.skill_store)
return self._skill_executor
@@ -160,7 +160,7 @@ def log_skill_outcome(
"""
if self.skill_store is None:
return {"error": "Skills not enabled"}
- from engram.skills.outcomes import OutcomeTracker, StepOutcome
+ from dhee.skills.outcomes import OutcomeTracker, StepOutcome
tracker = OutcomeTracker(self.skill_store)
parsed_step_outcomes = None
if step_outcomes:
@@ -207,7 +207,7 @@ def analyze_skill_gaps(
structure = skill.get_structure()
if structure is None:
return {"error": "Skill has no structural decomposition"}
- from engram.skills.structure import analyze_gaps
+ from dhee.skills.structure import analyze_gaps
report = analyze_gaps(structure, target_context, skill.confidence)
report.skill_id = skill_id
return report.to_dict()
@@ -222,7 +222,7 @@ def decompose_skill(self, skill_id: str) -> Dict[str, Any]:
if skill.get_structure() is not None:
return {"skill_id": skill_id, "status": "already_decomposed"}
- from engram.skills.structure import (
+ from dhee.skills.structure import (
SkillStructure,
extract_slots_heuristic,
extract_slots_llm,
@@ -277,7 +277,7 @@ def add(
ch = _content_hash(content)
existing = self.db.get_memory_by_content_hash(ch, user_id)
if existing:
- from engram.core.traces import boost_fast_trace
+ from dhee.core.traces import boost_fast_trace
self.db.increment_access(existing["id"])
if self.distillation_config and self.distillation_config.enable_multi_trace:
s_fast = existing.get("s_fast") or 0.0
@@ -299,7 +299,7 @@ def add(
effective_strength = initial_strength
if self.echo_processor and self.echo_config.enable_echo:
try:
- from engram.core.echo import EchoDepth
+ from dhee.core.echo import EchoDepth
depth_override = EchoDepth(echo_depth) if echo_depth else None
echo_result = self.echo_processor.process(content, depth=depth_override)
effective_strength = initial_strength * echo_result.strength_multiplier
@@ -343,7 +343,7 @@ def add(
logger.warning("Entity extraction failed: %s", e)
# Store via parent's DB logic, but with our enhanced data
- from engram.core.traces import initialize_traces
+ from dhee.core.traces import initialize_traces
import uuid
from datetime import datetime, timezone
diff --git a/engram/memory/tasks.py b/dhee/memory/tasks.py
similarity index 99%
rename from engram/memory/tasks.py
rename to dhee/memory/tasks.py
index bca317c..24ff746 100644
--- a/engram/memory/tasks.py
+++ b/dhee/memory/tasks.py
@@ -12,7 +12,7 @@
from datetime import datetime, timezone
from typing import Any, Dict, List, Optional
-from engram.configs.base import TaskConfig
+from dhee.configs.base import TaskConfig
logger = logging.getLogger(__name__)
diff --git a/engram/memory/utils.py b/dhee/memory/utils.py
similarity index 99%
rename from engram/memory/utils.py
rename to dhee/memory/utils.py
index 74fc938..ebd9673 100644
--- a/engram/memory/utils.py
+++ b/dhee/memory/utils.py
@@ -4,7 +4,7 @@
from copy import deepcopy
from typing import Any, Dict, Iterable, List, Optional, Tuple
-from engram.exceptions import FadeMemValidationError
+from dhee.exceptions import FadeMemValidationError
def normalize_messages(messages: Any) -> List[Dict[str, Any]]:
diff --git a/engram/observability.py b/dhee/observability.py
similarity index 100%
rename from engram/observability.py
rename to dhee/observability.py
diff --git a/engram/retrieval/__init__.py b/dhee/retrieval/__init__.py
similarity index 55%
rename from engram/retrieval/__init__.py
rename to dhee/retrieval/__init__.py
index 10ed676..49ed407 100644
--- a/engram/retrieval/__init__.py
+++ b/dhee/retrieval/__init__.py
@@ -1,10 +1,10 @@
"""Engram v2 retrieval components."""
try:
- from engram.retrieval.dual_search import DualSearchEngine
+ from dhee.retrieval.dual_search import DualSearchEngine
except ImportError:
DualSearchEngine = None
-from engram.retrieval.reranker import NvidiaReranker, create_reranker
+from dhee.retrieval.reranker import NvidiaReranker, create_reranker
__all__ = ["DualSearchEngine", "NvidiaReranker", "create_reranker"]
diff --git a/dhee/retrieval/reranker.py b/dhee/retrieval/reranker.py
new file mode 100644
index 0000000..7599f87
--- /dev/null
+++ b/dhee/retrieval/reranker.py
@@ -0,0 +1,252 @@
+"""Neural reranker for second-stage retrieval refinement.
+
+Uses a cross-encoder model to re-score (query, passage) pairs with full
+attention, producing much more accurate relevance scores than embedding
+cosine similarity alone.
+"""
+
+import logging
+import os
+import time
+from typing import Any, Dict, List, Optional
+
+import requests
+
+logger = logging.getLogger(__name__)
+
+
+class NvidiaReranker:
+ """NVIDIA NIM reranker using the /reranking endpoint."""
+
+ _DEFAULT_URL = (
+ "https://ai.api.nvidia.com/v1/retrieval/"
+ "nvidia/llama-3_2-nv-rerankqa-1b-v2/reranking"
+ )
+
+ def __init__(self, config: Optional[Dict[str, Any]] = None):
+ config = config or {}
+ self.model = config.get("model", "nvidia/llama-3.2-nv-rerankqa-1b-v2")
+ api_key_env = config.get("api_key_env", "NVIDIA_API_KEY")
+ self.api_key = config.get("api_key") or os.getenv(api_key_env)
+ if not self.api_key:
+ raise ValueError(
+ f"NVIDIA API key required for reranker. Set config['api_key'] or {api_key_env} env var."
+ )
+ # Build URL from model name: replace / with _ and dots with _
+ # e.g. nvidia/llama-3.2-nv-rerankqa-1b-v2 -> nvidia/llama-3_2-nv-rerankqa-1b-v2
+ model_path = self.model.replace(".", "_")
+ self.url = config.get(
+ "url",
+ f"https://ai.api.nvidia.com/v1/retrieval/{model_path}/reranking",
+ )
+ self.timeout = config.get("timeout", 30)
+ self.max_retries = config.get("max_retries", 2)
+ self.strict_schema = bool(config.get("strict_schema", True))
+
+ def rerank(
+ self,
+ query: str,
+ passages: List[str],
+ top_n: int = 0,
+ ) -> List[Dict[str, Any]]:
+ """Rerank passages against a query.
+
+ Args:
+ query: The search query.
+ passages: List of passage texts to rerank.
+ top_n: Number of top results to return (0 = return all, re-sorted).
+
+ Returns:
+ List of dicts with keys: index (original position), logit, text.
+ Sorted by logit descending.
+ """
+ if not passages:
+ return []
+ if len(passages) == 1:
+ return [{"index": 0, "logit": 0.0, "text": passages[0]}]
+
+ payload = {
+ "model": self.model,
+ "query": {"text": query},
+ "passages": [{"text": p} for p in passages],
+ }
+ if top_n > 0:
+ payload["top_n"] = top_n
+
+ headers = {
+ "Authorization": f"Bearer {self.api_key}",
+ "Content-Type": "application/json",
+ "Accept": "application/json",
+ }
+
+ last_exc = None
+ for attempt in range(self.max_retries + 1):
+ try:
+ t0 = time.monotonic()
+ resp = requests.post(
+ self.url,
+ json=payload,
+ headers=headers,
+ timeout=self.timeout,
+ )
+ elapsed_ms = (time.monotonic() - t0) * 1000
+ resp.raise_for_status()
+ data = resp.json()
+
+ rankings = data.get("rankings")
+ if rankings is None and isinstance(data.get("data"), dict):
+ rankings = data["data"].get("rankings")
+ if not isinstance(rankings, list) or not rankings:
+ msg = "Reranker response missing non-empty rankings list"
+ if self.strict_schema:
+ raise ValueError(msg)
+ logger.warning(msg)
+ return []
+
+ results = []
+ for r in rankings:
+ if not isinstance(r, dict):
+ if self.strict_schema:
+ raise ValueError(f"Invalid ranking row type: {type(r)}")
+ logger.warning("Skipping invalid ranking row type: %s", type(r))
+ continue
+
+ idx = r.get("index")
+ try:
+ idx = int(idx)
+ except (TypeError, ValueError):
+ if self.strict_schema:
+ raise ValueError(f"Invalid ranking index: {idx!r}")
+ logger.warning("Skipping ranking row with invalid index: %r", idx)
+ continue
+ if idx < 0 or idx >= len(passages):
+ if self.strict_schema:
+ raise ValueError(f"Ranking index out of range: {idx}")
+ logger.warning("Skipping ranking row with out-of-range index: %s", idx)
+ continue
+
+ score = r.get("logit")
+ if score is None:
+ score = r.get("score")
+ if score is None:
+ score = r.get("relevance_score")
+ if score is None:
+ if self.strict_schema:
+ raise ValueError("Ranking row missing logit/score/relevance_score")
+ logger.warning("Skipping ranking row without usable score field")
+ continue
+ try:
+ score = float(score)
+ except (TypeError, ValueError):
+ if self.strict_schema:
+ raise ValueError(f"Invalid score value for index {idx}: {score!r}")
+ logger.warning("Skipping ranking row with invalid score: %r", score)
+ continue
+
+ results.append({
+ "index": idx,
+ "logit": score,
+ "text": passages[idx] if idx < len(passages) else "",
+ })
+ if not results:
+ msg = "Reranker response produced no valid ranking rows"
+ if self.strict_schema:
+ raise ValueError(msg)
+ logger.warning(msg)
+ return []
+ results.sort(key=lambda x: x["logit"], reverse=True)
+ logger.debug(
+ "Reranked %d passages in %.0fms (top logit=%.2f)",
+ len(passages), elapsed_ms,
+ results[0]["logit"] if results else 0.0,
+ )
+ return results
+
+ except Exception as exc:
+ last_exc = exc
+ if attempt < self.max_retries:
+ delay = min(2 ** attempt, 4)
+ logger.warning(
+ "Reranker retry %d/%d after %ss: %s",
+ attempt + 1, self.max_retries, delay, exc,
+ )
+ time.sleep(delay)
+ else:
+ logger.error("Reranker failed after %d attempts: %s", self.max_retries + 1, exc)
+
+ raise RuntimeError(f"Reranker failed: {last_exc}") from last_exc
+
+
+class Qwen3Reranker:
+ """Local Qwen3-Reranker-0.6B via sentence-transformers cross-encoder.
+
+ 0.6B params, MTEB-R 65.80 (vs BGE 57.03). CPU-native, zero API cost.
+ """
+
+ def __init__(self, config: Optional[Dict[str, Any]] = None):
+ config = config or {}
+ self.model_name = config.get("model", "Qwen/Qwen3-Reranker-0.6B")
+ self.device = config.get("device", "cpu")
+ self._model = None
+
+ def _ensure_model(self):
+ if self._model is not None:
+ return
+ try:
+ from sentence_transformers import CrossEncoder
+ except ImportError:
+ raise ImportError(
+ "sentence-transformers is required for Qwen3Reranker. "
+ "Install with: pip install sentence-transformers"
+ )
+ logger.info("Loading Qwen3 reranker: %s", self.model_name)
+ self._model = CrossEncoder(self.model_name, device=self.device)
+ logger.info("Qwen3 reranker loaded")
+
+ def rerank(
+ self,
+ query: str,
+ passages: List[str],
+ top_n: int = 0,
+ ) -> List[Dict[str, Any]]:
+ """Rerank passages using local cross-encoder model."""
+ if not passages:
+ return []
+ if len(passages) == 1:
+ return [{"index": 0, "logit": 0.0, "text": passages[0]}]
+
+ self._ensure_model()
+
+ pairs = [(query, p) for p in passages]
+ t0 = time.monotonic()
+ scores = self._model.predict(pairs, show_progress_bar=False)
+ elapsed_ms = (time.monotonic() - t0) * 1000
+
+ results = [
+ {"index": i, "logit": float(score), "text": passages[i]}
+ for i, score in enumerate(scores)
+ ]
+ results.sort(key=lambda x: x["logit"], reverse=True)
+
+ if top_n > 0:
+ results = results[:top_n]
+
+ logger.debug(
+ "Qwen3 reranked %d passages in %.0fms (top logit=%.2f)",
+ len(passages), elapsed_ms,
+ results[0]["logit"] if results else 0.0,
+ )
+ return results
+
+
+def create_reranker(config: Optional[Dict[str, Any]] = None):
+ """Factory: create a reranker from config, or return None if disabled."""
+ if not config:
+ return None
+ provider = config.get("provider", "nvidia")
+ if provider == "nvidia":
+ return NvidiaReranker(config)
+ if provider == "qwen":
+ return Qwen3Reranker(config)
+ logger.warning("Unknown reranker provider: %s", provider)
+ return None
diff --git a/engram/simple.py b/dhee/simple.py
similarity index 96%
rename from engram/simple.py
rename to dhee/simple.py
index 88f76cf..25dc7f5 100644
--- a/engram/simple.py
+++ b/dhee/simple.py
@@ -4,7 +4,7 @@
interface for the Engram memory layer.
Usage:
- from engram import Engram
+ from dhee import Engram
memory = Engram() # Auto-configures based on environment
memory.add("User prefers Python over JavaScript", user_id="u123")
@@ -23,7 +23,7 @@
from pathlib import Path
from typing import Any, Dict, List, Optional, Union
-from engram.configs.base import (
+from dhee.configs.base import (
CategoryMemConfig,
EchoMemConfig,
EmbedderConfig,
@@ -32,7 +32,7 @@
MemoryConfig,
VectorStoreConfig,
)
-from engram.memory.main import Memory
+from dhee.memory.main import Memory
def _detect_provider() -> str:
@@ -55,11 +55,15 @@ def _has_api_key() -> bool:
def _get_data_dir() -> Path:
- """Get the data directory for Engram storage."""
- data_dir = os.environ.get("ENGRAM_DATA_DIR")
+ """Get the data directory for Dhee storage."""
+ data_dir = os.environ.get("DHEE_DATA_DIR") or os.environ.get("ENGRAM_DATA_DIR")
if data_dir:
return Path(data_dir)
- return Path.home() / ".engram"
+ dhee_dir = Path.home() / ".dhee"
+ engram_dir = Path.home() / ".engram"
+ if dhee_dir.is_dir() or not engram_dir.is_dir():
+ return dhee_dir
+ return engram_dir
class Engram:
@@ -69,7 +73,7 @@ class Engram:
with sensible defaults and auto-configuration.
Example:
- >>> from engram import Engram
+ >>> from dhee import Engram
>>> memory = Engram()
>>> memory.add("User prefers dark mode", user_id="user123")
>>> results = memory.search("UI preferences", user_id="user123")
diff --git a/engram/skills/__init__.py b/dhee/skills/__init__.py
similarity index 100%
rename from engram/skills/__init__.py
rename to dhee/skills/__init__.py
diff --git a/engram/skills/discovery.py b/dhee/skills/discovery.py
similarity index 81%
rename from engram/skills/discovery.py
rename to dhee/skills/discovery.py
index 7604ae8..ce2d34f 100644
--- a/engram/skills/discovery.py
+++ b/dhee/skills/discovery.py
@@ -9,25 +9,26 @@
import os
from typing import List, Optional, Tuple
-from engram.skills.schema import Skill
+from dhee.skills.schema import Skill
def discover_skill_dirs(repo_path: Optional[str] = None) -> List[str]:
"""Discover standard skill directories.
Returns list of directories that may contain SKILL.md files:
- 1. {repo}/.engram/skills/ (project-local skills)
- 2. ~/.engram/skills/ (global user skills)
+ 1. {repo}/.dhee/skills/ (project-local skills)
+ 2. ~/.dhee/skills/ (global user skills)
"""
dirs = []
# Project-local skills
if repo_path:
- local_dir = os.path.join(repo_path, ".engram", "skills")
+ local_dir = os.path.join(repo_path, ".dhee", "skills")
dirs.append(local_dir)
# Global user skills
- global_dir = os.path.join(os.path.expanduser("~"), ".engram", "skills")
+ from dhee.configs.base import _dhee_data_dir
+ global_dir = os.path.join(_dhee_data_dir(), "skills")
dirs.append(global_dir)
return dirs
diff --git a/engram/skills/executor.py b/dhee/skills/executor.py
similarity index 97%
rename from engram/skills/executor.py
rename to dhee/skills/executor.py
index d99b1aa..b7a814b 100644
--- a/engram/skills/executor.py
+++ b/dhee/skills/executor.py
@@ -12,8 +12,8 @@
from datetime import datetime, timezone
from typing import Any, Dict, List, Optional
-from engram.skills.schema import Skill
-from engram.skills.store import SkillStore
+from dhee.skills.schema import Skill
+from dhee.skills.store import SkillStore
logger = logging.getLogger(__name__)
@@ -176,7 +176,7 @@ def search_structural(
Decomposes query_steps into templates, then compares against
all cached skills that have structure.
"""
- from engram.skills.structure import (
+ from dhee.skills.structure import (
extract_slots_heuristic,
structural_similarity,
)
@@ -210,7 +210,7 @@ def _build_structural_recipe(
bindings: Dict[str, str],
) -> str:
"""Format a structured skill as injectable markdown with slot bindings."""
- from engram.skills.structure import SkillStructure
+ from dhee.skills.structure import SkillStructure
lines = [
f"## Skill: {skill.name} (Structural)",
@@ -257,6 +257,6 @@ def _analyze_gaps(
bindings: Dict[str, str],
) -> Dict[str, Any]:
"""Run gap analysis for a structural apply."""
- from engram.skills.structure import analyze_gaps
+ from dhee.skills.structure import analyze_gaps
report = analyze_gaps(structure, bindings, skill.confidence)
return report.to_dict()
diff --git a/engram/skills/hashing.py b/dhee/skills/hashing.py
similarity index 100%
rename from engram/skills/hashing.py
rename to dhee/skills/hashing.py
diff --git a/engram/skills/miner.py b/dhee/skills/miner.py
similarity index 97%
rename from engram/skills/miner.py
rename to dhee/skills/miner.py
index 7687e73..b86e446 100644
--- a/engram/skills/miner.py
+++ b/dhee/skills/miner.py
@@ -17,10 +17,10 @@
from datetime import datetime, timezone
from typing import Any, Dict, List, Optional
-from engram.skills.hashing import skill_signature_hash
-from engram.skills.schema import Skill, Trajectory
-from engram.skills.store import SkillStore
-from engram.skills.trajectory import TrajectoryStore
+from dhee.skills.hashing import skill_signature_hash
+from dhee.skills.schema import Skill, Trajectory
+from dhee.skills.store import SkillStore
+from dhee.skills.trajectory import TrajectoryStore
logger = logging.getLogger(__name__)
@@ -161,7 +161,7 @@ def _cluster_by_embedding(
self, trajectories: List[Trajectory]
) -> List[List[Trajectory]]:
"""Embedding-based clustering using cosine similarity."""
- from engram.utils.math import cosine_similarity
+ from dhee.utils.math import cosine_similarity
embeddings = []
for t in trajectories:
@@ -307,7 +307,7 @@ def _add_structure(self, skill: Skill, cluster: List[Trajectory]) -> Skill:
return skill
try:
- from engram.skills.structure import (
+ from dhee.skills.structure import (
SkillStructure,
extract_slots_heuristic,
extract_slots_llm,
diff --git a/engram/skills/outcomes.py b/dhee/skills/outcomes.py
similarity index 97%
rename from engram/skills/outcomes.py
rename to dhee/skills/outcomes.py
index 2f83a6b..9bd8d7e 100644
--- a/engram/skills/outcomes.py
+++ b/dhee/skills/outcomes.py
@@ -12,8 +12,8 @@
from datetime import datetime, timezone
from typing import Any, Dict, List, Optional
-from engram.skills.schema import Skill
-from engram.skills.store import SkillStore
+from dhee.skills.schema import Skill
+from dhee.skills.store import SkillStore
logger = logging.getLogger(__name__)
@@ -111,7 +111,7 @@ def log_outcome(
# Granular per-step feedback
step_updates = []
if step_outcomes and skill.structure is not None:
- from engram.skills.structure import SkillStructure
+ from dhee.skills.structure import SkillStructure
structure = SkillStructure.from_dict(skill.structure)
for so in step_outcomes:
if 0 <= so.step_index < len(structure.structured_steps):
diff --git a/engram/skills/schema.py b/dhee/skills/schema.py
similarity index 98%
rename from engram/skills/schema.py
rename to dhee/skills/schema.py
index c6d5e46..6f8b820 100644
--- a/engram/skills/schema.py
+++ b/dhee/skills/schema.py
@@ -13,7 +13,7 @@
import yaml
-from engram.skills.hashing import content_hash, skill_signature_hash, trajectory_hash
+from dhee.skills.hashing import content_hash, skill_signature_hash, trajectory_hash
@dataclass
@@ -48,7 +48,7 @@ def get_structure(self) -> Optional["SkillStructure"]:
"""Lazy-deserialize the structure field into a SkillStructure."""
if self.structure is None:
return None
- from engram.skills.structure import SkillStructure
+ from dhee.skills.structure import SkillStructure
return SkillStructure.from_dict(self.structure)
def set_structure(self, structure: "SkillStructure") -> None:
diff --git a/engram/skills/store.py b/dhee/skills/store.py
similarity index 98%
rename from engram/skills/store.py
rename to dhee/skills/store.py
index 9e82aae..35653c1 100644
--- a/engram/skills/store.py
+++ b/dhee/skills/store.py
@@ -10,7 +10,7 @@
import os
from typing import Any, Dict, List, Optional
-from engram.skills.schema import Skill
+from dhee.skills.schema import Skill
logger = logging.getLogger(__name__)
@@ -38,7 +38,8 @@ def __init__(
@property
def primary_dir(self) -> str:
"""Primary directory for saving new skills."""
- return self._skill_dirs[0] if self._skill_dirs else os.path.expanduser("~/.engram/skills")
+ from dhee.configs.base import _dhee_data_dir
+ return self._skill_dirs[0] if self._skill_dirs else os.path.join(_dhee_data_dir(), "skills")
def save(self, skill: Skill) -> str:
"""Write skill to filesystem and upsert into vector index."""
@@ -172,7 +173,7 @@ def search_structural(
min_similarity: float = 0.3,
) -> List[Skill]:
"""Search for skills by structural similarity to given steps."""
- from engram.skills.structure import (
+ from dhee.skills.structure import (
extract_slots_heuristic,
structural_similarity,
)
diff --git a/engram/skills/structure.py b/dhee/skills/structure.py
similarity index 99%
rename from engram/skills/structure.py
rename to dhee/skills/structure.py
index 5774588..312c14d 100644
--- a/engram/skills/structure.py
+++ b/dhee/skills/structure.py
@@ -116,7 +116,7 @@ def render_steps(self, bindings: Dict[str, str]) -> List[str]:
def compute_structural_signature(self) -> str:
"""Compute a hash that captures the recipe structure, ignoring slot values."""
- from engram.skills.hashing import structural_signature_hash
+ from dhee.skills.hashing import structural_signature_hash
self.structural_signature = structural_signature_hash(
step_templates=[s.template for s in self.structured_steps],
step_roles=[s.role for s in self.structured_steps],
diff --git a/engram/skills/trajectory.py b/dhee/skills/trajectory.py
similarity index 99%
rename from engram/skills/trajectory.py
rename to dhee/skills/trajectory.py
index 4bbb85d..5f2091a 100644
--- a/engram/skills/trajectory.py
+++ b/dhee/skills/trajectory.py
@@ -13,7 +13,7 @@
from datetime import datetime, timezone
from typing import Any, Dict, List, Optional
-from engram.skills.schema import Trajectory, TrajectoryStep
+from dhee.skills.schema import Trajectory, TrajectoryStep
logger = logging.getLogger(__name__)
diff --git a/dhee/teaching/__init__.py b/dhee/teaching/__init__.py
new file mode 100644
index 0000000..80309bf
--- /dev/null
+++ b/dhee/teaching/__init__.py
@@ -0,0 +1,17 @@
+"""Teaching primitives for Engram — concepts, student models, and teaching memory.
+
+Domain objects stored as Engram memories with ``memory_type`` + metadata dict,
+following the same pattern as ``engram.memory.tasks``.
+"""
+
+from dhee.teaching.config import TeachingConfig
+from dhee.teaching.concepts import ConceptStore
+from dhee.teaching.student_model import StudentModel
+from dhee.teaching.teaching_memory import TeachingMemory
+
+__all__ = [
+ "TeachingConfig",
+ "ConceptStore",
+ "StudentModel",
+ "TeachingMemory",
+]
diff --git a/dhee/teaching/concepts.py b/dhee/teaching/concepts.py
new file mode 100644
index 0000000..0f3ad5a
--- /dev/null
+++ b/dhee/teaching/concepts.py
@@ -0,0 +1,307 @@
+"""ConceptStore — curriculum concepts stored as Engram memories.
+
+Concepts are stored with ``memory_type="concept"`` under a shared
+``user_id`` (the curriculum namespace). Prerequisites and cross-subject
+links are represented via the knowledge graph (``RelationType.REQUIRES``
+and ``RelationType.RELATED_TO``).
+"""
+
+from __future__ import annotations
+
+import json
+import logging
+import uuid
+from typing import Any, Dict, List, Optional
+
+from dhee.teaching.config import TeachingConfig
+
+logger = logging.getLogger(__name__)
+
+
+class ConceptStore:
+ """CRUD and graph operations over curriculum concepts."""
+
+ def __init__(self, memory: "CoreMemory", config: TeachingConfig | None = None): # noqa: F821
+ self.memory = memory
+ self.config = config or TeachingConfig()
+ self._namespace = self.config.concept_namespace
+
+ # ------------------------------------------------------------------
+ # Create / update
+ # ------------------------------------------------------------------
+
+ def add_concept(
+ self,
+ concept_id: str,
+ name: str,
+ subject: str,
+ *,
+ difficulty: float = 0.5,
+ prerequisites: List[str] | None = None,
+ cross_subject_links: List[str] | None = None,
+ keywords: List[str] | None = None,
+ description: str = "",
+ ) -> Dict[str, Any]:
+ """Add a concept to the store (idempotent by ``concept_id``)."""
+
+ # Check for existing concept with same concept_id
+ existing = self._find_by_concept_id(concept_id)
+ if existing:
+ return existing
+
+ meta = {
+ "memory_type": "concept",
+ "concept_id": concept_id,
+ "subject": subject,
+ "difficulty": difficulty,
+ "prerequisites": prerequisites or [],
+ "cross_subject_links": cross_subject_links or [],
+ "keywords": keywords or [],
+ }
+
+ content = f"{name}: {description}" if description else name
+ result = self.memory.add(
+ content=content,
+ user_id=self._namespace,
+ metadata=meta,
+ categories=[f"concept/{subject}"],
+ )
+
+ mem_id = self._extract_id(result)
+ if not mem_id:
+ logger.warning("Failed to store concept %s", concept_id)
+ return {"error": "Failed to store concept"}
+
+ # Create prerequisite edges via knowledge graph
+ if prerequisites and hasattr(self.memory, "knowledge_graph"):
+ graph = self.memory.knowledge_graph
+ for prereq_id in prerequisites:
+ prereq = self._find_by_concept_id(prereq_id)
+ prereq_mem_id = prereq.get("memory_id") if prereq else None
+ if prereq_mem_id:
+ from dhee.core.graph import RelationType
+
+ graph.add_relationship(
+ source_id=mem_id,
+ target_id=prereq_mem_id,
+ relation_type=RelationType.REQUIRES,
+ metadata={"concept_link": True},
+ )
+
+ # Create cross-subject edges
+ if cross_subject_links and hasattr(self.memory, "knowledge_graph"):
+ graph = self.memory.knowledge_graph
+ for linked_id in cross_subject_links:
+ linked = self._find_by_concept_id(linked_id)
+ linked_mem_id = linked.get("memory_id") if linked else None
+ if linked_mem_id:
+ from dhee.core.graph import RelationType
+
+ graph.add_relationship(
+ source_id=mem_id,
+ target_id=linked_mem_id,
+ relation_type=RelationType.RELATED_TO,
+ metadata={"cross_subject": True},
+ )
+
+ return {
+ "memory_id": mem_id,
+ "concept_id": concept_id,
+ "name": name,
+ "subject": subject,
+ }
+
+ # ------------------------------------------------------------------
+ # Read
+ # ------------------------------------------------------------------
+
+ def get_concept(self, concept_id: str) -> Optional[Dict[str, Any]]:
+ """Retrieve a concept by its concept_id."""
+ return self._find_by_concept_id(concept_id)
+
+ def search_concepts(
+ self,
+ query: str,
+ subject: str | None = None,
+ limit: int = 10,
+ ) -> List[Dict[str, Any]]:
+ """Semantic search over concepts, optionally filtered by subject."""
+ results = self.memory.search(
+ query=query,
+ user_id=self._namespace,
+ limit=limit * 2,
+ )
+
+ concepts = []
+ for mem in results:
+ md = self._parse_metadata(mem)
+ if md.get("memory_type") != "concept":
+ continue
+ if subject and md.get("subject") != subject:
+ continue
+ concepts.append(self._format_concept(mem))
+ if len(concepts) >= limit:
+ break
+
+ return concepts
+
+ def get_prerequisites(
+ self,
+ concept_id: str,
+ depth: int = 2,
+ ) -> List[Dict[str, Any]]:
+ """Traverse prerequisite graph to the given depth."""
+ root = self._find_by_concept_id(concept_id)
+ if not root:
+ return []
+
+ root_mem_id = root.get("memory_id")
+ if not root_mem_id:
+ return []
+
+ # Try graph traversal first
+ if hasattr(self.memory, "knowledge_graph"):
+ from dhee.core.graph import RelationType
+
+ graph = self.memory.knowledge_graph
+ related = graph.get_related_memories(
+ root_mem_id,
+ relation_types=[RelationType.REQUIRES],
+ max_depth=depth,
+ )
+ prereqs = []
+ for rel in related:
+ target_id = rel.get("target_id") or rel.get("memory_id")
+ if target_id:
+ mem = self.memory.get(target_id)
+ if mem:
+ prereqs.append(self._format_concept(mem))
+ return prereqs
+
+ # Fallback: use metadata-based prerequisites
+ md = self._parse_metadata(root)
+ prereq_ids = md.get("prerequisites", [])
+ prereqs = []
+ for pid in prereq_ids:
+ c = self._find_by_concept_id(pid)
+ if c:
+ prereqs.append(c)
+ return prereqs
+
+ def get_cross_subject_links(
+ self,
+ concept_id: str,
+ ) -> List[Dict[str, Any]]:
+ """Find concepts linked across subjects."""
+ root = self._find_by_concept_id(concept_id)
+ if not root:
+ return []
+
+ root_mem_id = root.get("memory_id")
+ if not root_mem_id:
+ return []
+
+ if hasattr(self.memory, "knowledge_graph"):
+ from dhee.core.graph import RelationType
+
+ graph = self.memory.knowledge_graph
+ related = graph.get_related_memories(
+ root_mem_id,
+ relation_types=[RelationType.RELATED_TO],
+ max_depth=1,
+ )
+ links = []
+ for rel in related:
+ target_id = rel.get("target_id") or rel.get("memory_id")
+ if target_id:
+ mem = self.memory.get(target_id)
+ if mem:
+ links.append(self._format_concept(mem))
+ return links
+
+ # Fallback
+ md = self._parse_metadata(root)
+ linked_ids = md.get("cross_subject_links", [])
+ return [c for pid in linked_ids if (c := self._find_by_concept_id(pid))]
+
+ def link_concepts_cross_subject(
+ self,
+ concept_a_id: str,
+ concept_b_id: str,
+ ) -> bool:
+ """Create a cross-subject edge between two concepts."""
+ a = self._find_by_concept_id(concept_a_id)
+ b = self._find_by_concept_id(concept_b_id)
+ if not a or not b:
+ return False
+
+ a_mem_id = a.get("memory_id")
+ b_mem_id = b.get("memory_id")
+ if not a_mem_id or not b_mem_id:
+ return False
+
+ if hasattr(self.memory, "knowledge_graph"):
+ from dhee.core.graph import RelationType
+
+ self.memory.knowledge_graph.add_relationship(
+ source_id=a_mem_id,
+ target_id=b_mem_id,
+ relation_type=RelationType.RELATED_TO,
+ metadata={"cross_subject": True},
+ )
+ return True
+
+ return False
+
+ # ------------------------------------------------------------------
+ # Helpers
+ # ------------------------------------------------------------------
+
+ def _find_by_concept_id(self, concept_id: str) -> Optional[Dict[str, Any]]:
+ """Find concept memory by concept_id in metadata."""
+ if hasattr(self.memory, "db") and hasattr(self.memory.db, "get_all_memories"):
+ memories = self.memory.db.get_all_memories(
+ user_id=self._namespace,
+ memory_type="concept",
+ limit=500,
+ )
+ for mem in memories:
+ md = self._parse_metadata(mem)
+ if md.get("concept_id") == concept_id:
+ return self._format_concept(mem)
+ return None
+
+ @staticmethod
+ def _extract_id(result: Dict[str, Any]) -> Optional[str]:
+ if isinstance(result, dict):
+ results = result.get("results", [])
+ if results and isinstance(results, list):
+ first = results[0]
+ return first.get("id") or first.get("memory_id")
+ return result.get("id") or result.get("memory_id")
+ return None
+
+ @staticmethod
+ def _parse_metadata(mem: Dict[str, Any]) -> Dict[str, Any]:
+ md = mem.get("metadata", {})
+ if isinstance(md, str):
+ try:
+ md = json.loads(md)
+ except (json.JSONDecodeError, TypeError):
+ md = {}
+ return md
+
+ @classmethod
+ def _format_concept(cls, mem: Dict[str, Any]) -> Dict[str, Any]:
+ md = cls._parse_metadata(mem)
+ return {
+ "memory_id": mem.get("id"),
+ "concept_id": md.get("concept_id", ""),
+ "name": mem.get("content", "").split(":")[0].strip(),
+ "subject": md.get("subject", ""),
+ "difficulty": md.get("difficulty", 0.5),
+ "prerequisites": md.get("prerequisites", []),
+ "cross_subject_links": md.get("cross_subject_links", []),
+ "keywords": md.get("keywords", []),
+ "strength": mem.get("strength", 1.0),
+ }
diff --git a/dhee/teaching/config.py b/dhee/teaching/config.py
new file mode 100644
index 0000000..152c8c6
--- /dev/null
+++ b/dhee/teaching/config.py
@@ -0,0 +1,27 @@
+"""Configuration for teaching primitives."""
+
+from __future__ import annotations
+
+from pydantic import BaseModel, field_validator
+
+
+class TeachingConfig(BaseModel):
+ """Configuration for the teaching memory subsystem."""
+
+ enable_teaching: bool = False # Off by default (backward compat)
+ concept_namespace: str = "sensai_curriculum"
+ mastery_initial_score: float = 0.35
+ mastery_increment: float = 0.08
+ mastery_decrement_on_misconception: float = -0.15
+ weak_concept_threshold: float = 0.45
+ mastered_concept_threshold: float = 0.70
+
+ @field_validator(
+ "mastery_initial_score",
+ "mastery_increment",
+ "weak_concept_threshold",
+ "mastered_concept_threshold",
+ )
+ @classmethod
+ def _clamp_unit_float(cls, v: float) -> float:
+ return min(1.0, max(0.0, float(v)))
diff --git a/dhee/teaching/student_model.py b/dhee/teaching/student_model.py
new file mode 100644
index 0000000..3c5346c
--- /dev/null
+++ b/dhee/teaching/student_model.py
@@ -0,0 +1,372 @@
+"""StudentModel — per-student profile and concept mastery via Engram.
+
+Profiles are stored as ``memory_type="student_profile"`` and per-concept
+mastery as ``memory_type="concept_mastery"``. FadeMem handles mastery
+decay naturally: accessing a concept mastery memory boosts its strength
+(spaced repetition).
+"""
+
+from __future__ import annotations
+
+import json
+import logging
+from datetime import datetime, timezone
+from typing import Any, Dict, List, Optional
+
+from dhee.teaching.config import TeachingConfig
+
+logger = logging.getLogger(__name__)
+
+
+class StudentModel:
+ """Per-student learning profile and concept mastery tracker."""
+
+ def __init__(self, memory: "CoreMemory", config: TeachingConfig | None = None): # noqa: F821
+ self.memory = memory
+ self.config = config or TeachingConfig()
+
+ # ------------------------------------------------------------------
+ # Profile
+ # ------------------------------------------------------------------
+
+ def get_or_create_profile(self, student_id: str) -> Dict[str, Any]:
+ """Get or create a student learning profile."""
+ existing = self._find_profile(student_id)
+ if existing:
+ return existing
+
+ now = datetime.now(timezone.utc).isoformat()
+ meta = {
+ "memory_type": "student_profile",
+ "student_id": student_id,
+ "learning_style": "unknown",
+ "interests": [],
+ "goals": [],
+ "effective_analogies": [],
+ "created_at": now,
+ "updated_at": now,
+ }
+
+ content = f"Student profile for {student_id}"
+ result = self.memory.add(
+ content=content,
+ user_id=student_id,
+ metadata=meta,
+ categories=["student/profile"],
+ )
+
+ mem_id = self._extract_id(result)
+ return {
+ "memory_id": mem_id,
+ "student_id": student_id,
+ "learning_style": "unknown",
+ "interests": [],
+ "goals": [],
+ "effective_analogies": [],
+ }
+
+ def update_profile(
+ self,
+ student_id: str,
+ updates: Dict[str, Any],
+ ) -> Dict[str, Any]:
+ """Merge updates into the student profile."""
+ profile_mem = self._find_profile_raw(student_id)
+ if not profile_mem:
+ profile = self.get_or_create_profile(student_id)
+ profile_mem = self._find_profile_raw(student_id)
+ if not profile_mem:
+ return profile
+
+ md = self._parse_metadata(profile_mem)
+ mem_id = profile_mem.get("id")
+
+ # Merge updates
+ for key, value in updates.items():
+ if key in ("interests", "goals", "effective_analogies") and isinstance(value, list):
+ existing = md.get(key, [])
+ merged = list(dict.fromkeys(existing + value)) # dedup, preserve order
+ md[key] = merged
+ else:
+ md[key] = value
+
+ md["updated_at"] = datetime.now(timezone.utc).isoformat()
+
+ if hasattr(self.memory, "db") and hasattr(self.memory.db, "update_memory"):
+ self.memory.db.update_memory(mem_id, {"metadata": json.dumps(md)})
+
+ return self._format_profile({"id": mem_id, "metadata": md})
+
+ # ------------------------------------------------------------------
+ # Mastery
+ # ------------------------------------------------------------------
+
+ def get_mastery(self, student_id: str, concept_id: str) -> float:
+ """Get current mastery score. Accessing boosts strength (spaced repetition)."""
+ mastery_mem = self._find_mastery_raw(student_id, concept_id)
+ if not mastery_mem:
+ return self.config.mastery_initial_score
+
+ md = self._parse_metadata(mastery_mem)
+ score = md.get("mastery_score", self.config.mastery_initial_score)
+
+ # Access the memory to trigger FadeMem strength boost
+ mem_id = mastery_mem.get("id")
+ if mem_id and hasattr(self.memory, "db"):
+ self.memory.db.increment_access(mem_id)
+
+ return score
+
+ def update_mastery(
+ self,
+ student_id: str,
+ concept_id: str,
+ score_delta: float,
+ ) -> float:
+ """Update mastery score by delta. Returns new score."""
+ mastery_mem = self._find_mastery_raw(student_id, concept_id)
+
+ if not mastery_mem:
+ # Create new mastery record
+ new_score = max(0.0, min(1.0, self.config.mastery_initial_score + score_delta))
+ now = datetime.now(timezone.utc).isoformat()
+ meta = {
+ "memory_type": "concept_mastery",
+ "student_id": student_id,
+ "concept_id": concept_id,
+ "mastery_score": new_score,
+ "history": [{"delta": score_delta, "score": new_score, "at": now}],
+ "created_at": now,
+ "updated_at": now,
+ }
+ self.memory.add(
+ content=f"Mastery: {student_id} / {concept_id} = {new_score:.2f}",
+ user_id=student_id,
+ metadata=meta,
+ categories=["student/mastery"],
+ )
+ return new_score
+
+ md = self._parse_metadata(mastery_mem)
+ old_score = md.get("mastery_score", self.config.mastery_initial_score)
+ new_score = max(0.0, min(1.0, old_score + score_delta))
+
+ now = datetime.now(timezone.utc).isoformat()
+ history = md.get("history", [])
+ history.append({"delta": score_delta, "score": new_score, "at": now})
+ md["mastery_score"] = new_score
+ md["history"] = history[-50:] # keep last 50 entries
+ md["updated_at"] = now
+
+ mem_id = mastery_mem.get("id")
+ if mem_id and hasattr(self.memory, "db"):
+ self.memory.db.update_memory(mem_id, {"metadata": json.dumps(md)})
+ self.memory.db.increment_access(mem_id)
+
+ return new_score
+
+ def get_weak_concepts(
+ self,
+ student_id: str,
+ threshold: float | None = None,
+ ) -> List[Dict[str, Any]]:
+ """Get concepts below the weak threshold."""
+ threshold = threshold or self.config.weak_concept_threshold
+ all_mastery = self._get_all_mastery(student_id)
+ return [
+ m for m in all_mastery
+ if m["mastery_score"] < threshold
+ ]
+
+ def get_decay_risk_concepts(self, student_id: str) -> List[Dict[str, Any]]:
+ """Get concepts whose mastery is decaying below the promotion threshold."""
+ all_mastery = self._get_all_mastery(student_id)
+ results = []
+ for m in all_mastery:
+ mem = self._find_mastery_raw(student_id, m["concept_id"])
+ if not mem:
+ continue
+ # Check if Engram strength is decaying
+ strength = mem.get("strength", 1.0)
+ if strength < 0.5 and m["mastery_score"] >= self.config.weak_concept_threshold:
+ results.append({**m, "decay_strength": strength})
+ return results
+
+ def record_misconception(
+ self,
+ student_id: str,
+ concept_id: str,
+ misconception: str,
+ correction: str,
+ ) -> None:
+ """Record a misconception and apply mastery penalty."""
+ self.update_mastery(
+ student_id, concept_id, self.config.mastery_decrement_on_misconception
+ )
+
+ meta = {
+ "memory_type": "misconception",
+ "student_id": student_id,
+ "concept_id": concept_id,
+ "misconception": misconception,
+ "correction": correction,
+ "recorded_at": datetime.now(timezone.utc).isoformat(),
+ }
+ self.memory.add(
+ content=f"Misconception ({concept_id}): {misconception} -> Correction: {correction}",
+ user_id=student_id,
+ metadata=meta,
+ categories=["student/misconception"],
+ )
+
+ def record_effective_analogy(
+ self,
+ student_id: str,
+ concept_id: str,
+ analogy: str,
+ success: bool = True,
+ ) -> None:
+ """Record an analogy that worked (or didn't) for a student."""
+ meta = {
+ "memory_type": "effective_analogy",
+ "student_id": student_id,
+ "concept_id": concept_id,
+ "analogy": analogy,
+ "success": success,
+ "recorded_at": datetime.now(timezone.utc).isoformat(),
+ }
+ self.memory.add(
+ content=f"Analogy ({concept_id}): {analogy} [{'success' if success else 'failed'}]",
+ user_id=student_id,
+ metadata=meta,
+ categories=["student/analogy"],
+ )
+
+ # Also update profile with effective analogies
+ if success:
+ self.update_profile(student_id, {
+ "effective_analogies": [{"concept_id": concept_id, "analogy": analogy}],
+ })
+
+ def get_effective_analogies(
+ self,
+ student_id: str,
+ concept_id: str | None = None,
+ ) -> List[Dict[str, Any]]:
+ """Retrieve effective analogies for a student, optionally filtered by concept."""
+ if not hasattr(self.memory, "db"):
+ return []
+
+ memories = self.memory.db.get_all_memories(
+ user_id=student_id,
+ memory_type="effective_analogy",
+ limit=100,
+ )
+
+ results = []
+ for mem in memories:
+ md = self._parse_metadata(mem)
+ if md.get("memory_type") != "effective_analogy":
+ continue
+ if not md.get("success", True):
+ continue
+ if concept_id and md.get("concept_id") != concept_id:
+ continue
+ results.append({
+ "concept_id": md.get("concept_id", ""),
+ "analogy": md.get("analogy", ""),
+ "success": md.get("success", True),
+ })
+ return results
+
+ # ------------------------------------------------------------------
+ # Helpers
+ # ------------------------------------------------------------------
+
+ def _find_profile(self, student_id: str) -> Optional[Dict[str, Any]]:
+ raw = self._find_profile_raw(student_id)
+ return self._format_profile(raw) if raw else None
+
+ def _find_profile_raw(self, student_id: str) -> Optional[Dict[str, Any]]:
+ if not hasattr(self.memory, "db"):
+ return None
+ memories = self.memory.db.get_all_memories(
+ user_id=student_id,
+ memory_type="student_profile",
+ limit=5,
+ )
+ for mem in memories:
+ md = self._parse_metadata(mem)
+ if md.get("memory_type") == "student_profile":
+ return mem
+ return None
+
+ def _find_mastery_raw(
+ self, student_id: str, concept_id: str
+ ) -> Optional[Dict[str, Any]]:
+ if not hasattr(self.memory, "db"):
+ return None
+ memories = self.memory.db.get_all_memories(
+ user_id=student_id,
+ memory_type="concept_mastery",
+ limit=500,
+ )
+ for mem in memories:
+ md = self._parse_metadata(mem)
+ if (
+ md.get("memory_type") == "concept_mastery"
+ and md.get("concept_id") == concept_id
+ ):
+ return mem
+ return None
+
+ def _get_all_mastery(self, student_id: str) -> List[Dict[str, Any]]:
+ if not hasattr(self.memory, "db"):
+ return []
+ memories = self.memory.db.get_all_memories(
+ user_id=student_id,
+ memory_type="concept_mastery",
+ limit=500,
+ )
+ results = []
+ for mem in memories:
+ md = self._parse_metadata(mem)
+ if md.get("memory_type") == "concept_mastery":
+ results.append({
+ "concept_id": md.get("concept_id", ""),
+ "mastery_score": md.get("mastery_score", self.config.mastery_initial_score),
+ "memory_id": mem.get("id"),
+ })
+ return results
+
+ @staticmethod
+ def _extract_id(result: Dict[str, Any]) -> Optional[str]:
+ if isinstance(result, dict):
+ results = result.get("results", [])
+ if results and isinstance(results, list):
+ first = results[0]
+ return first.get("id") or first.get("memory_id")
+ return result.get("id") or result.get("memory_id")
+ return None
+
+ @staticmethod
+ def _parse_metadata(mem: Dict[str, Any]) -> Dict[str, Any]:
+ md = mem.get("metadata", {})
+ if isinstance(md, str):
+ try:
+ md = json.loads(md)
+ except (json.JSONDecodeError, TypeError):
+ md = {}
+ return md
+
+ @classmethod
+ def _format_profile(cls, mem: Dict[str, Any]) -> Dict[str, Any]:
+ md = cls._parse_metadata(mem)
+ return {
+ "memory_id": mem.get("id"),
+ "student_id": md.get("student_id", ""),
+ "learning_style": md.get("learning_style", "unknown"),
+ "interests": md.get("interests", []),
+ "goals": md.get("goals", []),
+ "effective_analogies": md.get("effective_analogies", []),
+ }
diff --git a/dhee/teaching/teaching_memory.py b/dhee/teaching/teaching_memory.py
new file mode 100644
index 0000000..33b9e21
--- /dev/null
+++ b/dhee/teaching/teaching_memory.py
@@ -0,0 +1,255 @@
+"""TeachingMemory — specialized memory types for the teaching domain.
+
+Stores lesson episodes, concept explanations, comprehension checks,
+misconceptions, and effective analogies as Engram memories.
+"""
+
+from __future__ import annotations
+
+import json
+import logging
+from datetime import datetime, timezone
+from typing import Any, Dict, List, Optional
+
+from dhee.teaching.config import TeachingConfig
+
+logger = logging.getLogger(__name__)
+
+
+class TeachingMemory:
+ """Domain-specific memory storage for teaching interactions."""
+
+ def __init__(self, memory: "CoreMemory", config: TeachingConfig | None = None): # noqa: F821
+ self.memory = memory
+ self.config = config or TeachingConfig()
+
+ # ------------------------------------------------------------------
+ # Lesson episodes
+ # ------------------------------------------------------------------
+
+ def store_lesson_episode(
+ self,
+ student_id: str,
+ concept_id: str,
+ lesson_summary: str,
+ *,
+ segments_completed: int = 0,
+ session_id: str = "",
+ topic_name: str = "",
+ subject: str = "",
+ ) -> Dict[str, Any]:
+ """Store a completed (or partial) lesson episode."""
+ now = datetime.now(timezone.utc).isoformat()
+ meta = {
+ "memory_type": "lesson_episode",
+ "student_id": student_id,
+ "concept_id": concept_id,
+ "session_id": session_id,
+ "segments_completed": segments_completed,
+ "topic_name": topic_name,
+ "subject": subject,
+ "recorded_at": now,
+ }
+
+ content = f"Lesson ({topic_name or concept_id}): {lesson_summary}"
+ result = self.memory.add(
+ content=content,
+ user_id=student_id,
+ metadata=meta,
+ categories=[f"lesson/{subject}" if subject else "lesson"],
+ )
+
+ mem_id = self._extract_id(result)
+ return {"memory_id": mem_id, **meta}
+
+ # ------------------------------------------------------------------
+ # Concept explanations
+ # ------------------------------------------------------------------
+
+ def store_concept_explanation(
+ self,
+ student_id: str,
+ concept_id: str,
+ approach: str,
+ explanation_text: str,
+ success: bool = True,
+ ) -> Dict[str, Any]:
+ """Store an explanation attempt for a concept."""
+ now = datetime.now(timezone.utc).isoformat()
+ meta = {
+ "memory_type": "concept_explanation",
+ "student_id": student_id,
+ "concept_id": concept_id,
+ "approach": approach,
+ "success": success,
+ "recorded_at": now,
+ }
+
+ content = f"Explanation ({concept_id}, {approach}): {explanation_text[:500]}"
+ result = self.memory.add(
+ content=content,
+ user_id=student_id,
+ metadata=meta,
+ categories=["teaching/explanation"],
+ )
+
+ mem_id = self._extract_id(result)
+ return {"memory_id": mem_id, **meta}
+
+ # ------------------------------------------------------------------
+ # Comprehension checks
+ # ------------------------------------------------------------------
+
+ def store_comprehension_check(
+ self,
+ student_id: str,
+ concept_id: str,
+ question: str,
+ student_answer: str,
+ evaluation: Dict[str, Any],
+ ) -> Dict[str, Any]:
+ """Store a comprehension check result."""
+ now = datetime.now(timezone.utc).isoformat()
+ level = evaluation.get("level", "unknown")
+ meta = {
+ "memory_type": "comprehension_check",
+ "student_id": student_id,
+ "concept_id": concept_id,
+ "question": question,
+ "student_answer": student_answer,
+ "level": level,
+ "confidence": evaluation.get("confidence", 0.5),
+ "misconception": evaluation.get("misconception"),
+ "recorded_at": now,
+ }
+
+ content = (
+ f"Check ({concept_id}): Q: {question[:200]} | "
+ f"A: {student_answer[:200]} | Level: {level}"
+ )
+ result = self.memory.add(
+ content=content,
+ user_id=student_id,
+ metadata=meta,
+ categories=["teaching/check"],
+ )
+
+ mem_id = self._extract_id(result)
+ return {"memory_id": mem_id, **meta}
+
+ # ------------------------------------------------------------------
+ # Search
+ # ------------------------------------------------------------------
+
+ def search_past_explanations(
+ self,
+ student_id: str,
+ concept_id: str,
+ limit: int = 5,
+ ) -> List[Dict[str, Any]]:
+ """Find past explanations for a concept with a specific student."""
+ results = self.memory.search(
+ query=f"explanation {concept_id}",
+ user_id=student_id,
+ limit=limit * 2,
+ )
+
+ explanations = []
+ for mem in results:
+ md = self._parse_metadata(mem)
+ if (
+ md.get("memory_type") == "concept_explanation"
+ and md.get("concept_id") == concept_id
+ ):
+ explanations.append({
+ "memory_id": mem.get("id"),
+ "approach": md.get("approach", ""),
+ "success": md.get("success", True),
+ "content": mem.get("content", ""),
+ "strength": mem.get("strength", 1.0),
+ })
+ if len(explanations) >= limit:
+ break
+
+ return explanations
+
+ def search_student_history(
+ self,
+ student_id: str,
+ query: str,
+ limit: int = 10,
+ ) -> List[Dict[str, Any]]:
+ """Search all teaching memories for a student (grounding context)."""
+ results = self.memory.search(
+ query=query,
+ user_id=student_id,
+ limit=limit,
+ )
+
+ return [
+ {
+ "memory_id": mem.get("id"),
+ "content": mem.get("content", ""),
+ "memory_type": self._parse_metadata(mem).get("memory_type", ""),
+ "strength": mem.get("strength", 1.0),
+ }
+ for mem in results
+ ]
+
+ def get_student_misconceptions(
+ self,
+ student_id: str,
+ concept_id: str | None = None,
+ limit: int = 20,
+ ) -> List[Dict[str, Any]]:
+ """Retrieve recorded misconceptions for a student."""
+ if not hasattr(self.memory, "db"):
+ return []
+
+ memories = self.memory.db.get_all_memories(
+ user_id=student_id,
+ memory_type="misconception",
+ limit=limit * 2,
+ )
+
+ results = []
+ for mem in memories:
+ md = self._parse_metadata(mem)
+ if md.get("memory_type") != "misconception":
+ continue
+ if concept_id and md.get("concept_id") != concept_id:
+ continue
+ results.append({
+ "concept_id": md.get("concept_id", ""),
+ "misconception": md.get("misconception", ""),
+ "correction": md.get("correction", ""),
+ "recorded_at": md.get("recorded_at", ""),
+ })
+ if len(results) >= limit:
+ break
+
+ return results
+
+ # ------------------------------------------------------------------
+ # Helpers
+ # ------------------------------------------------------------------
+
+ @staticmethod
+ def _extract_id(result: Dict[str, Any]) -> Optional[str]:
+ if isinstance(result, dict):
+ results = result.get("results", [])
+ if results and isinstance(results, list):
+ first = results[0]
+ return first.get("id") or first.get("memory_id")
+ return result.get("id") or result.get("memory_id")
+ return None
+
+ @staticmethod
+ def _parse_metadata(mem: Dict[str, Any]) -> Dict[str, Any]:
+ md = mem.get("metadata", {})
+ if isinstance(md, str):
+ try:
+ md = json.loads(md)
+ except (json.JSONDecodeError, TypeError):
+ md = {}
+ return md
diff --git a/engram/embeddings/__init__.py b/dhee/utils/__init__.py
similarity index 100%
rename from engram/embeddings/__init__.py
rename to dhee/utils/__init__.py
diff --git a/engram/utils/factory.py b/dhee/utils/factory.py
similarity index 58%
rename from engram/utils/factory.py
rename to dhee/utils/factory.py
index 1afc80e..24102db 100644
--- a/engram/utils/factory.py
+++ b/dhee/utils/factory.py
@@ -7,21 +7,46 @@
logger = logging.getLogger(__name__)
+def _dhee_model_available() -> bool:
+ """Check if local DheeModel GGUF is available."""
+ try:
+ from dhee.llms.dhee import is_dhee_model_available
+ return is_dhee_model_available()
+ except ImportError:
+ return False
+
+
+def _qwen_embedder_available() -> bool:
+ """Check if Qwen3-Embedding can be loaded locally."""
+ try:
+ import sentence_transformers
+ return True
+ except ImportError:
+ return False
+
+
def _detect_provider() -> Tuple[str, str]:
"""Auto-detect the best available LLM/embedder provider.
Returns (embedder_provider, llm_provider) tuple.
Detection order:
- 1. GEMINI_API_KEY / GOOGLE_API_KEY set → gemini
- 2. OPENAI_API_KEY set → openai
- 3. Ollama running on localhost:11434 → ollama
- 4. Fall back to simple embedder + mock LLM (zero-config, no API key)
+ 1. Local DheeModel GGUF available → (qwen, dhee) — zero API cost
+ 2. OPENAI_API_KEY set → openai (recommended)
+ 3. GEMINI_API_KEY / GOOGLE_API_KEY set → gemini
+ 4. Ollama running on localhost:11434 → ollama
+ 5. NVIDIA_API_KEY set → nvidia (internal)
+ 6. Fall back to simple embedder + mock LLM (zero-config, no API key)
"""
- if os.environ.get("GEMINI_API_KEY") or os.environ.get("GOOGLE_API_KEY"):
- return ("gemini", "gemini")
+ # Prioritize local model — zero API cost
+ if _dhee_model_available():
+ embedder = "qwen" if _qwen_embedder_available() else "simple"
+ return (embedder, "dhee")
+
if os.environ.get("OPENAI_API_KEY"):
return ("openai", "openai")
+ if os.environ.get("GEMINI_API_KEY") or os.environ.get("GOOGLE_API_KEY"):
+ return ("gemini", "gemini")
# Try Ollama
try:
@@ -32,6 +57,10 @@ def _detect_provider() -> Tuple[str, str]:
except Exception:
pass
+ # NVIDIA (internal — not customer-documented)
+ if os.environ.get("NVIDIA_API_KEY") or os.environ.get("NVIDIA_QWEN_API_KEY"):
+ return ("nvidia", "nvidia")
+
# Zero-config fallback: hash embedder + mock LLM
return ("simple", "mock")
@@ -40,25 +69,29 @@ class EmbedderFactory:
@classmethod
def create(cls, provider: str, config: Dict[str, Any]):
if provider == "gemini":
- from engram.embeddings.gemini import GeminiEmbedder
+ from dhee.embeddings.gemini import GeminiEmbedder
return GeminiEmbedder(config)
if provider == "simple":
- from engram.embeddings.simple import SimpleEmbedder
+ from dhee.embeddings.simple import SimpleEmbedder
return SimpleEmbedder(config)
if provider == "openai":
- from engram.embeddings.openai import OpenAIEmbedder
+ from dhee.embeddings.openai import OpenAIEmbedder
return OpenAIEmbedder(config)
if provider == "ollama":
- from engram.embeddings.ollama import OllamaEmbedder
+ from dhee.embeddings.ollama import OllamaEmbedder
return OllamaEmbedder(config)
if provider == "nvidia":
- from engram.embeddings.nvidia import NvidiaEmbedder
+ from dhee.embeddings.nvidia import NvidiaEmbedder
return NvidiaEmbedder(config)
+ if provider == "qwen":
+ from dhee.embeddings.qwen import QwenEmbedder
+
+ return QwenEmbedder(config)
raise ValueError(f"Unsupported embedder provider: {provider}")
@classmethod
@@ -68,6 +101,8 @@ def create_auto(cls, config: Optional[Dict[str, Any]] = None):
cfg = dict(config or {})
if embedder_provider == "simple":
cfg.setdefault("embedding_dims", 384)
+ elif embedder_provider == "qwen":
+ cfg.setdefault("embedding_dims", 1024)
return cls.create(embedder_provider, cfg)
@@ -75,25 +110,29 @@ class LLMFactory:
@classmethod
def create(cls, provider: str, config: Dict[str, Any]):
if provider == "gemini":
- from engram.llms.gemini import GeminiLLM
+ from dhee.llms.gemini import GeminiLLM
return GeminiLLM(config)
if provider == "mock":
- from engram.llms.mock import MockLLM
+ from dhee.llms.mock import MockLLM
return MockLLM(config)
if provider == "openai":
- from engram.llms.openai import OpenAILLM
+ from dhee.llms.openai import OpenAILLM
return OpenAILLM(config)
if provider == "ollama":
- from engram.llms.ollama import OllamaLLM
+ from dhee.llms.ollama import OllamaLLM
return OllamaLLM(config)
if provider == "nvidia":
- from engram.llms.nvidia import NvidiaLLM
+ from dhee.llms.nvidia import NvidiaLLM
return NvidiaLLM(config)
+ if provider == "dhee":
+ from dhee.llms.dhee import DheeLLM
+
+ return DheeLLM(config)
raise ValueError(f"Unsupported LLM provider: {provider}")
@classmethod
@@ -107,24 +146,24 @@ class VectorStoreFactory:
@classmethod
def create(cls, provider: str, config: Dict[str, Any]):
if provider == "memory":
- from engram.vector_stores.memory import InMemoryVectorStore
+ from dhee.vector_stores.memory import InMemoryVectorStore
return InMemoryVectorStore(config)
if provider == "sqlite_vec":
- from engram.vector_stores.sqlite_vec import SqliteVecStore
+ from dhee.vector_stores.sqlite_vec import SqliteVecStore
return SqliteVecStore(config)
if provider == "zvec":
try:
- from engram.vector_stores.zvec_store import ZvecStore
+ from dhee.vector_stores.zvec_store import ZvecStore
return ZvecStore(config)
except ImportError:
logger.warning("zvec not installed, falling back to sqlite_vec")
try:
- from engram.vector_stores.sqlite_vec import SqliteVecStore
+ from dhee.vector_stores.sqlite_vec import SqliteVecStore
return SqliteVecStore(config)
except ImportError:
logger.warning("sqlite_vec not installed, falling back to in-memory")
- from engram.vector_stores.memory import InMemoryVectorStore
+ from dhee.vector_stores.memory import InMemoryVectorStore
return InMemoryVectorStore(config)
raise ValueError(f"Unsupported vector store provider: {provider}")
diff --git a/engram/utils/math.py b/dhee/utils/math.py
similarity index 96%
rename from engram/utils/math.py
rename to dhee/utils/math.py
index 6997d27..f67e52e 100644
--- a/engram/utils/math.py
+++ b/dhee/utils/math.py
@@ -1,7 +1,7 @@
"""Vector math — Rust-powered, no fallbacks."""
from typing import List, Optional
-from engram_accel import (
+from dhee_accel import (
cosine_similarity as _rs_cosine,
cosine_similarity_batch as _rs_cosine_batch,
)
diff --git a/engram/utils/prompts.py b/dhee/utils/prompts.py
similarity index 100%
rename from engram/utils/prompts.py
rename to dhee/utils/prompts.py
diff --git a/engram/utils/repo_identity.py b/dhee/utils/repo_identity.py
similarity index 100%
rename from engram/utils/repo_identity.py
rename to dhee/utils/repo_identity.py
diff --git a/engram/llms/__init__.py b/dhee/vector_stores/__init__.py
similarity index 100%
rename from engram/llms/__init__.py
rename to dhee/vector_stores/__init__.py
diff --git a/engram/vector_stores/base.py b/dhee/vector_stores/base.py
similarity index 100%
rename from engram/vector_stores/base.py
rename to dhee/vector_stores/base.py
diff --git a/engram/vector_stores/memory.py b/dhee/vector_stores/memory.py
similarity index 95%
rename from engram/vector_stores/memory.py
rename to dhee/vector_stores/memory.py
index 303dbeb..65c428b 100644
--- a/engram/vector_stores/memory.py
+++ b/dhee/vector_stores/memory.py
@@ -4,9 +4,9 @@
import uuid
from typing import Any, Dict, List, Optional
-from engram.memory.utils import matches_filters
-from engram.utils.math import cosine_similarity, cosine_similarity_batch
-from engram.vector_stores.base import MemoryResult, VectorStoreBase
+from dhee.memory.utils import matches_filters
+from dhee.utils.math import cosine_similarity, cosine_similarity_batch
+from dhee.vector_stores.base import MemoryResult, VectorStoreBase
class InMemoryVectorStore(VectorStoreBase):
diff --git a/engram/vector_stores/sqlite_vec.py b/dhee/vector_stores/sqlite_vec.py
similarity index 98%
rename from engram/vector_stores/sqlite_vec.py
rename to dhee/vector_stores/sqlite_vec.py
index 7f6f73e..ee26bc0 100644
--- a/engram/vector_stores/sqlite_vec.py
+++ b/dhee/vector_stores/sqlite_vec.py
@@ -17,8 +17,8 @@
import uuid
from typing import Any, Dict, List, Optional
-from engram.memory.utils import matches_filters
-from engram.vector_stores.base import MemoryResult, VectorStoreBase
+from dhee.memory.utils import matches_filters
+from dhee.vector_stores.base import MemoryResult, VectorStoreBase
logger = logging.getLogger(__name__)
@@ -46,9 +46,10 @@ def __init__(self, config: Optional[Dict[str, Any]] = None):
or config.get("embedding_dims")
or 1536
)
+ from dhee.configs.base import _dhee_data_dir
db_path = config.get(
"path",
- os.path.join(os.path.expanduser("~"), ".engram", "sqlite_vec.db"),
+ os.path.join(_dhee_data_dir(), "sqlite_vec.db"),
)
db_dir = os.path.dirname(db_path)
if db_dir:
diff --git a/engram/vector_stores/zvec_store.py b/dhee/vector_stores/zvec_store.py
similarity index 64%
rename from engram/vector_stores/zvec_store.py
rename to dhee/vector_stores/zvec_store.py
index 4ef886d..f4ba919 100644
--- a/engram/vector_stores/zvec_store.py
+++ b/dhee/vector_stores/zvec_store.py
@@ -1,7 +1,7 @@
"""zvec vector store implementation.
-Uses zvec (Rust-based) for HNSW vector similarity search with cosine distance.
-Directory-based collections at ~/.engram/zvec/ by default.
+Uses zvec 0.2.0 (Rust-based) for HNSW vector similarity search with cosine distance.
+Directory-based collections at ~/.dhee/zvec/ by default.
"""
from __future__ import annotations
@@ -13,37 +13,37 @@
import uuid
from typing import Any, Dict, List, Optional
-from engram.memory.utils import matches_filters
-from engram.vector_stores.base import MemoryResult, VectorStoreBase
+from dhee.memory.utils import matches_filters
+from dhee.vector_stores.base import MemoryResult, VectorStoreBase
logger = logging.getLogger(__name__)
# Promoted scalar fields stored natively in zvec for efficient filtering
_PROMOTED_FIELDS = {"user_id", "agent_id"}
+_VECTOR_FIELD_NAME = "embedding"
+
def _build_filter_string(filters: Dict[str, Any]) -> Optional[str]:
"""Translate a dict of filters into zvec SQL-like filter syntax.
- zvec supports: field == 'value', field != 'value', AND/OR grouping.
- We only translate promoted scalar fields; remaining filters are applied
- post-search via matches_filters().
+ zvec 0.2.0 uses single = for equality (SQL style).
"""
parts = []
for key, value in filters.items():
if key not in _PROMOTED_FIELDS:
continue
if isinstance(value, str):
- parts.append(f"{key} == '{value}'")
+ parts.append(f"{key} = '{value}'")
elif isinstance(value, (int, float)):
- parts.append(f"{key} == {value}")
+ parts.append(f"{key} = {value}")
if not parts:
return None
return " AND ".join(parts)
class ZvecStore(VectorStoreBase):
- """Vector store backed by zvec (Rust HNSW engine)."""
+ """Vector store backed by zvec 0.2.0 (Rust HNSW engine)."""
def __init__(self, config: Optional[Dict[str, Any]] = None):
config = config or {}
@@ -55,9 +55,10 @@ def __init__(self, config: Optional[Dict[str, Any]] = None):
or config.get("embedding_dims")
or 1536
)
+ from dhee.configs.base import _dhee_data_dir
db_path = config.get(
"path",
- os.path.join(os.path.expanduser("~"), ".engram", "zvec"),
+ os.path.join(_dhee_data_dir(), "zvec"),
)
os.makedirs(db_path, exist_ok=True)
self._db_path = db_path
@@ -77,30 +78,36 @@ def _ensure_collection(self, name: str, vector_size: int):
"""Open or create a zvec collection with HNSW index."""
col_path = self._collection_path(name)
- schema = {
- "dims": vector_size,
- "metric": "cosine",
- "fields": {
- "user_id": "string",
- "agent_id": "string",
- "payload_json": "string",
- "uuid": "string",
- },
- }
-
+ # Try opening existing collection first
try:
- col = self._zvec.Collection.open(col_path)
+ col = self._zvec.open(col_path)
return col
except Exception:
pass
+ # Create new collection with schema
+ schema = self._zvec.CollectionSchema(
+ name=name,
+ fields=[
+ self._zvec.FieldSchema("uuid", self._zvec.DataType.STRING),
+ self._zvec.FieldSchema("user_id", self._zvec.DataType.STRING),
+ self._zvec.FieldSchema("agent_id", self._zvec.DataType.STRING),
+ self._zvec.FieldSchema("payload_json", self._zvec.DataType.STRING),
+ ],
+ vectors=self._zvec.VectorSchema(
+ _VECTOR_FIELD_NAME,
+ data_type=self._zvec.DataType.VECTOR_FP32,
+ dimension=vector_size,
+ index_param=self._zvec.HnswIndexParam(metric_type=self._zvec.MetricType.COSINE),
+ ),
+ )
+
try:
- col = self._zvec.Collection.create(col_path, schema)
+ col = self._zvec.create_and_open(col_path, schema)
return col
except Exception:
- # Collection may have been created by another process
- col = self._zvec.Collection.open(col_path)
- return col
+ # Another process may have created it
+ return self._zvec.open(col_path)
def create_col(self, name: str, vector_size: int, distance: str = "cosine") -> None:
self._check_open()
@@ -127,33 +134,15 @@ def insert(
)
with self._lock:
+ docs = []
for vector_id, vector, payload in zip(ids, vectors, payloads):
- # Extract promoted fields from payload
user_id = str(payload.get("user_id", ""))
agent_id = str(payload.get("agent_id", ""))
-
- # Remaining payload as JSON
payload_json = json.dumps(payload, default=str)
- # Check if UUID already exists (upsert semantics)
- try:
- existing = self._collection.search(
- vector=vector,
- limit=1,
- filter=f"uuid == '{vector_id}'",
- )
- if existing and len(existing) > 0:
- # Delete existing entry, then re-insert
- for entry in existing:
- try:
- self._collection.delete(entry["id"])
- except Exception:
- pass
- except Exception:
- pass
-
- self._collection.insert(
- vector=vector,
+ doc = self._zvec.Doc(
+ id=vector_id,
+ vectors={_VECTOR_FIELD_NAME: vector},
fields={
"uuid": vector_id,
"user_id": user_id,
@@ -161,6 +150,22 @@ def insert(
"payload_json": payload_json,
},
)
+ docs.append(doc)
+
+ try:
+ self._collection.upsert(docs)
+ except Exception:
+ # Fallback: insert one by one
+ for doc in docs:
+ try:
+ self._collection.upsert(doc)
+ except Exception as e:
+ logger.warning("zvec upsert failed for %s: %s", doc.id, e)
+ # Flush to make data immediately searchable
+ try:
+ self._collection.flush()
+ except Exception:
+ pass
def search(
self,
@@ -171,7 +176,6 @@ def search(
) -> List[MemoryResult]:
self._check_open()
- # Over-fetch when post-filtering is needed
has_non_promoted = filters and any(
k not in _PROMOTED_FIELDS for k in filters
)
@@ -181,35 +185,35 @@ def search(
with self._lock:
try:
+ vq = self._zvec.VectorQuery(_VECTOR_FIELD_NAME, vector=vectors)
kwargs: Dict[str, Any] = {
- "vector": vectors,
- "limit": fetch_limit,
+ "vectors": vq,
+ "topk": fetch_limit,
}
if zvec_filter:
kwargs["filter"] = zvec_filter
- raw_results = self._collection.search(**kwargs)
+ raw_results = self._collection.query(**kwargs)
except Exception as e:
logger.warning("zvec search failed: %s", e)
return []
results = []
- for item in raw_results:
- fields = item.get("fields", {})
+ for doc in raw_results:
payload: Dict[str, Any] = {}
try:
- payload = json.loads(fields.get("payload_json", "{}"))
+ pj = doc.field("payload_json") if doc.has_field("payload_json") else ""
+ payload = json.loads(pj or "{}")
except (json.JSONDecodeError, TypeError):
pass
- # Post-filter on non-promoted fields
if has_non_promoted and not matches_filters(payload, filters):
continue
- score = float(item.get("score", 0.0))
+ score = float(doc.score) if doc.score is not None else 0.0
results.append(
MemoryResult(
- id=fields.get("uuid", ""),
+ id=doc.field("uuid") if doc.has_field("uuid") else doc.id,
score=score,
payload=payload,
)
@@ -221,15 +225,8 @@ def delete(self, vector_id: str) -> None:
self._check_open()
with self._lock:
try:
- # Find by uuid field
- # Use a dummy vector search with filter to find the internal id
- results = self._collection.search(
- vector=[0.0] * self.vector_size,
- limit=1,
- filter=f"uuid == '{vector_id}'",
- )
- for entry in results:
- self._collection.delete(entry["id"])
+ self._collection.delete(vector_id)
+ self._collection.flush()
except Exception as e:
logger.warning("zvec delete failed for %s: %s", vector_id, e)
@@ -242,37 +239,31 @@ def update(
self._check_open()
with self._lock:
try:
- # Find existing entry
- results = self._collection.search(
- vector=[0.0] * self.vector_size,
- limit=1,
- filter=f"uuid == '{vector_id}'",
- )
- if not results:
+ # Fetch existing doc
+ fetched = self._collection.fetch(vector_id)
+ if not fetched or vector_id not in fetched:
return
- entry = results[0]
- old_fields = entry.get("fields", {})
+ existing = fetched[vector_id]
+ old_fields = existing.get("fields", {})
old_payload = {}
try:
old_payload = json.loads(old_fields.get("payload_json", "{}"))
except (json.JSONDecodeError, TypeError):
pass
- # Merge payload
if payload is not None:
old_payload.update(payload)
- # Delete old entry
- self._collection.delete(entry["id"])
-
- # Re-insert with updated data
- use_vector = vector if vector is not None else entry.get("vector", [0.0] * self.vector_size)
+ use_vector = vector if vector is not None else (
+ existing.get("vectors", {}).get(_VECTOR_FIELD_NAME, [0.0] * self.vector_size)
+ )
user_id = str(old_payload.get("user_id", old_fields.get("user_id", "")))
agent_id = str(old_payload.get("agent_id", old_fields.get("agent_id", "")))
- self._collection.insert(
- vector=use_vector,
+ doc = self._zvec.Doc(
+ id=vector_id,
+ vectors={_VECTOR_FIELD_NAME: use_vector},
fields={
"uuid": vector_id,
"user_id": user_id,
@@ -280,6 +271,8 @@ def update(
"payload_json": json.dumps(old_payload, default=str),
},
)
+ self._collection.upsert(doc)
+ self._collection.flush()
except Exception as e:
logger.warning("zvec update failed for %s: %s", vector_id, e)
@@ -287,20 +280,21 @@ def get(self, vector_id: str) -> Optional[MemoryResult]:
self._check_open()
with self._lock:
try:
- results = self._collection.search(
- vector=[0.0] * self.vector_size,
- limit=1,
- filter=f"uuid == '{vector_id}'",
- )
- if not results:
+ fetched = self._collection.fetch(vector_id)
+ if not fetched or vector_id not in fetched:
return None
- fields = results[0].get("fields", {})
+ existing = fetched[vector_id]
+ fields = existing.get("fields", {})
payload = {}
try:
payload = json.loads(fields.get("payload_json", "{}"))
except (json.JSONDecodeError, TypeError):
pass
- return MemoryResult(id=fields.get("uuid", vector_id), score=0.0, payload=payload)
+ return MemoryResult(
+ id=fields.get("uuid", vector_id),
+ score=0.0,
+ payload=payload,
+ )
except Exception:
return None
@@ -319,17 +313,28 @@ def delete_col(self) -> None:
import shutil
col_path = self._collection_path(self.collection_name)
with self._lock:
+ if self._collection is not None:
+ try:
+ self._collection.destroy()
+ except Exception:
+ pass
self._collection = None
if os.path.exists(col_path):
shutil.rmtree(col_path)
def col_info(self) -> Dict[str, Any]:
self._check_open()
- return {
+ info: Dict[str, Any] = {
"name": self.collection_name,
"vector_size": self.vector_size,
"path": self._collection_path(self.collection_name),
}
+ try:
+ stats = self._collection.stats
+ info["doc_count"] = stats.doc_count if hasattr(stats, "doc_count") else None
+ except Exception:
+ pass
+ return info
def list(
self,
@@ -346,23 +351,26 @@ def list(
with self._lock:
try:
+ vq = self._zvec.VectorQuery(
+ _VECTOR_FIELD_NAME, vector=[0.0] * self.vector_size
+ )
kwargs: Dict[str, Any] = {
- "vector": [0.0] * self.vector_size,
- "limit": effective_limit * 3 if has_non_promoted else effective_limit,
+ "vectors": vq,
+ "topk": effective_limit * 3 if has_non_promoted else effective_limit,
}
if zvec_filter:
kwargs["filter"] = zvec_filter
- raw_results = self._collection.search(**kwargs)
+ raw_results = self._collection.query(**kwargs)
except Exception as e:
logger.warning("zvec list failed: %s", e)
return []
results = []
- for item in raw_results:
- fields = item.get("fields", {})
+ for doc in raw_results:
payload: Dict[str, Any] = {}
try:
- payload = json.loads(fields.get("payload_json", "{}"))
+ pj = doc.field("payload_json") if doc.has_field("payload_json") else ""
+ payload = json.loads(pj or "{}")
except (json.JSONDecodeError, TypeError):
pass
@@ -371,7 +379,7 @@ def list(
results.append(
MemoryResult(
- id=fields.get("uuid", ""),
+ id=doc.field("uuid") if doc.has_field("uuid") else doc.id,
score=0.0,
payload=payload,
)
diff --git a/dhee_shared/__init__.py b/dhee_shared/__init__.py
new file mode 100644
index 0000000..04e4bda
--- /dev/null
+++ b/dhee_shared/__init__.py
@@ -0,0 +1 @@
+"""Lightweight shared helpers for Dhee/Engram packages."""
diff --git a/dhee_shared/model_paths.py b/dhee_shared/model_paths.py
new file mode 100644
index 0000000..fe7efd9
--- /dev/null
+++ b/dhee_shared/model_paths.py
@@ -0,0 +1,63 @@
+"""Helpers for locating local Dhee model artifacts."""
+
+from __future__ import annotations
+
+import os
+from pathlib import Path
+from typing import Iterable, Optional
+
+
+_DEFAULT_MODEL_DIR = Path.home() / ".dhee" / "models"
+_PREFERRED_MODEL_NAMES = (
+ "dhee-qwen3.5-2b-q4_k_m.gguf",
+ "dhee-qwen3.5-0.8b-q4_k_m.gguf",
+)
+
+
+def get_default_model_dir() -> str:
+ """Return the default directory used for local GGUF artifacts."""
+ return str(_DEFAULT_MODEL_DIR)
+
+
+def iter_preferred_model_paths(model_dir: Optional[str] = None) -> Iterable[Path]:
+ """Yield preferred model filenames in priority order."""
+ base_dir = Path(model_dir) if model_dir else _DEFAULT_MODEL_DIR
+ for name in _PREFERRED_MODEL_NAMES:
+ yield base_dir / name
+
+
+def resolve_model_path(
+ explicit_path: Optional[str] = None,
+ model_dir: Optional[str] = None,
+) -> str:
+ """Resolve the best local model path.
+
+ Priority:
+ 1. Explicit model path, unless it is empty or "auto"
+ 2. `DHEE_MODEL_PATH` environment variable
+ 3. Preferred built-in filenames (2B first, then 0.8B)
+ 4. Most recently modified `dhee-*.gguf` artifact
+ 5. Default preferred 2B filename, even if it does not exist yet
+ """
+ if explicit_path and explicit_path != "auto":
+ return explicit_path
+
+ env_path = os.environ.get("DHEE_MODEL_PATH", "").strip()
+ if env_path:
+ return env_path
+
+ base_dir = Path(model_dir) if model_dir else _DEFAULT_MODEL_DIR
+
+ for candidate in iter_preferred_model_paths(str(base_dir)):
+ if candidate.exists():
+ return str(candidate)
+
+ discovered = sorted(
+ base_dir.glob("dhee-*.gguf"),
+ key=lambda path: path.stat().st_mtime,
+ reverse=True,
+ )
+ if discovered:
+ return str(discovered[0])
+
+ return str(base_dir / _PREFERRED_MODEL_NAMES[0])
diff --git a/docker-compose.yml b/docker-compose.yml
index a9e7bb1..b3631a9 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1,15 +1,23 @@
services:
- engram:
+ dhee:
build: .
- ports:
- - "8100:8100"
+ container_name: dhee
volumes:
- - engram-data:/data
+ - dhee-data:/data/dhee
environment:
- - GEMINI_API_KEY=${GEMINI_API_KEY:-}
+ - DHEE_DATA_DIR=/data/dhee
+ # Set ONE of these:
- OPENAI_API_KEY=${OPENAI_API_KEY:-}
- - ENGRAM_DATA_DIR=/data
+ - GEMINI_API_KEY=${GEMINI_API_KEY:-}
restart: unless-stopped
+ healthcheck:
+ test: ["CMD", "python", "-c", "from dhee import Dhee; print('ok')"]
+ interval: 30s
+ timeout: 10s
+ retries: 3
+ # MCP server (4 tools) — connect via stdio
+ command: ["dhee-mcp"]
volumes:
- engram-data:
+ dhee-data:
+ driver: local
diff --git a/docs/capture_screenshots.py b/docs/capture_screenshots.py
deleted file mode 100644
index 7100398..0000000
--- a/docs/capture_screenshots.py
+++ /dev/null
@@ -1,168 +0,0 @@
-"""Capture dashboard screenshots using Playwright headless browser.
-
-Starts engram-bridge, seeds sample data, captures each view, then shuts down.
-"""
-
-import asyncio
-import json
-import os
-import signal
-import subprocess
-import sys
-import time
-from pathlib import Path
-
-# ── Seed data for realistic screenshots ──
-
-SAMPLE_PROJECTS = [
- {"name": "Engram Core", "color": "#6366f1", "description": "Core memory engine"},
-]
-
-SAMPLE_ISSUES = [
- {
- "title": "Fix Python import error in auth module",
- "description": "ImportError when running auth.py with new decorator pattern",
- "priority": "high",
- "tags": ["python", "auth", "bug"],
- },
- {
- "title": "Add retry logic to embedding API calls",
- "description": "Embedding calls fail silently on timeout — add exponential backoff",
- "priority": "medium",
- "tags": ["embeddings", "reliability"],
- },
- {
- "title": "Scaffold React dashboard for memory inspector",
- "description": "New page in web-ui to browse and search memory items visually",
- "priority": "normal",
- "tags": ["frontend", "react", "dashboard"],
- },
- {
- "title": "Optimize vector search for large collections",
- "description": "Search slows down past 10k memories — profile and fix",
- "priority": "high",
- "tags": ["performance", "vector-search"],
- },
- {
- "title": "Write tests for CLS distillation sleep cycle",
- "description": "Coverage for episodic-to-semantic fact extraction pipeline",
- "priority": "low",
- "tags": ["testing", "cls"],
- },
-]
-
-BASE = "http://127.0.0.1:8200"
-
-
-async def seed_data():
- """Seed the bridge with sample projects and tasks."""
- import httpx
-
- async with httpx.AsyncClient(base_url=BASE, timeout=10) as c:
- # Create project
- for proj in SAMPLE_PROJECTS:
- try:
- await c.post("/api/projects", json=proj)
- except Exception:
- pass
-
- # Get project list to find project_id
- try:
- resp = await c.get("/api/projects")
- projects = resp.json()
- project_id = projects[0]["id"] if projects else "default"
- except Exception:
- project_id = "default"
-
- # Create issues
- for issue in SAMPLE_ISSUES:
- try:
- await c.post("/api/issues", json={**issue, "project_id": project_id})
- except Exception:
- pass
-
-
-async def capture_screenshots():
- """Capture screenshots of each dashboard view."""
- from playwright.async_api import async_playwright
-
- screenshots_dir = Path(__file__).parent / "screenshots"
- screenshots_dir.mkdir(exist_ok=True)
-
- async with async_playwright() as p:
- browser = await p.chromium.launch(headless=True)
- ctx = await browser.new_context(
- viewport={"width": 1440, "height": 900},
- device_scale_factor=2,
- )
- page = await ctx.new_page()
-
- # Wait for the app to be ready
- await page.goto(f"{BASE}/", wait_until="networkidle")
- await page.wait_for_timeout(1500)
-
- # 1. Board view (Kanban)
- await page.goto(f"{BASE}/board", wait_until="networkidle")
- await page.wait_for_timeout(1500)
- await page.screenshot(
- path=str(screenshots_dir / "board-kanban.png"),
- full_page=False,
- )
- print("[ok] board-kanban.png")
-
- # 2. Todos view
- await page.goto(f"{BASE}/todos", wait_until="networkidle")
- await page.wait_for_timeout(1000)
- await page.screenshot(
- path=str(screenshots_dir / "todos-view.png"),
- full_page=False,
- )
- print("[ok] todos-view.png")
-
- # 3. Memory view
- await page.goto(f"{BASE}/memory", wait_until="networkidle")
- await page.wait_for_timeout(1000)
- await page.screenshot(
- path=str(screenshots_dir / "memory-view.png"),
- full_page=False,
- )
- print("[ok] memory-view.png")
-
- # 4. Coordination / Agents view
- await page.goto(f"{BASE}/coordination", wait_until="networkidle")
- await page.wait_for_timeout(1000)
- await page.screenshot(
- path=str(screenshots_dir / "coordination-agents.png"),
- full_page=False,
- )
- print("[ok] coordination-agents.png")
-
- # 5. Chat view
- await page.goto(f"{BASE}/", wait_until="networkidle")
- await page.wait_for_timeout(1000)
- await page.screenshot(
- path=str(screenshots_dir / "chat-view.png"),
- full_page=False,
- )
- print("[ok] chat-view.png")
-
- await browser.close()
-
-
-async def main():
- # Seed data first
- print("Seeding sample data...")
- try:
- await seed_data()
- print("Sample data seeded.")
- except Exception as e:
- print(f"Seed warning (non-fatal): {e}")
-
- # Capture screenshots
- print("Capturing screenshots...")
- await capture_screenshots()
- print("Done! Screenshots saved to docs/screenshots/")
-
-
-if __name__ == "__main__":
- asyncio.run(main())
diff --git a/docs/dhee-logo.png b/docs/dhee-logo.png
new file mode 100644
index 0000000..8ab85fd
Binary files /dev/null and b/docs/dhee-logo.png differ
diff --git a/docs/pdf/manifest.json b/docs/pdf/manifest.json
deleted file mode 100644
index ed1aed3..0000000
--- a/docs/pdf/manifest.json
+++ /dev/null
@@ -1,820 +0,0 @@
-{
- "generated_at": "2026-02-11T10:08:17+00:00",
- "repo_root": "/Users/ashish.dwivedi/Desktop/Engram",
- "commit_hash": "888ba8306db4fabb8bff702f768cd69a060d6bf3",
- "doc_depth": "deep",
- "method": "deterministic_static",
- "file_count": 83,
- "items": [
- {
- "source_path": "Dockerfile",
- "source_sha256": "28ba9d941f7844ed1a882db8760d3f352e26d16e7c65dcf1e7ec276c60e2f21f",
- "output_pdf": "files/Dockerfile.pdf",
- "line_count": 9,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "docker-compose.yml",
- "source_sha256": "d7eb28b7a409db9db4b107ef577761f7e5690cf61a10ebc425cf21c5c6320c04",
- "output_pdf": "files/docker-compose.yml.pdf",
- "line_count": 15,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/__init__.py",
- "source_sha256": "4f58de4a769463c9be5a8f13ba2c590bbce0a803a60780134eeb0edc733c7158",
- "output_pdf": "files/engram____init__.py.pdf",
- "line_count": 47,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/api/__init__.py",
- "source_sha256": "7bb0bb6ab09fad3067d803c79393dc7d2c58e1bcaad8d3c44258fc9938ebed49",
- "output_pdf": "files/engram__api____init__.py.pdf",
- "line_count": 6,
- "page_count": 3,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/api/app.py",
- "source_sha256": "b3c5e3a4d2bd8fa1b02d68f5296b632ec75d116f41cad2094478c35ccb7b4783",
- "output_pdf": "files/engram__api__app.py.pdf",
- "line_count": 938,
- "page_count": 8,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/api/auth.py",
- "source_sha256": "b2838225fab23bc891dca54fea97174d0654c0eb62c26617d79ee52620195a11",
- "output_pdf": "files/engram__api__auth.py.pdf",
- "line_count": 76,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/api/schemas.py",
- "source_sha256": "f557d58a140a00404fb72ff5d91bd8bd1f0694e442c4daff53b74a9ee429be83",
- "output_pdf": "files/engram__api__schemas.py.pdf",
- "line_count": 168,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/api/server.py",
- "source_sha256": "dd87162b31ebd022bea0c585ca398c70fdaba53c97abe6e6f925f9cf09991de1",
- "output_pdf": "files/engram__api__server.py.pdf",
- "line_count": 34,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/api/static/dashboard.html",
- "source_sha256": "be7058fb2173f9641c10bc5b8a908fb2af0dcfae939fa05256b2da4b69454f7a",
- "output_pdf": "files/engram__api__static__dashboard.html.pdf",
- "line_count": 736,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/cli.py",
- "source_sha256": "cde4e065fc7f284383a6882fdd17a25aecbc116624a298d39dc1c7ffe327ede4",
- "output_pdf": "files/engram__cli.py.pdf",
- "line_count": 547,
- "page_count": 5,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/configs/__init__.py",
- "source_sha256": "222b7d6b8e432a10a61748b7757b3db32d82a72808820a7520f40c947b879822",
- "output_pdf": "files/engram__configs____init__.py.pdf",
- "line_count": 19,
- "page_count": 3,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/configs/base.py",
- "source_sha256": "670e205d2dc35b7ab6847851e1d34637e18365369b7be78435241140e5615bbd",
- "output_pdf": "files/engram__configs__base.py.pdf",
- "line_count": 192,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/__init__.py",
- "source_sha256": "df5557e5f818c74c20e359d59d6130a3b19b2a2d659970607d346ef7634e862e",
- "output_pdf": "files/engram__core____init__.py.pdf",
- "line_count": 22,
- "page_count": 3,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/acceptance.py",
- "source_sha256": "eb6b6da3b969b8d274cf3f187ee3e93c3eb4050e837c9643d80cc26259babc50",
- "output_pdf": "files/engram__core__acceptance.py.pdf",
- "line_count": 142,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/category.py",
- "source_sha256": "70489214481e688e068627ec7df25f9dfe1446bcd52c3922283a1cd554055165",
- "output_pdf": "files/engram__core__category.py.pdf",
- "line_count": 741,
- "page_count": 5,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/conflict.py",
- "source_sha256": "fb6719966ecb65090c0e4b7c95133cf5e520338666508c11da4c60c7c27a6d4b",
- "output_pdf": "files/engram__core__conflict.py.pdf",
- "line_count": 41,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/decay.py",
- "source_sha256": "8cb7f02729660f06b81443820062030cb89317015d9050e21e6906881076f888",
- "output_pdf": "files/engram__core__decay.py.pdf",
- "line_count": 33,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/echo.py",
- "source_sha256": "3c604cffe4dd2d87f670d25390fd91dcc9d1b2ff97ca6917c14bc0d7347d5510",
- "output_pdf": "files/engram__core__echo.py.pdf",
- "line_count": 470,
- "page_count": 5,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/fusion.py",
- "source_sha256": "57ad524df251af330356ead9140781632224482ec792cc973629714d90bb7b1b",
- "output_pdf": "files/engram__core__fusion.py.pdf",
- "line_count": 43,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/graph.py",
- "source_sha256": "8e93374af53975e0153adc95498a944aaf41b9cc0c5883bfed9ce524149e864a",
- "output_pdf": "files/engram__core__graph.py.pdf",
- "line_count": 470,
- "page_count": 5,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/handoff.py",
- "source_sha256": "736a8d8828eb55c710f2adcac077cc38c44f096f1535965acc7e0d42c76f7b99",
- "output_pdf": "files/engram__core__handoff.py.pdf",
- "line_count": 193,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/handoff_bus.py",
- "source_sha256": "9bc95ed3fcbd71aa1bfe642afa0e791bad2f1e07b83e95a6f82577d5cff22f8c",
- "output_pdf": "files/engram__core__handoff_bus.py.pdf",
- "line_count": 975,
- "page_count": 6,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/invariants.py",
- "source_sha256": "7620458858b939507613e833eacb298e0ada79c9b34aa62522424710d3c837f1",
- "output_pdf": "files/engram__core__invariants.py.pdf",
- "line_count": 110,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/kernel.py",
- "source_sha256": "8f276aa2d4fc76e5c8a26bfda6497df125f799ab78ec5ee29f28135800ac3bfa",
- "output_pdf": "files/engram__core__kernel.py.pdf",
- "line_count": 1638,
- "page_count": 7,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/policy.py",
- "source_sha256": "e0daaba15a8678c14dba5e471f727db192bd27efaa9573372708e44ed322e8e0",
- "output_pdf": "files/engram__core__policy.py.pdf",
- "line_count": 149,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/profile.py",
- "source_sha256": "3453b55bd34540440bbfdc3ccd475b659d898bb9983920abce44d4ee6fffdc1a",
- "output_pdf": "files/engram__core__profile.py.pdf",
- "line_count": 433,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/provenance.py",
- "source_sha256": "a86017ed7e13c3a6e47ac1abd22fb3b9be8945523bc6f59429c9c82979293c9f",
- "output_pdf": "files/engram__core__provenance.py.pdf",
- "line_count": 40,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/retrieval.py",
- "source_sha256": "65291ba3e9c5e3524dd16f6de398a6e239162dca6647994dec0dc496a3ff17fb",
- "output_pdf": "files/engram__core__retrieval.py.pdf",
- "line_count": 190,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/core/scene.py",
- "source_sha256": "5bee40316bfdd14b734fd4d706196ac5d115c5f8b7c343adc9539b513a76e788",
- "output_pdf": "files/engram__core__scene.py.pdf",
- "line_count": 351,
- "page_count": 5,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/db/__init__.py",
- "source_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
- "output_pdf": "files/engram__db____init__.py.pdf",
- "line_count": 0,
- "page_count": 3,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/db/async_sqlite.py",
- "source_sha256": "e7c9c9cf2df834e2ff4fb36fd907975a05a07232d1e68032a0889e7f6c6b00e5",
- "output_pdf": "files/engram__db__async_sqlite.py.pdf",
- "line_count": 439,
- "page_count": 5,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/db/sqlite.py",
- "source_sha256": "7f520e1e773710e5f0527094322f8b74a4485dc90d634ce5b2a38ec161155097",
- "output_pdf": "files/engram__db__sqlite.py.pdf",
- "line_count": 3258,
- "page_count": 8,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/decay/__init__.py",
- "source_sha256": "dee6fffa964ec6bdfb0f64d363a084a8f9812a8f3e6285c720123716bb49a551",
- "output_pdf": "files/engram__decay____init__.py.pdf",
- "line_count": 5,
- "page_count": 3,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/decay/refcounts.py",
- "source_sha256": "f9607b2f3af3dbf12a7fdfc5ce8da796cbd24c2ef852cee187a7752497f078d9",
- "output_pdf": "files/engram__decay__refcounts.py.pdf",
- "line_count": 45,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/embeddings/__init__.py",
- "source_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
- "output_pdf": "files/engram__embeddings____init__.py.pdf",
- "line_count": 0,
- "page_count": 3,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/embeddings/async_base.py",
- "source_sha256": "d58164e9c04987f8d109088145249d91fa77703a4faf99878fb3ca11c108e308",
- "output_pdf": "files/engram__embeddings__async_base.py.pdf",
- "line_count": 125,
- "page_count": 5,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/embeddings/base.py",
- "source_sha256": "9037a576fd14c3d839711942fff65696e855a54ba08895acaa329582cb8ce2b8",
- "output_pdf": "files/engram__embeddings__base.py.pdf",
- "line_count": 11,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/embeddings/gemini.py",
- "source_sha256": "b48ded8e7c5d855f12791c98f16f8bb9b750fe5bbf55fc6d11670b6a60b43ca2",
- "output_pdf": "files/engram__embeddings__gemini.py.pdf",
- "line_count": 68,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/embeddings/nvidia.py",
- "source_sha256": "135f7aedc043e38cbcde0c9b1105247c72d2f732f540a0016964d5e978583fdb",
- "output_pdf": "files/engram__embeddings__nvidia.py.pdf",
- "line_count": 40,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/embeddings/ollama.py",
- "source_sha256": "8fd1de512439fa01ef73f51ccf7a2a77da6754c91823c7ce9e7998edbb3a02cd",
- "output_pdf": "files/engram__embeddings__ollama.py.pdf",
- "line_count": 66,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/embeddings/openai.py",
- "source_sha256": "2415d676ae5c636a29cd337cde42f09426ce980a4acb9fcf2c4af8e347da54ed",
- "output_pdf": "files/engram__embeddings__openai.py.pdf",
- "line_count": 18,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/embeddings/simple.py",
- "source_sha256": "bfcf35374cd8435a5eecf7e1896811791b8f228ff6af6931e5b1261e23f80c6e",
- "output_pdf": "files/engram__embeddings__simple.py.pdf",
- "line_count": 27,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/exceptions.py",
- "source_sha256": "112d9045bad56b258ea3481356a8d679ef1ddf50ee83365389ca636fda83a59c",
- "output_pdf": "files/engram__exceptions.py.pdf",
- "line_count": 19,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/integrations/__init__.py",
- "source_sha256": "3b7f891a7a16ba409fd063a9da162b618f8de1533ce8a20808feec40e90861df",
- "output_pdf": "files/engram__integrations____init__.py.pdf",
- "line_count": 1,
- "page_count": 3,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/integrations/claude_code_plugin.py",
- "source_sha256": "79d193779b3232fa947ca08625ba7081f2c33e87bc6d1ca1733da9e97888d053",
- "output_pdf": "files/engram__integrations__claude_code_plugin.py.pdf",
- "line_count": 532,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/integrations/openclaw.py",
- "source_sha256": "088d3bd8ca835e13cf157d9ae009908a14697511bde3b916d7d5a51c0f63d6f9",
- "output_pdf": "files/engram__integrations__openclaw.py.pdf",
- "line_count": 177,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/llms/__init__.py",
- "source_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
- "output_pdf": "files/engram__llms____init__.py.pdf",
- "line_count": 0,
- "page_count": 3,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/llms/async_base.py",
- "source_sha256": "96b7d1f85a569f7bde484c544958502083df681276414d4b4aafe9d23a97cd86",
- "output_pdf": "files/engram__llms__async_base.py.pdf",
- "line_count": 127,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/llms/base.py",
- "source_sha256": "37147c9b8091112ea0b1d04e4ab45c24bd77c7199d4a14ad059d428e8baef34f",
- "output_pdf": "files/engram__llms__base.py.pdf",
- "line_count": 11,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/llms/gemini.py",
- "source_sha256": "9be76ab523695706bbf17a62b4fe2d8a691284f59e97f9ddd41a7c7c80869f26",
- "output_pdf": "files/engram__llms__gemini.py.pdf",
- "line_count": 81,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/llms/mock.py",
- "source_sha256": "757cee8c788e2b7e5103f55c7753d6149fa38971562913bdb11ccb46786f698a",
- "output_pdf": "files/engram__llms__mock.py.pdf",
- "line_count": 35,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/llms/nvidia.py",
- "source_sha256": "714abc3223fc2d077075bae434ac9209cd9bbb5546b044dbecde78b36806abcb",
- "output_pdf": "files/engram__llms__nvidia.py.pdf",
- "line_count": 47,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/llms/ollama.py",
- "source_sha256": "2467c42a605aa5d8c55d56687c26c967152cf82fb63029ed5c302ec9273ff707",
- "output_pdf": "files/engram__llms__ollama.py.pdf",
- "line_count": 58,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/llms/openai.py",
- "source_sha256": "90e6fcd483343d3b1b74e76815c5c4929e79d61dc825a0bd1891bf6758c006f7",
- "output_pdf": "files/engram__llms__openai.py.pdf",
- "line_count": 25,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/main_cli.py",
- "source_sha256": "a95649e7f3ea0283debb92d6db3a4875a41a06803cb37cf8af4e7312721b0aa2",
- "output_pdf": "files/engram__main_cli.py.pdf",
- "line_count": 455,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/mcp_server.py",
- "source_sha256": "5bf7fcd270133d9a6bec7f2beaa61a3395767a2e037394f087b75362e9637757",
- "output_pdf": "files/engram__mcp_server.py.pdf",
- "line_count": 1859,
- "page_count": 5,
- "generated_at": "2026-02-11T10:08:17+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/memory/__init__.py",
- "source_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
- "output_pdf": "files/engram__memory____init__.py.pdf",
- "line_count": 0,
- "page_count": 3,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/memory/async_memory.py",
- "source_sha256": "2264132ea37d854cbaf5adf984e42a3922348320e02cd80bd93a3e5066431e4f",
- "output_pdf": "files/engram__memory__async_memory.py.pdf",
- "line_count": 479,
- "page_count": 5,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/memory/base.py",
- "source_sha256": "57fd9b33a94b7dd44a71d9e06485257d8220b677cc0a46a00870d4c0f6a0f5ce",
- "output_pdf": "files/engram__memory__base.py.pdf",
- "line_count": 23,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/memory/client.py",
- "source_sha256": "b1cd82636b8e39093f0cb78c705881840103ebddd4751f94f7df76485ee4d7e5",
- "output_pdf": "files/engram__memory__client.py.pdf",
- "line_count": 418,
- "page_count": 6,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/memory/episodic_store.py",
- "source_sha256": "ca86ad8bb6c22c82f464562ef81f56c337e39ed80beaf1753a808b39da685658",
- "output_pdf": "files/engram__memory__episodic_store.py.pdf",
- "line_count": 290,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/memory/main.py",
- "source_sha256": "eec46c92775f4b98aea9f1cb534078a11a72a40456b690cf03bb5c8ba282520e",
- "output_pdf": "files/engram__memory__main.py.pdf",
- "line_count": 2626,
- "page_count": 9,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/memory/staging_store.py",
- "source_sha256": "4acebc3d6a0ea160f8c658293f43b1030220cc43f9255bac1d89f9d144bc39b0",
- "output_pdf": "files/engram__memory__staging_store.py.pdf",
- "line_count": 97,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/memory/utils.py",
- "source_sha256": "559d94114ebd6bbbbb655c6777b6e8a72945eca40d0b0774c297b4610e69d1ba",
- "output_pdf": "files/engram__memory__utils.py.pdf",
- "line_count": 173,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/observability.py",
- "source_sha256": "857d9f05e72e0de1af661602b8b228664fd9687327dd83b452aae0ad6c30d8fe",
- "output_pdf": "files/engram__observability.py.pdf",
- "line_count": 392,
- "page_count": 6,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/retrieval/__init__.py",
- "source_sha256": "7251bab64be6f447f42ce901411962e82ccdd86d9a5daf49fe2f9b77c65091c8",
- "output_pdf": "files/engram__retrieval____init__.py.pdf",
- "line_count": 5,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/retrieval/context_packer.py",
- "source_sha256": "7a63bcd006084cf86eef129523f4cdbbb145a787a04a566bd04ffb468d841dda",
- "output_pdf": "files/engram__retrieval__context_packer.py.pdf",
- "line_count": 62,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/retrieval/dual_search.py",
- "source_sha256": "491a428eaa24fcd006da972be73831ce293f5219f8371949779b37cfa3a8a0bd",
- "output_pdf": "files/engram__retrieval__dual_search.py.pdf",
- "line_count": 136,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/retrieval/reranker.py",
- "source_sha256": "e03d5946cb6eb65266eb87f3da6c6a9df3925ad0d228136a2e8913061897ab72",
- "output_pdf": "files/engram__retrieval__reranker.py.pdf",
- "line_count": 37,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/simple.py",
- "source_sha256": "d37dc95de7d1406fa2eb5e622b5703a73ae2e92e61f4055e678afcc6b70a7555",
- "output_pdf": "files/engram__simple.py.pdf",
- "line_count": 354,
- "page_count": 5,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/utils/__init__.py",
- "source_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
- "output_pdf": "files/engram__utils____init__.py.pdf",
- "line_count": 0,
- "page_count": 3,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/utils/factory.py",
- "source_sha256": "f4b53bd52c9f796b8a009e583a2dfa49ec977f962c35f008f9d5f246b1855b63",
- "output_pdf": "files/engram__utils__factory.py.pdf",
- "line_count": 66,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/utils/prompts.py",
- "source_sha256": "2e18b0155f3fe3278099fd4bc166b4f9aee2b0c1caedf1df86104a5037a0b9b0",
- "output_pdf": "files/engram__utils__prompts.py.pdf",
- "line_count": 183,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/utils/repo_identity.py",
- "source_sha256": "aa426f61c673a02272bff2ec20f4967616e762691f9c851d877a3fdaa06949a9",
- "output_pdf": "files/engram__utils__repo_identity.py.pdf",
- "line_count": 72,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/vector_stores/__init__.py",
- "source_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
- "output_pdf": "files/engram__vector_stores____init__.py.pdf",
- "line_count": 0,
- "page_count": 3,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/vector_stores/base.py",
- "source_sha256": "c9e547779d919349429709b13f63380c84977f40ce1d82fec95446cc16461757",
- "output_pdf": "files/engram__vector_stores__base.py.pdf",
- "line_count": 48,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "engram/vector_stores/memory.py",
- "source_sha256": "b16e4ae73d2ce8d0a95f6f78c9321887b3ed2bfee9038d32cf3df005fc34b90d",
- "output_pdf": "files/engram__vector_stores__memory.py.pdf",
- "line_count": 101,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "plugins/engram-memory/.claude-plugin/plugin.json",
- "source_sha256": "b559f37962bb39e415bdd53d7dbbaf429e1e9c7e3cc3ca08cb8335d3d0c1a192",
- "output_pdf": "files/plugins__engram-memory__.claude-plugin__plugin.json.pdf",
- "line_count": 7,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "plugins/engram-memory/hooks/hooks.json",
- "source_sha256": "d296be7c0515ece5a1991245606f88846db2215927ff8e65fda97c81619de8fb",
- "output_pdf": "files/plugins__engram-memory__hooks__hooks.json.pdf",
- "line_count": 12,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "plugins/engram-memory/hooks/prompt_context.py",
- "source_sha256": "5f285e3e6254c6a1f221151f7dd471623bde889d2c51404e776320ef5ed5bbc9",
- "output_pdf": "files/plugins__engram-memory__hooks__prompt_context.py.pdf",
- "line_count": 201,
- "page_count": 5,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- },
- {
- "source_path": "pyproject.toml",
- "source_sha256": "dc5bd74055cd94b8551f5ece65dc5f8cfbe1453e3fb90b4e524888021d958685",
- "output_pdf": "files/pyproject.toml.pdf",
- "line_count": 84,
- "page_count": 4,
- "generated_at": "2026-02-11T10:07:54+00:00",
- "doc_depth": "deep",
- "method": "deterministic_static"
- }
- ]
-}
\ No newline at end of file
diff --git a/docs/screenshots/board-kanban.png b/docs/screenshots/board-kanban.png
deleted file mode 100644
index e3ee365..0000000
Binary files a/docs/screenshots/board-kanban.png and /dev/null differ
diff --git a/docs/screenshots/chat-view.png b/docs/screenshots/chat-view.png
deleted file mode 100644
index 3f3a0e8..0000000
Binary files a/docs/screenshots/chat-view.png and /dev/null differ
diff --git a/docs/screenshots/coordination-agents.png b/docs/screenshots/coordination-agents.png
deleted file mode 100644
index ee92d60..0000000
Binary files a/docs/screenshots/coordination-agents.png and /dev/null differ
diff --git a/docs/screenshots/memory-view.png b/docs/screenshots/memory-view.png
deleted file mode 100644
index b913c26..0000000
Binary files a/docs/screenshots/memory-view.png and /dev/null differ
diff --git a/docs/screenshots/todos-view.png b/docs/screenshots/todos-view.png
deleted file mode 100644
index 5973595..0000000
Binary files a/docs/screenshots/todos-view.png and /dev/null differ
diff --git a/engram-bridge/README.md b/engram-bridge/README.md
deleted file mode 100644
index 8e54c81..0000000
--- a/engram-bridge/README.md
+++ /dev/null
@@ -1,177 +0,0 @@
-# engram-bridge
-
-Channel adapters for Engram — talk to your coding agents from Telegram or a browser without opening a terminal.
-
-**Architecture**: User on Telegram/Web → thin Python bridge (NO LLM) → doer agent (Claude Code/Codex) directly. 1x token cost, not 2x.
-
-## Quick Start
-
-### Web Channel (Browser)
-
-```bash
-# Install with web dependencies
-pip install -e "./Engram/engram-bridge[web]"
-
-# Create config
-mkdir -p ~/.engram
-cat > ~/.engram/bridge.json << 'EOF'
-{
- "channel": "web",
- "web": {
- "host": "127.0.0.1",
- "port": 8200,
- "auth_token": ""
- },
- "default_agent": "claude-code",
- "agents": {
- "claude-code": {
- "type": "claude",
- "model": "claude-opus-4-6",
- "allowed_tools": ["Read", "Edit", "Write", "Bash", "Glob", "Grep"]
- },
- "codex": {
- "type": "codex",
- "model": "gpt-5-codex"
- }
- },
- "memory": {
- "provider": "gemini",
- "auto_store": true
- }
-}
-EOF
-
-# Run
-engram-bridge --channel web
-
-# Open browser
-open http://127.0.0.1:8200
-```
-
-### Telegram Channel
-
-```bash
-# Install with Telegram dependencies
-pip install -e "./Engram/engram-bridge[telegram]"
-
-# Set token (get one from @BotFather on Telegram)
-export TELEGRAM_BOT_TOKEN="your-token"
-
-# Create config (use "channel": "telegram" or omit — it's the default)
-mkdir -p ~/.engram
-cat > ~/.engram/bridge.json << 'EOF'
-{
- "telegram": {
- "token": "env:TELEGRAM_BOT_TOKEN",
- "allowed_users": []
- },
- "default_agent": "claude-code",
- "agents": {
- "claude-code": {
- "type": "claude",
- "model": "claude-opus-4-6"
- }
- },
- "memory": {
- "provider": "gemini",
- "auto_store": true
- }
-}
-EOF
-
-# Run
-engram-bridge
-```
-
-## Commands
-
-Available in both Telegram and Web channels:
-
-| Command | Description |
-|---------|-------------|
-| `/start [agent] [repo]` | Start agent session on a repo |
-| `/switch ` | Switch active agent (saves session) |
-| `/status` | Show active agent, repo, session info |
-| `/agents` | List available agents |
-| `/stop` | Stop active agent and save session |
-| `/sessions` | List recent handoff sessions |
-| `/memory [query]` | Search Engram memory or show stats |
-
-## Web Channel
-
-The web channel serves a React chat UI over WebSocket at `http://127.0.0.1:8200` (default).
-
-- Real-time streaming of tool-use updates and agent responses
-- Command button bar for quick access to `/start`, `/switch`, `/status`, etc.
-- Markdown rendering with code block support
-- Auto-reconnect on disconnect
-- Optional token auth: set `web.auth_token` in config, pass `?token=...` in the URL
-
-### Web Config Options
-
-```json
-{
- "channel": "web",
- "web": {
- "host": "127.0.0.1",
- "port": 8200,
- "auth_token": "env:BRIDGE_WEB_TOKEN"
- }
-}
-```
-
-## Agent Types
-
-### Claude Code (`type: "claude"`)
-Uses the `claude` CLI. Requires [Claude Code](https://docs.anthropic.com/en/docs/claude-code) installed.
-
-### Codex (`type: "codex"`)
-Uses the `codex` CLI. Requires [OpenAI Codex](https://github.com/openai/codex) installed.
-
-### Custom (`type: "custom"`)
-Wraps any CLI tool. Use `{prompt}` placeholder in the command template:
-```json
-{
- "aider": {
- "type": "custom",
- "command": ["aider", "--message", "{prompt}", "--yes"],
- "cwd_flag": "--cwd"
- }
-}
-```
-
-## How It Works
-
-1. User sends message (on Telegram or Web)
-2. Bridge routes to the active agent (no LLM orchestrator in between)
-3. Agent processes the message (Claude Code, Codex, etc.)
-4. Bridge streams tool-use updates and final response back to the channel
-5. Exchange is auto-stored in Engram memory
-6. Session state is checkpointed to engram-bus
-
-### Rate Limit Handling
-
-When an agent hits a rate limit, the bridge:
-1. Saves the session digest to engram-bus
-2. Notifies you on your channel
-3. You can `/switch` to another agent to continue immediately
-
-## Configuration
-
-Config lives at `~/.engram/bridge.json`. Token values support `env:VAR_NAME` syntax to read from environment variables.
-
-The `--channel` CLI flag overrides the `channel` field in the config file.
-
-### Security
-
-- **Telegram**: `allowed_users` restricts access by Telegram user ID. Empty list = allow all.
-- **Web**: `auth_token` protects the WebSocket endpoint. Empty = no auth (local dev only).
-- Agents run with whatever permissions the CLI tool has on the host machine.
-- Claude Code supports `--permission-mode` for sandboxing.
-
-## Dependencies
-
-- `engram-bus` — session handoffs, pub/sub
-- `engram-memory` — conversation memory (FadeMem + EchoMem)
-- `python-telegram-bot` — Telegram bot API (optional, install with `[telegram]`)
-- `fastapi` + `uvicorn` — Web channel server (optional, install with `[web]`)
diff --git a/engram-bridge/demo/demo-app/main.py b/engram-bridge/demo/demo-app/main.py
deleted file mode 100644
index 38f76b5..0000000
--- a/engram-bridge/demo/demo-app/main.py
+++ /dev/null
@@ -1,65 +0,0 @@
-"""Demo app — a simple user registration API with no validation."""
-
-from fastapi import FastAPI, HTTPException
-from pydantic import BaseModel
-
-app = FastAPI(title="User Service")
-
-# In-memory user store
-users: dict[str, dict] = {}
-
-
-class CreateUserRequest(BaseModel):
- username: str
- email: str
- password: str
- age: int
-
-
-class UpdateProfileRequest(BaseModel):
- bio: str
- website: str
-
-
-@app.post("/users")
-def create_user(req: CreateUserRequest):
- """Create a new user account."""
- users[req.username] = {
- "username": req.username,
- "email": req.email,
- "password": req.password, # stored in plaintext!
- "age": req.age,
- "bio": "",
- "website": "",
- }
- return {"ok": True, "username": req.username}
-
-
-@app.get("/users/{username}")
-def get_user(username: str):
- """Get user profile."""
- user = users.get(username)
- if not user:
- raise HTTPException(status_code=404, detail="User not found")
- # Leaks password in response!
- return user
-
-
-@app.put("/users/{username}/profile")
-def update_profile(username: str, req: UpdateProfileRequest):
- """Update user profile."""
- user = users.get(username)
- if not user:
- raise HTTPException(status_code=404, detail="User not found")
- user["bio"] = req.bio
- user["website"] = req.website
- return user
-
-
-@app.delete("/users/{username}")
-def delete_user(username: str):
- """Delete a user."""
- if username in users:
- del users[username]
- return {"ok": True}
- raise HTTPException(status_code=404, detail="User not found")
diff --git a/engram-bridge/demo/demo-app/test_main.py b/engram-bridge/demo/demo-app/test_main.py
deleted file mode 100644
index c07d7a8..0000000
--- a/engram-bridge/demo/demo-app/test_main.py
+++ /dev/null
@@ -1,45 +0,0 @@
-"""Basic tests for the user service — no validation tests yet."""
-
-from fastapi.testclient import TestClient
-from main import app
-
-client = TestClient(app)
-
-
-def test_create_user():
- resp = client.post("/users", json={
- "username": "alice",
- "email": "alice@example.com",
- "password": "secret123",
- "age": 28,
- })
- assert resp.status_code == 200
- assert resp.json()["username"] == "alice"
-
-
-def test_get_user():
- client.post("/users", json={
- "username": "bob",
- "email": "bob@test.com",
- "password": "pass",
- "age": 30,
- })
- resp = client.get("/users/bob")
- assert resp.status_code == 200
- assert resp.json()["email"] == "bob@test.com"
-
-
-def test_get_user_not_found():
- resp = client.get("/users/nobody")
- assert resp.status_code == 404
-
-
-def test_delete_user():
- client.post("/users", json={
- "username": "charlie",
- "email": "c@test.com",
- "password": "pw",
- "age": 25,
- })
- resp = client.delete("/users/charlie")
- assert resp.status_code == 200
diff --git a/engram-bridge/demo/run-demo.sh b/engram-bridge/demo/run-demo.sh
deleted file mode 100755
index b6ef8d5..0000000
--- a/engram-bridge/demo/run-demo.sh
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/bash
-# One-command demo setup: enable auto_execute, start bridge, seed data, open browser.
-#
-# Usage:
-# cd Engram/engram-bridge
-# bash demo/run-demo.sh
-
-set -e
-DIR="$(cd "$(dirname "$0")" && pwd)"
-cd "$DIR/.."
-
-echo ""
-echo "=== engram-bridge Auto-Execute Demo ==="
-echo ""
-
-# 1. Enable auto_execute
-python3 demo/seed.py --enable 2>/dev/null || true
-
-# 2. Start bridge in background
-echo "Starting bridge..."
-engram-bridge --channel web &
-BRIDGE_PID=$!
-sleep 3
-
-# 3. Seed demo data
-echo "Seeding demo data..."
-python3 demo/seed.py
-
-# 4. Open browser
-if command -v open &>/dev/null; then
- open "http://127.0.0.1:8200"
-elif command -v xdg-open &>/dev/null; then
- xdg-open "http://127.0.0.1:8200"
-fi
-
-echo ""
-echo "Bridge running (PID $BRIDGE_PID). Press Ctrl+C to stop."
-echo ""
-
-# Wait for bridge
-wait $BRIDGE_PID
diff --git a/engram-bridge/demo/seed.py b/engram-bridge/demo/seed.py
deleted file mode 100644
index 8f57c60..0000000
--- a/engram-bridge/demo/seed.py
+++ /dev/null
@@ -1,221 +0,0 @@
-#!/usr/bin/env python3
-"""Demo seed script — sets up a project, statuses, and compelling todos.
-
-Usage:
- python3 demo/seed.py # seed only
- python3 demo/seed.py --enable # also enable auto_execute in bridge.json
- python3 demo/seed.py --reset # clear and re-seed
-
-Requires the bridge to be running at http://127.0.0.1:8200.
-"""
-
-import argparse
-import json
-import sys
-import time
-import urllib.request
-from pathlib import Path
-
-BASE = "http://127.0.0.1:8200"
-CONFIG_PATH = Path("~/.engram/bridge.json").expanduser()
-
-# Colors for terminal output
-G = "\033[32m" # green
-B = "\033[34m" # blue
-Y = "\033[33m" # yellow
-R = "\033[0m" # reset
-BOLD = "\033[1m"
-
-
-def api(method: str, path: str, body: dict | None = None) -> dict:
- url = f"{BASE}{path}"
- data = json.dumps(body).encode() if body else None
- req = urllib.request.Request(url, data=data, method=method)
- req.add_header("Content-Type", "application/json")
- try:
- with urllib.request.urlopen(req) as resp:
- return json.loads(resp.read())
- except urllib.error.URLError as e:
- print(f"\n {Y}Error: Could not connect to bridge at {BASE}{R}")
- print(f" Start it first: engram-bridge --channel web\n")
- sys.exit(1)
-
-
-def enable_auto_execute():
- """Enable auto_execute in ~/.engram/bridge.json."""
- if not CONFIG_PATH.exists():
- print(f" {Y}Config not found at {CONFIG_PATH}{R}")
- return False
-
- config = json.loads(CONFIG_PATH.read_text())
- coord = config.setdefault("coordination", {})
-
- if coord.get("auto_execute"):
- print(f" {G}auto_execute already enabled{R}")
- return True
-
- coord["auto_execute"] = True
- CONFIG_PATH.write_text(json.dumps(config, indent=2) + "\n")
- print(f" {G}Enabled auto_execute in {CONFIG_PATH}{R}")
- print(f" {Y}Restart the bridge for this to take effect{R}")
- return True
-
-
-def seed():
- """Create a demo project with todos designed for the demo video."""
- print(f"\n{BOLD}Seeding demo data...{R}\n")
-
- # 1. Create project
- print(f" {B}Creating project...{R}")
- project = api("POST", "/api/projects", {
- "name": "Demo App",
- "color": "#6366f1",
- "description": "User service API — demo project for auto-execute showcase",
- })
- pid = project["id"]
- print(f" {G}Project created: {pid}{R}")
-
- # 2. Get statuses (default ones were auto-created)
- statuses = api("GET", f"/api/projects/{pid}/statuses")
- inbox_id = None
- for s in statuses:
- if s.get("name", "").lower() in ("inbox", "backlog", "todo"):
- inbox_id = s["id"]
- break
- if not inbox_id and statuses:
- inbox_id = statuses[0]["id"]
- print(f" {G}Statuses ready ({len(statuses)} found){R}")
-
- # 3. Create tags
- print(f" {B}Creating tags...{R}")
- tag_security = api("POST", f"/api/projects/{pid}/tags", {"name": "security", "color": "#ef4444"})
- tag_validation = api("POST", f"/api/projects/{pid}/tags", {"name": "validation", "color": "#f59e0b"})
- tag_testing = api("POST", f"/api/projects/{pid}/tags", {"name": "testing", "color": "#22c55e"})
- print(f" {G}Tags created{R}")
-
- # 4. Create demo issues
- demo_app_path = str(Path(__file__).parent / "demo-app")
-
- # The star of the demo — this is the one to push during recording
- issues = [
- {
- "title": "Add input validation to user registration",
- "description": (
- f"The create_user endpoint in {demo_app_path}/main.py has no validation.\n\n"
- "Add validation for:\n"
- "- Username: 3-20 chars, alphanumeric + underscore only\n"
- "- Email: valid email format\n"
- "- Password: minimum 8 chars, at least one uppercase and one digit\n"
- "- Age: must be between 13 and 150\n\n"
- "Use Pydantic field validators. Return clear error messages."
- ),
- "priority": "high",
- "tags": [tag_validation["id"], tag_security["id"]],
- },
- {
- "title": "Fix password leak in GET /users endpoint",
- "description": (
- f"The get_user endpoint in {demo_app_path}/main.py returns the password in the response.\n\n"
- "Create a separate response model that excludes the password field."
- ),
- "priority": "urgent",
- "tags": [tag_security["id"]],
- },
- {
- "title": "Add validation tests for user registration",
- "description": (
- f"Add tests to {demo_app_path}/test_main.py that verify:\n"
- "- Short username is rejected\n"
- "- Invalid email is rejected\n"
- "- Weak password is rejected\n"
- "- Underage user is rejected\n"
- "- Valid user is accepted"
- ),
- "priority": "medium",
- "tags": [tag_testing["id"], tag_validation["id"]],
- },
- ]
-
- print(f" {B}Creating issues...{R}")
- created = []
- for issue_data in issues:
- tag_ids = issue_data.pop("tags", [])
- issue_data["project_id"] = pid
- if inbox_id:
- issue_data["status_id"] = inbox_id
- issue = api("POST", "/api/issues", issue_data)
- iid = issue.get("id", "")
- # Add tags
- for tid in tag_ids:
- api("POST", f"/api/issues/{iid}/tags", {"tag_id": tid})
- created.append(issue)
- print(f" {G}#{issue.get('issue_number', '?')} {issue.get('title', '')[:50]}...{R}")
-
- print(f"\n{BOLD}{G}Demo seeded successfully!{R}\n")
- print(f" Project: {BOLD}Demo App{R} ({pid})")
- print(f" Issues: {len(created)} created in inbox")
- print(f" Demo app: {demo_app_path}")
- print()
-
- return project, created
-
-
-def check_health():
- """Verify the bridge is running."""
- try:
- health = api("GET", "/health")
- return health.get("status") == "ok"
- except SystemExit:
- return False
-
-
-def main():
- parser = argparse.ArgumentParser(description="Seed demo data for auto-execute showcase")
- parser.add_argument("--enable", action="store_true", help="Enable auto_execute in bridge.json")
- parser.add_argument("--reset", action="store_true", help="Clear existing data and re-seed")
- args = parser.parse_args()
-
- print(f"\n{BOLD}engram-bridge Demo Setup{R}")
- print("=" * 40)
-
- # Step 1: Optionally enable auto_execute
- if args.enable:
- print(f"\n{B}[1/3] Enabling auto_execute...{R}")
- enable_auto_execute()
- else:
- print(f"\n{B}[1/3] Config check...{R}")
- if CONFIG_PATH.exists():
- config = json.loads(CONFIG_PATH.read_text())
- ae = config.get("coordination", {}).get("auto_execute", False)
- if ae:
- print(f" {G}auto_execute is enabled{R}")
- else:
- print(f" {Y}auto_execute is OFF — run with --enable to turn it on{R}")
-
- # Step 2: Check bridge is running
- print(f"\n{B}[2/3] Checking bridge...{R}")
- if not check_health():
- return
-
- info = api("GET", "/api/info")
- print(f" {G}Bridge is running (v{info.get('version', '?')}){R}")
- print(f" Memory: {'yes' if info.get('has_memory') else 'no'}")
- print(f" Projects: {'yes' if info.get('has_projects') else 'no'}")
-
- # Step 3: Seed data
- print(f"\n{B}[3/3] Seeding demo data...{R}")
- seed()
-
- # Print demo instructions
- print(f"{BOLD}Demo instructions:{R}")
- print(f" 1. Open {B}http://127.0.0.1:8200{R}")
- print(f" 2. Go to the {BOLD}Board{R} view — you'll see 3 issues in inbox")
- print(f" 3. The star issue: {Y}\"Add input validation to user registration\"{R}")
- print(f" 4. It will auto-route to claude-code and start executing")
- print(f" 5. Watch the toast + click View to see live agent conversation")
- print(f" 6. Send a follow-up: {Y}\"also hash the password before storing it\"{R}")
- print()
-
-
-if __name__ == "__main__":
- main()
diff --git a/engram-bridge/engram_bridge/__init__.py b/engram-bridge/engram_bridge/__init__.py
deleted file mode 100644
index a147261..0000000
--- a/engram-bridge/engram_bridge/__init__.py
+++ /dev/null
@@ -1,4 +0,0 @@
-from engram_bridge.bridge import Bridge
-from engram_bridge.config import BridgeConfig, load_config
-
-__all__ = ["Bridge", "BridgeConfig", "load_config"]
diff --git a/engram-bridge/engram_bridge/agents/__init__.py b/engram-bridge/engram_bridge/agents/__init__.py
deleted file mode 100644
index 373c992..0000000
--- a/engram-bridge/engram_bridge/agents/__init__.py
+++ /dev/null
@@ -1,6 +0,0 @@
-from engram_bridge.agents.base import BaseAgent, AgentMessage
-from engram_bridge.agents.claude import ClaudeAgent
-from engram_bridge.agents.codex import CodexAgent
-from engram_bridge.agents.custom import CustomAgent
-
-__all__ = ["BaseAgent", "AgentMessage", "ClaudeAgent", "CodexAgent", "CustomAgent"]
diff --git a/engram-bridge/engram_bridge/agents/base.py b/engram-bridge/engram_bridge/agents/base.py
deleted file mode 100644
index 31f872a..0000000
--- a/engram-bridge/engram_bridge/agents/base.py
+++ /dev/null
@@ -1,40 +0,0 @@
-"""Base agent interface for all agent adapters."""
-
-from __future__ import annotations
-
-from abc import ABC, abstractmethod
-from dataclasses import dataclass, field
-from typing import AsyncIterator
-
-
-@dataclass
-class AgentMessage:
- """A single message/event from an agent."""
- type: str # "text", "tool_use", "tool_result", "error", "rate_limited"
- content: str # display text
- session_id: str # for resume
- metadata: dict = field(default_factory=dict) # tool name, file paths, etc.
-
-
-class BaseAgent(ABC):
- """Abstract base for agent adapters (Claude Code, Codex, custom CLI)."""
-
- @abstractmethod
- async def send(
- self, message: str, cwd: str, session_id: str | None = None
- ) -> AsyncIterator[AgentMessage]:
- """Send message to agent, yield streaming responses."""
-
- @abstractmethod
- async def stop(self) -> None:
- """Stop the agent process."""
-
- @property
- @abstractmethod
- def name(self) -> str:
- """Agent display name."""
-
- @property
- @abstractmethod
- def is_running(self) -> bool:
- """Whether the agent process is currently active."""
diff --git a/engram-bridge/engram_bridge/agents/claude.py b/engram-bridge/engram_bridge/agents/claude.py
deleted file mode 100644
index 7795903..0000000
--- a/engram-bridge/engram_bridge/agents/claude.py
+++ /dev/null
@@ -1,152 +0,0 @@
-"""Claude Code agent adapter — uses the `claude` CLI with JSON streaming."""
-
-from __future__ import annotations
-
-import asyncio
-import json
-import uuid
-from typing import AsyncIterator
-
-from engram_bridge.agents.base import AgentMessage, BaseAgent
-from engram_bridge.config import AgentConfig
-
-
-class ClaudeAgent(BaseAgent):
- """Runs Claude Code via subprocess, reading NDJSON streaming output."""
-
- def __init__(self, config: AgentConfig):
- self._model = config.model or "claude-opus-4-6"
- self._allowed_tools = config.allowed_tools
- self._session_id: str | None = None
- self._proc: asyncio.subprocess.Process | None = None
-
- @property
- def name(self) -> str:
- return "claude-code"
-
- @property
- def is_running(self) -> bool:
- return self._proc is not None and self._proc.returncode is None
-
- async def send(
- self, message: str, cwd: str, session_id: str | None = None
- ) -> AsyncIterator[AgentMessage]:
- sid = session_id or self._session_id or uuid.uuid4().hex[:12]
- self._session_id = sid
-
- cmd = [
- "claude", "--json",
- "--model", self._model,
- "--print", # non-interactive mode
- "--output-format", "stream-json",
- ]
- if self._allowed_tools:
- cmd += ["--allowedTools", ",".join(self._allowed_tools)]
- if session_id:
- cmd += ["--resume", session_id]
- cmd += ["-p", message]
-
- try:
- self._proc = await asyncio.create_subprocess_exec(
- *cmd,
- stdout=asyncio.subprocess.PIPE,
- stderr=asyncio.subprocess.PIPE,
- cwd=cwd,
- )
- except FileNotFoundError:
- yield AgentMessage(
- "error",
- "Claude CLI not found. Install it: npm install -g @anthropic-ai/claude-code",
- sid, {},
- )
- return
-
- collected_text: list[str] = []
-
- async for line in self._proc.stdout:
- line = line.decode("utf-8", errors="replace").strip()
- if not line:
- continue
- try:
- event = json.loads(line)
- except json.JSONDecodeError:
- # Plain text fallback
- collected_text.append(line)
- continue
-
- msg = self._parse_event(event, sid)
- if msg:
- if msg.type == "text":
- collected_text.append(msg.content)
- yield msg
-
- await self._proc.wait()
-
- # If process failed, read stderr
- if self._proc.returncode and self._proc.returncode != 0:
- stderr = await self._proc.stderr.read()
- err = stderr.decode("utf-8", errors="replace").strip()
- if "rate" in err.lower() or "429" in err:
- yield AgentMessage("rate_limited", err, sid, {})
- else:
- yield AgentMessage("error", err or f"Exit code {self._proc.returncode}", sid, {})
-
- # Emit final combined text if we got plain output
- if collected_text and not any(True for _ in []):
- # The text messages were already yielded above
- pass
-
- self._proc = None
-
- def _parse_event(self, event: dict, sid: str) -> AgentMessage | None:
- """Parse a JSON streaming event from Claude CLI."""
- etype = event.get("type", "")
-
- if etype == "assistant" or etype == "result":
- # Final or intermediate text
- content = event.get("result", "") or event.get("content", "")
- if isinstance(content, list):
- # content blocks
- texts = [b.get("text", "") for b in content if b.get("type") == "text"]
- content = "\n".join(texts)
- new_sid = event.get("session_id", sid)
- if new_sid:
- self._session_id = new_sid
- if content:
- return AgentMessage("text", content, self._session_id or sid, {})
-
- elif etype == "tool_use":
- tool = event.get("name", event.get("tool", "unknown"))
- inp = event.get("input", {})
- display = f"Using {tool}..."
- if "file_path" in inp:
- display = f"{tool}: {inp['file_path']}"
- elif "command" in inp:
- cmd_str = inp["command"]
- if len(cmd_str) > 80:
- cmd_str = cmd_str[:77] + "..."
- display = f"{tool}: {cmd_str}"
- return AgentMessage("tool_use", display, self._session_id or sid, {"tool": tool, "input": inp})
-
- elif etype == "tool_result":
- content = event.get("content", "")
- if isinstance(content, list):
- content = "\n".join(b.get("text", "") for b in content if isinstance(b, dict))
- return AgentMessage("tool_result", content[:500], self._session_id or sid, {})
-
- elif etype == "error":
- msg = event.get("error", {}).get("message", str(event))
- if "rate" in msg.lower() or "429" in msg:
- return AgentMessage("rate_limited", msg, self._session_id or sid, {})
- return AgentMessage("error", msg, self._session_id or sid, {})
-
- return None
-
- async def stop(self) -> None:
- if self._proc and self._proc.returncode is None:
- self._proc.terminate()
- try:
- await asyncio.wait_for(self._proc.wait(), timeout=5.0)
- except asyncio.TimeoutError:
- self._proc.kill()
- self._proc = None
diff --git a/engram-bridge/engram_bridge/agents/codex.py b/engram-bridge/engram_bridge/agents/codex.py
deleted file mode 100644
index c6be36e..0000000
--- a/engram-bridge/engram_bridge/agents/codex.py
+++ /dev/null
@@ -1,119 +0,0 @@
-"""Codex agent adapter — uses the `codex` CLI via subprocess."""
-
-from __future__ import annotations
-
-import asyncio
-import json
-import uuid
-from typing import AsyncIterator
-
-from engram_bridge.agents.base import AgentMessage, BaseAgent
-from engram_bridge.config import AgentConfig
-
-
-class CodexAgent(BaseAgent):
- """Runs OpenAI Codex CLI via subprocess, reading NDJSON output."""
-
- def __init__(self, config: AgentConfig):
- self._model = config.model or "gpt-5-codex"
- self._session_id: str | None = None
- self._proc: asyncio.subprocess.Process | None = None
-
- @property
- def name(self) -> str:
- return "codex"
-
- @property
- def is_running(self) -> bool:
- return self._proc is not None and self._proc.returncode is None
-
- async def send(
- self, message: str, cwd: str, session_id: str | None = None
- ) -> AsyncIterator[AgentMessage]:
- sid = session_id or self._session_id or uuid.uuid4().hex[:12]
- self._session_id = sid
-
- if session_id:
- cmd = ["codex", "exec", "resume", session_id, "--json"]
- else:
- cmd = ["codex", "exec", message, "--json", "-C", cwd]
- if self._model:
- cmd += ["--model", self._model]
-
- try:
- self._proc = await asyncio.create_subprocess_exec(
- *cmd,
- stdout=asyncio.subprocess.PIPE,
- stderr=asyncio.subprocess.PIPE,
- cwd=cwd,
- )
- except FileNotFoundError:
- yield AgentMessage(
- "error",
- "Codex CLI not found. Install it: npm install -g @openai/codex",
- sid, {},
- )
- return
-
- async for line in self._proc.stdout:
- line = line.decode("utf-8", errors="replace").strip()
- if not line:
- continue
- try:
- event = json.loads(line)
- except json.JSONDecodeError:
- yield AgentMessage("text", line, sid, {})
- continue
-
- msg = self._parse_event(event, sid)
- if msg:
- yield msg
-
- await self._proc.wait()
-
- if self._proc.returncode and self._proc.returncode != 0:
- stderr = await self._proc.stderr.read()
- err = stderr.decode("utf-8", errors="replace").strip()
- if "rate" in err.lower() or "429" in err:
- yield AgentMessage("rate_limited", err, sid, {})
- else:
- yield AgentMessage("error", err or f"Exit code {self._proc.returncode}", sid, {})
-
- self._proc = None
-
- def _parse_event(self, event: dict, sid: str) -> AgentMessage | None:
- """Parse an NDJSON event from Codex CLI."""
- etype = event.get("type", "")
-
- if etype in ("message", "result", "text"):
- content = event.get("content", "") or event.get("result", "") or event.get("text", "")
- new_sid = event.get("session_id", sid)
- if new_sid:
- self._session_id = new_sid
- if content:
- return AgentMessage("text", content, self._session_id or sid, {})
-
- elif etype in ("tool_use", "function_call"):
- tool = event.get("name", event.get("function", "unknown"))
- return AgentMessage("tool_use", f"Using {tool}...", self._session_id or sid, {"tool": tool})
-
- elif etype == "error":
- msg = event.get("message", str(event))
- if "rate" in msg.lower() or "429" in msg:
- return AgentMessage("rate_limited", msg, self._session_id or sid, {})
- return AgentMessage("error", msg, self._session_id or sid, {})
-
- # Fallback: if there's a content field, emit as text
- if "content" in event and event["content"]:
- return AgentMessage("text", str(event["content"]), self._session_id or sid, {})
-
- return None
-
- async def stop(self) -> None:
- if self._proc and self._proc.returncode is None:
- self._proc.terminate()
- try:
- await asyncio.wait_for(self._proc.wait(), timeout=5.0)
- except asyncio.TimeoutError:
- self._proc.kill()
- self._proc = None
diff --git a/engram-bridge/engram_bridge/agents/custom.py b/engram-bridge/engram_bridge/agents/custom.py
deleted file mode 100644
index 01c71f5..0000000
--- a/engram-bridge/engram_bridge/agents/custom.py
+++ /dev/null
@@ -1,95 +0,0 @@
-"""Generic subprocess agent — wraps any CLI tool as an agent."""
-
-from __future__ import annotations
-
-import asyncio
-import uuid
-from typing import AsyncIterator
-
-from engram_bridge.agents.base import AgentMessage, BaseAgent
-from engram_bridge.config import AgentConfig
-
-
-class CustomAgent(BaseAgent):
- """Wraps an arbitrary CLI command as an agent.
-
- Config example (aider):
- {
- "type": "custom",
- "command": ["aider", "--message", "{prompt}", "--yes"],
- "cwd_flag": "--cwd"
- }
-
- The placeholder {prompt} in the command list is replaced with the user message.
- If cwd_flag is set, it's appended with the working directory.
- """
-
- def __init__(self, config: AgentConfig, agent_name: str = "custom"):
- self._command_template = config.command
- self._cwd_flag = config.cwd_flag
- self._agent_name = agent_name
- self._session_id: str | None = None
- self._proc: asyncio.subprocess.Process | None = None
-
- @property
- def name(self) -> str:
- return self._agent_name
-
- @property
- def is_running(self) -> bool:
- return self._proc is not None and self._proc.returncode is None
-
- async def send(
- self, message: str, cwd: str, session_id: str | None = None
- ) -> AsyncIterator[AgentMessage]:
- sid = session_id or self._session_id or uuid.uuid4().hex[:12]
- self._session_id = sid
-
- # Build command by substituting {prompt}
- cmd = [part.replace("{prompt}", message) for part in self._command_template]
- if self._cwd_flag:
- cmd += [self._cwd_flag, cwd]
-
- if not cmd:
- yield AgentMessage("error", "No command configured for this agent.", sid, {})
- return
-
- try:
- self._proc = await asyncio.create_subprocess_exec(
- *cmd,
- stdout=asyncio.subprocess.PIPE,
- stderr=asyncio.subprocess.PIPE,
- cwd=cwd,
- )
- except FileNotFoundError:
- yield AgentMessage(
- "error",
- f"Command not found: {cmd[0]}",
- sid, {},
- )
- return
-
- # Read stdout line by line
- async for line in self._proc.stdout:
- text = line.decode("utf-8", errors="replace").rstrip()
- if text:
- yield AgentMessage("text", text, sid, {})
-
- await self._proc.wait()
-
- if self._proc.returncode and self._proc.returncode != 0:
- stderr = await self._proc.stderr.read()
- err = stderr.decode("utf-8", errors="replace").strip()
- if err:
- yield AgentMessage("error", err[:1000], sid, {})
-
- self._proc = None
-
- async def stop(self) -> None:
- if self._proc and self._proc.returncode is None:
- self._proc.terminate()
- try:
- await asyncio.wait_for(self._proc.wait(), timeout=5.0)
- except asyncio.TimeoutError:
- self._proc.kill()
- self._proc = None
diff --git a/engram-bridge/engram_bridge/bridge.py b/engram-bridge/engram_bridge/bridge.py
deleted file mode 100644
index 4656945..0000000
--- a/engram-bridge/engram_bridge/bridge.py
+++ /dev/null
@@ -1,1120 +0,0 @@
-"""Bridge — the core orchestrator. Routes messages between channels and agents.
-
-No LLM in the loop. Pure routing logic:
- User on Telegram → Bridge → doer agent (Claude Code / Codex) → response back.
-
-Engram provides memory (auto-store exchanges) and the bus provides session
-handoffs / pub-sub signals.
-"""
-
-from __future__ import annotations
-
-import asyncio
-import logging
-import os
-import signal
-from dataclasses import dataclass, field
-from pathlib import Path
-
-from engram_bus import Bus
-
-from engram_bridge.agents.base import AgentMessage, BaseAgent
-from engram_bridge.agents.claude import ClaudeAgent
-from engram_bridge.agents.codex import CodexAgent
-from engram_bridge.agents.custom import CustomAgent
-from engram_bridge.channels.base import BaseChannel, IncomingMessage
-from engram_bridge.config import AgentConfig, BridgeConfig, load_config
-
-logger = logging.getLogger(__name__)
-
-
-@dataclass
-class UserSession:
- """Per-user active session state."""
- agent: BaseAgent
- repo: str
- agent_session_id: str | None = None
-
-
-class Bridge:
- """Orchestrates channels, agents, bus, and memory. No LLM — pure routing."""
-
- def __init__(self, config: BridgeConfig):
- self.config = config
-
- # Bus for session handoffs + pub/sub
- db_path = str(Path("~/.engram/handoff.db").expanduser())
- os.makedirs(os.path.dirname(db_path), exist_ok=True)
- self.bus = Bus(db_path=db_path)
-
- # Engram memory (lazy init)
- self._memory = None
- self._memory_init = config.auto_store
-
- # Channel
- self.channel: BaseChannel | None = None
-
- # Coordination layer (lazy init when enabled)
- self._coordinator = None
-
- # War room layer (lazy init when enabled)
- self._warroom = None
- self._monitor_role = None
- self._auto_picker = None
- self._auto_failover = None
- self._active_warroom: dict[int, str] = {} # user_id -> active room_id
-
- # Per-user sessions
- self._sessions: dict[int, UserSession] = {}
-
- def _get_memory(self):
- """Lazy-init Engram Memory to avoid import cost when memory is off."""
- if self._memory is None and self._memory_init:
- try:
- from engram.memory.main import Memory
- from engram.configs.base import MemoryConfig, LLMConfig, EmbedderConfig
-
- # For LLM: use "mock" unless a real provider is specified
- llm_provider = self.config.memory_provider
- if llm_provider == "simple":
- llm_provider = "mock"
- cfg = MemoryConfig(
- llm=LLMConfig(provider=llm_provider),
- embedder=EmbedderConfig(provider=self.config.memory_provider),
- vector_store={"provider": "memory", "config": {}},
- history_db_path=str(Path("~/.engram/bridge_memory.db").expanduser()),
- collection_name="bridge_exchanges",
- )
- # Disable echo for bridge (speed over depth)
- cfg.echo.enable_echo = False
- self._memory = Memory(config=cfg)
- except Exception as e:
- logger.warning("Failed to initialize Engram memory: %s", e)
- self._memory_init = False
- return self._memory
-
- async def _handle_stats_request(self, user_id: int) -> None:
- """Handle stats request from web UI — sends memory + session info."""
- from engram_bridge.channels.web import WebChannel
-
- if not isinstance(self.channel, WebChannel):
- return
-
- data: dict = {}
-
- # Memory stats
- mem = self._get_memory()
- if mem:
- try:
- data["memory"] = mem.get_stats(user_id=str(user_id))
- except Exception as e:
- logger.warning("Failed to get memory stats: %s", e)
-
- # Session info
- session = self._sessions.get(user_id)
- if session and session.agent:
- data["session"] = {
- "agent": session.agent.name,
- "repo": session.repo,
- "running": session.agent.is_running,
- "sessionId": session.agent_session_id,
- }
-
- await self.channel.send_stats(user_id, data)
-
- def _get_agents_info(self) -> list[dict]:
- """Return agent roster info for the dashboard."""
- agents = []
- # Map active sessions by agent name
- active_agents = {}
- for uid, session in self._sessions.items():
- if session.agent:
- active_agents[session.agent.name] = {
- "user_id": uid,
- "repo": session.repo,
- "running": session.agent.is_running,
- }
-
- for name, acfg in self.config.agents.items():
- status_info = active_agents.get(name)
- info = {
- "name": name,
- "type": acfg.type,
- "model": acfg.model,
- "status": "active" if status_info and status_info["running"] else
- "idle" if status_info else "offline",
- "repo": status_info["repo"] if status_info else None,
- }
- # Enrich with coordination registry data
- if self._coordinator:
- reg_info = self._coordinator.registry.get(name)
- if reg_info:
- info["capabilities"] = reg_info.get("capabilities", [])
- info["max_concurrent"] = reg_info.get("max_concurrent", 1)
- info["active_tasks"] = reg_info.get("active_tasks", [])
- info["coordination_status"] = reg_info.get("status", "")
- agents.append(info)
- return agents
-
- # ── Agent Factory ──
-
- def _create_agent(self, name: str) -> BaseAgent:
- """Create an agent instance from config."""
- acfg = self.config.agents.get(name)
- if not acfg:
- raise ValueError(
- f"Unknown agent '{name}'. Available: {list(self.config.agents.keys())}"
- )
- if acfg.type == "claude":
- return ClaudeAgent(acfg)
- elif acfg.type == "codex":
- return CodexAgent(acfg)
- elif acfg.type == "custom":
- return CustomAgent(acfg, agent_name=name)
- else:
- raise ValueError(f"Unknown agent type: {acfg.type}")
-
- # ── Lifecycle ──
-
- async def start(self) -> None:
- """Start the bridge — connects channel and begins listening."""
- if self.config.channel == "web":
- from engram_bridge.channels.web import WebChannel
-
- wc = WebChannel(
- host=self.config.web.host,
- port=self.config.web.port,
- auth_token=self.config.web.auth_token,
- allowed_users=self.config.allowed_users,
- )
- wc._on_stats_request = self._handle_stats_request
- wc._get_agents_info = self._get_agents_info
- # Replace ephemeral TaskStore with persistent EngramTaskStore + wire ProjectManager
- mem = self._get_memory()
- if mem:
- try:
- from engram_bridge.channels.web import EngramTaskStore
- wc.tasks = EngramTaskStore(mem, user_id="bridge")
- wc.tasks._bus = self.bus # wire bus for coordination events
- wc.set_memory(mem)
- logger.info("Using EngramTaskStore (persistent tasks) + ProjectManager")
- except Exception as e:
- logger.warning("Failed to init EngramTaskStore, using ephemeral: %s", e)
- # Initialize coordination layer if enabled
- if self.config.coordination.enabled and mem:
- try:
- from engram_bridge.coordination import Coordinator
- self._coordinator = Coordinator(mem, self.bus, self.config.coordination, default_agent=self.config.default_agent)
- self._coordinator.register_from_config(
- self.config.agents,
- caps_map=self.config.coordination.default_capabilities or None,
- )
- self._coordinator.start()
- wc._coordinator = self._coordinator
- logger.info("Coordination layer enabled")
-
- # Auto-execute: subscribe to bridge.task.execute events
- if self.config.coordination.auto_execute:
- self.bus.subscribe("bridge.task.execute", self._on_bus_task_execute)
- logger.info("Auto-execute enabled: tasks will start automatically after routing")
- except Exception as e:
- logger.warning("Failed to init coordination layer: %s", e)
- self._coordinator = None
-
- # Initialize war room layer if enabled
- if self.config.warroom.enabled and mem:
- try:
- from engram_warroom import WarRoom, MonitorRole, AutoPicker, AutoFailover
- self._warroom = WarRoom(mem, self.bus)
- self._monitor_role = MonitorRole(mem, self.bus, self._warroom)
- router = self._coordinator.router if self._coordinator else None
- self._auto_picker = AutoPicker(mem, self.bus, router=router)
- if self._coordinator:
- self._auto_failover = AutoFailover(
- self.bus, self._coordinator.registry,
- )
- wc._warroom = self._warroom
- wc._monitor_role = self._monitor_role
- logger.info("War room layer enabled")
- except Exception as e:
- logger.warning("Failed to init war room layer: %s", e)
-
- wc._bridge_config = self.config
- self.channel = wc
- else:
- from engram_bridge.channels.telegram import TelegramChannel
-
- self.channel = TelegramChannel(self.config.telegram_token, self.config.allowed_users)
-
- await self.channel.start(on_message=self.handle_message)
- self.bus.publish("bridge.started", {"channel": self.config.channel})
- logger.info("Bridge started on %s channel.", self.config.channel)
-
- async def stop(self) -> None:
- """Gracefully stop all sessions and the channel."""
- # Stop all active agents
- for uid, session in list(self._sessions.items()):
- if session.agent:
- self.bus.save_session(
- agent_id=session.agent.name,
- repo=session.repo,
- status="paused",
- task_summary="Bridge shutting down",
- )
- await session.agent.stop()
- self._sessions.clear()
-
- if self._coordinator:
- self._coordinator.stop()
- self._coordinator = None
-
- if self.channel:
- await self.channel.stop()
-
- mem = self._get_memory()
- if mem:
- mem.close()
-
- self.bus.close()
- logger.info("Bridge stopped.")
-
- # ── Message Handling ──
-
- async def handle_message(self, msg: IncomingMessage) -> None:
- """Main entry point for all incoming messages."""
- if msg.is_command:
- await self._handle_command(msg)
- return
-
- # Task-scoped messages: route to task handler instead of generic chat
- task_id = (msg.metadata or {}).get("task_id")
- if task_id:
- await self._handle_task_message(msg, task_id)
- return
-
- # War room messages: route through monitor if active
- if msg.user_id in self._active_warroom and self._warroom:
- await self._handle_warroom_message(msg)
- return
-
- session = self._sessions.get(msg.user_id)
- if not session or not session.agent:
- await self.channel.send_text(
- msg.chat_id, "No active session. Use /start "
- )
- return
-
- # Publish incoming message event
- self.bus.publish("bridge.message.in", {
- "user_id": msg.user_id, "text": msg.text[:200], "chat_id": msg.chat_id,
- })
-
- # Send "thinking" placeholder
- placeholder_id = await self.channel.send_text(msg.chat_id, "...")
-
- # Stream agent response
- full_response: list[str] = []
- last_tool = ""
-
- async for agent_msg in session.agent.send(
- msg.text, cwd=session.repo, session_id=session.agent_session_id
- ):
- if agent_msg.type == "rate_limited":
- await self._handle_rate_limit(msg, session, agent_msg)
- return
-
- if agent_msg.type == "error":
- await self.channel.edit_text(
- msg.chat_id, placeholder_id, f"Error: {agent_msg.content[:3500]}"
- )
- return
-
- if agent_msg.type == "tool_use":
- tool_display = agent_msg.content
- if tool_display != last_tool:
- last_tool = tool_display
- await self.channel.edit_text(
- msg.chat_id, placeholder_id, f"[{tool_display}]"
- )
-
- elif agent_msg.type == "text":
- full_response.append(agent_msg.content)
- session.agent_session_id = agent_msg.session_id
-
- # Send final response
- response_text = "\n".join(full_response) or "(no response)"
- await self.channel.edit_text(msg.chat_id, placeholder_id, response_text[:4096])
-
- # If response is longer than one Telegram message, send the rest
- if len(response_text) > 4096:
- await self.channel.send_text(msg.chat_id, response_text[4096:])
-
- # Auto-store in Engram memory
- mem = self._get_memory()
- if mem:
- try:
- mem.add(
- f"User: {msg.text}\nAgent: {response_text[:2000]}",
- user_id=str(msg.user_id),
- metadata={
- "source": self.config.channel,
- "agent": session.agent.name,
- "repo": session.repo,
- },
- )
- except Exception as e:
- logger.warning("Failed to store memory: %s", e)
-
- # Checkpoint to bus
- self.bus.put(
- f"session:{msg.user_id}:last_exchange",
- {"user": msg.text, "agent": response_text[:500], "repo": session.repo},
- agent=session.agent.name,
- ttl=3600,
- )
-
- # Publish outgoing message event
- self.bus.publish("bridge.message.out", {
- "user_id": msg.user_id, "agent": session.agent.name,
- "text": response_text[:200],
- })
-
- # ── Task-Scoped Message Handling ──
-
- async def _handle_task_message(self, msg: IncomingMessage, task_id: str) -> None:
- """Handle a message scoped to a specific task — streams to task conversation."""
- from engram_bridge.channels.web import WebChannel
-
- agent_name = (msg.metadata or {}).get("agent") or self.config.default_agent
- session = self._get_or_create_task_session(msg.user_id, agent_name)
-
- # Claim task via coordinator if available
- if self._coordinator:
- self._coordinator.claim(task_id, agent_name)
-
- # Publish incoming message event
- self.bus.publish("bridge.message.in", {
- "user_id": msg.user_id, "text": msg.text[:200],
- "chat_id": msg.chat_id, "task_id": task_id,
- })
-
- # Stream agent response, routing events to task conversation
- full_response: list[str] = []
- message_id = None
- last_tool = ""
-
- async for agent_msg in session.agent.send(
- msg.text, cwd=session.repo, session_id=session.agent_session_id
- ):
- if isinstance(self.channel, WebChannel):
- if agent_msg.type == "rate_limited":
- await self.channel.send_task_update(msg.chat_id, task_id, "task_error", {
- "content": "Agent rate limited. Try again later.",
- "agent": agent_name,
- })
- return
-
- if agent_msg.type == "error":
- await self.channel.send_task_update(msg.chat_id, task_id, "task_error", {
- "content": agent_msg.content[:3500],
- "agent": agent_name,
- })
- return
-
- if agent_msg.type == "tool_use":
- tool_display = agent_msg.content
- if tool_display != last_tool:
- last_tool = tool_display
- file_path = (agent_msg.metadata or {}).get("file_path") if hasattr(agent_msg, "metadata") else None
- await self.channel.send_task_update(msg.chat_id, task_id, "task_tool_use", {
- "content": tool_display,
- "tool": tool_display,
- "file_path": file_path,
- "agent": agent_name,
- })
-
- elif agent_msg.type == "text":
- full_response.append(agent_msg.content)
- session.agent_session_id = agent_msg.session_id
- if message_id is None:
- message_id = id(agent_msg)
- await self.channel.send_task_update(msg.chat_id, task_id, "task_text", {
- "content": agent_msg.content,
- "agent": agent_name,
- "message_id": message_id,
- "streaming": True,
- })
- else:
- await self.channel.send_task_update(msg.chat_id, task_id, "task_edit", {
- "content": "\n".join(full_response),
- "message_id": message_id,
- "streaming": True,
- })
-
- # Send completion
- if isinstance(self.channel, WebChannel):
- # Final edit with streaming=False
- if message_id is not None:
- await self.channel.send_task_update(msg.chat_id, task_id, "task_edit", {
- "content": "\n".join(full_response),
- "message_id": message_id,
- "streaming": False,
- })
- elif full_response:
- await self.channel.send_task_update(msg.chat_id, task_id, "task_text", {
- "content": "\n".join(full_response),
- "agent": agent_name,
- "streaming": False,
- })
- await self.channel.send_task_update(msg.chat_id, task_id, "task_complete", {
- "agent": agent_name,
- })
-
- # Auto-store in Engram memory
- response_text = "\n".join(full_response) or "(no response)"
- mem = self._get_memory()
- if mem:
- try:
- mem.add(
- f"User: {msg.text}\nAgent: {response_text[:2000]}",
- user_id=str(msg.user_id),
- metadata={
- "source": self.config.channel,
- "agent": agent_name,
- "repo": session.repo,
- "task_id": task_id,
- },
- )
- except Exception as e:
- logger.warning("Failed to store memory: %s", e)
-
- def _get_or_create_task_session(self, user_id: int, agent_name: str) -> UserSession:
- """Get an existing session for the agent, or create a new one.
-
- Reuses the user's session if the agent matches. Otherwise creates
- a new session. For auto-execute (no real user), uses a synthetic user_id.
- """
- session = self._sessions.get(user_id)
- if session and session.agent and session.agent.name == agent_name:
- return session
-
- agent = self._create_agent(agent_name)
- prev = self.bus.get_session(agent_id=agent_name)
- session_id = prev["id"] if prev else None
- new_session = UserSession(
- agent=agent,
- repo=os.getcwd(),
- agent_session_id=session_id,
- )
- self._sessions[user_id] = new_session
- return new_session
-
- # ── Auto-Execute ──
-
- def _on_bus_task_execute(self, topic: str, data: Any, agent_id: str | None) -> None:
- """Bus callback for bridge.task.execute — schedule auto-execution on the event loop."""
- try:
- loop = asyncio.get_event_loop()
- loop.create_task(self._auto_execute_task(data))
- except Exception as e:
- logger.error("Failed to schedule auto-execute: %s", e)
-
- async def _auto_execute_task(self, data: dict) -> None:
- """Build a prompt from task data and dispatch it through handle_message()."""
- from engram_bridge.channels.web import WebChannel
-
- task_id = data.get("task_id", "")
- agent_name = data.get("agent", self.config.default_agent)
- title = data.get("title", "")
- description = data.get("description", "")
-
- if not task_id:
- return
-
- # Build the prompt from task title + description
- prompt = title
- if description:
- prompt = f"{title}\n\n{description}"
-
- # Use a synthetic user_id to avoid session collisions with real users
- auto_user_id = hash(f"auto:{task_id}") & 0x7FFFFFFF
-
- # Store a system conversation entry to indicate auto-dispatch
- if isinstance(self.channel, WebChannel):
- self.channel.tasks.add_conversation_entry(task_id, {
- "type": "system",
- "content": f"Auto-dispatching to {agent_name}...",
- })
- # Broadcast task_auto_started to all WS clients
- self.channel._broadcast_ws("task_auto_started", {
- "task_id": task_id,
- "agent": agent_name,
- "title": title,
- })
-
- # Dispatch via handle_message
- incoming = IncomingMessage(
- user_id=auto_user_id,
- chat_id=auto_user_id,
- text=prompt,
- username=f"auto_{agent_name}",
- is_command=False,
- metadata={"task_id": task_id, "agent": agent_name},
- )
- await self.handle_message(incoming)
-
- # ── Rate Limit Handling ──
-
- async def _handle_rate_limit(
- self, msg: IncomingMessage, session: UserSession, agent_msg: AgentMessage
- ) -> None:
- """Save session digest and notify user when an agent is rate-limited."""
- self.bus.save_session(
- agent_id=session.agent.name,
- task_summary=f"Rate limited. Last message: {msg.text[:200]}",
- repo=session.repo,
- status="paused",
- )
- self.bus.publish("bridge.agent.rate_limited", {
- "user_id": msg.user_id,
- "agent": session.agent.name,
- "session_id": session.agent_session_id,
- })
-
- # Auto-failover if enabled
- if self._auto_failover and self.config.warroom.auto_failover:
- task_id = (msg.metadata or {}).get("task_id", "") if hasattr(msg, "metadata") else ""
- failover_agent = self._auto_failover.find_failover_agent(
- exclude=session.agent.name,
- )
- if failover_agent:
- self._auto_failover.execute_failover(
- from_agent=session.agent.name,
- to_agent=failover_agent,
- user_id=str(msg.user_id),
- task_id=task_id,
- last_message=msg.text[:200],
- )
- # Create new session with failover agent
- new_agent = self._create_agent(failover_agent)
- self._sessions[msg.user_id] = UserSession(
- agent=new_agent, repo=session.repo,
- )
- await self.channel.send_text(
- msg.chat_id,
- f"[{session.agent.name}] Rate limited. "
- f"Auto-switching to {failover_agent}...",
- )
- # Re-dispatch the original message
- new_msg = IncomingMessage(
- user_id=msg.user_id,
- chat_id=msg.chat_id,
- text=msg.text,
- username=msg.username,
- is_command=False,
- metadata=getattr(msg, "metadata", None),
- )
- asyncio.create_task(self.handle_message(new_msg))
- return
-
- await self.channel.send_text(
- msg.chat_id,
- f"[{session.agent.name}] Rate limited. Session saved.\n"
- f"Use /switch to continue with another agent.",
- )
-
- # ── Command Handling ──
-
- async def _handle_command(self, msg: IncomingMessage) -> None:
- """Dispatch bot commands."""
- handler = {
- "start": self._cmd_start,
- "switch": self._cmd_switch,
- "status": self._cmd_status,
- "agents": self._cmd_agents,
- "stop": self._cmd_stop,
- "sessions": self._cmd_sessions,
- "memory": self._cmd_memory,
- "warroom": self._cmd_warroom,
- "monitor": self._cmd_monitor,
- "decide": self._cmd_decide,
- }.get(msg.command)
-
- if handler:
- await handler(msg)
- else:
- await self.channel.send_text(msg.chat_id, f"Unknown command: /{msg.command}")
-
- async def _cmd_start(self, msg: IncomingMessage) -> None:
- """/start [agent] [repo] — start an agent session."""
- agent_name = msg.command_args[0] if msg.command_args else self.config.default_agent
- repo = msg.command_args[1] if len(msg.command_args) > 1 else os.getcwd()
- repo = os.path.expanduser(repo)
-
- if agent_name not in self.config.agents:
- available = ", ".join(self.config.agents.keys())
- await self.channel.send_text(
- msg.chat_id, f"Unknown agent '{agent_name}'. Available: {available}"
- )
- return
-
- agent = self._create_agent(agent_name)
-
- # Check for previous session to resume
- prev = self.bus.get_session(agent_id=agent_name)
- session_id = prev["id"] if prev else None
-
- self._sessions[msg.user_id] = UserSession(
- agent=agent, repo=repo, agent_session_id=session_id
- )
-
- if self._coordinator:
- self._coordinator.registry.update_status(agent_name, "available")
-
- self.bus.publish("bridge.agent.started", {
- "user_id": msg.user_id, "agent": agent_name, "repo": repo,
- })
-
- status = f"Session started: {agent_name} on {repo}"
- if prev:
- summary = prev.get("task_summary", "")[:100]
- status += f"\nResumed previous session: {summary}"
- await self.channel.send_text(msg.chat_id, status)
-
- # Surface pending tasks on session start
- mem = self._get_memory()
- if mem:
- try:
- from engram.memory.tasks import TaskManager
- tm = TaskManager(mem)
- pending = tm.get_pending_tasks(user_id=str(msg.user_id))
- if pending:
- lines = "\n".join(
- f" [{t['priority']}] {t['title']} ({t['status']})"
- for t in pending[:5]
- )
- await self.channel.send_text(msg.chat_id, f"Pending tasks:\n{lines}")
- except Exception as e:
- logger.debug("Could not surface pending tasks: %s", e)
-
- # Auto-pick top task if warroom enabled and no explicit repo/agent args
- explicit_args = len(msg.command_args) > 1
- if (
- self.config.warroom.auto_pick
- and self._auto_picker
- and not explicit_args
- ):
- try:
- task = self._auto_picker.pick_and_dispatch(
- user_id=str(msg.user_id), agent_name=agent_name,
- )
- if task:
- await self.channel.send_text(
- msg.chat_id,
- f"Auto-picked: [{task['priority']}] {task['title']}"
- f" — dispatching to {task.get('agent') or agent_name}...",
- )
- except Exception as e:
- logger.debug("Auto-pick failed: %s", e)
-
- async def _cmd_switch(self, msg: IncomingMessage) -> None:
- """/switch — switch active agent, saving current session."""
- if not msg.command_args:
- await self.channel.send_text(msg.chat_id, "Usage: /switch ")
- return
-
- new_agent_name = msg.command_args[0]
- if new_agent_name not in self.config.agents:
- available = ", ".join(self.config.agents.keys())
- await self.channel.send_text(
- msg.chat_id, f"Unknown agent '{new_agent_name}'. Available: {available}"
- )
- return
-
- session = self._sessions.get(msg.user_id)
- old_name = None
- repo = os.getcwd()
-
- if session and session.agent:
- old_name = session.agent.name
- repo = session.repo
- # Save current session
- self.bus.save_session(
- agent_id=old_name,
- task_summary=f"Switched to {new_agent_name}",
- repo=repo,
- status="paused",
- )
- await session.agent.stop()
-
- new_agent = self._create_agent(new_agent_name)
- self._sessions[msg.user_id] = UserSession(agent=new_agent, repo=repo)
-
- self.bus.publish("bridge.agent.switched", {
- "user_id": msg.user_id,
- "from": old_name,
- "to": new_agent_name,
- "repo": repo,
- })
-
- await self.channel.send_text(msg.chat_id, f"Switched to {new_agent_name} on {repo}")
-
- async def _cmd_status(self, msg: IncomingMessage) -> None:
- """/status — show active session info."""
- session = self._sessions.get(msg.user_id)
- if session and session.agent:
- await self.channel.send_text(
- msg.chat_id,
- f"Agent: {session.agent.name}\n"
- f"Repo: {session.repo}\n"
- f"Running: {session.agent.is_running}\n"
- f"Session: {session.agent_session_id or '(new)'}",
- )
- else:
- await self.channel.send_text(msg.chat_id, "No active session.")
-
- async def _cmd_agents(self, msg: IncomingMessage) -> None:
- """/agents — list configured agents."""
- lines = []
- for name, acfg in self.config.agents.items():
- marker = " (default)" if name == self.config.default_agent else ""
- lines.append(f" - {name} [{acfg.type}]{marker}")
- await self.channel.send_text(
- msg.chat_id, "Available agents:\n" + "\n".join(lines)
- )
-
- async def _cmd_stop(self, msg: IncomingMessage) -> None:
- """/stop — stop active agent and save session."""
- session = self._sessions.get(msg.user_id)
- if session and session.agent:
- self.bus.save_session(
- agent_id=session.agent.name,
- repo=session.repo,
- status="stopped",
- task_summary="User stopped session",
- )
- if self._coordinator:
- self._coordinator.registry.update_status(session.agent.name, "offline")
- await session.agent.stop()
- del self._sessions[msg.user_id]
- await self.channel.send_text(msg.chat_id, "Session stopped. State saved.")
- else:
- await self.channel.send_text(msg.chat_id, "No active session.")
-
- async def _cmd_sessions(self, msg: IncomingMessage) -> None:
- """/sessions — list recent handoff sessions."""
- sessions = self.bus.list_sessions()
- if not sessions:
- await self.channel.send_text(msg.chat_id, "No sessions found.")
- return
- lines = []
- for s in sessions[-10:]:
- status = s.get("status", "?")
- agent = s.get("agent_id", "?")
- summary = s.get("task_summary", "")[:80]
- lines.append(f" [{status}] {agent}: {summary}")
- await self.channel.send_text(
- msg.chat_id, "Recent sessions:\n" + "\n".join(lines)
- )
-
- async def _cmd_memory(self, msg: IncomingMessage) -> None:
- """/memory [search query] — search Engram memory or show stats."""
- mem = self._get_memory()
- if not mem:
- await self.channel.send_text(msg.chat_id, "Memory not configured.")
- return
-
- query = " ".join(msg.command_args) if msg.command_args else ""
- if not query:
- try:
- result = mem.get_all(user_id=str(msg.user_id), limit=0)
- count = len(result.get("results", []))
- await self.channel.send_text(
- msg.chat_id, f"Memory: {count} stored exchanges for your user."
- )
- except Exception as e:
- await self.channel.send_text(msg.chat_id, f"Memory error: {e}")
- return
-
- try:
- result = mem.search(query, user_id=str(msg.user_id), limit=5)
- results = result.get("results", [])
- if not results:
- await self.channel.send_text(msg.chat_id, "No memories found.")
- return
- lines = []
- for r in results:
- content = r.get("memory", r.get("content", ""))[:100]
- lines.append(f" - {content}")
- await self.channel.send_text(
- msg.chat_id, "Memories:\n" + "\n".join(lines)
- )
- except Exception as e:
- await self.channel.send_text(msg.chat_id, f"Memory search error: {e}")
-
- # ── War Room Commands ──
-
- async def _cmd_warroom(self, msg: IncomingMessage) -> None:
- """/warroom [topic] — create a war room or list active rooms."""
- if not self._warroom:
- await self.channel.send_text(msg.chat_id, "War room not enabled. Set warroom.enabled=true in config.")
- return
-
- topic = " ".join(msg.command_args) if msg.command_args else ""
-
- if not topic:
- # List active war rooms
- rooms = self._warroom.list_active()
- if not rooms:
- await self.channel.send_text(msg.chat_id, "No active war rooms.")
- return
- lines = []
- for r in rooms:
- state = r.get("wr_state", "?")
- monitor = r.get("wr_monitor_agent", "none")
- lines.append(f" [{state}] {r.get('wr_topic', '?')} (monitor: {monitor}, id: {r.get('id', '?')})")
- await self.channel.send_text(msg.chat_id, "Active war rooms:\n" + "\n".join(lines))
- return
-
- # Create a war room with all agents as participants
- participants = list(self.config.agents.keys())
- monitor = self.config.warroom.monitor_agent or self.config.default_agent
-
- room = self._warroom.create(
- topic=topic,
- participants=participants,
- monitor_agent=monitor,
- created_by=f"user:{msg.user_id}",
- )
- room_id = room.get("id", "")
- self._active_warroom[msg.user_id] = room_id
-
- # Transition to discussing
- self._warroom.transition(room_id, "discussing", by=f"user:{msg.user_id}")
-
- await self.channel.send_text(
- msg.chat_id,
- f"War room created: {topic}\n"
- f" ID: {room_id}\n"
- f" Monitor: {monitor}\n"
- f" Participants: {', '.join(participants)}\n"
- f"\nMessages in this session will be routed through the war room.",
- )
-
- async def _cmd_monitor(self, msg: IncomingMessage) -> None:
- """/monitor — assign an agent as monitor for the active war room."""
- if not self._warroom or not self._monitor_role:
- await self.channel.send_text(msg.chat_id, "War room not enabled.")
- return
-
- if not msg.command_args:
- await self.channel.send_text(msg.chat_id, "Usage: /monitor ")
- return
-
- agent_name = msg.command_args[0]
- if agent_name not in self.config.agents:
- available = ", ".join(self.config.agents.keys())
- await self.channel.send_text(msg.chat_id, f"Unknown agent '{agent_name}'. Available: {available}")
- return
-
- room_id = self._active_warroom.get(msg.user_id)
- if not room_id:
- await self.channel.send_text(msg.chat_id, "No active war room. Use /warroom first.")
- return
-
- result = self._monitor_role.assign(room_id, agent_name)
- if "error" in result:
- await self.channel.send_text(msg.chat_id, result["error"])
- else:
- await self.channel.send_text(
- msg.chat_id,
- f"Monitor changed: {result.get('old_monitor', 'none')} -> {agent_name}",
- )
-
- async def _cmd_decide(self, msg: IncomingMessage) -> None:
- """/decide — tell the monitor to synthesize a decision."""
- if not self._warroom or not self._monitor_role:
- await self.channel.send_text(msg.chat_id, "War room not enabled.")
- return
-
- room_id = self._active_warroom.get(msg.user_id)
- if not room_id:
- await self.channel.send_text(msg.chat_id, "No active war room.")
- return
-
- monitor_name = self._monitor_role.get_monitor(room_id)
- if not monitor_name:
- await self.channel.send_text(msg.chat_id, "No monitor assigned. Use /monitor .")
- return
-
- # Transition to deciding
- self._warroom.transition(room_id, "deciding", by=f"user:{msg.user_id}")
-
- # Build decision prompt and dispatch to monitor
- prompt = self._monitor_role.build_monitor_prompt(
- room_id,
- trigger_message="The user has requested a decision. Please synthesize the discussion "
- "and use @decide(your decision text) to record your final decision.",
- )
- await self._handle_warroom_dispatch(msg, room_id, monitor_name, prompt)
-
- async def _handle_warroom_message(self, msg: IncomingMessage) -> None:
- """Handle a user message while a war room is active.
-
- Posts to war room, builds monitor prompt, dispatches to monitor,
- parses directives, executes them.
- """
- room_id = self._active_warroom.get(msg.user_id)
- if not room_id or not self._warroom or not self._monitor_role:
- return
-
- # Post user message to war room
- self._warroom.post_message(room_id, "user", msg.text)
-
- # Get monitor and build prompt
- monitor_name = self._monitor_role.get_monitor(room_id)
- if not monitor_name:
- await self.channel.send_text(msg.chat_id, "No monitor assigned. Use /monitor .")
- return
-
- prompt = self._monitor_role.build_monitor_prompt(room_id, trigger_message=msg.text)
- await self._handle_warroom_dispatch(msg, room_id, monitor_name, prompt)
-
- async def _handle_warroom_dispatch(
- self, msg: IncomingMessage, room_id: str, monitor_name: str, prompt: str,
- ) -> None:
- """Send prompt to monitor agent and handle directives in response."""
- session = self._get_or_create_task_session(msg.user_id, monitor_name)
-
- # Send prompt to monitor and collect response
- placeholder_id = await self.channel.send_text(msg.chat_id, f"[{monitor_name}/monitor] ...")
- full_response: list[str] = []
-
- async for agent_msg in session.agent.send(
- prompt, cwd=session.repo, session_id=session.agent_session_id,
- ):
- if agent_msg.type == "text":
- full_response.append(agent_msg.content)
- session.agent_session_id = agent_msg.session_id
-
- response_text = "\n".join(full_response) or "(no response)"
- await self.channel.edit_text(msg.chat_id, placeholder_id, f"[{monitor_name}/monitor] {response_text[:4000]}")
-
- # Post monitor response to war room
- self._warroom.post_message(room_id, monitor_name, response_text, "message")
-
- # Parse for directives
- directives = self._monitor_role.parse_monitor_response(response_text)
- for directive in directives:
- dtype = directive.get("type")
-
- if dtype == "delegate":
- await self._dispatch_to_subagent(
- msg, room_id,
- directive["agent"], directive["instruction"],
- )
- elif dtype == "ask":
- await self._dispatch_to_subagent(
- msg, room_id,
- directive["agent"], directive["question"],
- )
- elif dtype == "decide":
- self._warroom.set_decision(room_id, directive["text"])
- await self.channel.send_text(
- msg.chat_id,
- f"Decision recorded: {directive['text'][:500]}",
- )
-
- async def _dispatch_to_subagent(
- self, msg: IncomingMessage, room_id: str, agent_name: str, instruction: str,
- ) -> None:
- """Dispatch a delegation/question to a subagent and post result back."""
- if agent_name not in self.config.agents:
- self._warroom.post_message(
- room_id, "system", f"Agent '{agent_name}' not found.", "system",
- )
- return
-
- prompt = self._monitor_role.build_delegation_prompt(room_id, agent_name, instruction)
- session = self._get_or_create_task_session(msg.user_id, agent_name)
-
- placeholder_id = await self.channel.send_text(msg.chat_id, f"[{agent_name}] ...")
- full_response: list[str] = []
-
- async for agent_msg in session.agent.send(
- prompt, cwd=session.repo, session_id=session.agent_session_id,
- ):
- if agent_msg.type == "text":
- full_response.append(agent_msg.content)
- session.agent_session_id = agent_msg.session_id
-
- response_text = "\n".join(full_response) or "(no response)"
- await self.channel.edit_text(msg.chat_id, placeholder_id, f"[{agent_name}] {response_text[:4000]}")
-
- # Post subagent response to war room
- self._warroom.post_message(room_id, agent_name, response_text)
-
-
-# ── Entry Point ──
-
-def main():
- """CLI entry point for engram-bridge."""
- import argparse
-
- parser = argparse.ArgumentParser(description="Engram Bridge — channel adapter for coding agents")
- parser.add_argument(
- "--config", "-c",
- default="~/.engram/bridge.json",
- help="Path to bridge config file (default: ~/.engram/bridge.json)",
- )
- parser.add_argument(
- "--channel",
- choices=["telegram", "web"],
- default=None,
- help="Channel to use (overrides config file)",
- )
- parser.add_argument(
- "--log-level",
- default="INFO",
- choices=["DEBUG", "INFO", "WARNING", "ERROR"],
- help="Logging level",
- )
- args = parser.parse_args()
-
- logging.basicConfig(
- level=getattr(logging, args.log_level),
- format="%(asctime)s [%(name)s] %(levelname)s: %(message)s",
- )
-
- config = load_config(args.config)
- if args.channel:
- config.channel = args.channel
- bridge = Bridge(config)
-
- loop = asyncio.new_event_loop()
- asyncio.set_event_loop(loop)
-
- async def run():
- await bridge.start()
- # Keep running until interrupted
- stop_event = asyncio.Event()
-
- def handle_signal():
- stop_event.set()
-
- loop.add_signal_handler(signal.SIGINT, handle_signal)
- loop.add_signal_handler(signal.SIGTERM, handle_signal)
-
- await stop_event.wait()
- await bridge.stop()
-
- try:
- loop.run_until_complete(run())
- except KeyboardInterrupt:
- loop.run_until_complete(bridge.stop())
- finally:
- loop.close()
-
-
-if __name__ == "__main__":
- main()
diff --git a/engram-bridge/engram_bridge/channels/__init__.py b/engram-bridge/engram_bridge/channels/__init__.py
deleted file mode 100644
index a290908..0000000
--- a/engram-bridge/engram_bridge/channels/__init__.py
+++ /dev/null
@@ -1,6 +0,0 @@
-from engram_bridge.channels.base import BaseChannel, IncomingMessage
-
-# TelegramChannel and WebChannel are lazy-imported in bridge.py to avoid
-# pulling in python-telegram-bot or fastapi when only one channel is used.
-
-__all__ = ["BaseChannel", "IncomingMessage"]
diff --git a/engram-bridge/engram_bridge/channels/base.py b/engram-bridge/engram_bridge/channels/base.py
deleted file mode 100644
index b855524..0000000
--- a/engram-bridge/engram_bridge/channels/base.py
+++ /dev/null
@@ -1,44 +0,0 @@
-"""Base channel interface for messaging platform adapters."""
-
-from __future__ import annotations
-
-from abc import ABC, abstractmethod
-from dataclasses import dataclass, field
-from typing import Awaitable, Callable
-
-
-@dataclass
-class IncomingMessage:
- """A message received from a channel (Telegram, Discord, etc.)."""
- user_id: int
- chat_id: int
- text: str
- username: str
- is_command: bool
- command: str | None = None # "start", "switch", "status", etc.
- command_args: list[str] = field(default_factory=list)
- metadata: dict | None = None # Extra data (e.g. task_id for web channel)
-
-
-class BaseChannel(ABC):
- """Abstract base for messaging platform adapters."""
-
- @abstractmethod
- async def start(self, on_message: Callable[[IncomingMessage], Awaitable[None]]) -> None:
- """Start listening for messages. Calls on_message for each incoming message."""
-
- @abstractmethod
- async def send_text(self, chat_id: int, text: str) -> int:
- """Send text to a chat. Returns the message_id."""
-
- @abstractmethod
- async def edit_text(self, chat_id: int, message_id: int, text: str) -> None:
- """Edit a previously sent message."""
-
- @abstractmethod
- async def send_file(self, chat_id: int, content: bytes, filename: str) -> None:
- """Send a file to a chat."""
-
- @abstractmethod
- async def stop(self) -> None:
- """Stop the channel listener."""
diff --git a/engram-bridge/engram_bridge/channels/telegram.py b/engram-bridge/engram_bridge/channels/telegram.py
deleted file mode 100644
index 190c427..0000000
--- a/engram-bridge/engram_bridge/channels/telegram.py
+++ /dev/null
@@ -1,131 +0,0 @@
-"""Telegram channel adapter using python-telegram-bot."""
-
-from __future__ import annotations
-
-import logging
-from typing import Awaitable, Callable
-
-from telegram import Update
-from telegram.ext import (
- Application,
- CommandHandler,
- MessageHandler,
- filters,
-)
-
-from engram_bridge.channels.base import BaseChannel, IncomingMessage
-from engram_bridge.utils import split_message
-
-logger = logging.getLogger(__name__)
-
-
-class TelegramChannel(BaseChannel):
- """Telegram bot adapter — receives messages and sends responses."""
-
- def __init__(self, token: str, allowed_users: list[int]):
- self._token = token
- self._allowed_users = set(allowed_users) if allowed_users else set()
- self._app: Application | None = None
- self._on_message: Callable[[IncomingMessage], Awaitable[None]] | None = None
-
- async def start(self, on_message: Callable[[IncomingMessage], Awaitable[None]]) -> None:
- self._on_message = on_message
- self._app = Application.builder().token(self._token).build()
-
- # Register commands
- for cmd in ("start", "switch", "status", "stop", "agents", "sessions", "memory"):
- self._app.add_handler(CommandHandler(cmd, self._handle_command))
-
- # Catch-all text → pipe to bridge
- self._app.add_handler(
- MessageHandler(filters.TEXT & ~filters.COMMAND, self._handle_text)
- )
-
- await self._app.initialize()
- await self._app.start()
- await self._app.updater.start_polling()
- logger.info("Telegram channel started. Listening for messages...")
-
- def _check_auth(self, user_id: int) -> bool:
- """Check if user is authorized. Empty allowed_users = allow all."""
- if not self._allowed_users:
- return True
- return user_id in self._allowed_users
-
- async def _handle_text(self, update: Update, context) -> None:
- """Handle non-command text messages."""
- if not update.effective_user or not update.message:
- return
- if not self._check_auth(update.effective_user.id):
- await update.message.reply_text("Not authorized.")
- return
-
- msg = IncomingMessage(
- user_id=update.effective_user.id,
- chat_id=update.effective_chat.id,
- text=update.message.text,
- username=update.effective_user.username or "",
- is_command=False,
- command=None,
- command_args=[],
- )
- await self._on_message(msg)
-
- async def _handle_command(self, update: Update, context) -> None:
- """Handle bot commands (/start, /switch, etc.)."""
- if not update.effective_user or not update.message:
- return
- if not self._check_auth(update.effective_user.id):
- await update.message.reply_text("Not authorized.")
- return
-
- text = update.message.text or ""
- parts = text.split()
- command = parts[0].lstrip("/").split("@")[0] # strip bot username suffix
- args = parts[1:] if len(parts) > 1 else []
-
- msg = IncomingMessage(
- user_id=update.effective_user.id,
- chat_id=update.effective_chat.id,
- text=text,
- username=update.effective_user.username or "",
- is_command=True,
- command=command,
- command_args=args,
- )
- await self._on_message(msg)
-
- async def send_text(self, chat_id: int, text: str) -> int:
- """Send text, auto-splitting at Telegram's 4096 char limit."""
- chunks = split_message(text)
- msg_id = 0
- for chunk in chunks:
- sent = await self._app.bot.send_message(chat_id, chunk)
- if msg_id == 0:
- msg_id = sent.message_id
- return msg_id
-
- async def edit_text(self, chat_id: int, message_id: int, text: str) -> None:
- """Edit a previously sent message."""
- try:
- await self._app.bot.edit_message_text(
- text[:4096], chat_id=chat_id, message_id=message_id
- )
- except Exception as e:
- # Telegram raises if message content is identical
- if "not modified" not in str(e).lower():
- logger.warning("Failed to edit message %d: %s", message_id, e)
-
- async def send_file(self, chat_id: int, content: bytes, filename: str) -> None:
- """Send a file as a document."""
- import io
- await self._app.bot.send_document(
- chat_id, document=io.BytesIO(content), filename=filename
- )
-
- async def stop(self) -> None:
- if self._app:
- await self._app.updater.stop()
- await self._app.stop()
- await self._app.shutdown()
- self._app = None
diff --git a/engram-bridge/engram_bridge/channels/web-ui/.gitignore b/engram-bridge/engram_bridge/channels/web-ui/.gitignore
deleted file mode 100644
index a547bf3..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/.gitignore
+++ /dev/null
@@ -1,24 +0,0 @@
-# Logs
-logs
-*.log
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
-pnpm-debug.log*
-lerna-debug.log*
-
-node_modules
-dist
-dist-ssr
-*.local
-
-# Editor directories and files
-.vscode/*
-!.vscode/extensions.json
-.idea
-.DS_Store
-*.suo
-*.ntvs*
-*.njsproj
-*.sln
-*.sw?
diff --git a/engram-bridge/engram_bridge/channels/web-ui/README.md b/engram-bridge/engram_bridge/channels/web-ui/README.md
deleted file mode 100644
index d2e7761..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/README.md
+++ /dev/null
@@ -1,73 +0,0 @@
-# React + TypeScript + Vite
-
-This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
-
-Currently, two official plugins are available:
-
-- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) (or [oxc](https://oxc.rs) when used in [rolldown-vite](https://vite.dev/guide/rolldown)) for Fast Refresh
-- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
-
-## React Compiler
-
-The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
-
-## Expanding the ESLint configuration
-
-If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
-
-```js
-export default defineConfig([
- globalIgnores(['dist']),
- {
- files: ['**/*.{ts,tsx}'],
- extends: [
- // Other configs...
-
- // Remove tseslint.configs.recommended and replace with this
- tseslint.configs.recommendedTypeChecked,
- // Alternatively, use this for stricter rules
- tseslint.configs.strictTypeChecked,
- // Optionally, add this for stylistic rules
- tseslint.configs.stylisticTypeChecked,
-
- // Other configs...
- ],
- languageOptions: {
- parserOptions: {
- project: ['./tsconfig.node.json', './tsconfig.app.json'],
- tsconfigRootDir: import.meta.dirname,
- },
- // other options...
- },
- },
-])
-```
-
-You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
-
-```js
-// eslint.config.js
-import reactX from 'eslint-plugin-react-x'
-import reactDom from 'eslint-plugin-react-dom'
-
-export default defineConfig([
- globalIgnores(['dist']),
- {
- files: ['**/*.{ts,tsx}'],
- extends: [
- // Other configs...
- // Enable lint rules for React
- reactX.configs['recommended-typescript'],
- // Enable lint rules for React DOM
- reactDom.configs.recommended,
- ],
- languageOptions: {
- parserOptions: {
- project: ['./tsconfig.node.json', './tsconfig.app.json'],
- tsconfigRootDir: import.meta.dirname,
- },
- // other options...
- },
- },
-])
-```
diff --git a/engram-bridge/engram_bridge/channels/web-ui/components.json b/engram-bridge/engram_bridge/channels/web-ui/components.json
deleted file mode 100644
index c3085d6..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/components.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "$schema": "https://ui.shadcn.com/schema.json",
- "style": "new-york",
- "rsc": false,
- "tsx": true,
- "tailwind": {
- "config": "",
- "css": "src/index.css",
- "baseColor": "neutral",
- "cssVariables": true,
- "prefix": ""
- },
- "iconLibrary": "lucide",
- "rtl": false,
- "aliases": {
- "components": "@/components",
- "utils": "@/lib/utils",
- "ui": "@/components/ui",
- "lib": "@/lib",
- "hooks": "@/hooks"
- },
- "registries": {}
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/eslint.config.js b/engram-bridge/engram_bridge/channels/web-ui/eslint.config.js
deleted file mode 100644
index 5e6b472..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/eslint.config.js
+++ /dev/null
@@ -1,23 +0,0 @@
-import js from '@eslint/js'
-import globals from 'globals'
-import reactHooks from 'eslint-plugin-react-hooks'
-import reactRefresh from 'eslint-plugin-react-refresh'
-import tseslint from 'typescript-eslint'
-import { defineConfig, globalIgnores } from 'eslint/config'
-
-export default defineConfig([
- globalIgnores(['dist']),
- {
- files: ['**/*.{ts,tsx}'],
- extends: [
- js.configs.recommended,
- tseslint.configs.recommended,
- reactHooks.configs.flat.recommended,
- reactRefresh.configs.vite,
- ],
- languageOptions: {
- ecmaVersion: 2020,
- globals: globals.browser,
- },
- },
-])
diff --git a/engram-bridge/engram_bridge/channels/web-ui/index.html b/engram-bridge/engram_bridge/channels/web-ui/index.html
deleted file mode 100644
index d56269f..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/index.html
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
- engram-bridge
-
-
-
-
-
-
diff --git a/engram-bridge/engram_bridge/channels/web-ui/package-lock.json b/engram-bridge/engram_bridge/channels/web-ui/package-lock.json
deleted file mode 100644
index 4195fdb..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/package-lock.json
+++ /dev/null
@@ -1,9696 +0,0 @@
-{
- "name": "web-ui",
- "version": "0.0.0",
- "lockfileVersion": 3,
- "requires": true,
- "packages": {
- "": {
- "name": "web-ui",
- "version": "0.0.0",
- "dependencies": {
- "@hello-pangea/dnd": "^18.0.1",
- "@tailwindcss/vite": "^4.1.18",
- "@tanstack/react-query": "^5.75.5",
- "@virtuoso.dev/message-list": "^1.15.2",
- "class-variance-authority": "^0.7.1",
- "clsx": "^2.1.1",
- "immer": "^10.1.1",
- "lucide-react": "^0.564.0",
- "radix-ui": "^1.4.3",
- "react": "^19.2.0",
- "react-dom": "^19.2.0",
- "react-hotkeys-hook": "^4.6.1",
- "react-router-dom": "^7.13.0",
- "react-virtuoso": "^4.18.1",
- "sonner": "^2.0.7",
- "tailwind-merge": "^3.4.0",
- "tailwindcss": "^4.1.18",
- "zustand": "^5.0.5"
- },
- "devDependencies": {
- "@eslint/js": "^9.39.1",
- "@types/node": "^24.10.1",
- "@types/react": "^19.2.7",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^5.1.1",
- "eslint": "^9.39.1",
- "eslint-plugin-react-hooks": "^7.0.1",
- "eslint-plugin-react-refresh": "^0.4.24",
- "globals": "^16.5.0",
- "shadcn": "^3.8.4",
- "tw-animate-css": "^1.4.0",
- "typescript": "~5.9.3",
- "typescript-eslint": "^8.48.0",
- "vite": "^7.3.1"
- }
- },
- "node_modules/@antfu/ni": {
- "version": "25.0.0",
- "resolved": "https://registry.npmjs.org/@antfu/ni/-/ni-25.0.0.tgz",
- "integrity": "sha512-9q/yCljni37pkMr4sPrI3G4jqdIk074+iukc5aFJl7kmDCCsiJrbZ6zKxnES1Gwg+i9RcDZwvktl23puGslmvA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansis": "^4.0.0",
- "fzf": "^0.5.2",
- "package-manager-detector": "^1.3.0",
- "tinyexec": "^1.0.1"
- },
- "bin": {
- "na": "bin/na.mjs",
- "nci": "bin/nci.mjs",
- "ni": "bin/ni.mjs",
- "nlx": "bin/nlx.mjs",
- "nr": "bin/nr.mjs",
- "nun": "bin/nun.mjs",
- "nup": "bin/nup.mjs"
- }
- },
- "node_modules/@babel/code-frame": {
- "version": "7.29.0",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
- "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.28.5",
- "js-tokens": "^4.0.0",
- "picocolors": "^1.1.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/compat-data": {
- "version": "7.29.0",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
- "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/core": {
- "version": "7.29.0",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
- "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.29.0",
- "@babel/generator": "^7.29.0",
- "@babel/helper-compilation-targets": "^7.28.6",
- "@babel/helper-module-transforms": "^7.28.6",
- "@babel/helpers": "^7.28.6",
- "@babel/parser": "^7.29.0",
- "@babel/template": "^7.28.6",
- "@babel/traverse": "^7.29.0",
- "@babel/types": "^7.29.0",
- "@jridgewell/remapping": "^2.3.5",
- "convert-source-map": "^2.0.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.2",
- "json5": "^2.2.3",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/babel"
- }
- },
- "node_modules/@babel/generator": {
- "version": "7.29.1",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
- "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/parser": "^7.29.0",
- "@babel/types": "^7.29.0",
- "@jridgewell/gen-mapping": "^0.3.12",
- "@jridgewell/trace-mapping": "^0.3.28",
- "jsesc": "^3.0.2"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-annotate-as-pure": {
- "version": "7.27.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz",
- "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.27.3"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-compilation-targets": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
- "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/compat-data": "^7.28.6",
- "@babel/helper-validator-option": "^7.27.1",
- "browserslist": "^4.24.0",
- "lru-cache": "^5.1.1",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-create-class-features-plugin": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.6.tgz",
- "integrity": "sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.27.3",
- "@babel/helper-member-expression-to-functions": "^7.28.5",
- "@babel/helper-optimise-call-expression": "^7.27.1",
- "@babel/helper-replace-supers": "^7.28.6",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",
- "@babel/traverse": "^7.28.6",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-globals": {
- "version": "7.28.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
- "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-member-expression-to-functions": {
- "version": "7.28.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz",
- "integrity": "sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/traverse": "^7.28.5",
- "@babel/types": "^7.28.5"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-imports": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
- "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/traverse": "^7.28.6",
- "@babel/types": "^7.28.6"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-transforms": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
- "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-module-imports": "^7.28.6",
- "@babel/helper-validator-identifier": "^7.28.5",
- "@babel/traverse": "^7.28.6"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-optimise-call-expression": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz",
- "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.27.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-plugin-utils": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz",
- "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-replace-supers": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.28.6.tgz",
- "integrity": "sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-member-expression-to-functions": "^7.28.5",
- "@babel/helper-optimise-call-expression": "^7.27.1",
- "@babel/traverse": "^7.28.6"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz",
- "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/traverse": "^7.27.1",
- "@babel/types": "^7.27.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-string-parser": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
- "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-identifier": {
- "version": "7.28.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
- "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-option": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
- "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helpers": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.6.tgz",
- "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/template": "^7.28.6",
- "@babel/types": "^7.28.6"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/parser": {
- "version": "7.29.0",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.0.tgz",
- "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.29.0"
- },
- "bin": {
- "parser": "bin/babel-parser.js"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@babel/plugin-syntax-jsx": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.28.6.tgz",
- "integrity": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.28.6"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-typescript": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.28.6.tgz",
- "integrity": "sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.28.6"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-modules-commonjs": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.28.6.tgz",
- "integrity": "sha512-jppVbf8IV9iWWwWTQIxJMAJCWBuuKx71475wHwYytrRGQ2CWiDvYlADQno3tcYpS/T2UUWFQp3nVtYfK/YBQrA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-module-transforms": "^7.28.6",
- "@babel/helper-plugin-utils": "^7.28.6"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-react-jsx-self": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
- "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.27.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-react-jsx-source": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
- "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.27.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-typescript": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.6.tgz",
- "integrity": "sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.27.3",
- "@babel/helper-create-class-features-plugin": "^7.28.6",
- "@babel/helper-plugin-utils": "^7.28.6",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",
- "@babel/plugin-syntax-typescript": "^7.28.6"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/preset-typescript": {
- "version": "7.28.5",
- "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.28.5.tgz",
- "integrity": "sha512-+bQy5WOI2V6LJZpPVxY+yp66XdZ2yifu0Mc1aP5CQKgjn4QM5IN2i5fAZ4xKop47pr8rpVhiAeu+nDQa12C8+g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.27.1",
- "@babel/helper-validator-option": "^7.27.1",
- "@babel/plugin-syntax-jsx": "^7.27.1",
- "@babel/plugin-transform-modules-commonjs": "^7.27.1",
- "@babel/plugin-transform-typescript": "^7.28.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/runtime": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.6.tgz",
- "integrity": "sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==",
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/template": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
- "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.28.6",
- "@babel/parser": "^7.28.6",
- "@babel/types": "^7.28.6"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/traverse": {
- "version": "7.29.0",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
- "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.29.0",
- "@babel/generator": "^7.29.0",
- "@babel/helper-globals": "^7.28.0",
- "@babel/parser": "^7.29.0",
- "@babel/template": "^7.28.6",
- "@babel/types": "^7.29.0",
- "debug": "^4.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/types": {
- "version": "7.29.0",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
- "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-string-parser": "^7.27.1",
- "@babel/helper-validator-identifier": "^7.28.5"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@dotenvx/dotenvx": {
- "version": "1.52.0",
- "resolved": "https://registry.npmjs.org/@dotenvx/dotenvx/-/dotenvx-1.52.0.tgz",
- "integrity": "sha512-CaQcc8JvtzQhUSm9877b6V4Tb7HCotkcyud9X2YwdqtQKwgljkMRwU96fVYKnzN3V0Hj74oP7Es+vZ0mS+Aa1w==",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "commander": "^11.1.0",
- "dotenv": "^17.2.1",
- "eciesjs": "^0.4.10",
- "execa": "^5.1.1",
- "fdir": "^6.2.0",
- "ignore": "^5.3.0",
- "object-treeify": "1.1.33",
- "picomatch": "^4.0.2",
- "which": "^4.0.0"
- },
- "bin": {
- "dotenvx": "src/cli/dotenvx.js"
- },
- "funding": {
- "url": "https://dotenvx.com"
- }
- },
- "node_modules/@dotenvx/dotenvx/node_modules/commander": {
- "version": "11.1.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz",
- "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=16"
- }
- },
- "node_modules/@dotenvx/dotenvx/node_modules/execa": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
- "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "cross-spawn": "^7.0.3",
- "get-stream": "^6.0.0",
- "human-signals": "^2.1.0",
- "is-stream": "^2.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^4.0.1",
- "onetime": "^5.1.2",
- "signal-exit": "^3.0.3",
- "strip-final-newline": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/execa?sponsor=1"
- }
- },
- "node_modules/@dotenvx/dotenvx/node_modules/get-stream": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
- "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@dotenvx/dotenvx/node_modules/human-signals": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
- "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": ">=10.17.0"
- }
- },
- "node_modules/@dotenvx/dotenvx/node_modules/is-stream": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
- "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@dotenvx/dotenvx/node_modules/isexe": {
- "version": "3.1.5",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.5.tgz",
- "integrity": "sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w==",
- "dev": true,
- "license": "BlueOak-1.0.0",
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@dotenvx/dotenvx/node_modules/npm-run-path": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
- "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "path-key": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@dotenvx/dotenvx/node_modules/onetime": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
- "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "mimic-fn": "^2.1.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@dotenvx/dotenvx/node_modules/signal-exit": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
- "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/@dotenvx/dotenvx/node_modules/strip-final-newline": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
- "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@dotenvx/dotenvx/node_modules/which": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz",
- "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "isexe": "^3.1.1"
- },
- "bin": {
- "node-which": "bin/which.js"
- },
- "engines": {
- "node": "^16.13.0 || >=18.0.0"
- }
- },
- "node_modules/@ecies/ciphers": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/@ecies/ciphers/-/ciphers-0.2.5.tgz",
- "integrity": "sha512-GalEZH4JgOMHYYcYmVqnFirFsjZHeoGMDt9IxEnM9F7GRUUyUksJ7Ou53L83WHJq3RWKD3AcBpo0iQh0oMpf8A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "bun": ">=1",
- "deno": ">=2",
- "node": ">=16"
- },
- "peerDependencies": {
- "@noble/ciphers": "^1.0.0"
- }
- },
- "node_modules/@esbuild/aix-ppc64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz",
- "integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==",
- "cpu": [
- "ppc64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "aix"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/android-arm": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.3.tgz",
- "integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/android-arm64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz",
- "integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/android-x64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.3.tgz",
- "integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/darwin-arm64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz",
- "integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/darwin-x64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz",
- "integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/freebsd-arm64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz",
- "integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/freebsd-x64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz",
- "integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-arm": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz",
- "integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-arm64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz",
- "integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-ia32": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz",
- "integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==",
- "cpu": [
- "ia32"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-loong64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz",
- "integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==",
- "cpu": [
- "loong64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-mips64el": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz",
- "integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==",
- "cpu": [
- "mips64el"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-ppc64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz",
- "integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==",
- "cpu": [
- "ppc64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-riscv64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz",
- "integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==",
- "cpu": [
- "riscv64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-s390x": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz",
- "integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==",
- "cpu": [
- "s390x"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-x64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz",
- "integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/netbsd-arm64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz",
- "integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "netbsd"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/netbsd-x64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz",
- "integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "netbsd"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/openbsd-arm64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz",
- "integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "openbsd"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/openbsd-x64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz",
- "integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "openbsd"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/openharmony-arm64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz",
- "integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "openharmony"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/sunos-x64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz",
- "integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "sunos"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/win32-arm64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz",
- "integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/win32-ia32": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz",
- "integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==",
- "cpu": [
- "ia32"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/win32-x64": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz",
- "integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@eslint-community/eslint-utils": {
- "version": "4.9.1",
- "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz",
- "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "eslint-visitor-keys": "^3.4.3"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- },
- "peerDependencies": {
- "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
- }
- },
- "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
- "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- }
- },
- "node_modules/@eslint-community/regexpp": {
- "version": "4.12.2",
- "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
- "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
- }
- },
- "node_modules/@eslint/config-array": {
- "version": "0.21.1",
- "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz",
- "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "@eslint/object-schema": "^2.1.7",
- "debug": "^4.3.1",
- "minimatch": "^3.1.2"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- }
- },
- "node_modules/@eslint/config-helpers": {
- "version": "0.4.2",
- "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz",
- "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "@eslint/core": "^0.17.0"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- }
- },
- "node_modules/@eslint/core": {
- "version": "0.17.0",
- "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz",
- "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "@types/json-schema": "^7.0.15"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- }
- },
- "node_modules/@eslint/eslintrc": {
- "version": "3.3.3",
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.3.tgz",
- "integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ajv": "^6.12.4",
- "debug": "^4.3.2",
- "espree": "^10.0.1",
- "globals": "^14.0.0",
- "ignore": "^5.2.0",
- "import-fresh": "^3.2.1",
- "js-yaml": "^4.1.1",
- "minimatch": "^3.1.2",
- "strip-json-comments": "^3.1.1"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- }
- },
- "node_modules/@eslint/eslintrc/node_modules/globals": {
- "version": "14.0.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
- "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@eslint/js": {
- "version": "9.39.2",
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.2.tgz",
- "integrity": "sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "url": "https://eslint.org/donate"
- }
- },
- "node_modules/@eslint/object-schema": {
- "version": "2.1.7",
- "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz",
- "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- }
- },
- "node_modules/@eslint/plugin-kit": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz",
- "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "@eslint/core": "^0.17.0",
- "levn": "^0.4.1"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- }
- },
- "node_modules/@floating-ui/core": {
- "version": "1.7.4",
- "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.4.tgz",
- "integrity": "sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg==",
- "license": "MIT",
- "dependencies": {
- "@floating-ui/utils": "^0.2.10"
- }
- },
- "node_modules/@floating-ui/dom": {
- "version": "1.7.5",
- "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.5.tgz",
- "integrity": "sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg==",
- "license": "MIT",
- "dependencies": {
- "@floating-ui/core": "^1.7.4",
- "@floating-ui/utils": "^0.2.10"
- }
- },
- "node_modules/@floating-ui/react-dom": {
- "version": "2.1.7",
- "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.7.tgz",
- "integrity": "sha512-0tLRojf/1Go2JgEVm+3Frg9A3IW8bJgKgdO0BN5RkF//ufuz2joZM63Npau2ff3J6lUVYgDSNzNkR+aH3IVfjg==",
- "license": "MIT",
- "dependencies": {
- "@floating-ui/dom": "^1.7.5"
- },
- "peerDependencies": {
- "react": ">=16.8.0",
- "react-dom": ">=16.8.0"
- }
- },
- "node_modules/@floating-ui/utils": {
- "version": "0.2.10",
- "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.10.tgz",
- "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==",
- "license": "MIT"
- },
- "node_modules/@hello-pangea/dnd": {
- "version": "18.0.1",
- "resolved": "https://registry.npmjs.org/@hello-pangea/dnd/-/dnd-18.0.1.tgz",
- "integrity": "sha512-xojVWG8s/TGrKT1fC8K2tIWeejJYTAeJuj36zM//yEm/ZrnZUSFGS15BpO+jGZT1ybWvyXmeDJwPYb4dhWlbZQ==",
- "license": "Apache-2.0",
- "dependencies": {
- "@babel/runtime": "^7.26.7",
- "css-box-model": "^1.2.1",
- "raf-schd": "^4.0.3",
- "react-redux": "^9.2.0",
- "redux": "^5.0.1"
- },
- "peerDependencies": {
- "react": "^18.0.0 || ^19.0.0",
- "react-dom": "^18.0.0 || ^19.0.0"
- }
- },
- "node_modules/@hono/node-server": {
- "version": "1.19.9",
- "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.9.tgz",
- "integrity": "sha512-vHL6w3ecZsky+8P5MD+eFfaGTyCeOHUIFYMGpQGbrBTSmNNoxv0if69rEZ5giu36weC5saFuznL411gRX7bJDw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18.14.1"
- },
- "peerDependencies": {
- "hono": "^4"
- }
- },
- "node_modules/@humanfs/core": {
- "version": "0.19.1",
- "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
- "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": ">=18.18.0"
- }
- },
- "node_modules/@humanfs/node": {
- "version": "0.16.7",
- "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz",
- "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "@humanfs/core": "^0.19.1",
- "@humanwhocodes/retry": "^0.4.0"
- },
- "engines": {
- "node": ">=18.18.0"
- }
- },
- "node_modules/@humanwhocodes/module-importer": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
- "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": ">=12.22"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/nzakas"
- }
- },
- "node_modules/@humanwhocodes/retry": {
- "version": "0.4.3",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
- "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": ">=18.18"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/nzakas"
- }
- },
- "node_modules/@inquirer/ansi": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-1.0.2.tgz",
- "integrity": "sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@inquirer/confirm": {
- "version": "5.1.21",
- "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.21.tgz",
- "integrity": "sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@inquirer/core": "^10.3.2",
- "@inquirer/type": "^3.0.10"
- },
- "engines": {
- "node": ">=18"
- },
- "peerDependencies": {
- "@types/node": ">=18"
- },
- "peerDependenciesMeta": {
- "@types/node": {
- "optional": true
- }
- }
- },
- "node_modules/@inquirer/core": {
- "version": "10.3.2",
- "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.3.2.tgz",
- "integrity": "sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@inquirer/ansi": "^1.0.2",
- "@inquirer/figures": "^1.0.15",
- "@inquirer/type": "^3.0.10",
- "cli-width": "^4.1.0",
- "mute-stream": "^2.0.0",
- "signal-exit": "^4.1.0",
- "wrap-ansi": "^6.2.0",
- "yoctocolors-cjs": "^2.1.3"
- },
- "engines": {
- "node": ">=18"
- },
- "peerDependencies": {
- "@types/node": ">=18"
- },
- "peerDependenciesMeta": {
- "@types/node": {
- "optional": true
- }
- }
- },
- "node_modules/@inquirer/figures": {
- "version": "1.0.15",
- "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.15.tgz",
- "integrity": "sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@inquirer/type": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-3.0.10.tgz",
- "integrity": "sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "peerDependencies": {
- "@types/node": ">=18"
- },
- "peerDependenciesMeta": {
- "@types/node": {
- "optional": true
- }
- }
- },
- "node_modules/@isaacs/cliui": {
- "version": "9.0.0",
- "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-9.0.0.tgz",
- "integrity": "sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==",
- "dev": true,
- "license": "BlueOak-1.0.0",
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.13",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
- "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
- "license": "MIT",
- "dependencies": {
- "@jridgewell/sourcemap-codec": "^1.5.0",
- "@jridgewell/trace-mapping": "^0.3.24"
- }
- },
- "node_modules/@jridgewell/remapping": {
- "version": "2.3.5",
- "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
- "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
- "license": "MIT",
- "dependencies": {
- "@jridgewell/gen-mapping": "^0.3.5",
- "@jridgewell/trace-mapping": "^0.3.24"
- }
- },
- "node_modules/@jridgewell/resolve-uri": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
- "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
- "license": "MIT",
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/sourcemap-codec": {
- "version": "1.5.5",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
- "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
- "license": "MIT"
- },
- "node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.31",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
- "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
- "license": "MIT",
- "dependencies": {
- "@jridgewell/resolve-uri": "^3.1.0",
- "@jridgewell/sourcemap-codec": "^1.4.14"
- }
- },
- "node_modules/@modelcontextprotocol/sdk": {
- "version": "1.26.0",
- "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.26.0.tgz",
- "integrity": "sha512-Y5RmPncpiDtTXDbLKswIJzTqu2hyBKxTNsgKqKclDbhIgg1wgtf1fRuvxgTnRfcnxtvvgbIEcqUOzZrJ6iSReg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@hono/node-server": "^1.19.9",
- "ajv": "^8.17.1",
- "ajv-formats": "^3.0.1",
- "content-type": "^1.0.5",
- "cors": "^2.8.5",
- "cross-spawn": "^7.0.5",
- "eventsource": "^3.0.2",
- "eventsource-parser": "^3.0.0",
- "express": "^5.2.1",
- "express-rate-limit": "^8.2.1",
- "hono": "^4.11.4",
- "jose": "^6.1.3",
- "json-schema-typed": "^8.0.2",
- "pkce-challenge": "^5.0.0",
- "raw-body": "^3.0.0",
- "zod": "^3.25 || ^4.0",
- "zod-to-json-schema": "^3.25.1"
- },
- "engines": {
- "node": ">=18"
- },
- "peerDependencies": {
- "@cfworker/json-schema": "^4.1.1",
- "zod": "^3.25 || ^4.0"
- },
- "peerDependenciesMeta": {
- "@cfworker/json-schema": {
- "optional": true
- },
- "zod": {
- "optional": false
- }
- }
- },
- "node_modules/@modelcontextprotocol/sdk/node_modules/ajv": {
- "version": "8.17.1",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
- "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fast-deep-equal": "^3.1.3",
- "fast-uri": "^3.0.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/@modelcontextprotocol/sdk/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@mswjs/interceptors": {
- "version": "0.41.2",
- "resolved": "https://registry.npmjs.org/@mswjs/interceptors/-/interceptors-0.41.2.tgz",
- "integrity": "sha512-7G0Uf0yK3f2bjElBLGHIQzgRgMESczOMyYVasq1XK8P5HaXtlW4eQhz9MBL+TQILZLaruq+ClGId+hH0w4jvWw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@open-draft/deferred-promise": "^2.2.0",
- "@open-draft/logger": "^0.3.0",
- "@open-draft/until": "^2.0.0",
- "is-node-process": "^1.2.0",
- "outvariant": "^1.4.3",
- "strict-event-emitter": "^0.5.1"
- },
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@noble/ciphers": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.3.0.tgz",
- "integrity": "sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^14.21.3 || >=16"
- },
- "funding": {
- "url": "https://paulmillr.com/funding/"
- }
- },
- "node_modules/@noble/curves": {
- "version": "1.9.7",
- "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.9.7.tgz",
- "integrity": "sha512-gbKGcRUYIjA3/zCCNaWDciTMFI0dCkvou3TL8Zmy5Nc7sJ47a0jtOeZoTaMxkuqRo9cRhjOdZJXegxYE5FN/xw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@noble/hashes": "1.8.0"
- },
- "engines": {
- "node": "^14.21.3 || >=16"
- },
- "funding": {
- "url": "https://paulmillr.com/funding/"
- }
- },
- "node_modules/@noble/hashes": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz",
- "integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^14.21.3 || >=16"
- },
- "funding": {
- "url": "https://paulmillr.com/funding/"
- }
- },
- "node_modules/@nodelib/fs.scandir": {
- "version": "2.1.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
- "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@nodelib/fs.stat": "2.0.5",
- "run-parallel": "^1.1.9"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@nodelib/fs.stat": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
- "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@nodelib/fs.walk": {
- "version": "1.2.8",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
- "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@nodelib/fs.scandir": "2.1.5",
- "fastq": "^1.6.0"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@open-draft/deferred-promise": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@open-draft/deferred-promise/-/deferred-promise-2.2.0.tgz",
- "integrity": "sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@open-draft/logger": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/@open-draft/logger/-/logger-0.3.0.tgz",
- "integrity": "sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-node-process": "^1.2.0",
- "outvariant": "^1.4.0"
- }
- },
- "node_modules/@open-draft/until": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/@open-draft/until/-/until-2.1.0.tgz",
- "integrity": "sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@radix-ui/number": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.1.tgz",
- "integrity": "sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==",
- "license": "MIT"
- },
- "node_modules/@radix-ui/primitive": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.3.tgz",
- "integrity": "sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==",
- "license": "MIT"
- },
- "node_modules/@radix-ui/react-accessible-icon": {
- "version": "1.1.7",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-accessible-icon/-/react-accessible-icon-1.1.7.tgz",
- "integrity": "sha512-XM+E4WXl0OqUJFovy6GjmxxFyx9opfCAIUku4dlKRd5YEPqt4kALOkQOp0Of6reHuUkJuiPBEc5k0o4z4lTC8A==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-visually-hidden": "1.2.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-accordion": {
- "version": "1.2.12",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-accordion/-/react-accordion-1.2.12.tgz",
- "integrity": "sha512-T4nygeh9YE9dLRPhAHSeOZi7HBXo+0kYIPJXayZfvWOWA0+n3dESrZbjfDPUABkUNym6Hd+f2IR113To8D2GPA==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-collapsible": "1.1.12",
- "@radix-ui/react-collection": "1.1.7",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-controllable-state": "1.2.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-alert-dialog": {
- "version": "1.1.15",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-alert-dialog/-/react-alert-dialog-1.1.15.tgz",
- "integrity": "sha512-oTVLkEw5GpdRe29BqJ0LSDFWI3qu0vR1M0mUkOQWDIUnY/QIkLpgDMWuKxP94c2NAC2LGcgVhG1ImF3jkZ5wXw==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-dialog": "1.1.15",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-slot": "1.2.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-arrow": {
- "version": "1.1.7",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.1.7.tgz",
- "integrity": "sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-primitive": "2.1.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-aspect-ratio": {
- "version": "1.1.7",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-aspect-ratio/-/react-aspect-ratio-1.1.7.tgz",
- "integrity": "sha512-Yq6lvO9HQyPwev1onK1daHCHqXVLzPhSVjmsNjCa2Zcxy2f7uJD2itDtxknv6FzAKCwD1qQkeVDmX/cev13n/g==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-primitive": "2.1.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-avatar": {
- "version": "1.1.10",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-avatar/-/react-avatar-1.1.10.tgz",
- "integrity": "sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-callback-ref": "1.1.1",
- "@radix-ui/react-use-is-hydrated": "0.1.0",
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-checkbox": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-checkbox/-/react-checkbox-1.3.3.tgz",
- "integrity": "sha512-wBbpv+NQftHDdG86Qc0pIyXk5IR3tM8Vd0nWLKDcX8nNn4nXFOFwsKuqw2okA/1D/mpaAkmuyndrPJTYDNZtFw==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "@radix-ui/react-use-previous": "1.1.1",
- "@radix-ui/react-use-size": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-collapsible": {
- "version": "1.1.12",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-collapsible/-/react-collapsible-1.1.12.tgz",
- "integrity": "sha512-Uu+mSh4agx2ib1uIGPP4/CKNULyajb3p92LsVXmH2EHVMTfZWpll88XJ0j4W0z3f8NK1eYl1+Mf/szHPmcHzyA==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-collection": {
- "version": "1.1.7",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.1.7.tgz",
- "integrity": "sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-slot": "1.2.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-compose-refs": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz",
- "integrity": "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==",
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-context": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.2.tgz",
- "integrity": "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==",
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-context-menu": {
- "version": "2.2.16",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-context-menu/-/react-context-menu-2.2.16.tgz",
- "integrity": "sha512-O8morBEW+HsVG28gYDZPTrT9UUovQUlJue5YO836tiTJhuIWBm/zQHc7j388sHWtdH/xUZurK9olD2+pcqx5ww==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-menu": "2.1.16",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-callback-ref": "1.1.1",
- "@radix-ui/react-use-controllable-state": "1.2.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-dialog": {
- "version": "1.1.15",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.15.tgz",
- "integrity": "sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-dismissable-layer": "1.1.11",
- "@radix-ui/react-focus-guards": "1.1.3",
- "@radix-ui/react-focus-scope": "1.1.7",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-portal": "1.1.9",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-slot": "1.2.3",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "aria-hidden": "^1.2.4",
- "react-remove-scroll": "^2.6.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-direction": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.1.tgz",
- "integrity": "sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==",
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-dismissable-layer": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.11.tgz",
- "integrity": "sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-callback-ref": "1.1.1",
- "@radix-ui/react-use-escape-keydown": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-dropdown-menu": {
- "version": "2.1.16",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-dropdown-menu/-/react-dropdown-menu-2.1.16.tgz",
- "integrity": "sha512-1PLGQEynI/3OX/ftV54COn+3Sud/Mn8vALg2rWnBLnRaGtJDduNW/22XjlGgPdpcIbiQxjKtb7BkcjP00nqfJw==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-menu": "2.1.16",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-controllable-state": "1.2.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-focus-guards": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.3.tgz",
- "integrity": "sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==",
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-focus-scope": {
- "version": "1.1.7",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.7.tgz",
- "integrity": "sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-callback-ref": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-form": {
- "version": "0.1.8",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-form/-/react-form-0.1.8.tgz",
- "integrity": "sha512-QM70k4Zwjttifr5a4sZFts9fn8FzHYvQ5PiB19O2HsYibaHSVt9fH9rzB0XZo/YcM+b7t/p7lYCT/F5eOeF5yQ==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-label": "2.1.7",
- "@radix-ui/react-primitive": "2.1.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-hover-card": {
- "version": "1.1.15",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-hover-card/-/react-hover-card-1.1.15.tgz",
- "integrity": "sha512-qgTkjNT1CfKMoP0rcasmlH2r1DAiYicWsDsufxl940sT2wHNEWWv6FMWIQXWhVdmC1d/HYfbhQx60KYyAtKxjg==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-dismissable-layer": "1.1.11",
- "@radix-ui/react-popper": "1.2.8",
- "@radix-ui/react-portal": "1.1.9",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-controllable-state": "1.2.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-id": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.1.tgz",
- "integrity": "sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-label": {
- "version": "2.1.7",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-label/-/react-label-2.1.7.tgz",
- "integrity": "sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-primitive": "2.1.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-menu": {
- "version": "2.1.16",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-menu/-/react-menu-2.1.16.tgz",
- "integrity": "sha512-72F2T+PLlphrqLcAotYPp0uJMr5SjP5SL01wfEspJbru5Zs5vQaSHb4VB3ZMJPimgHHCHG7gMOeOB9H3Hdmtxg==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-collection": "1.1.7",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-dismissable-layer": "1.1.11",
- "@radix-ui/react-focus-guards": "1.1.3",
- "@radix-ui/react-focus-scope": "1.1.7",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-popper": "1.2.8",
- "@radix-ui/react-portal": "1.1.9",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-roving-focus": "1.1.11",
- "@radix-ui/react-slot": "1.2.3",
- "@radix-ui/react-use-callback-ref": "1.1.1",
- "aria-hidden": "^1.2.4",
- "react-remove-scroll": "^2.6.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-menubar": {
- "version": "1.1.16",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-menubar/-/react-menubar-1.1.16.tgz",
- "integrity": "sha512-EB1FktTz5xRRi2Er974AUQZWg2yVBb1yjip38/lgwtCVRd3a+maUoGHN/xs9Yv8SY8QwbSEb+YrxGadVWbEutA==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-collection": "1.1.7",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-menu": "2.1.16",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-roving-focus": "1.1.11",
- "@radix-ui/react-use-controllable-state": "1.2.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-navigation-menu": {
- "version": "1.2.14",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-navigation-menu/-/react-navigation-menu-1.2.14.tgz",
- "integrity": "sha512-YB9mTFQvCOAQMHU+C/jVl96WmuWeltyUEpRJJky51huhds5W2FQr1J8D/16sQlf0ozxkPK8uF3niQMdUwZPv5w==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-collection": "1.1.7",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-dismissable-layer": "1.1.11",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-callback-ref": "1.1.1",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "@radix-ui/react-use-layout-effect": "1.1.1",
- "@radix-ui/react-use-previous": "1.1.1",
- "@radix-ui/react-visually-hidden": "1.2.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-one-time-password-field": {
- "version": "0.1.8",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-one-time-password-field/-/react-one-time-password-field-0.1.8.tgz",
- "integrity": "sha512-ycS4rbwURavDPVjCb5iS3aG4lURFDILi6sKI/WITUMZ13gMmn/xGjpLoqBAalhJaDk8I3UbCM5GzKHrnzwHbvg==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/number": "1.1.1",
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-collection": "1.1.7",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-roving-focus": "1.1.11",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "@radix-ui/react-use-effect-event": "0.0.2",
- "@radix-ui/react-use-is-hydrated": "0.1.0",
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-password-toggle-field": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-password-toggle-field/-/react-password-toggle-field-0.1.3.tgz",
- "integrity": "sha512-/UuCrDBWravcaMix4TdT+qlNdVwOM1Nck9kWx/vafXsdfj1ChfhOdfi3cy9SGBpWgTXwYCuboT/oYpJy3clqfw==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "@radix-ui/react-use-effect-event": "0.0.2",
- "@radix-ui/react-use-is-hydrated": "0.1.0"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-popover": {
- "version": "1.1.15",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-popover/-/react-popover-1.1.15.tgz",
- "integrity": "sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-dismissable-layer": "1.1.11",
- "@radix-ui/react-focus-guards": "1.1.3",
- "@radix-ui/react-focus-scope": "1.1.7",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-popper": "1.2.8",
- "@radix-ui/react-portal": "1.1.9",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-slot": "1.2.3",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "aria-hidden": "^1.2.4",
- "react-remove-scroll": "^2.6.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-popper": {
- "version": "1.2.8",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.2.8.tgz",
- "integrity": "sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==",
- "license": "MIT",
- "dependencies": {
- "@floating-ui/react-dom": "^2.0.0",
- "@radix-ui/react-arrow": "1.1.7",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-callback-ref": "1.1.1",
- "@radix-ui/react-use-layout-effect": "1.1.1",
- "@radix-ui/react-use-rect": "1.1.1",
- "@radix-ui/react-use-size": "1.1.1",
- "@radix-ui/rect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-portal": {
- "version": "1.1.9",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.9.tgz",
- "integrity": "sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-presence": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.5.tgz",
- "integrity": "sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-primitive": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz",
- "integrity": "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-slot": "1.2.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-progress": {
- "version": "1.1.7",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-progress/-/react-progress-1.1.7.tgz",
- "integrity": "sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-primitive": "2.1.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-radio-group": {
- "version": "1.3.8",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-radio-group/-/react-radio-group-1.3.8.tgz",
- "integrity": "sha512-VBKYIYImA5zsxACdisNQ3BjCBfmbGH3kQlnFVqlWU4tXwjy7cGX8ta80BcrO+WJXIn5iBylEH3K6ZTlee//lgQ==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-roving-focus": "1.1.11",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "@radix-ui/react-use-previous": "1.1.1",
- "@radix-ui/react-use-size": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-roving-focus": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.1.11.tgz",
- "integrity": "sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-collection": "1.1.7",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-callback-ref": "1.1.1",
- "@radix-ui/react-use-controllable-state": "1.2.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-scroll-area": {
- "version": "1.2.10",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.2.10.tgz",
- "integrity": "sha512-tAXIa1g3sM5CGpVT0uIbUx/U3Gs5N8T52IICuCtObaos1S8fzsrPXG5WObkQN3S6NVl6wKgPhAIiBGbWnvc97A==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/number": "1.1.1",
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-callback-ref": "1.1.1",
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-select": {
- "version": "2.2.6",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-select/-/react-select-2.2.6.tgz",
- "integrity": "sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/number": "1.1.1",
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-collection": "1.1.7",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-dismissable-layer": "1.1.11",
- "@radix-ui/react-focus-guards": "1.1.3",
- "@radix-ui/react-focus-scope": "1.1.7",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-popper": "1.2.8",
- "@radix-ui/react-portal": "1.1.9",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-slot": "1.2.3",
- "@radix-ui/react-use-callback-ref": "1.1.1",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "@radix-ui/react-use-layout-effect": "1.1.1",
- "@radix-ui/react-use-previous": "1.1.1",
- "@radix-ui/react-visually-hidden": "1.2.3",
- "aria-hidden": "^1.2.4",
- "react-remove-scroll": "^2.6.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-separator": {
- "version": "1.1.7",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-separator/-/react-separator-1.1.7.tgz",
- "integrity": "sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-primitive": "2.1.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-slider": {
- "version": "1.3.6",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slider/-/react-slider-1.3.6.tgz",
- "integrity": "sha512-JPYb1GuM1bxfjMRlNLE+BcmBC8onfCi60Blk7OBqi2MLTFdS+8401U4uFjnwkOr49BLmXxLC6JHkvAsx5OJvHw==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/number": "1.1.1",
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-collection": "1.1.7",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "@radix-ui/react-use-layout-effect": "1.1.1",
- "@radix-ui/react-use-previous": "1.1.1",
- "@radix-ui/react-use-size": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-slot": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz",
- "integrity": "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-compose-refs": "1.1.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-switch": {
- "version": "1.2.6",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-switch/-/react-switch-1.2.6.tgz",
- "integrity": "sha512-bByzr1+ep1zk4VubeEVViV592vu2lHE2BZY5OnzehZqOOgogN80+mNtCqPkhn2gklJqOpxWgPoYTSnhBCqpOXQ==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "@radix-ui/react-use-previous": "1.1.1",
- "@radix-ui/react-use-size": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-tabs": {
- "version": "1.1.13",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-tabs/-/react-tabs-1.1.13.tgz",
- "integrity": "sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-roving-focus": "1.1.11",
- "@radix-ui/react-use-controllable-state": "1.2.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-toast": {
- "version": "1.2.15",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-toast/-/react-toast-1.2.15.tgz",
- "integrity": "sha512-3OSz3TacUWy4WtOXV38DggwxoqJK4+eDkNMl5Z/MJZaoUPaP4/9lf81xXMe1I2ReTAptverZUpbPY4wWwWyL5g==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-collection": "1.1.7",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-dismissable-layer": "1.1.11",
- "@radix-ui/react-portal": "1.1.9",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-callback-ref": "1.1.1",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "@radix-ui/react-use-layout-effect": "1.1.1",
- "@radix-ui/react-visually-hidden": "1.2.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-toggle": {
- "version": "1.1.10",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle/-/react-toggle-1.1.10.tgz",
- "integrity": "sha512-lS1odchhFTeZv3xwHH31YPObmJn8gOg7Lq12inrr0+BH/l3Tsq32VfjqH1oh80ARM3mlkfMic15n0kg4sD1poQ==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-use-controllable-state": "1.2.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-toggle-group": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle-group/-/react-toggle-group-1.1.11.tgz",
- "integrity": "sha512-5umnS0T8JQzQT6HbPyO7Hh9dgd82NmS36DQr+X/YJ9ctFNCiiQd6IJAYYZ33LUwm8M+taCz5t2ui29fHZc4Y6Q==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-roving-focus": "1.1.11",
- "@radix-ui/react-toggle": "1.1.10",
- "@radix-ui/react-use-controllable-state": "1.2.2"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-toolbar": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-toolbar/-/react-toolbar-1.1.11.tgz",
- "integrity": "sha512-4ol06/1bLoFu1nwUqzdD4Y5RZ9oDdKeiHIsntug54Hcr1pgaHiPqHFEaXI1IFP/EsOfROQZ8Mig9VTIRza6Tjg==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-roving-focus": "1.1.11",
- "@radix-ui/react-separator": "1.1.7",
- "@radix-ui/react-toggle-group": "1.1.11"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-tooltip": {
- "version": "1.2.8",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-tooltip/-/react-tooltip-1.2.8.tgz",
- "integrity": "sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-dismissable-layer": "1.1.11",
- "@radix-ui/react-id": "1.1.1",
- "@radix-ui/react-popper": "1.2.8",
- "@radix-ui/react-portal": "1.1.9",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-slot": "1.2.3",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "@radix-ui/react-visually-hidden": "1.2.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-callback-ref": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.1.tgz",
- "integrity": "sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==",
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-controllable-state": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.2.2.tgz",
- "integrity": "sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-use-effect-event": "0.0.2",
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-effect-event": {
- "version": "0.0.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-effect-event/-/react-use-effect-event-0.0.2.tgz",
- "integrity": "sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-escape-keydown": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.1.tgz",
- "integrity": "sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-use-callback-ref": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-is-hydrated": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-is-hydrated/-/react-use-is-hydrated-0.1.0.tgz",
- "integrity": "sha512-U+UORVEq+cTnRIaostJv9AGdV3G6Y+zbVd+12e18jQ5A3c0xL03IhnHuiU4UV69wolOQp5GfR58NW/EgdQhwOA==",
- "license": "MIT",
- "dependencies": {
- "use-sync-external-store": "^1.5.0"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-layout-effect": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz",
- "integrity": "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==",
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-previous": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.1.1.tgz",
- "integrity": "sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==",
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-rect": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.1.1.tgz",
- "integrity": "sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/rect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-use-size": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.1.1.tgz",
- "integrity": "sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-use-layout-effect": "1.1.1"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-visually-hidden": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.2.3.tgz",
- "integrity": "sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/react-primitive": "2.1.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/@radix-ui/rect": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.1.1.tgz",
- "integrity": "sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==",
- "license": "MIT"
- },
- "node_modules/@rolldown/pluginutils": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.3.tgz",
- "integrity": "sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@rollup/rollup-android-arm-eabi": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.57.1.tgz",
- "integrity": "sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ]
- },
- "node_modules/@rollup/rollup-android-arm64": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.57.1.tgz",
- "integrity": "sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ]
- },
- "node_modules/@rollup/rollup-darwin-arm64": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.57.1.tgz",
- "integrity": "sha512-crNPrwJOrRxagUYeMn/DZwqN88SDmwaJ8Cvi/TN1HnWBU7GwknckyosC2gd0IqYRsHDEnXf328o9/HC6OkPgOg==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ]
- },
- "node_modules/@rollup/rollup-darwin-x64": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.57.1.tgz",
- "integrity": "sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ]
- },
- "node_modules/@rollup/rollup-freebsd-arm64": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.57.1.tgz",
- "integrity": "sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ]
- },
- "node_modules/@rollup/rollup-freebsd-x64": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.57.1.tgz",
- "integrity": "sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ]
- },
- "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.57.1.tgz",
- "integrity": "sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-arm-musleabihf": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.57.1.tgz",
- "integrity": "sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-arm64-gnu": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.57.1.tgz",
- "integrity": "sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-arm64-musl": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.57.1.tgz",
- "integrity": "sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-loong64-gnu": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.57.1.tgz",
- "integrity": "sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==",
- "cpu": [
- "loong64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-loong64-musl": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.57.1.tgz",
- "integrity": "sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==",
- "cpu": [
- "loong64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-ppc64-gnu": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.57.1.tgz",
- "integrity": "sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==",
- "cpu": [
- "ppc64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-ppc64-musl": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.57.1.tgz",
- "integrity": "sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==",
- "cpu": [
- "ppc64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-riscv64-gnu": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.57.1.tgz",
- "integrity": "sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==",
- "cpu": [
- "riscv64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-riscv64-musl": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.57.1.tgz",
- "integrity": "sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==",
- "cpu": [
- "riscv64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-s390x-gnu": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.57.1.tgz",
- "integrity": "sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==",
- "cpu": [
- "s390x"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-x64-gnu": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.57.1.tgz",
- "integrity": "sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-x64-musl": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.57.1.tgz",
- "integrity": "sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-openbsd-x64": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.57.1.tgz",
- "integrity": "sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "openbsd"
- ]
- },
- "node_modules/@rollup/rollup-openharmony-arm64": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.57.1.tgz",
- "integrity": "sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "openharmony"
- ]
- },
- "node_modules/@rollup/rollup-win32-arm64-msvc": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.57.1.tgz",
- "integrity": "sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ]
- },
- "node_modules/@rollup/rollup-win32-ia32-msvc": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.57.1.tgz",
- "integrity": "sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==",
- "cpu": [
- "ia32"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ]
- },
- "node_modules/@rollup/rollup-win32-x64-gnu": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.57.1.tgz",
- "integrity": "sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ]
- },
- "node_modules/@rollup/rollup-win32-x64-msvc": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.57.1.tgz",
- "integrity": "sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ]
- },
- "node_modules/@sec-ant/readable-stream": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz",
- "integrity": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@sindresorhus/merge-streams": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz",
- "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@tailwindcss/node": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.18.tgz",
- "integrity": "sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==",
- "license": "MIT",
- "dependencies": {
- "@jridgewell/remapping": "^2.3.4",
- "enhanced-resolve": "^5.18.3",
- "jiti": "^2.6.1",
- "lightningcss": "1.30.2",
- "magic-string": "^0.30.21",
- "source-map-js": "^1.2.1",
- "tailwindcss": "4.1.18"
- }
- },
- "node_modules/@tailwindcss/oxide": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.18.tgz",
- "integrity": "sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==",
- "license": "MIT",
- "engines": {
- "node": ">= 10"
- },
- "optionalDependencies": {
- "@tailwindcss/oxide-android-arm64": "4.1.18",
- "@tailwindcss/oxide-darwin-arm64": "4.1.18",
- "@tailwindcss/oxide-darwin-x64": "4.1.18",
- "@tailwindcss/oxide-freebsd-x64": "4.1.18",
- "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.18",
- "@tailwindcss/oxide-linux-arm64-gnu": "4.1.18",
- "@tailwindcss/oxide-linux-arm64-musl": "4.1.18",
- "@tailwindcss/oxide-linux-x64-gnu": "4.1.18",
- "@tailwindcss/oxide-linux-x64-musl": "4.1.18",
- "@tailwindcss/oxide-wasm32-wasi": "4.1.18",
- "@tailwindcss/oxide-win32-arm64-msvc": "4.1.18",
- "@tailwindcss/oxide-win32-x64-msvc": "4.1.18"
- }
- },
- "node_modules/@tailwindcss/oxide-android-arm64": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.18.tgz",
- "integrity": "sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-darwin-arm64": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.18.tgz",
- "integrity": "sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-darwin-x64": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.18.tgz",
- "integrity": "sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-freebsd-x64": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.18.tgz",
- "integrity": "sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.18.tgz",
- "integrity": "sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.18.tgz",
- "integrity": "sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.18.tgz",
- "integrity": "sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.18.tgz",
- "integrity": "sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-linux-x64-musl": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.18.tgz",
- "integrity": "sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-wasm32-wasi": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.18.tgz",
- "integrity": "sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==",
- "bundleDependencies": [
- "@napi-rs/wasm-runtime",
- "@emnapi/core",
- "@emnapi/runtime",
- "@tybys/wasm-util",
- "@emnapi/wasi-threads",
- "tslib"
- ],
- "cpu": [
- "wasm32"
- ],
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@emnapi/core": "^1.7.1",
- "@emnapi/runtime": "^1.7.1",
- "@emnapi/wasi-threads": "^1.1.0",
- "@napi-rs/wasm-runtime": "^1.1.0",
- "@tybys/wasm-util": "^0.10.1",
- "tslib": "^2.4.0"
- },
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.18.tgz",
- "integrity": "sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.18.tgz",
- "integrity": "sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tailwindcss/vite": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.1.18.tgz",
- "integrity": "sha512-jVA+/UpKL1vRLg6Hkao5jldawNmRo7mQYrZtNHMIVpLfLhDml5nMRUo/8MwoX2vNXvnaXNNMedrMfMugAVX1nA==",
- "license": "MIT",
- "dependencies": {
- "@tailwindcss/node": "4.1.18",
- "@tailwindcss/oxide": "4.1.18",
- "tailwindcss": "4.1.18"
- },
- "peerDependencies": {
- "vite": "^5.2.0 || ^6 || ^7"
- }
- },
- "node_modules/@tanstack/query-core": {
- "version": "5.90.20",
- "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.90.20.tgz",
- "integrity": "sha512-OMD2HLpNouXEfZJWcKeVKUgQ5n+n3A2JFmBaScpNDUqSrQSjiveC7dKMe53uJUg1nDG16ttFPz2xfilz6i2uVg==",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/tannerlinsley"
- }
- },
- "node_modules/@tanstack/react-query": {
- "version": "5.90.21",
- "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.90.21.tgz",
- "integrity": "sha512-0Lu6y5t+tvlTJMTO7oh5NSpJfpg/5D41LlThfepTixPYkJ0sE2Jj0m0f6yYqujBwIXlId87e234+MxG3D3g7kg==",
- "license": "MIT",
- "dependencies": {
- "@tanstack/query-core": "5.90.20"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/tannerlinsley"
- },
- "peerDependencies": {
- "react": "^18 || ^19"
- }
- },
- "node_modules/@ts-morph/common": {
- "version": "0.27.0",
- "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.27.0.tgz",
- "integrity": "sha512-Wf29UqxWDpc+i61k3oIOzcUfQt79PIT9y/MWfAGlrkjg6lBC1hwDECLXPVJAhWjiGbfBCxZd65F/LIZF3+jeJQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fast-glob": "^3.3.3",
- "minimatch": "^10.0.1",
- "path-browserify": "^1.0.1"
- }
- },
- "node_modules/@ts-morph/common/node_modules/balanced-match": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.2.tgz",
- "integrity": "sha512-x0K50QvKQ97fdEz2kPehIerj+YTeptKF9hyYkKf6egnwmMWAkADiO0QCzSp0R5xN8FTZgYaBfSaue46Ej62nMg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "jackspeak": "^4.2.3"
- },
- "engines": {
- "node": "20 || >=22"
- }
- },
- "node_modules/@ts-morph/common/node_modules/brace-expansion": {
- "version": "5.0.2",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.2.tgz",
- "integrity": "sha512-Pdk8c9poy+YhOgVWw1JNN22/HcivgKWwpxKq04M/jTmHyCZn12WPJebZxdjSa5TmBqISrUSgNYU3eRORljfCCw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^4.0.2"
- },
- "engines": {
- "node": "20 || >=22"
- }
- },
- "node_modules/@ts-morph/common/node_modules/minimatch": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.0.tgz",
- "integrity": "sha512-ugkC31VaVg9cF0DFVoADH12k6061zNZkZON+aX8AWsR9GhPcErkcMBceb6znR8wLERM2AkkOxy2nWRLpT9Jq5w==",
- "dev": true,
- "license": "BlueOak-1.0.0",
- "dependencies": {
- "brace-expansion": "^5.0.2"
- },
- "engines": {
- "node": "20 || >=22"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/@types/babel__core": {
- "version": "7.20.5",
- "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
- "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/parser": "^7.20.7",
- "@babel/types": "^7.20.7",
- "@types/babel__generator": "*",
- "@types/babel__template": "*",
- "@types/babel__traverse": "*"
- }
- },
- "node_modules/@types/babel__generator": {
- "version": "7.27.0",
- "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
- "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.0.0"
- }
- },
- "node_modules/@types/babel__template": {
- "version": "7.4.4",
- "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
- "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/parser": "^7.1.0",
- "@babel/types": "^7.0.0"
- }
- },
- "node_modules/@types/babel__traverse": {
- "version": "7.28.0",
- "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
- "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.28.2"
- }
- },
- "node_modules/@types/estree": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
- "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
- "license": "MIT"
- },
- "node_modules/@types/json-schema": {
- "version": "7.0.15",
- "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
- "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/node": {
- "version": "24.10.13",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.13.tgz",
- "integrity": "sha512-oH72nZRfDv9lADUBSo104Aq7gPHpQZc4BTx38r9xf9pg5LfP6EzSyH2n7qFmmxRQXh7YlUXODcYsg6PuTDSxGg==",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "undici-types": "~7.16.0"
- }
- },
- "node_modules/@types/react": {
- "version": "19.2.14",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz",
- "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "csstype": "^3.2.2"
- }
- },
- "node_modules/@types/react-dom": {
- "version": "19.2.3",
- "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
- "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
- "devOptional": true,
- "license": "MIT",
- "peerDependencies": {
- "@types/react": "^19.2.0"
- }
- },
- "node_modules/@types/statuses": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/@types/statuses/-/statuses-2.0.6.tgz",
- "integrity": "sha512-xMAgYwceFhRA2zY+XbEA7mxYbA093wdiW8Vu6gZPGWy9cmOyU9XesH1tNcEWsKFd5Vzrqx5T3D38PWx1FIIXkA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/use-sync-external-store": {
- "version": "0.0.6",
- "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.6.tgz",
- "integrity": "sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==",
- "license": "MIT"
- },
- "node_modules/@types/validate-npm-package-name": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/@types/validate-npm-package-name/-/validate-npm-package-name-4.0.2.tgz",
- "integrity": "sha512-lrpDziQipxCEeK5kWxvljWYhUvOiB2A9izZd9B2AFarYAkqZshb4lPbRs7zKEic6eGtH8V/2qJW+dPp9OtF6bw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@typescript-eslint/eslint-plugin": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.55.0.tgz",
- "integrity": "sha512-1y/MVSz0NglV1ijHC8OT49mPJ4qhPYjiK08YUQVbIOyu+5k862LKUHFkpKHWu//zmr7hDR2rhwUm6gnCGNmGBQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@eslint-community/regexpp": "^4.12.2",
- "@typescript-eslint/scope-manager": "8.55.0",
- "@typescript-eslint/type-utils": "8.55.0",
- "@typescript-eslint/utils": "8.55.0",
- "@typescript-eslint/visitor-keys": "8.55.0",
- "ignore": "^7.0.5",
- "natural-compare": "^1.4.0",
- "ts-api-utils": "^2.4.0"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "@typescript-eslint/parser": "^8.55.0",
- "eslint": "^8.57.0 || ^9.0.0",
- "typescript": ">=4.8.4 <6.0.0"
- }
- },
- "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
- "version": "7.0.5",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
- "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/@typescript-eslint/parser": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.55.0.tgz",
- "integrity": "sha512-4z2nCSBfVIMnbuu8uinj+f0o4qOeggYJLbjpPHka3KH1om7e+H9yLKTYgksTaHcGco+NClhhY2vyO3HsMH1RGw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/scope-manager": "8.55.0",
- "@typescript-eslint/types": "8.55.0",
- "@typescript-eslint/typescript-estree": "8.55.0",
- "@typescript-eslint/visitor-keys": "8.55.0",
- "debug": "^4.4.3"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^8.57.0 || ^9.0.0",
- "typescript": ">=4.8.4 <6.0.0"
- }
- },
- "node_modules/@typescript-eslint/project-service": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.55.0.tgz",
- "integrity": "sha512-zRcVVPFUYWa3kNnjaZGXSu3xkKV1zXy8M4nO/pElzQhFweb7PPtluDLQtKArEOGmjXoRjnUZ29NjOiF0eCDkcQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/tsconfig-utils": "^8.55.0",
- "@typescript-eslint/types": "^8.55.0",
- "debug": "^4.4.3"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "typescript": ">=4.8.4 <6.0.0"
- }
- },
- "node_modules/@typescript-eslint/scope-manager": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.55.0.tgz",
- "integrity": "sha512-fVu5Omrd3jeqeQLiB9f1YsuK/iHFOwb04bCtY4BSCLgjNbOD33ZdV6KyEqplHr+IlpgT0QTZ/iJ+wT7hvTx49Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/types": "8.55.0",
- "@typescript-eslint/visitor-keys": "8.55.0"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "node_modules/@typescript-eslint/tsconfig-utils": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.55.0.tgz",
- "integrity": "sha512-1R9cXqY7RQd7WuqSN47PK9EDpgFUK3VqdmbYrvWJZYDd0cavROGn+74ktWBlmJ13NXUQKlZ/iAEQHI/V0kKe0Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "typescript": ">=4.8.4 <6.0.0"
- }
- },
- "node_modules/@typescript-eslint/type-utils": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.55.0.tgz",
- "integrity": "sha512-x1iH2unH4qAt6I37I2CGlsNs+B9WGxurP2uyZLRz6UJoZWDBx9cJL1xVN/FiOmHEONEg6RIufdvyT0TEYIgC5g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/types": "8.55.0",
- "@typescript-eslint/typescript-estree": "8.55.0",
- "@typescript-eslint/utils": "8.55.0",
- "debug": "^4.4.3",
- "ts-api-utils": "^2.4.0"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^8.57.0 || ^9.0.0",
- "typescript": ">=4.8.4 <6.0.0"
- }
- },
- "node_modules/@typescript-eslint/types": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.55.0.tgz",
- "integrity": "sha512-ujT0Je8GI5BJWi+/mMoR0wxwVEQaxM+pi30xuMiJETlX80OPovb2p9E8ss87gnSVtYXtJoU9U1Cowcr6w2FE0w==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "node_modules/@typescript-eslint/typescript-estree": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.55.0.tgz",
- "integrity": "sha512-EwrH67bSWdx/3aRQhCoxDaHM+CrZjotc2UCCpEDVqfCE+7OjKAGWNY2HsCSTEVvWH2clYQK8pdeLp42EVs+xQw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/project-service": "8.55.0",
- "@typescript-eslint/tsconfig-utils": "8.55.0",
- "@typescript-eslint/types": "8.55.0",
- "@typescript-eslint/visitor-keys": "8.55.0",
- "debug": "^4.4.3",
- "minimatch": "^9.0.5",
- "semver": "^7.7.3",
- "tinyglobby": "^0.2.15",
- "ts-api-utils": "^2.4.0"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "typescript": ">=4.8.4 <6.0.0"
- }
- },
- "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
- "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0"
- }
- },
- "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
- "version": "9.0.5",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
- "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=16 || 14 >=14.17"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
- "version": "7.7.4",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
- "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@typescript-eslint/utils": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.55.0.tgz",
- "integrity": "sha512-BqZEsnPGdYpgyEIkDC1BadNY8oMwckftxBT+C8W0g1iKPdeqKZBtTfnvcq0nf60u7MkjFO8RBvpRGZBPw4L2ow==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@eslint-community/eslint-utils": "^4.9.1",
- "@typescript-eslint/scope-manager": "8.55.0",
- "@typescript-eslint/types": "8.55.0",
- "@typescript-eslint/typescript-estree": "8.55.0"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^8.57.0 || ^9.0.0",
- "typescript": ">=4.8.4 <6.0.0"
- }
- },
- "node_modules/@typescript-eslint/visitor-keys": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.55.0.tgz",
- "integrity": "sha512-AxNRwEie8Nn4eFS1FzDMJWIISMGoXMb037sgCBJ3UR6o0fQTzr2tqN9WT+DkWJPhIdQCfV7T6D387566VtnCJA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/types": "8.55.0",
- "eslint-visitor-keys": "^4.2.1"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "node_modules/@virtuoso.dev/gurx": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@virtuoso.dev/gurx/-/gurx-1.1.1.tgz",
- "integrity": "sha512-qMvhT5mJXLHd59VAj3T7pZAMBU81Onkmzd9+r9OMTnE7mAX9F1+/jbncS+emx7bLxm1BKG1rP/Kqa+fOgdPRTg==",
- "license": "MIT",
- "peerDependencies": {
- "react": ">= 16 || >= 17 || >= 18 || >= 19",
- "react-dom": ">= 16 || >= 17 || >= 18 || >= 19"
- }
- },
- "node_modules/@virtuoso.dev/message-list": {
- "version": "1.15.2",
- "resolved": "https://registry.npmjs.org/@virtuoso.dev/message-list/-/message-list-1.15.2.tgz",
- "integrity": "sha512-s+aNP+1tsLAVDjkiW9akPQ28SpvNtJawIl3PzaAnVPgQJ+8a92TR8JspVlMb5Nh9sbMZVDr+XTAKvLvkOut1ag==",
- "license": "Commercial",
- "dependencies": {
- "@virtuoso.dev/gurx": "1.1.1"
- },
- "peerDependencies": {
- "react": ">= 16 || >= 17 || >= 18 || >= 19",
- "react-dom": ">= 16 || >= 17 || >= 18 || >= 19"
- }
- },
- "node_modules/@vitejs/plugin-react": {
- "version": "5.1.4",
- "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.1.4.tgz",
- "integrity": "sha512-VIcFLdRi/VYRU8OL/puL7QXMYafHmqOnwTZY50U1JPlCNj30PxCMx65c494b1K9be9hX83KVt0+gTEwTWLqToA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.29.0",
- "@babel/plugin-transform-react-jsx-self": "^7.27.1",
- "@babel/plugin-transform-react-jsx-source": "^7.27.1",
- "@rolldown/pluginutils": "1.0.0-rc.3",
- "@types/babel__core": "^7.20.5",
- "react-refresh": "^0.18.0"
- },
- "engines": {
- "node": "^20.19.0 || >=22.12.0"
- },
- "peerDependencies": {
- "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
- }
- },
- "node_modules/accepts": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
- "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "mime-types": "^3.0.0",
- "negotiator": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/acorn": {
- "version": "8.15.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
- "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
- "dev": true,
- "license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/acorn-jsx": {
- "version": "5.3.2",
- "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
- "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
- "dev": true,
- "license": "MIT",
- "peerDependencies": {
- "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
- }
- },
- "node_modules/agent-base": {
- "version": "7.1.4",
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
- "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 14"
- }
- },
- "node_modules/ajv": {
- "version": "6.12.6",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
- "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/ajv-formats": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz",
- "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ajv": "^8.0.0"
- },
- "peerDependencies": {
- "ajv": "^8.0.0"
- },
- "peerDependenciesMeta": {
- "ajv": {
- "optional": true
- }
- }
- },
- "node_modules/ajv-formats/node_modules/ajv": {
- "version": "8.17.1",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
- "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fast-deep-equal": "^3.1.3",
- "fast-uri": "^3.0.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/ajv-formats/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/ansi-regex": {
- "version": "6.2.2",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz",
- "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-regex?sponsor=1"
- }
- },
- "node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/ansis": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/ansis/-/ansis-4.2.0.tgz",
- "integrity": "sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">=14"
- }
- },
- "node_modules/argparse": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
- "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
- "dev": true,
- "license": "Python-2.0"
- },
- "node_modules/aria-hidden": {
- "version": "1.2.6",
- "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.6.tgz",
- "integrity": "sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/ast-types": {
- "version": "0.16.1",
- "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz",
- "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.1"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/balanced-match": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/baseline-browser-mapping": {
- "version": "2.9.19",
- "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.19.tgz",
- "integrity": "sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==",
- "dev": true,
- "license": "Apache-2.0",
- "bin": {
- "baseline-browser-mapping": "dist/cli.js"
- }
- },
- "node_modules/body-parser": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz",
- "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "bytes": "^3.1.2",
- "content-type": "^1.0.5",
- "debug": "^4.4.3",
- "http-errors": "^2.0.0",
- "iconv-lite": "^0.7.0",
- "on-finished": "^2.4.1",
- "qs": "^6.14.1",
- "raw-body": "^3.0.1",
- "type-is": "^2.0.1"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/brace-expansion": {
- "version": "1.1.12",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
- "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "node_modules/braces": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
- "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fill-range": "^7.1.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/browserslist": {
- "version": "4.28.1",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
- "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "baseline-browser-mapping": "^2.9.0",
- "caniuse-lite": "^1.0.30001759",
- "electron-to-chromium": "^1.5.263",
- "node-releases": "^2.0.27",
- "update-browserslist-db": "^1.2.0"
- },
- "bin": {
- "browserslist": "cli.js"
- },
- "engines": {
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
- }
- },
- "node_modules/bundle-name": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz",
- "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "run-applescript": "^7.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/bytes": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
- "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/call-bind-apply-helpers": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
- "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "function-bind": "^1.1.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/call-bound": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
- "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind-apply-helpers": "^1.0.2",
- "get-intrinsic": "^1.3.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/callsites": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/caniuse-lite": {
- "version": "1.0.30001769",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001769.tgz",
- "integrity": "sha512-BCfFL1sHijQlBGWBMuJyhZUhzo7wer5sVj9hqekB/7xn0Ypy+pER/edCYQm4exbXj4WiySGp40P8UuTh6w1srg==",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "CC-BY-4.0"
- },
- "node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/class-variance-authority": {
- "version": "0.7.1",
- "resolved": "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.1.tgz",
- "integrity": "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==",
- "license": "Apache-2.0",
- "dependencies": {
- "clsx": "^2.1.1"
- },
- "funding": {
- "url": "https://polar.sh/cva"
- }
- },
- "node_modules/cli-cursor": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz",
- "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "restore-cursor": "^5.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/cli-spinners": {
- "version": "2.9.2",
- "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
- "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/cli-width": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz",
- "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">= 12"
- }
- },
- "node_modules/cliui": {
- "version": "8.0.1",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
- "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.1",
- "wrap-ansi": "^7.0.0"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/cliui/node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/cliui/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/cliui/node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/cliui/node_modules/strip-ansi": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/cliui/node_modules/wrap-ansi": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
- }
- },
- "node_modules/clsx": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
- "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/code-block-writer": {
- "version": "13.0.3",
- "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-13.0.3.tgz",
- "integrity": "sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/commander": {
- "version": "14.0.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-14.0.3.tgz",
- "integrity": "sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=20"
- }
- },
- "node_modules/concat-map": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/content-disposition": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.1.tgz",
- "integrity": "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/content-type": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
- "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/convert-source-map": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/cookie": {
- "version": "0.7.2",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
- "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/cookie-signature": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
- "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.6.0"
- }
- },
- "node_modules/cors": {
- "version": "2.8.6",
- "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz",
- "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "object-assign": "^4",
- "vary": "^1"
- },
- "engines": {
- "node": ">= 0.10"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/cosmiconfig": {
- "version": "9.0.0",
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz",
- "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "env-paths": "^2.2.1",
- "import-fresh": "^3.3.0",
- "js-yaml": "^4.1.0",
- "parse-json": "^5.2.0"
- },
- "engines": {
- "node": ">=14"
- },
- "funding": {
- "url": "https://github.com/sponsors/d-fischer"
- },
- "peerDependencies": {
- "typescript": ">=4.9.5"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/cross-spawn": {
- "version": "7.0.6",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
- "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/css-box-model": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz",
- "integrity": "sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==",
- "license": "MIT",
- "dependencies": {
- "tiny-invariant": "^1.0.6"
- }
- },
- "node_modules/cssesc": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
- "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
- "dev": true,
- "license": "MIT",
- "bin": {
- "cssesc": "bin/cssesc"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/csstype": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
- "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
- "devOptional": true,
- "license": "MIT"
- },
- "node_modules/data-uri-to-buffer": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz",
- "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 12"
- }
- },
- "node_modules/debug": {
- "version": "4.4.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
- "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ms": "^2.1.3"
- },
- "engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
- }
- },
- "node_modules/dedent": {
- "version": "1.7.1",
- "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.7.1.tgz",
- "integrity": "sha512-9JmrhGZpOlEgOLdQgSm0zxFaYoQon408V1v49aqTWuXENVlnCuY9JBZcXZiCsZQWDjTm5Qf/nIvAy77mXDAjEg==",
- "dev": true,
- "license": "MIT",
- "peerDependencies": {
- "babel-plugin-macros": "^3.1.0"
- },
- "peerDependenciesMeta": {
- "babel-plugin-macros": {
- "optional": true
- }
- }
- },
- "node_modules/deep-is": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
- "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/deepmerge": {
- "version": "4.3.1",
- "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
- "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/default-browser": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.5.0.tgz",
- "integrity": "sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "bundle-name": "^4.1.0",
- "default-browser-id": "^5.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/default-browser-id": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.1.tgz",
- "integrity": "sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/define-lazy-prop": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
- "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/depd": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
- "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/detect-libc": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
- "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
- "license": "Apache-2.0",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/detect-node-es": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz",
- "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==",
- "license": "MIT"
- },
- "node_modules/diff": {
- "version": "8.0.3",
- "resolved": "https://registry.npmjs.org/diff/-/diff-8.0.3.tgz",
- "integrity": "sha512-qejHi7bcSD4hQAZE0tNAawRK1ZtafHDmMTMkrrIGgSLl7hTnQHmKCeB45xAcbfTqK2zowkM3j3bHt/4b/ARbYQ==",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.3.1"
- }
- },
- "node_modules/dotenv": {
- "version": "17.3.1",
- "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.3.1.tgz",
- "integrity": "sha512-IO8C/dzEb6O3F9/twg6ZLXz164a2fhTnEWb95H23Dm4OuN+92NmEAlTrupP9VW6Jm3sO26tQlqyvyi4CsnY9GA==",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://dotenvx.com"
- }
- },
- "node_modules/dunder-proto": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
- "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind-apply-helpers": "^1.0.1",
- "es-errors": "^1.3.0",
- "gopd": "^1.2.0"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/eciesjs": {
- "version": "0.4.17",
- "resolved": "https://registry.npmjs.org/eciesjs/-/eciesjs-0.4.17.tgz",
- "integrity": "sha512-TOOURki4G7sD1wDCjj7NfLaXZZ49dFOeEb5y39IXpb8p0hRzVvfvzZHOi5JcT+PpyAbi/Y+lxPb8eTag2WYH8w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@ecies/ciphers": "^0.2.5",
- "@noble/ciphers": "^1.3.0",
- "@noble/curves": "^1.9.7",
- "@noble/hashes": "^1.8.0"
- },
- "engines": {
- "bun": ">=1",
- "deno": ">=2",
- "node": ">=16"
- }
- },
- "node_modules/ee-first": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
- "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/electron-to-chromium": {
- "version": "1.5.286",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.286.tgz",
- "integrity": "sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/emoji-regex": {
- "version": "10.6.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz",
- "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/encodeurl": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
- "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/enhanced-resolve": {
- "version": "5.19.0",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.19.0.tgz",
- "integrity": "sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==",
- "license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.2.4",
- "tapable": "^2.3.0"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/env-paths": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
- "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/error-ex": {
- "version": "1.3.4",
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz",
- "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-arrayish": "^0.2.1"
- }
- },
- "node_modules/es-define-property": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
- "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/es-errors": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
- "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/es-object-atoms": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
- "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/esbuild": {
- "version": "0.27.3",
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.3.tgz",
- "integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==",
- "hasInstallScript": true,
- "license": "MIT",
- "bin": {
- "esbuild": "bin/esbuild"
- },
- "engines": {
- "node": ">=18"
- },
- "optionalDependencies": {
- "@esbuild/aix-ppc64": "0.27.3",
- "@esbuild/android-arm": "0.27.3",
- "@esbuild/android-arm64": "0.27.3",
- "@esbuild/android-x64": "0.27.3",
- "@esbuild/darwin-arm64": "0.27.3",
- "@esbuild/darwin-x64": "0.27.3",
- "@esbuild/freebsd-arm64": "0.27.3",
- "@esbuild/freebsd-x64": "0.27.3",
- "@esbuild/linux-arm": "0.27.3",
- "@esbuild/linux-arm64": "0.27.3",
- "@esbuild/linux-ia32": "0.27.3",
- "@esbuild/linux-loong64": "0.27.3",
- "@esbuild/linux-mips64el": "0.27.3",
- "@esbuild/linux-ppc64": "0.27.3",
- "@esbuild/linux-riscv64": "0.27.3",
- "@esbuild/linux-s390x": "0.27.3",
- "@esbuild/linux-x64": "0.27.3",
- "@esbuild/netbsd-arm64": "0.27.3",
- "@esbuild/netbsd-x64": "0.27.3",
- "@esbuild/openbsd-arm64": "0.27.3",
- "@esbuild/openbsd-x64": "0.27.3",
- "@esbuild/openharmony-arm64": "0.27.3",
- "@esbuild/sunos-x64": "0.27.3",
- "@esbuild/win32-arm64": "0.27.3",
- "@esbuild/win32-ia32": "0.27.3",
- "@esbuild/win32-x64": "0.27.3"
- }
- },
- "node_modules/escalade": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
- "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/escape-html": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
- "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/escape-string-regexp": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
- "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/eslint": {
- "version": "9.39.2",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.2.tgz",
- "integrity": "sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@eslint-community/eslint-utils": "^4.8.0",
- "@eslint-community/regexpp": "^4.12.1",
- "@eslint/config-array": "^0.21.1",
- "@eslint/config-helpers": "^0.4.2",
- "@eslint/core": "^0.17.0",
- "@eslint/eslintrc": "^3.3.1",
- "@eslint/js": "9.39.2",
- "@eslint/plugin-kit": "^0.4.1",
- "@humanfs/node": "^0.16.6",
- "@humanwhocodes/module-importer": "^1.0.1",
- "@humanwhocodes/retry": "^0.4.2",
- "@types/estree": "^1.0.6",
- "ajv": "^6.12.4",
- "chalk": "^4.0.0",
- "cross-spawn": "^7.0.6",
- "debug": "^4.3.2",
- "escape-string-regexp": "^4.0.0",
- "eslint-scope": "^8.4.0",
- "eslint-visitor-keys": "^4.2.1",
- "espree": "^10.4.0",
- "esquery": "^1.5.0",
- "esutils": "^2.0.2",
- "fast-deep-equal": "^3.1.3",
- "file-entry-cache": "^8.0.0",
- "find-up": "^5.0.0",
- "glob-parent": "^6.0.2",
- "ignore": "^5.2.0",
- "imurmurhash": "^0.1.4",
- "is-glob": "^4.0.0",
- "json-stable-stringify-without-jsonify": "^1.0.1",
- "lodash.merge": "^4.6.2",
- "minimatch": "^3.1.2",
- "natural-compare": "^1.4.0",
- "optionator": "^0.9.3"
- },
- "bin": {
- "eslint": "bin/eslint.js"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "url": "https://eslint.org/donate"
- },
- "peerDependencies": {
- "jiti": "*"
- },
- "peerDependenciesMeta": {
- "jiti": {
- "optional": true
- }
- }
- },
- "node_modules/eslint-plugin-react-hooks": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz",
- "integrity": "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.24.4",
- "@babel/parser": "^7.24.4",
- "hermes-parser": "^0.25.1",
- "zod": "^3.25.0 || ^4.0.0",
- "zod-validation-error": "^3.5.0 || ^4.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "peerDependencies": {
- "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
- }
- },
- "node_modules/eslint-plugin-react-refresh": {
- "version": "0.4.26",
- "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.26.tgz",
- "integrity": "sha512-1RETEylht2O6FM/MvgnyvT+8K21wLqDNg4qD51Zj3guhjt433XbnnkVttHMyaVyAFD03QSV4LPS5iE3VQmO7XQ==",
- "dev": true,
- "license": "MIT",
- "peerDependencies": {
- "eslint": ">=8.40"
- }
- },
- "node_modules/eslint-scope": {
- "version": "8.4.0",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz",
- "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "esrecurse": "^4.3.0",
- "estraverse": "^5.2.0"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- }
- },
- "node_modules/eslint-visitor-keys": {
- "version": "4.2.1",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
- "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- }
- },
- "node_modules/espree": {
- "version": "10.4.0",
- "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz",
- "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "acorn": "^8.15.0",
- "acorn-jsx": "^5.3.2",
- "eslint-visitor-keys": "^4.2.1"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- }
- },
- "node_modules/esprima": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
- "dev": true,
- "license": "BSD-2-Clause",
- "bin": {
- "esparse": "bin/esparse.js",
- "esvalidate": "bin/esvalidate.js"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/esquery": {
- "version": "1.7.0",
- "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz",
- "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "estraverse": "^5.1.0"
- },
- "engines": {
- "node": ">=0.10"
- }
- },
- "node_modules/esrecurse": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
- "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "estraverse": "^5.2.0"
- },
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/estraverse": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/esutils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/etag": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
- "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/eventsource": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-3.0.7.tgz",
- "integrity": "sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "eventsource-parser": "^3.0.1"
- },
- "engines": {
- "node": ">=18.0.0"
- }
- },
- "node_modules/eventsource-parser": {
- "version": "3.0.6",
- "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.0.6.tgz",
- "integrity": "sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18.0.0"
- }
- },
- "node_modules/execa": {
- "version": "9.6.1",
- "resolved": "https://registry.npmjs.org/execa/-/execa-9.6.1.tgz",
- "integrity": "sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@sindresorhus/merge-streams": "^4.0.0",
- "cross-spawn": "^7.0.6",
- "figures": "^6.1.0",
- "get-stream": "^9.0.0",
- "human-signals": "^8.0.1",
- "is-plain-obj": "^4.1.0",
- "is-stream": "^4.0.1",
- "npm-run-path": "^6.0.0",
- "pretty-ms": "^9.2.0",
- "signal-exit": "^4.1.0",
- "strip-final-newline": "^4.0.0",
- "yoctocolors": "^2.1.1"
- },
- "engines": {
- "node": "^18.19.0 || >=20.5.0"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/execa?sponsor=1"
- }
- },
- "node_modules/express": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz",
- "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "accepts": "^2.0.0",
- "body-parser": "^2.2.1",
- "content-disposition": "^1.0.0",
- "content-type": "^1.0.5",
- "cookie": "^0.7.1",
- "cookie-signature": "^1.2.1",
- "debug": "^4.4.0",
- "depd": "^2.0.0",
- "encodeurl": "^2.0.0",
- "escape-html": "^1.0.3",
- "etag": "^1.8.1",
- "finalhandler": "^2.1.0",
- "fresh": "^2.0.0",
- "http-errors": "^2.0.0",
- "merge-descriptors": "^2.0.0",
- "mime-types": "^3.0.0",
- "on-finished": "^2.4.1",
- "once": "^1.4.0",
- "parseurl": "^1.3.3",
- "proxy-addr": "^2.0.7",
- "qs": "^6.14.0",
- "range-parser": "^1.2.1",
- "router": "^2.2.0",
- "send": "^1.1.0",
- "serve-static": "^2.2.0",
- "statuses": "^2.0.1",
- "type-is": "^2.0.1",
- "vary": "^1.1.2"
- },
- "engines": {
- "node": ">= 18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/express-rate-limit": {
- "version": "8.2.1",
- "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.2.1.tgz",
- "integrity": "sha512-PCZEIEIxqwhzw4KF0n7QF4QqruVTcF73O5kFKUnGOyjbCCgizBBiFaYpd/fnBLUMPw/BWw9OsiN7GgrNYr7j6g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ip-address": "10.0.1"
- },
- "engines": {
- "node": ">= 16"
- },
- "funding": {
- "url": "https://github.com/sponsors/express-rate-limit"
- },
- "peerDependencies": {
- "express": ">= 4.11"
- }
- },
- "node_modules/fast-deep-equal": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/fast-glob": {
- "version": "3.3.3",
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
- "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@nodelib/fs.stat": "^2.0.2",
- "@nodelib/fs.walk": "^1.2.3",
- "glob-parent": "^5.1.2",
- "merge2": "^1.3.0",
- "micromatch": "^4.0.8"
- },
- "engines": {
- "node": ">=8.6.0"
- }
- },
- "node_modules/fast-glob/node_modules/glob-parent": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "is-glob": "^4.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/fast-json-stable-stringify": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/fast-levenshtein": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
- "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/fast-uri": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz",
- "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/fastify"
- },
- {
- "type": "opencollective",
- "url": "https://opencollective.com/fastify"
- }
- ],
- "license": "BSD-3-Clause"
- },
- "node_modules/fastq": {
- "version": "1.20.1",
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz",
- "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "reusify": "^1.0.4"
- }
- },
- "node_modules/fdir": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
- "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
- "license": "MIT",
- "engines": {
- "node": ">=12.0.0"
- },
- "peerDependencies": {
- "picomatch": "^3 || ^4"
- },
- "peerDependenciesMeta": {
- "picomatch": {
- "optional": true
- }
- }
- },
- "node_modules/fetch-blob": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz",
- "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/jimmywarting"
- },
- {
- "type": "paypal",
- "url": "https://paypal.me/jimmywarting"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "node-domexception": "^1.0.0",
- "web-streams-polyfill": "^3.0.3"
- },
- "engines": {
- "node": "^12.20 || >= 14.13"
- }
- },
- "node_modules/figures": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz",
- "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-unicode-supported": "^2.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/file-entry-cache": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
- "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "flat-cache": "^4.0.0"
- },
- "engines": {
- "node": ">=16.0.0"
- }
- },
- "node_modules/fill-range": {
- "version": "7.1.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
- "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "to-regex-range": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/finalhandler": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz",
- "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "debug": "^4.4.0",
- "encodeurl": "^2.0.0",
- "escape-html": "^1.0.3",
- "on-finished": "^2.4.1",
- "parseurl": "^1.3.3",
- "statuses": "^2.0.1"
- },
- "engines": {
- "node": ">= 18.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/find-up": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
- "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "locate-path": "^6.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/flat-cache": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
- "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "flatted": "^3.2.9",
- "keyv": "^4.5.4"
- },
- "engines": {
- "node": ">=16"
- }
- },
- "node_modules/flatted": {
- "version": "3.3.3",
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz",
- "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/formdata-polyfill": {
- "version": "4.0.10",
- "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz",
- "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fetch-blob": "^3.1.2"
- },
- "engines": {
- "node": ">=12.20.0"
- }
- },
- "node_modules/forwarded": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
- "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/fresh": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
- "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/fs-extra": {
- "version": "11.3.3",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.3.tgz",
- "integrity": "sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
- },
- "engines": {
- "node": ">=14.14"
- }
- },
- "node_modules/fsevents": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
- "hasInstallScript": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
- }
- },
- "node_modules/function-bind": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/fuzzysort": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/fuzzysort/-/fuzzysort-3.1.0.tgz",
- "integrity": "sha512-sR9BNCjBg6LNgwvxlBd0sBABvQitkLzoVY9MYYROQVX/FvfJ4Mai9LsGhDgd8qYdds0bY77VzYd5iuB+v5rwQQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/fzf": {
- "version": "0.5.2",
- "resolved": "https://registry.npmjs.org/fzf/-/fzf-0.5.2.tgz",
- "integrity": "sha512-Tt4kuxLXFKHy8KT40zwsUPUkg1CrsgY25FxA2U/j/0WgEDCk3ddc/zLTCCcbSHX9FcKtLuVaDGtGE/STWC+j3Q==",
- "dev": true,
- "license": "BSD-3-Clause"
- },
- "node_modules/gensync": {
- "version": "1.0.0-beta.2",
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/get-caller-file": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
- "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": "6.* || 8.* || >= 10.*"
- }
- },
- "node_modules/get-east-asian-width": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz",
- "integrity": "sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/get-intrinsic": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
- "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind-apply-helpers": "^1.0.2",
- "es-define-property": "^1.0.1",
- "es-errors": "^1.3.0",
- "es-object-atoms": "^1.1.1",
- "function-bind": "^1.1.2",
- "get-proto": "^1.0.1",
- "gopd": "^1.2.0",
- "has-symbols": "^1.1.0",
- "hasown": "^2.0.2",
- "math-intrinsics": "^1.1.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/get-nonce": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz",
- "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/get-own-enumerable-keys": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/get-own-enumerable-keys/-/get-own-enumerable-keys-1.0.0.tgz",
- "integrity": "sha512-PKsK2FSrQCyxcGHsGrLDcK0lx+0Ke+6e8KFFozA9/fIQLhQzPaRvJFdcz7+Axg3jUH/Mq+NI4xa5u/UT2tQskA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=14.16"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/get-proto": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
- "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "dunder-proto": "^1.0.1",
- "es-object-atoms": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/get-stream": {
- "version": "9.0.1",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz",
- "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@sec-ant/readable-stream": "^0.4.1",
- "is-stream": "^4.0.1"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/glob-parent": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
- "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "is-glob": "^4.0.3"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/globals": {
- "version": "16.5.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-16.5.0.tgz",
- "integrity": "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/gopd": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
- "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/graceful-fs": {
- "version": "4.2.11",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
- "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
- "license": "ISC"
- },
- "node_modules/graphql": {
- "version": "16.12.0",
- "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.12.0.tgz",
- "integrity": "sha512-DKKrynuQRne0PNpEbzuEdHlYOMksHSUI8Zc9Unei5gTsMNA2/vMpoMz/yKba50pejK56qj98qM0SjYxAKi13gQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0"
- }
- },
- "node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/has-symbols": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
- "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/hasown": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
- "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "function-bind": "^1.1.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/headers-polyfill": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/headers-polyfill/-/headers-polyfill-4.0.3.tgz",
- "integrity": "sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/hermes-estree": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz",
- "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/hermes-parser": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz",
- "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "hermes-estree": "0.25.1"
- }
- },
- "node_modules/hono": {
- "version": "4.11.9",
- "resolved": "https://registry.npmjs.org/hono/-/hono-4.11.9.tgz",
- "integrity": "sha512-Eaw2YTGM6WOxA6CXbckaEvslr2Ne4NFsKrvc0v97JD5awbmeBLO5w9Ho9L9kmKonrwF9RJlW6BxT1PVv/agBHQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=16.9.0"
- }
- },
- "node_modules/http-errors": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
- "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "depd": "~2.0.0",
- "inherits": "~2.0.4",
- "setprototypeof": "~1.2.0",
- "statuses": "~2.0.2",
- "toidentifier": "~1.0.1"
- },
- "engines": {
- "node": ">= 0.8"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/https-proxy-agent": {
- "version": "7.0.6",
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
- "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "agent-base": "^7.1.2",
- "debug": "4"
- },
- "engines": {
- "node": ">= 14"
- }
- },
- "node_modules/human-signals": {
- "version": "8.0.1",
- "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.1.tgz",
- "integrity": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": ">=18.18.0"
- }
- },
- "node_modules/iconv-lite": {
- "version": "0.7.2",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
- "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/ignore": {
- "version": "5.3.2",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
- "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/immer": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/immer/-/immer-10.2.0.tgz",
- "integrity": "sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/immer"
- }
- },
- "node_modules/import-fresh": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
- "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/imurmurhash": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.8.19"
- }
- },
- "node_modules/inherits": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/ip-address": {
- "version": "10.0.1",
- "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.0.1.tgz",
- "integrity": "sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 12"
- }
- },
- "node_modules/ipaddr.js": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
- "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.10"
- }
- },
- "node_modules/is-arrayish": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
- "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/is-docker": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
- "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==",
- "dev": true,
- "license": "MIT",
- "bin": {
- "is-docker": "cli.js"
- },
- "engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-extglob": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/is-glob": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-extglob": "^2.1.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-in-ssh": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-in-ssh/-/is-in-ssh-1.0.0.tgz",
- "integrity": "sha512-jYa6Q9rH90kR1vKB6NM7qqd1mge3Fx4Dhw5TVlK1MUBqhEOuCagrEHMevNuCcbECmXZ0ThXkRm+Ymr51HwEPAw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=20"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-inside-container": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz",
- "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-docker": "^3.0.0"
- },
- "bin": {
- "is-inside-container": "cli.js"
- },
- "engines": {
- "node": ">=14.16"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-interactive": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz",
- "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-node-process": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/is-node-process/-/is-node-process-1.2.0.tgz",
- "integrity": "sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.12.0"
- }
- },
- "node_modules/is-obj": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-3.0.0.tgz",
- "integrity": "sha512-IlsXEHOjtKhpN8r/tRFj2nDyTmHvcfNeu/nrRIcXE17ROeatXchkojffa1SpdqW4cr/Fj6QkEf/Gn4zf6KKvEQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-plain-obj": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
- "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-promise": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
- "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/is-regexp": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-3.1.0.tgz",
- "integrity": "sha512-rbku49cWloU5bSMI+zaRaXdQHXnthP6DZ/vLnfdSKyL4zUzuWnomtOEiZZOd+ioQ+avFo/qau3KPTc7Fjy1uPA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-stream": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz",
- "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-unicode-supported": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz",
- "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-wsl": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz",
- "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-inside-container": "^1.0.0"
- },
- "engines": {
- "node": ">=16"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/isexe": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/jackspeak": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.2.3.tgz",
- "integrity": "sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg==",
- "dev": true,
- "license": "BlueOak-1.0.0",
- "dependencies": {
- "@isaacs/cliui": "^9.0.0"
- },
- "engines": {
- "node": "20 || >=22"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/jiti": {
- "version": "2.6.1",
- "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
- "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
- "license": "MIT",
- "bin": {
- "jiti": "lib/jiti-cli.mjs"
- }
- },
- "node_modules/jose": {
- "version": "6.1.3",
- "resolved": "https://registry.npmjs.org/jose/-/jose-6.1.3.tgz",
- "integrity": "sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/panva"
- }
- },
- "node_modules/js-tokens": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/js-yaml": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
- "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "argparse": "^2.0.1"
- },
- "bin": {
- "js-yaml": "bin/js-yaml.js"
- }
- },
- "node_modules/jsesc": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
- "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
- "dev": true,
- "license": "MIT",
- "bin": {
- "jsesc": "bin/jsesc"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/json-buffer": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
- "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/json-parse-even-better-errors": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/json-schema-traverse": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/json-schema-typed": {
- "version": "8.0.2",
- "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-8.0.2.tgz",
- "integrity": "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==",
- "dev": true,
- "license": "BSD-2-Clause"
- },
- "node_modules/json-stable-stringify-without-jsonify": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
- "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/json5": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
- "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
- "dev": true,
- "license": "MIT",
- "bin": {
- "json5": "lib/cli.js"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/jsonfile": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
- "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "universalify": "^2.0.0"
- },
- "optionalDependencies": {
- "graceful-fs": "^4.1.6"
- }
- },
- "node_modules/keyv": {
- "version": "4.5.4",
- "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
- "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "json-buffer": "3.0.1"
- }
- },
- "node_modules/kleur": {
- "version": "4.1.5",
- "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
- "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/levn": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
- "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "prelude-ls": "^1.2.1",
- "type-check": "~0.4.0"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/lightningcss": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.2.tgz",
- "integrity": "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==",
- "license": "MPL-2.0",
- "dependencies": {
- "detect-libc": "^2.0.3"
- },
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- },
- "optionalDependencies": {
- "lightningcss-android-arm64": "1.30.2",
- "lightningcss-darwin-arm64": "1.30.2",
- "lightningcss-darwin-x64": "1.30.2",
- "lightningcss-freebsd-x64": "1.30.2",
- "lightningcss-linux-arm-gnueabihf": "1.30.2",
- "lightningcss-linux-arm64-gnu": "1.30.2",
- "lightningcss-linux-arm64-musl": "1.30.2",
- "lightningcss-linux-x64-gnu": "1.30.2",
- "lightningcss-linux-x64-musl": "1.30.2",
- "lightningcss-win32-arm64-msvc": "1.30.2",
- "lightningcss-win32-x64-msvc": "1.30.2"
- }
- },
- "node_modules/lightningcss-android-arm64": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz",
- "integrity": "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==",
- "cpu": [
- "arm64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-darwin-arm64": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz",
- "integrity": "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==",
- "cpu": [
- "arm64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-darwin-x64": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz",
- "integrity": "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==",
- "cpu": [
- "x64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-freebsd-x64": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz",
- "integrity": "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==",
- "cpu": [
- "x64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-arm-gnueabihf": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz",
- "integrity": "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==",
- "cpu": [
- "arm"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-arm64-gnu": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz",
- "integrity": "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==",
- "cpu": [
- "arm64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-arm64-musl": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz",
- "integrity": "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==",
- "cpu": [
- "arm64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-x64-gnu": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz",
- "integrity": "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==",
- "cpu": [
- "x64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-x64-musl": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz",
- "integrity": "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==",
- "cpu": [
- "x64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-win32-arm64-msvc": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz",
- "integrity": "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==",
- "cpu": [
- "arm64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-win32-x64-msvc": {
- "version": "1.30.2",
- "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz",
- "integrity": "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==",
- "cpu": [
- "x64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lines-and-columns": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
- "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/locate-path": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
- "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-locate": "^5.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/lodash.merge": {
- "version": "4.6.2",
- "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
- "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/log-symbols": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-6.0.0.tgz",
- "integrity": "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "chalk": "^5.3.0",
- "is-unicode-supported": "^1.3.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/log-symbols/node_modules/chalk": {
- "version": "5.6.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz",
- "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^12.17.0 || ^14.13 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/log-symbols/node_modules/is-unicode-supported": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz",
- "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/lru-cache": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
- "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "yallist": "^3.0.2"
- }
- },
- "node_modules/lucide-react": {
- "version": "0.564.0",
- "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.564.0.tgz",
- "integrity": "sha512-JJ8GVTQqFwuliifD48U6+h7DXEHdkhJ/E87kksGByII3qHxtPciVb8T8woQONHBQgHVOl7rSMrrip3SeVNy7Fg==",
- "license": "ISC",
- "peerDependencies": {
- "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
- }
- },
- "node_modules/magic-string": {
- "version": "0.30.21",
- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
- "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
- "license": "MIT",
- "dependencies": {
- "@jridgewell/sourcemap-codec": "^1.5.5"
- }
- },
- "node_modules/math-intrinsics": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
- "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/media-typer": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
- "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/merge-descriptors": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
- "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/merge-stream": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
- "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/merge2": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
- "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/micromatch": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
- "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "braces": "^3.0.3",
- "picomatch": "^2.3.1"
- },
- "engines": {
- "node": ">=8.6"
- }
- },
- "node_modules/micromatch/node_modules/picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/mime-db": {
- "version": "1.54.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
- "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/mime-types": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz",
- "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "mime-db": "^1.54.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/mimic-fn": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
- "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/mimic-function": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz",
- "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^1.1.7"
- },
- "engines": {
- "node": "*"
- }
- },
- "node_modules/minimist": {
- "version": "1.2.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
- "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/ms": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/msw": {
- "version": "2.12.10",
- "resolved": "https://registry.npmjs.org/msw/-/msw-2.12.10.tgz",
- "integrity": "sha512-G3VUymSE0/iegFnuipujpwyTM2GuZAKXNeerUSrG2+Eg391wW63xFs5ixWsK9MWzr1AGoSkYGmyAzNgbR3+urw==",
- "dev": true,
- "hasInstallScript": true,
- "license": "MIT",
- "dependencies": {
- "@inquirer/confirm": "^5.0.0",
- "@mswjs/interceptors": "^0.41.2",
- "@open-draft/deferred-promise": "^2.2.0",
- "@types/statuses": "^2.0.6",
- "cookie": "^1.0.2",
- "graphql": "^16.12.0",
- "headers-polyfill": "^4.0.2",
- "is-node-process": "^1.2.0",
- "outvariant": "^1.4.3",
- "path-to-regexp": "^6.3.0",
- "picocolors": "^1.1.1",
- "rettime": "^0.10.1",
- "statuses": "^2.0.2",
- "strict-event-emitter": "^0.5.1",
- "tough-cookie": "^6.0.0",
- "type-fest": "^5.2.0",
- "until-async": "^3.0.2",
- "yargs": "^17.7.2"
- },
- "bin": {
- "msw": "cli/index.js"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/mswjs"
- },
- "peerDependencies": {
- "typescript": ">= 4.8.x"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/msw/node_modules/cookie": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
- "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/mute-stream": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-2.0.0.tgz",
- "integrity": "sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": "^18.17.0 || >=20.5.0"
- }
- },
- "node_modules/nanoid": {
- "version": "3.3.11",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
- "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "bin": {
- "nanoid": "bin/nanoid.cjs"
- },
- "engines": {
- "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
- }
- },
- "node_modules/natural-compare": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
- "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/negotiator": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
- "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/node-domexception": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz",
- "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==",
- "deprecated": "Use your platform's native DOMException instead",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/jimmywarting"
- },
- {
- "type": "github",
- "url": "https://paypal.me/jimmywarting"
- }
- ],
- "license": "MIT",
- "engines": {
- "node": ">=10.5.0"
- }
- },
- "node_modules/node-fetch": {
- "version": "3.3.2",
- "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz",
- "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "data-uri-to-buffer": "^4.0.0",
- "fetch-blob": "^3.1.4",
- "formdata-polyfill": "^4.0.10"
- },
- "engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/node-fetch"
- }
- },
- "node_modules/node-releases": {
- "version": "2.0.27",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
- "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/npm-run-path": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz",
- "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "path-key": "^4.0.0",
- "unicorn-magic": "^0.3.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/npm-run-path/node_modules/path-key": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
- "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/object-assign": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
- "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-inspect": {
- "version": "1.13.4",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
- "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/object-treeify": {
- "version": "1.1.33",
- "resolved": "https://registry.npmjs.org/object-treeify/-/object-treeify-1.1.33.tgz",
- "integrity": "sha512-EFVjAYfzWqWsBMRHPMAXLCDIJnpMhdWAqR7xG6M6a2cs6PMFpl/+Z20w9zDW4vkxOFfddegBKq9Rehd0bxWE7A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/on-finished": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
- "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ee-first": "1.1.1"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/once": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "wrappy": "1"
- }
- },
- "node_modules/onetime": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz",
- "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "mimic-function": "^5.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/open": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/open/-/open-11.0.0.tgz",
- "integrity": "sha512-smsWv2LzFjP03xmvFoJ331ss6h+jixfA4UUV/Bsiyuu4YJPfN+FIQGOIiv4w9/+MoHkfkJ22UIaQWRVFRfH6Vw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "default-browser": "^5.4.0",
- "define-lazy-prop": "^3.0.0",
- "is-in-ssh": "^1.0.0",
- "is-inside-container": "^1.0.0",
- "powershell-utils": "^0.1.0",
- "wsl-utils": "^0.3.0"
- },
- "engines": {
- "node": ">=20"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/optionator": {
- "version": "0.9.4",
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
- "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "deep-is": "^0.1.3",
- "fast-levenshtein": "^2.0.6",
- "levn": "^0.4.1",
- "prelude-ls": "^1.2.1",
- "type-check": "^0.4.0",
- "word-wrap": "^1.2.5"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/ora": {
- "version": "8.2.0",
- "resolved": "https://registry.npmjs.org/ora/-/ora-8.2.0.tgz",
- "integrity": "sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "chalk": "^5.3.0",
- "cli-cursor": "^5.0.0",
- "cli-spinners": "^2.9.2",
- "is-interactive": "^2.0.0",
- "is-unicode-supported": "^2.0.0",
- "log-symbols": "^6.0.0",
- "stdin-discarder": "^0.2.2",
- "string-width": "^7.2.0",
- "strip-ansi": "^7.1.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/ora/node_modules/chalk": {
- "version": "5.6.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz",
- "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^12.17.0 || ^14.13 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/outvariant": {
- "version": "1.4.3",
- "resolved": "https://registry.npmjs.org/outvariant/-/outvariant-1.4.3.tgz",
- "integrity": "sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/p-limit": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "yocto-queue": "^0.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/p-locate": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
- "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-limit": "^3.0.2"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/package-manager-detector": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.6.0.tgz",
- "integrity": "sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/parent-module": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
- "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "callsites": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/parse-json": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/parse-ms": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz",
- "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/parseurl": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
- "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/path-browserify": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
- "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/path-exists": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-key": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-to-regexp": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz",
- "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/picocolors": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
- "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
- "license": "ISC"
- },
- "node_modules/picomatch": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
- "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/pkce-challenge": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/pkce-challenge/-/pkce-challenge-5.0.1.tgz",
- "integrity": "sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=16.20.0"
- }
- },
- "node_modules/postcss": {
- "version": "8.5.6",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
- "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/postcss"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "nanoid": "^3.3.11",
- "picocolors": "^1.1.1",
- "source-map-js": "^1.2.1"
- },
- "engines": {
- "node": "^10 || ^12 || >=14"
- }
- },
- "node_modules/postcss-selector-parser": {
- "version": "7.1.1",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz",
- "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "cssesc": "^3.0.0",
- "util-deprecate": "^1.0.2"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/powershell-utils": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/powershell-utils/-/powershell-utils-0.1.0.tgz",
- "integrity": "sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=20"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/prelude-ls": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
- "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/pretty-ms": {
- "version": "9.3.0",
- "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.3.0.tgz",
- "integrity": "sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "parse-ms": "^4.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/prompts": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
- "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "kleur": "^3.0.3",
- "sisteransi": "^1.0.5"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/prompts/node_modules/kleur": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
- "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/proxy-addr": {
- "version": "2.0.7",
- "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
- "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "forwarded": "0.2.0",
- "ipaddr.js": "1.9.1"
- },
- "engines": {
- "node": ">= 0.10"
- }
- },
- "node_modules/punycode": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
- "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/qs": {
- "version": "6.14.2",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz",
- "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "side-channel": "^1.1.0"
- },
- "engines": {
- "node": ">=0.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/queue-microtask": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
- "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
- "node_modules/radix-ui": {
- "version": "1.4.3",
- "resolved": "https://registry.npmjs.org/radix-ui/-/radix-ui-1.4.3.tgz",
- "integrity": "sha512-aWizCQiyeAenIdUbqEpXgRA1ya65P13NKn/W8rWkcN0OPkRDxdBVLWnIEDsS2RpwCK2nobI7oMUSmexzTDyAmA==",
- "license": "MIT",
- "dependencies": {
- "@radix-ui/primitive": "1.1.3",
- "@radix-ui/react-accessible-icon": "1.1.7",
- "@radix-ui/react-accordion": "1.2.12",
- "@radix-ui/react-alert-dialog": "1.1.15",
- "@radix-ui/react-arrow": "1.1.7",
- "@radix-ui/react-aspect-ratio": "1.1.7",
- "@radix-ui/react-avatar": "1.1.10",
- "@radix-ui/react-checkbox": "1.3.3",
- "@radix-ui/react-collapsible": "1.1.12",
- "@radix-ui/react-collection": "1.1.7",
- "@radix-ui/react-compose-refs": "1.1.2",
- "@radix-ui/react-context": "1.1.2",
- "@radix-ui/react-context-menu": "2.2.16",
- "@radix-ui/react-dialog": "1.1.15",
- "@radix-ui/react-direction": "1.1.1",
- "@radix-ui/react-dismissable-layer": "1.1.11",
- "@radix-ui/react-dropdown-menu": "2.1.16",
- "@radix-ui/react-focus-guards": "1.1.3",
- "@radix-ui/react-focus-scope": "1.1.7",
- "@radix-ui/react-form": "0.1.8",
- "@radix-ui/react-hover-card": "1.1.15",
- "@radix-ui/react-label": "2.1.7",
- "@radix-ui/react-menu": "2.1.16",
- "@radix-ui/react-menubar": "1.1.16",
- "@radix-ui/react-navigation-menu": "1.2.14",
- "@radix-ui/react-one-time-password-field": "0.1.8",
- "@radix-ui/react-password-toggle-field": "0.1.3",
- "@radix-ui/react-popover": "1.1.15",
- "@radix-ui/react-popper": "1.2.8",
- "@radix-ui/react-portal": "1.1.9",
- "@radix-ui/react-presence": "1.1.5",
- "@radix-ui/react-primitive": "2.1.3",
- "@radix-ui/react-progress": "1.1.7",
- "@radix-ui/react-radio-group": "1.3.8",
- "@radix-ui/react-roving-focus": "1.1.11",
- "@radix-ui/react-scroll-area": "1.2.10",
- "@radix-ui/react-select": "2.2.6",
- "@radix-ui/react-separator": "1.1.7",
- "@radix-ui/react-slider": "1.3.6",
- "@radix-ui/react-slot": "1.2.3",
- "@radix-ui/react-switch": "1.2.6",
- "@radix-ui/react-tabs": "1.1.13",
- "@radix-ui/react-toast": "1.2.15",
- "@radix-ui/react-toggle": "1.1.10",
- "@radix-ui/react-toggle-group": "1.1.11",
- "@radix-ui/react-toolbar": "1.1.11",
- "@radix-ui/react-tooltip": "1.2.8",
- "@radix-ui/react-use-callback-ref": "1.1.1",
- "@radix-ui/react-use-controllable-state": "1.2.2",
- "@radix-ui/react-use-effect-event": "0.0.2",
- "@radix-ui/react-use-escape-keydown": "1.1.1",
- "@radix-ui/react-use-is-hydrated": "0.1.0",
- "@radix-ui/react-use-layout-effect": "1.1.1",
- "@radix-ui/react-use-size": "1.1.1",
- "@radix-ui/react-visually-hidden": "1.2.3"
- },
- "peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
- "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/raf-schd": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/raf-schd/-/raf-schd-4.0.3.tgz",
- "integrity": "sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ==",
- "license": "MIT"
- },
- "node_modules/range-parser": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
- "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/raw-body": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz",
- "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "bytes": "~3.1.2",
- "http-errors": "~2.0.1",
- "iconv-lite": "~0.7.0",
- "unpipe": "~1.0.0"
- },
- "engines": {
- "node": ">= 0.10"
- }
- },
- "node_modules/react": {
- "version": "19.2.4",
- "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
- "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dom": {
- "version": "19.2.4",
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz",
- "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
- "license": "MIT",
- "dependencies": {
- "scheduler": "^0.27.0"
- },
- "peerDependencies": {
- "react": "^19.2.4"
- }
- },
- "node_modules/react-hotkeys-hook": {
- "version": "4.6.2",
- "resolved": "https://registry.npmjs.org/react-hotkeys-hook/-/react-hotkeys-hook-4.6.2.tgz",
- "integrity": "sha512-FmP+ZriY3EG59Ug/lxNfrObCnW9xQShgk7Nb83+CkpfkcCpfS95ydv+E9JuXA5cp8KtskU7LGlIARpkc92X22Q==",
- "license": "MIT",
- "peerDependencies": {
- "react": ">=16.8.1",
- "react-dom": ">=16.8.1"
- }
- },
- "node_modules/react-redux": {
- "version": "9.2.0",
- "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-9.2.0.tgz",
- "integrity": "sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g==",
- "license": "MIT",
- "dependencies": {
- "@types/use-sync-external-store": "^0.0.6",
- "use-sync-external-store": "^1.4.0"
- },
- "peerDependencies": {
- "@types/react": "^18.2.25 || ^19",
- "react": "^18.0 || ^19",
- "redux": "^5.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "redux": {
- "optional": true
- }
- }
- },
- "node_modules/react-refresh": {
- "version": "0.18.0",
- "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz",
- "integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-remove-scroll": {
- "version": "2.7.2",
- "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.7.2.tgz",
- "integrity": "sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==",
- "license": "MIT",
- "dependencies": {
- "react-remove-scroll-bar": "^2.3.7",
- "react-style-singleton": "^2.2.3",
- "tslib": "^2.1.0",
- "use-callback-ref": "^1.3.3",
- "use-sidecar": "^1.1.3"
- },
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/react-remove-scroll-bar": {
- "version": "2.3.8",
- "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.8.tgz",
- "integrity": "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==",
- "license": "MIT",
- "dependencies": {
- "react-style-singleton": "^2.2.2",
- "tslib": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/react-router": {
- "version": "7.13.0",
- "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.13.0.tgz",
- "integrity": "sha512-PZgus8ETambRT17BUm/LL8lX3Of+oiLaPuVTRH3l1eLvSPpKO3AvhAEb5N7ihAFZQrYDqkvvWfFh9p0z9VsjLw==",
- "license": "MIT",
- "dependencies": {
- "cookie": "^1.0.1",
- "set-cookie-parser": "^2.6.0"
- },
- "engines": {
- "node": ">=20.0.0"
- },
- "peerDependencies": {
- "react": ">=18",
- "react-dom": ">=18"
- },
- "peerDependenciesMeta": {
- "react-dom": {
- "optional": true
- }
- }
- },
- "node_modules/react-router-dom": {
- "version": "7.13.0",
- "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.13.0.tgz",
- "integrity": "sha512-5CO/l5Yahi2SKC6rGZ+HDEjpjkGaG/ncEP7eWFTvFxbHP8yeeI0PxTDjimtpXYlR3b3i9/WIL4VJttPrESIf2g==",
- "license": "MIT",
- "dependencies": {
- "react-router": "7.13.0"
- },
- "engines": {
- "node": ">=20.0.0"
- },
- "peerDependencies": {
- "react": ">=18",
- "react-dom": ">=18"
- }
- },
- "node_modules/react-router/node_modules/cookie": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
- "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/react-style-singleton": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.3.tgz",
- "integrity": "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==",
- "license": "MIT",
- "dependencies": {
- "get-nonce": "^1.0.0",
- "tslib": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/react-virtuoso": {
- "version": "4.18.1",
- "resolved": "https://registry.npmjs.org/react-virtuoso/-/react-virtuoso-4.18.1.tgz",
- "integrity": "sha512-KF474cDwaSb9+SJ380xruBB4P+yGWcVkcu26HtMqYNMTYlYbrNy8vqMkE+GpAApPPufJqgOLMoWMFG/3pJMXUA==",
- "license": "MIT",
- "peerDependencies": {
- "react": ">=16 || >=17 || >= 18 || >= 19",
- "react-dom": ">=16 || >=17 || >= 18 || >=19"
- }
- },
- "node_modules/recast": {
- "version": "0.23.11",
- "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.11.tgz",
- "integrity": "sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ast-types": "^0.16.1",
- "esprima": "~4.0.0",
- "source-map": "~0.6.1",
- "tiny-invariant": "^1.3.3",
- "tslib": "^2.0.1"
- },
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/redux": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz",
- "integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==",
- "license": "MIT"
- },
- "node_modules/require-directory": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
- "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/require-from-string": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
- "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/resolve-from": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/restore-cursor": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz",
- "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "onetime": "^7.0.0",
- "signal-exit": "^4.1.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/rettime": {
- "version": "0.10.1",
- "resolved": "https://registry.npmjs.org/rettime/-/rettime-0.10.1.tgz",
- "integrity": "sha512-uyDrIlUEH37cinabq0AX4QbgV4HbFZ/gqoiunWQ1UqBtRvTTytwhNYjE++pO/MjPTZL5KQCf2bEoJ/BJNVQ5Kw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/reusify": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
- "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "iojs": ">=1.0.0",
- "node": ">=0.10.0"
- }
- },
- "node_modules/rollup": {
- "version": "4.57.1",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.57.1.tgz",
- "integrity": "sha512-oQL6lgK3e2QZeQ7gcgIkS2YZPg5slw37hYufJ3edKlfQSGGm8ICoxswK15ntSzF/a8+h7ekRy7k7oWc3BQ7y8A==",
- "license": "MIT",
- "dependencies": {
- "@types/estree": "1.0.8"
- },
- "bin": {
- "rollup": "dist/bin/rollup"
- },
- "engines": {
- "node": ">=18.0.0",
- "npm": ">=8.0.0"
- },
- "optionalDependencies": {
- "@rollup/rollup-android-arm-eabi": "4.57.1",
- "@rollup/rollup-android-arm64": "4.57.1",
- "@rollup/rollup-darwin-arm64": "4.57.1",
- "@rollup/rollup-darwin-x64": "4.57.1",
- "@rollup/rollup-freebsd-arm64": "4.57.1",
- "@rollup/rollup-freebsd-x64": "4.57.1",
- "@rollup/rollup-linux-arm-gnueabihf": "4.57.1",
- "@rollup/rollup-linux-arm-musleabihf": "4.57.1",
- "@rollup/rollup-linux-arm64-gnu": "4.57.1",
- "@rollup/rollup-linux-arm64-musl": "4.57.1",
- "@rollup/rollup-linux-loong64-gnu": "4.57.1",
- "@rollup/rollup-linux-loong64-musl": "4.57.1",
- "@rollup/rollup-linux-ppc64-gnu": "4.57.1",
- "@rollup/rollup-linux-ppc64-musl": "4.57.1",
- "@rollup/rollup-linux-riscv64-gnu": "4.57.1",
- "@rollup/rollup-linux-riscv64-musl": "4.57.1",
- "@rollup/rollup-linux-s390x-gnu": "4.57.1",
- "@rollup/rollup-linux-x64-gnu": "4.57.1",
- "@rollup/rollup-linux-x64-musl": "4.57.1",
- "@rollup/rollup-openbsd-x64": "4.57.1",
- "@rollup/rollup-openharmony-arm64": "4.57.1",
- "@rollup/rollup-win32-arm64-msvc": "4.57.1",
- "@rollup/rollup-win32-ia32-msvc": "4.57.1",
- "@rollup/rollup-win32-x64-gnu": "4.57.1",
- "@rollup/rollup-win32-x64-msvc": "4.57.1",
- "fsevents": "~2.3.2"
- }
- },
- "node_modules/router": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
- "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "debug": "^4.4.0",
- "depd": "^2.0.0",
- "is-promise": "^4.0.0",
- "parseurl": "^1.3.3",
- "path-to-regexp": "^8.0.0"
- },
- "engines": {
- "node": ">= 18"
- }
- },
- "node_modules/router/node_modules/path-to-regexp": {
- "version": "8.3.0",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.3.0.tgz",
- "integrity": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/run-applescript": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.1.0.tgz",
- "integrity": "sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/run-parallel": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
- "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "queue-microtask": "^1.2.2"
- }
- },
- "node_modules/safer-buffer": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
- "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/scheduler": {
- "version": "0.27.0",
- "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
- "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
- "license": "MIT"
- },
- "node_modules/semver": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/send": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz",
- "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "debug": "^4.4.3",
- "encodeurl": "^2.0.0",
- "escape-html": "^1.0.3",
- "etag": "^1.8.1",
- "fresh": "^2.0.0",
- "http-errors": "^2.0.1",
- "mime-types": "^3.0.2",
- "ms": "^2.1.3",
- "on-finished": "^2.4.1",
- "range-parser": "^1.2.1",
- "statuses": "^2.0.2"
- },
- "engines": {
- "node": ">= 18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/serve-static": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz",
- "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "encodeurl": "^2.0.0",
- "escape-html": "^1.0.3",
- "parseurl": "^1.3.3",
- "send": "^1.2.0"
- },
- "engines": {
- "node": ">= 18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/set-cookie-parser": {
- "version": "2.7.2",
- "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz",
- "integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==",
- "license": "MIT"
- },
- "node_modules/setprototypeof": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
- "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/shadcn": {
- "version": "3.8.4",
- "resolved": "https://registry.npmjs.org/shadcn/-/shadcn-3.8.4.tgz",
- "integrity": "sha512-pSad/m1+PGzB0aLsRBV0EkyGg9al1nJqYUuucg6d8v8xZspPZ5/ehGNEp5M4b1KQYqdO5/gGPbkhVbgmXqG9Pw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@antfu/ni": "^25.0.0",
- "@babel/core": "^7.28.0",
- "@babel/parser": "^7.28.0",
- "@babel/plugin-transform-typescript": "^7.28.0",
- "@babel/preset-typescript": "^7.27.1",
- "@dotenvx/dotenvx": "^1.48.4",
- "@modelcontextprotocol/sdk": "^1.26.0",
- "@types/validate-npm-package-name": "^4.0.2",
- "browserslist": "^4.26.2",
- "commander": "^14.0.0",
- "cosmiconfig": "^9.0.0",
- "dedent": "^1.6.0",
- "deepmerge": "^4.3.1",
- "diff": "^8.0.2",
- "execa": "^9.6.0",
- "fast-glob": "^3.3.3",
- "fs-extra": "^11.3.1",
- "fuzzysort": "^3.1.0",
- "https-proxy-agent": "^7.0.6",
- "kleur": "^4.1.5",
- "msw": "^2.10.4",
- "node-fetch": "^3.3.2",
- "open": "^11.0.0",
- "ora": "^8.2.0",
- "postcss": "^8.5.6",
- "postcss-selector-parser": "^7.1.0",
- "prompts": "^2.4.2",
- "recast": "^0.23.11",
- "stringify-object": "^5.0.0",
- "tailwind-merge": "^3.0.1",
- "ts-morph": "^26.0.0",
- "tsconfig-paths": "^4.2.0",
- "validate-npm-package-name": "^7.0.1",
- "zod": "^3.24.1",
- "zod-to-json-schema": "^3.24.6"
- },
- "bin": {
- "shadcn": "dist/index.js"
- }
- },
- "node_modules/shadcn/node_modules/zod": {
- "version": "3.25.76",
- "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
- "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/colinhacks"
- }
- },
- "node_modules/shebang-command": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "shebang-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/shebang-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/side-channel": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
- "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "object-inspect": "^1.13.3",
- "side-channel-list": "^1.0.0",
- "side-channel-map": "^1.0.1",
- "side-channel-weakmap": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/side-channel-list": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
- "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "object-inspect": "^1.13.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/side-channel-map": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
- "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.2",
- "es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.5",
- "object-inspect": "^1.13.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/side-channel-weakmap": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
- "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.2",
- "es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.5",
- "object-inspect": "^1.13.3",
- "side-channel-map": "^1.0.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/signal-exit": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
- "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">=14"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/sisteransi": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
- "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/sonner": {
- "version": "2.0.7",
- "resolved": "https://registry.npmjs.org/sonner/-/sonner-2.0.7.tgz",
- "integrity": "sha512-W6ZN4p58k8aDKA4XPcx2hpIQXBRAgyiWVkYhT7CvK6D3iAu7xjvVyhQHg2/iaKJZ1XVJ4r7XuwGL+WGEK37i9w==",
- "license": "MIT",
- "peerDependencies": {
- "react": "^18.0.0 || ^19.0.0 || ^19.0.0-rc",
- "react-dom": "^18.0.0 || ^19.0.0 || ^19.0.0-rc"
- }
- },
- "node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/source-map-js": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
- "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/statuses": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
- "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/stdin-discarder": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.2.2.tgz",
- "integrity": "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/strict-event-emitter": {
- "version": "0.5.1",
- "resolved": "https://registry.npmjs.org/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz",
- "integrity": "sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/string-width": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
- "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "emoji-regex": "^10.3.0",
- "get-east-asian-width": "^1.0.0",
- "strip-ansi": "^7.1.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/stringify-object": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-5.0.0.tgz",
- "integrity": "sha512-zaJYxz2FtcMb4f+g60KsRNFOpVMUyuJgA51Zi5Z1DOTC3S59+OQiVOzE9GZt0x72uBGWKsQIuBKeF9iusmKFsg==",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "get-own-enumerable-keys": "^1.0.0",
- "is-obj": "^3.0.0",
- "is-regexp": "^3.1.0"
- },
- "engines": {
- "node": ">=14.16"
- },
- "funding": {
- "url": "https://github.com/yeoman/stringify-object?sponsor=1"
- }
- },
- "node_modules/strip-ansi": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz",
- "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^6.0.1"
- },
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/chalk/strip-ansi?sponsor=1"
- }
- },
- "node_modules/strip-bom": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
- "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/strip-final-newline": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz",
- "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/strip-json-comments": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/tagged-tag": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/tagged-tag/-/tagged-tag-1.0.0.tgz",
- "integrity": "sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=20"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/tailwind-merge": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.4.0.tgz",
- "integrity": "sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g==",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/dcastil"
- }
- },
- "node_modules/tailwindcss": {
- "version": "4.1.18",
- "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.18.tgz",
- "integrity": "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==",
- "license": "MIT"
- },
- "node_modules/tapable": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",
- "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/tiny-invariant": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
- "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==",
- "license": "MIT"
- },
- "node_modules/tinyexec": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.0.2.tgz",
- "integrity": "sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/tinyglobby": {
- "version": "0.2.15",
- "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
- "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
- "license": "MIT",
- "dependencies": {
- "fdir": "^6.5.0",
- "picomatch": "^4.0.3"
- },
- "engines": {
- "node": ">=12.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/SuperchupuDev"
- }
- },
- "node_modules/tldts": {
- "version": "7.0.23",
- "resolved": "https://registry.npmjs.org/tldts/-/tldts-7.0.23.tgz",
- "integrity": "sha512-ASdhgQIBSay0R/eXggAkQ53G4nTJqTXqC2kbaBbdDwM7SkjyZyO0OaaN1/FH7U/yCeqOHDwFO5j8+Os/IS1dXw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "tldts-core": "^7.0.23"
- },
- "bin": {
- "tldts": "bin/cli.js"
- }
- },
- "node_modules/tldts-core": {
- "version": "7.0.23",
- "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.0.23.tgz",
- "integrity": "sha512-0g9vrtDQLrNIiCj22HSe9d4mLVG3g5ph5DZ8zCKBr4OtrspmNB6ss7hVyzArAeE88ceZocIEGkyW1Ime7fxPtQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-number": "^7.0.0"
- },
- "engines": {
- "node": ">=8.0"
- }
- },
- "node_modules/toidentifier": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
- "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.6"
- }
- },
- "node_modules/tough-cookie": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-6.0.0.tgz",
- "integrity": "sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "tldts": "^7.0.5"
- },
- "engines": {
- "node": ">=16"
- }
- },
- "node_modules/ts-api-utils": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.4.0.tgz",
- "integrity": "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18.12"
- },
- "peerDependencies": {
- "typescript": ">=4.8.4"
- }
- },
- "node_modules/ts-morph": {
- "version": "26.0.0",
- "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-26.0.0.tgz",
- "integrity": "sha512-ztMO++owQnz8c/gIENcM9XfCEzgoGphTv+nKpYNM1bgsdOVC/jRZuEBf6N+mLLDNg68Kl+GgUZfOySaRiG1/Ug==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@ts-morph/common": "~0.27.0",
- "code-block-writer": "^13.0.3"
- }
- },
- "node_modules/tsconfig-paths": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz",
- "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "json5": "^2.2.2",
- "minimist": "^1.2.6",
- "strip-bom": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/tslib": {
- "version": "2.8.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
- "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
- "license": "0BSD"
- },
- "node_modules/tw-animate-css": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/tw-animate-css/-/tw-animate-css-1.4.0.tgz",
- "integrity": "sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/Wombosvideo"
- }
- },
- "node_modules/type-check": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
- "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "prelude-ls": "^1.2.1"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/type-fest": {
- "version": "5.4.4",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-5.4.4.tgz",
- "integrity": "sha512-JnTrzGu+zPV3aXIUhnyWJj4z/wigMsdYajGLIYakqyOW1nPllzXEJee0QQbHj+CTIQtXGlAjuK0UY+2xTyjVAw==",
- "dev": true,
- "license": "(MIT OR CC0-1.0)",
- "dependencies": {
- "tagged-tag": "^1.0.0"
- },
- "engines": {
- "node": ">=20"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/type-is": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
- "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "content-type": "^1.0.5",
- "media-typer": "^1.1.0",
- "mime-types": "^3.0.0"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/typescript": {
- "version": "5.9.3",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
- "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
- "dev": true,
- "license": "Apache-2.0",
- "bin": {
- "tsc": "bin/tsc",
- "tsserver": "bin/tsserver"
- },
- "engines": {
- "node": ">=14.17"
- }
- },
- "node_modules/typescript-eslint": {
- "version": "8.55.0",
- "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.55.0.tgz",
- "integrity": "sha512-HE4wj+r5lmDVS9gdaN0/+iqNvPZwGfnJ5lZuz7s5vLlg9ODw0bIiiETaios9LvFI1U94/VBXGm3CB2Y5cNFMpw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/eslint-plugin": "8.55.0",
- "@typescript-eslint/parser": "8.55.0",
- "@typescript-eslint/typescript-estree": "8.55.0",
- "@typescript-eslint/utils": "8.55.0"
- },
- "engines": {
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^8.57.0 || ^9.0.0",
- "typescript": ">=4.8.4 <6.0.0"
- }
- },
- "node_modules/undici-types": {
- "version": "7.16.0",
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz",
- "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==",
- "devOptional": true,
- "license": "MIT"
- },
- "node_modules/unicorn-magic": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz",
- "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/universalify": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
- "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 10.0.0"
- }
- },
- "node_modules/unpipe": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
- "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/until-async": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/until-async/-/until-async-3.0.2.tgz",
- "integrity": "sha512-IiSk4HlzAMqTUseHHe3VhIGyuFmN90zMTpD3Z3y8jeQbzLIq500MVM7Jq2vUAnTKAFPJrqwkzr6PoTcPhGcOiw==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/kettanaito"
- }
- },
- "node_modules/update-browserslist-db": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
- "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "escalade": "^3.2.0",
- "picocolors": "^1.1.1"
- },
- "bin": {
- "update-browserslist-db": "cli.js"
- },
- "peerDependencies": {
- "browserslist": ">= 4.21.0"
- }
- },
- "node_modules/uri-js": {
- "version": "4.4.1",
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
- "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "punycode": "^2.1.0"
- }
- },
- "node_modules/use-callback-ref": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.3.tgz",
- "integrity": "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==",
- "license": "MIT",
- "dependencies": {
- "tslib": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/use-sidecar": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.3.tgz",
- "integrity": "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==",
- "license": "MIT",
- "dependencies": {
- "detect-node-es": "^1.1.0",
- "tslib": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/use-sync-external-store": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz",
- "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==",
- "license": "MIT",
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
- }
- },
- "node_modules/util-deprecate": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
- "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/validate-npm-package-name": {
- "version": "7.0.2",
- "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-7.0.2.tgz",
- "integrity": "sha512-hVDIBwsRruT73PbK7uP5ebUt+ezEtCmzZz3F59BSr2F6OVFnJ/6h8liuvdLrQ88Xmnk6/+xGGuq+pG9WwTuy3A==",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": "^20.17.0 || >=22.9.0"
- }
- },
- "node_modules/vary": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
- "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/vite": {
- "version": "7.3.1",
- "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.1.tgz",
- "integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==",
- "license": "MIT",
- "dependencies": {
- "esbuild": "^0.27.0",
- "fdir": "^6.5.0",
- "picomatch": "^4.0.3",
- "postcss": "^8.5.6",
- "rollup": "^4.43.0",
- "tinyglobby": "^0.2.15"
- },
- "bin": {
- "vite": "bin/vite.js"
- },
- "engines": {
- "node": "^20.19.0 || >=22.12.0"
- },
- "funding": {
- "url": "https://github.com/vitejs/vite?sponsor=1"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.3"
- },
- "peerDependencies": {
- "@types/node": "^20.19.0 || >=22.12.0",
- "jiti": ">=1.21.0",
- "less": "^4.0.0",
- "lightningcss": "^1.21.0",
- "sass": "^1.70.0",
- "sass-embedded": "^1.70.0",
- "stylus": ">=0.54.8",
- "sugarss": "^5.0.0",
- "terser": "^5.16.0",
- "tsx": "^4.8.1",
- "yaml": "^2.4.2"
- },
- "peerDependenciesMeta": {
- "@types/node": {
- "optional": true
- },
- "jiti": {
- "optional": true
- },
- "less": {
- "optional": true
- },
- "lightningcss": {
- "optional": true
- },
- "sass": {
- "optional": true
- },
- "sass-embedded": {
- "optional": true
- },
- "stylus": {
- "optional": true
- },
- "sugarss": {
- "optional": true
- },
- "terser": {
- "optional": true
- },
- "tsx": {
- "optional": true
- },
- "yaml": {
- "optional": true
- }
- }
- },
- "node_modules/web-streams-polyfill": {
- "version": "3.3.3",
- "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz",
- "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/which": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/word-wrap": {
- "version": "1.2.5",
- "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
- "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/wrap-ansi": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
- "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/wrap-ansi/node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/wrap-ansi/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/wrap-ansi/node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/wrap-ansi/node_modules/strip-ansi": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/wrappy": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/wsl-utils": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/wsl-utils/-/wsl-utils-0.3.1.tgz",
- "integrity": "sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-wsl": "^3.1.0",
- "powershell-utils": "^0.1.0"
- },
- "engines": {
- "node": ">=20"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/y18n": {
- "version": "5.0.8",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
- "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/yallist": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
- "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/yargs": {
- "version": "17.7.2",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
- "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "cliui": "^8.0.1",
- "escalade": "^3.1.1",
- "get-caller-file": "^2.0.5",
- "require-directory": "^2.1.1",
- "string-width": "^4.2.3",
- "y18n": "^5.0.5",
- "yargs-parser": "^21.1.1"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/yargs-parser": {
- "version": "21.1.1",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
- "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/yargs/node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/yargs/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/yargs/node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/yargs/node_modules/strip-ansi": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/yocto-queue": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/yoctocolors": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.2.tgz",
- "integrity": "sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/yoctocolors-cjs": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/yoctocolors-cjs/-/yoctocolors-cjs-2.1.3.tgz",
- "integrity": "sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/zod": {
- "version": "4.3.6",
- "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz",
- "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/colinhacks"
- }
- },
- "node_modules/zod-to-json-schema": {
- "version": "3.25.1",
- "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.1.tgz",
- "integrity": "sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA==",
- "dev": true,
- "license": "ISC",
- "peerDependencies": {
- "zod": "^3.25 || ^4"
- }
- },
- "node_modules/zod-validation-error": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz",
- "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18.0.0"
- },
- "peerDependencies": {
- "zod": "^3.25.0 || ^4.0.0"
- }
- },
- "node_modules/zustand": {
- "version": "5.0.11",
- "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.11.tgz",
- "integrity": "sha512-fdZY+dk7zn/vbWNCYmzZULHRrss0jx5pPFiOuMZ/5HJN6Yv3u+1Wswy/4MpZEkEGhtNH+pwxZB8OKgUBPzYAGg==",
- "license": "MIT",
- "engines": {
- "node": ">=12.20.0"
- },
- "peerDependencies": {
- "@types/react": ">=18.0.0",
- "immer": ">=9.0.6",
- "react": ">=18.0.0",
- "use-sync-external-store": ">=1.2.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "immer": {
- "optional": true
- },
- "react": {
- "optional": true
- },
- "use-sync-external-store": {
- "optional": true
- }
- }
- }
- }
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/package.json b/engram-bridge/engram_bridge/channels/web-ui/package.json
deleted file mode 100644
index 8e81cb0..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/package.json
+++ /dev/null
@@ -1,48 +0,0 @@
-{
- "name": "web-ui",
- "private": true,
- "version": "0.0.0",
- "type": "module",
- "scripts": {
- "dev": "vite",
- "build": "tsc -b && vite build",
- "lint": "eslint .",
- "preview": "vite preview"
- },
- "dependencies": {
- "@hello-pangea/dnd": "^18.0.1",
- "@tailwindcss/vite": "^4.1.18",
- "@tanstack/react-query": "^5.75.5",
- "@virtuoso.dev/message-list": "^1.15.2",
- "class-variance-authority": "^0.7.1",
- "clsx": "^2.1.1",
- "immer": "^10.1.1",
- "lucide-react": "^0.564.0",
- "radix-ui": "^1.4.3",
- "react": "^19.2.0",
- "react-dom": "^19.2.0",
- "react-hotkeys-hook": "^4.6.1",
- "react-router-dom": "^7.13.0",
- "react-virtuoso": "^4.18.1",
- "sonner": "^2.0.7",
- "tailwind-merge": "^3.4.0",
- "tailwindcss": "^4.1.18",
- "zustand": "^5.0.5"
- },
- "devDependencies": {
- "@eslint/js": "^9.39.1",
- "@types/node": "^24.10.1",
- "@types/react": "^19.2.7",
- "@types/react-dom": "^19.2.3",
- "@vitejs/plugin-react": "^5.1.1",
- "eslint": "^9.39.1",
- "eslint-plugin-react-hooks": "^7.0.1",
- "eslint-plugin-react-refresh": "^0.4.24",
- "globals": "^16.5.0",
- "shadcn": "^3.8.4",
- "tw-animate-css": "^1.4.0",
- "typescript": "~5.9.3",
- "typescript-eslint": "^8.48.0",
- "vite": "^7.3.1"
- }
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/App.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/App.tsx
deleted file mode 100644
index df6e786..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/App.tsx
+++ /dev/null
@@ -1,84 +0,0 @@
-import { BrowserRouter, Routes, Route } from "react-router-dom";
-import { useHotkeys } from "react-hotkeys-hook";
-import { useState } from "react";
-import { Toaster } from "sonner";
-import { TooltipProvider } from "@/components/ui/tooltip";
-import { ProjectProvider } from "@/contexts/ProjectContext";
-import { WebSocketProvider } from "@/contexts/WebSocketContext";
-import { AppBar } from "@/components/layout/AppBar";
-import { ChatView } from "@/views/ChatView";
-import { BoardView } from "@/views/BoardView";
-import { TaskChatView } from "@/views/TaskChatView";
-import { MemoryView } from "@/views/MemoryView";
-import { TodoView } from "@/views/TodoView";
-import { CoordinationView } from "@/views/CoordinationView";
-import { WarRoomView } from "@/views/WarRoomView";
-import { CommandBar } from "@/components/dialogs/CommandBar";
-import { SettingsDialog } from "@/components/dialogs/SettingsDialog";
-import { IssuePanel } from "@/components/issue/IssuePanel";
-import type { Issue } from "@/types";
-
-function AppInner() {
- const [commandBarOpen, setCommandBarOpen] = useState(false);
- const [settingsOpen, setSettingsOpen] = useState(false);
- const [commandIssue, setCommandIssue] = useState(null);
-
- // Keyboard shortcuts
- useHotkeys("mod+k", (e) => { e.preventDefault(); setCommandBarOpen(true); }, { enableOnFormTags: true });
-
- return (
-
-
-
setSettingsOpen(true)} />
-
-
- } />
- } />
- } />
- } />
- } />
- } />
- } />
-
-
- {/* Command palette */}
- setCommandBarOpen(false)}
- onSelectIssue={(issue) => setCommandIssue(issue)}
- onCreateIssue={() => setCommandBarOpen(false)}
- />
-
- {/* Settings dialog */}
- setSettingsOpen(false)}
- />
-
- {/* Issue from command bar */}
- {commandIssue && (
- setCommandIssue(null)}
- onIssueChange={updated => setCommandIssue(updated)}
- />
- )}
-
- {/* Toast notifications */}
-
-
-
- );
-}
-
-export default function App() {
- return (
-
-
-
-
-
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/chat-input.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/chat-input.tsx
deleted file mode 100644
index cfc8d92..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/chat-input.tsx
+++ /dev/null
@@ -1,61 +0,0 @@
-import { useCallback, useRef, type KeyboardEvent } from "react";
-import { Button } from "@/components/ui/button";
-import { SendHorizonal } from "lucide-react";
-
-interface ChatInputProps {
- onSend: (text: string) => void;
- disabled?: boolean;
-}
-
-export function ChatInput({ onSend, disabled }: ChatInputProps) {
- const textareaRef = useRef(null);
-
- const handleSend = useCallback(() => {
- const text = textareaRef.current?.value.trim();
- if (!text) return;
- onSend(text);
- if (textareaRef.current) {
- textareaRef.current.value = "";
- textareaRef.current.style.height = "auto";
- }
- }, [onSend]);
-
- const handleKeyDown = useCallback(
- (e: KeyboardEvent) => {
- if (e.key === "Enter" && !e.shiftKey) {
- e.preventDefault();
- handleSend();
- }
- },
- [handleSend]
- );
-
- const handleInput = useCallback(() => {
- const el = textareaRef.current;
- if (!el) return;
- el.style.height = "auto";
- el.style.height = `${Math.min(el.scrollHeight, 200)}px`;
- }, []);
-
- return (
-
-
-
-
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/chat-message.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/chat-message.tsx
deleted file mode 100644
index 0318100..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/chat-message.tsx
+++ /dev/null
@@ -1,99 +0,0 @@
-import { renderMarkdown } from "@/lib/render-markdown";
-import { Bot, User } from "lucide-react";
-
-export interface ChatMessageData {
- id: string;
- role: "user" | "agent" | "system";
- content: string;
- messageId?: number; // server-assigned message_id for editable messages
- timestamp: string;
- streaming?: boolean;
-}
-
-interface ChatMessageProps {
- message: ChatMessageData;
-}
-
-function ThinkingDots() {
- return (
-
-
-
-
- Thinking
-
- );
-}
-
-/** Detect tool-use status lines like [Read: file.py] */
-function isToolStatus(content: string): boolean {
- return /^\[[A-Z][a-zA-Z]+:\s*.+\]$/.test(content.trim());
-}
-
-export function ChatMessage({ message }: ChatMessageProps) {
- const isUser = message.role === "user";
- const isSystem = message.role === "system";
- const isThinking = message.content === "...";
- const isTool = !isUser && !isSystem && isToolStatus(message.content);
-
- if (isSystem) {
- return (
-
-
- {message.content}
-
-
- );
- }
-
- return (
-
- {/* Agent avatar */}
- {!isUser && (
-
-
-
- )}
-
-
- {isThinking ? (
-
- ) : isTool ? (
-
{message.content}
- ) : (
-
- )}
- {!isTool && (
-
- {new Date(message.timestamp).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit" })}
-
- )}
-
-
- {/* User avatar */}
- {isUser && (
-
-
-
- )}
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/command-bar.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/command-bar.tsx
deleted file mode 100644
index b69e591..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/command-bar.tsx
+++ /dev/null
@@ -1,65 +0,0 @@
-import { Button } from "@/components/ui/button";
-import {
- Tooltip,
- TooltipContent,
- TooltipTrigger,
-} from "@/components/ui/tooltip";
-import {
- Play,
- ArrowRightLeft,
- Activity,
- Bot,
- Square,
- History,
- Brain,
-} from "lucide-react";
-
-interface CommandBarProps {
- onCommand: (command: string) => void;
-}
-
-const commands = [
- { cmd: "start", icon: Play, label: "Start", needsArgs: true, hint: "agent repo" },
- { cmd: "switch", icon: ArrowRightLeft, label: "Switch", needsArgs: true, hint: "agent" },
- { cmd: "status", icon: Activity, label: "Status", needsArgs: false },
- { cmd: "agents", icon: Bot, label: "Agents", needsArgs: false },
- { cmd: "stop", icon: Square, label: "Stop", needsArgs: false },
- { cmd: "sessions", icon: History, label: "Sessions", needsArgs: false },
- { cmd: "memory", icon: Brain, label: "Memory", needsArgs: true, hint: "query" },
-] as const;
-
-export function CommandBar({ onCommand }: CommandBarProps) {
- const handleClick = (cmd: typeof commands[number]) => {
- if (cmd.needsArgs) {
- const args = prompt(`/${cmd.cmd} — enter arguments (${cmd.hint}):`);
- if (args !== null) {
- onCommand(`/${cmd.cmd} ${args}`.trim());
- }
- } else {
- onCommand(`/${cmd.cmd}`);
- }
- };
-
- return (
-
- {commands.map((cmd) => (
-
-
- handleClick(cmd)}
- >
-
- {cmd.label}
-
-
-
- /{cmd.cmd}{cmd.needsArgs ? ` <${cmd.hint}>` : ""}
-
-
- ))}
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/agent-roster.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/agent-roster.tsx
deleted file mode 100644
index 3b9668b..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/agent-roster.tsx
+++ /dev/null
@@ -1,84 +0,0 @@
-import { Badge } from "@/components/ui/badge";
-import { Bot, Cpu, Terminal } from "lucide-react";
-import type { AgentInfo } from "@/types/dashboard";
-import { STATUS_COLORS } from "@/types/dashboard";
-
-interface AgentRosterProps {
- agents: AgentInfo[];
- activeCount: number;
-}
-
-const typeIcons: Record = {
- claude: Bot,
- codex: Cpu,
- custom: Terminal,
-};
-
-const typeLabels: Record = {
- claude: "Claude Code",
- codex: "Codex",
- custom: "Custom CLI",
-};
-
-export function AgentRoster({ agents, activeCount }: AgentRosterProps) {
- return (
-
- {/* Header */}
-
-
-
- Agents
-
-
- {agents.length}
-
-
- {activeCount > 0 && (
-
- {activeCount} active
-
- )}
-
-
- {/* Agent list */}
-
- {agents.map((agent) => {
- const Icon = typeIcons[agent.type] || Terminal;
- const dotColor = STATUS_COLORS[agent.status] || STATUS_COLORS.offline;
-
- return (
-
- {/* Avatar */}
-
-
-
-
- {/* Status dot */}
-
-
-
- {/* Info */}
-
-
{agent.name}
-
- {typeLabels[agent.type] || agent.type}
-
-
-
- );
- })}
-
- {agents.length === 0 && (
-
- No agents configured
-
- )}
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/conversation-entry.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/conversation-entry.tsx
deleted file mode 100644
index acdc692..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/conversation-entry.tsx
+++ /dev/null
@@ -1,182 +0,0 @@
-import { renderMarkdown } from "@/lib/render-markdown";
-import {
- Bot,
- User,
- FileCode,
- Terminal,
- AlertCircle,
- Info,
- CheckCircle2,
- Loader2,
- ChevronDown,
- ChevronRight,
-} from "lucide-react";
-import { useState } from "react";
-import type { ConversationEntry as ConversationEntryType } from "@/types/dashboard";
-
-interface ConversationEntryProps {
- entry: ConversationEntryType;
-}
-
-function timeStr(iso: string): string {
- return new Date(iso).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit", second: "2-digit" });
-}
-
-/** Streaming dots animation */
-function StreamingDots() {
- return (
-
-
-
-
-
- );
-}
-
-export function ConversationEntry({ entry }: ConversationEntryProps) {
- const [expanded, setExpanded] = useState(false);
-
- // ── User message ──
- if (entry.type === "user") {
- return (
-
-
-
-
-
-
- You
- {timeStr(entry.ts)}
-
-
-
-
- );
- }
-
- // ── Assistant message ──
- if (entry.type === "assistant") {
- return (
-
-
-
-
-
-
- {entry.agent || "Agent"}
- {timeStr(entry.ts)}
- {entry.streaming && }
-
-
-
-
- );
- }
-
- // ── Tool use ──
- if (entry.type === "tool_use") {
- const isFileOp = entry.tool && ["Read", "Edit", "Write", "Glob", "Grep"].includes(entry.tool);
- const hasOutput = entry.content && entry.content.length > 80;
-
- return (
-
-
hasOutput && setExpanded(!expanded)}
- >
-
- {isFileOp ? (
-
- ) : (
-
- )}
-
-
- {entry.tool}
-
- {entry.file_path && (
-
- {entry.file_path}
-
- )}
- {entry.streaming && (
-
- )}
- {!entry.streaming && !hasOutput && (
-
- )}
- {hasOutput && (
-
- {expanded ? : }
-
- )}
-
- {expanded && entry.content && (
-
- )}
-
- );
- }
-
- // ── Tool result ──
- if (entry.type === "tool_result") {
- return (
-
-
setExpanded(!expanded)}
- >
-
-
- Result
-
- {entry.content && (
-
- {entry.content.slice(0, 60)}...
-
- )}
-
- {expanded ? : }
-
-
- {expanded && entry.content && (
-
- )}
-
- );
- }
-
- // ── Error ──
- if (entry.type === "error") {
- return (
-
- );
- }
-
- // ── System ──
- return (
-
-
-
- {entry.content}
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/dashboard.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/dashboard.tsx
deleted file mode 100644
index b5bbdb7..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/dashboard.tsx
+++ /dev/null
@@ -1,357 +0,0 @@
-import { useCallback, useState } from "react";
-import { AgentRoster } from "@/components/dashboard/agent-roster";
-import { KanbanBoard } from "@/components/dashboard/kanban-board";
-import { LiveFeed } from "@/components/dashboard/live-feed";
-import { NewTaskDialog } from "@/components/dashboard/new-task-dialog";
-import { TaskDetailView } from "@/components/dashboard/task-detail-view";
-import { useAgents } from "@/hooks/use-api";
-import { useTasks } from "@/hooks/use-api";
-import { useFeed } from "@/hooks/use-api";
-import type {
- Task,
- TaskStatus,
- FeedEvent,
- ConversationEntry,
- ProcessEntry,
- FileChange,
-} from "@/types/dashboard";
-import type { WsMessage } from "@/hooks/use-websocket";
-
-interface DashboardProps {
- onWsMessage?: (msg: WsMessage) => void;
- send?: (data: Record) => void;
-}
-
-export function Dashboard({ send }: DashboardProps) {
- const { agents } = useAgents();
- const { tasks, create, update, remove } = useTasks();
- const { feed, addEvent } = useFeed();
- const [newTaskOpen, setNewTaskOpen] = useState(false);
- const [selectedTask, setSelectedTask] = useState(null);
-
- // Per-task live data from WebSocket
- const [liveConversation, setLiveConversation] = useState([]);
- const [liveProcesses, setLiveProcesses] = useState([]);
- const [liveFiles, setLiveFiles] = useState([]);
- const [isExecuting, setIsExecuting] = useState(false);
-
- const activeCount = agents.filter((a) => a.status === "active").length;
-
- const handleMoveTask = useCallback(
- async (taskId: string, newStatus: TaskStatus) => {
- await update(taskId, { status: newStatus });
- },
- [update]
- );
-
- const handleCreateTask = useCallback(
- async (data: Partial) => {
- await create(data);
- },
- [create]
- );
-
- const handleSelectTask = useCallback(
- (task: Task) => {
- setSelectedTask(task);
- // Reset live data when opening a different task
- setLiveConversation([]);
- setLiveProcesses([]);
- setLiveFiles([]);
- setIsExecuting(false);
- },
- []
- );
-
- const handleBack = useCallback(() => {
- setSelectedTask(null);
- setLiveConversation([]);
- setLiveProcesses([]);
- setLiveFiles([]);
- setIsExecuting(false);
- }, []);
-
- const handleUpdateTask = useCallback(
- async (id: string, data: Partial) => {
- const updated = await update(id, data);
- // Refresh selected task view
- if (selectedTask?.id === id && updated) {
- setSelectedTask(updated);
- }
- },
- [update, selectedTask]
- );
-
- const handleDeleteTask = useCallback(
- async (id: string) => {
- await remove(id);
- setSelectedTask(null);
- },
- [remove]
- );
-
- const handleExecuteTask = useCallback(
- (taskId: string, agentName: string, prompt: string) => {
- setIsExecuting(true);
- // Add initial user entry to conversation
- const now = new Date().toISOString();
- setLiveConversation((prev) => [
- ...prev,
- {
- id: `user-${Date.now()}`,
- type: "user",
- content: prompt,
- ts: now,
- },
- {
- id: `system-${Date.now()}`,
- type: "system",
- content: `Dispatching to ${agentName}...`,
- ts: now,
- },
- ]);
-
- // Update task status to active
- update(taskId, { status: "active" });
-
- // Send execute command via WebSocket
- if (send) {
- send({
- type: "task_execute",
- task_id: taskId,
- agent: agentName,
- prompt,
- });
- }
- },
- [update, send]
- );
-
- const handleFollowUp = useCallback(
- (taskId: string, text: string) => {
- const now = new Date().toISOString();
- setLiveConversation((prev) => [
- ...prev,
- {
- id: `user-${Date.now()}`,
- type: "user",
- content: text,
- ts: now,
- },
- ]);
-
- if (send) {
- send({
- type: "task_followup",
- task_id: taskId,
- text,
- });
- }
- },
- [send]
- );
-
- // Accept feed events from WS
- const handleFeedEvent = useCallback(
- (event: FeedEvent) => {
- addEvent(event);
- },
- [addEvent]
- );
-
- // Handle task-specific WS messages
- const handleTaskWsMessage = useCallback(
- (msg: WsMessage & Record) => {
- if (!selectedTask) return;
-
- const taskId = msg.task_id as string;
- if (taskId && taskId !== selectedTask.id) return;
-
- const now = new Date().toISOString();
-
- switch (msg.type) {
- case "task_text":
- setLiveConversation((prev) => [
- ...prev,
- {
- id: `assistant-${msg.message_id || Date.now()}`,
- type: "assistant",
- content: (msg.content as string) || "",
- ts: now,
- agent: msg.agent as string,
- streaming: msg.streaming as boolean,
- },
- ]);
- break;
-
- case "task_edit":
- setLiveConversation((prev) =>
- prev.map((e) =>
- e.id === `assistant-${msg.message_id}`
- ? { ...e, content: (msg.content as string) || "", streaming: msg.streaming as boolean }
- : e
- )
- );
- break;
-
- case "task_tool_use":
- setLiveConversation((prev) => [
- ...prev,
- {
- id: `tool-${Date.now()}`,
- type: "tool_use",
- content: (msg.content as string) || "",
- ts: now,
- tool: msg.tool as string,
- file_path: msg.file_path as string,
- streaming: msg.streaming as boolean,
- },
- ]);
- break;
-
- case "task_tool_result":
- setLiveConversation((prev) => [
- ...prev,
- {
- id: `result-${Date.now()}`,
- type: "tool_result",
- content: (msg.content as string) || "",
- ts: now,
- },
- ]);
- break;
-
- case "task_error":
- setLiveConversation((prev) => [
- ...prev,
- {
- id: `error-${Date.now()}`,
- type: "error",
- content: (msg.content as string) || "",
- ts: now,
- },
- ]);
- break;
-
- case "task_process":
- setLiveProcesses((prev) => {
- const existing = prev.find((p) => p.id === (msg.process_id as string));
- if (existing) {
- return prev.map((p) =>
- p.id === (msg.process_id as string)
- ? {
- ...p,
- status: (msg.status as ProcessEntry["status"]) || p.status,
- output: (msg.output as string) || p.output,
- completed_at: (msg.completed_at as string) || p.completed_at,
- duration_ms: (msg.duration_ms as number) || p.duration_ms,
- exit_code: (msg.exit_code as number) ?? p.exit_code,
- }
- : p
- );
- }
- return [
- ...prev,
- {
- id: (msg.process_id as string) || `proc-${Date.now()}`,
- name: (msg.name as string) || "Process",
- status: (msg.status as ProcessEntry["status"]) || "running",
- started_at: now,
- agent: msg.agent as string,
- output: msg.output as string,
- },
- ];
- });
- break;
-
- case "task_file_change":
- setLiveFiles((prev) => [
- ...prev,
- {
- path: (msg.path as string) || "",
- action: (msg.action as FileChange["action"]) || "modified",
- additions: msg.additions as number,
- deletions: msg.deletions as number,
- diff: msg.diff as string,
- ts: now,
- },
- ]);
- break;
-
- case "task_complete":
- setIsExecuting(false);
- setLiveConversation((prev) => [
- ...prev,
- {
- id: `system-done-${Date.now()}`,
- type: "system",
- content: "Task execution completed",
- ts: now,
- },
- ]);
- update(selectedTask.id, { status: "review" });
- break;
- }
- },
- [selectedTask, update]
- );
-
- // Export handlers for parent to wire up
- (Dashboard as unknown as Record)._onFeedEvent = handleFeedEvent;
- (Dashboard as unknown as Record)._onTaskWsMessage = handleTaskWsMessage;
-
- // If a task is selected, show the detail view
- if (selectedTask) {
- // Get latest task data from tasks array
- const latestTask = tasks.find((t) => t.id === selectedTask.id) || selectedTask;
-
- return (
-
- );
- }
-
- return (
- <>
-
- {/* Left: Agent Roster */}
-
-
- {/* Center: Kanban Board */}
-
- setNewTaskOpen(true)}
- />
-
-
- {/* Right: Live Feed */}
-
-
-
-
-
- setNewTaskOpen(false)}
- onCreate={handleCreateTask}
- agents={agents}
- />
- >
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/files-panel.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/files-panel.tsx
deleted file mode 100644
index 26c8cf0..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/files-panel.tsx
+++ /dev/null
@@ -1,149 +0,0 @@
-import { Badge } from "@/components/ui/badge";
-import {
- FileCode,
- FilePlus,
- FileX,
- FileEdit,
- ChevronDown,
- ChevronRight,
- Plus,
- Minus,
-} from "lucide-react";
-import { useState } from "react";
-import type { FileChange } from "@/types/dashboard";
-
-interface FilesPanelProps {
- files: FileChange[];
-}
-
-function FileRow({ file }: { file: FileChange }) {
- const [expanded, setExpanded] = useState(false);
- const hasDiff = file.diff && file.diff.length > 0;
-
- const actionIcon =
- file.action === "created" ? (
-
- ) : file.action === "deleted" ? (
-
- ) : (
-
- );
-
- const actionColor =
- file.action === "created"
- ? "bg-emerald-500/15 text-emerald-400 border-emerald-500/30"
- : file.action === "deleted"
- ? "bg-red-500/15 text-red-400 border-red-500/30"
- : "bg-blue-500/15 text-blue-400 border-blue-500/30";
-
- const fileName = file.path.split("/").pop() || file.path;
- const dirPath = file.path.split("/").slice(0, -1).join("/");
-
- return (
-
-
hasDiff && setExpanded(!expanded)}
- >
- {actionIcon}
-
-
- {fileName}
-
- {file.action}
-
-
- {dirPath && (
-
{dirPath}/
- )}
-
-
- {file.additions !== undefined && file.additions > 0 && (
-
-
- {file.additions}
-
- )}
- {file.deletions !== undefined && file.deletions > 0 && (
-
-
- {file.deletions}
-
- )}
- {hasDiff && (
-
- {expanded ? : }
-
- )}
-
-
- {expanded && file.diff && (
-
-
- {file.diff.split("\n").map((line, i) => {
- let lineClass = "px-3 py-0 text-muted-foreground/70";
- if (line.startsWith("+") && !line.startsWith("+++")) {
- lineClass = "px-3 py-0 bg-emerald-500/10 text-emerald-400/90";
- } else if (line.startsWith("-") && !line.startsWith("---")) {
- lineClass = "px-3 py-0 bg-red-500/10 text-red-400/90";
- } else if (line.startsWith("@@")) {
- lineClass = "px-3 py-0 bg-blue-500/10 text-blue-400/70";
- }
- return (
-
- {line}
-
- );
- })}
-
-
- )}
-
- );
-}
-
-export function FilesPanel({ files }: FilesPanelProps) {
- const created = files.filter((f) => f.action === "created").length;
- const modified = files.filter((f) => f.action === "modified").length;
- const deleted = files.filter((f) => f.action === "deleted").length;
- const totalAdds = files.reduce((s, f) => s + (f.additions || 0), 0);
- const totalDels = files.reduce((s, f) => s + (f.deletions || 0), 0);
-
- return (
-
- {/* Header */}
-
-
-
-
Files Changed
-
-
- {created > 0 &&
{created} new }
- {modified > 0 &&
{modified} mod }
- {deleted > 0 &&
{deleted} del }
- {(totalAdds > 0 || totalDels > 0) && (
-
-
- {totalAdds}
-
- {totalDels}
-
- )}
-
-
-
- {/* File list */}
-
- {files.length === 0 ? (
-
-
-
No file changes yet
-
File diffs will appear as the agent makes changes
-
- ) : (
- files.map((f, i) =>
)
- )}
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/follow-up-input.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/follow-up-input.tsx
deleted file mode 100644
index fe07e1b..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/follow-up-input.tsx
+++ /dev/null
@@ -1,70 +0,0 @@
-import { useCallback, useRef, type KeyboardEvent } from "react";
-import { Button } from "@/components/ui/button";
-import { SendHorizonal, Loader2 } from "lucide-react";
-
-interface FollowUpInputProps {
- onSend: (text: string) => void;
- disabled?: boolean;
- isExecuting?: boolean;
- placeholder?: string;
-}
-
-export function FollowUpInput({ onSend, disabled, isExecuting, placeholder }: FollowUpInputProps) {
- const textareaRef = useRef(null);
-
- const handleSend = useCallback(() => {
- const text = textareaRef.current?.value.trim();
- if (!text) return;
- onSend(text);
- if (textareaRef.current) {
- textareaRef.current.value = "";
- textareaRef.current.style.height = "auto";
- }
- }, [onSend]);
-
- const handleKeyDown = useCallback(
- (e: KeyboardEvent) => {
- if (e.key === "Enter" && !e.shiftKey) {
- e.preventDefault();
- handleSend();
- }
- },
- [handleSend]
- );
-
- const handleInput = useCallback(() => {
- const el = textareaRef.current;
- if (!el) return;
- el.style.height = "auto";
- el.style.height = `${Math.min(el.scrollHeight, 150)}px`;
- }, []);
-
- return (
-
- {isExecuting && (
-
-
- Running...
-
- )}
-
-
-
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/kanban-board.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/kanban-board.tsx
deleted file mode 100644
index 1ebe45c..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/kanban-board.tsx
+++ /dev/null
@@ -1,143 +0,0 @@
-import { useCallback, useState } from "react";
-import { Badge } from "@/components/ui/badge";
-import { Button } from "@/components/ui/button";
-import { Plus } from "lucide-react";
-import { TaskCard } from "@/components/dashboard/task-card";
-import type { Task, TaskStatus } from "@/types/dashboard";
-import { STATUS_COLUMNS } from "@/types/dashboard";
-
-interface KanbanBoardProps {
- tasks: Task[];
- onMoveTask: (taskId: string, newStatus: TaskStatus) => void;
- onClickTask: (task: Task) => void;
- onNewTask: () => void;
-}
-
-export function KanbanBoard({ tasks, onMoveTask, onClickTask, onNewTask }: KanbanBoardProps) {
- const [dragOverColumn, setDragOverColumn] = useState(null);
-
- const handleDragStart = useCallback((e: React.DragEvent, taskId: string) => {
- e.dataTransfer.setData("text/plain", taskId);
- e.dataTransfer.effectAllowed = "move";
- }, []);
-
- const handleDragOver = useCallback((e: React.DragEvent, status: TaskStatus) => {
- e.preventDefault();
- e.dataTransfer.dropEffect = "move";
- setDragOverColumn(status);
- }, []);
-
- const handleDragLeave = useCallback(() => {
- setDragOverColumn(null);
- }, []);
-
- const handleDrop = useCallback(
- (e: React.DragEvent, status: TaskStatus) => {
- e.preventDefault();
- setDragOverColumn(null);
- const taskId = e.dataTransfer.getData("text/plain");
- if (taskId) {
- onMoveTask(taskId, status);
- }
- },
- [onMoveTask]
- );
-
- return (
-
- {/* Board header */}
-
-
-
- Mission Queue
-
-
- {tasks.filter((t) => t.status !== "done").length} active
-
-
-
-
- New
-
-
-
- {/* Status filter pills */}
-
- {STATUS_COLUMNS.map((col) => {
- const count = tasks.filter((t) => t.status === col.key).length;
- return (
-
- {col.label} {count}
-
- );
- })}
-
-
- {/* Columns */}
-
-
- {STATUS_COLUMNS.map((col) => {
- const columnTasks = tasks.filter((t) => t.status === col.key);
- const isDragOver = dragOverColumn === col.key;
-
- return (
-
handleDragOver(e, col.key)}
- onDragLeave={handleDragLeave}
- onDrop={(e) => handleDrop(e, col.key)}
- >
- {/* Column header */}
-
-
-
- {columnTasks.length}
-
-
-
- {/* Task cards */}
-
- {columnTasks.map((task) => (
-
- ))}
- {columnTasks.length === 0 && (
-
- Drop tasks here
-
- )}
-
-
- );
- })}
-
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/live-feed.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/live-feed.tsx
deleted file mode 100644
index 1aaf11a..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/live-feed.tsx
+++ /dev/null
@@ -1,107 +0,0 @@
-import { Badge } from "@/components/ui/badge";
-import {
- ArrowRight,
- MessageSquare,
- Plus,
- UserPlus,
- Activity,
-} from "lucide-react";
-import type { FeedEvent } from "@/types/dashboard";
-
-interface LiveFeedProps {
- events: FeedEvent[];
-}
-
-function timeAgo(iso: string): string {
- const diff = Date.now() - new Date(iso).getTime();
- const mins = Math.floor(diff / 60000);
- if (mins < 1) return "just now";
- if (mins < 60) return `${mins}m ago`;
- const hrs = Math.floor(mins / 60);
- if (hrs < 24) return `${hrs}h ago`;
- return `${Math.floor(hrs / 24)}d ago`;
-}
-
-const eventConfig: Record = {
- task_created: { icon: Plus, color: "text-emerald-400" },
- task_moved: { icon: ArrowRight, color: "text-blue-400" },
- task_assigned: { icon: UserPlus, color: "text-purple-400" },
- comment: { icon: MessageSquare, color: "text-orange-400" },
-};
-
-function FeedEntry({ event }: { event: FeedEvent }) {
- const config = eventConfig[event.event] || { icon: Activity, color: "text-muted-foreground" };
- const Icon = config.icon;
-
- let description = "";
- switch (event.event) {
- case "task_created":
- description = `New task: ${event.title}`;
- break;
- case "task_moved":
- description = `Moved to ${event.to}`;
- break;
- case "task_assigned":
- description = `Assigned to ${event.agent}`;
- break;
- case "comment":
- description = event.text || "commented";
- break;
- default:
- description = event.event;
- }
-
- return (
-
-
-
-
-
-
- {event.agent && (
- {event.agent}
- )}{" "}
- {description}
-
- {event.title && event.event !== "task_created" && (
-
-
- {event.title}
-
-
- )}
-
{timeAgo(event.ts)}
-
-
- );
-}
-
-export function LiveFeed({ events }: LiveFeedProps) {
- const reversed = [...events].reverse();
-
- return (
-
- {/* Header */}
-
-
- {/* Feed */}
-
- {reversed.length === 0 && (
-
- No activity yet
-
- )}
- {reversed.map((event) => (
-
- ))}
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/new-task-dialog.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/new-task-dialog.tsx
deleted file mode 100644
index 5d4b0f2..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/new-task-dialog.tsx
+++ /dev/null
@@ -1,141 +0,0 @@
-import { useState } from "react";
-import { Button } from "@/components/ui/button";
-import { Badge } from "@/components/ui/badge";
-import {
- Dialog,
- DialogContent,
- DialogHeader,
- DialogTitle,
- DialogFooter,
-} from "@/components/ui/dialog";
-import { Input } from "@/components/ui/input";
-import type { AgentInfo, Task } from "@/types/dashboard";
-
-interface NewTaskDialogProps {
- open: boolean;
- onClose: () => void;
- onCreate: (data: Partial) => void;
- agents: AgentInfo[];
-}
-
-const priorities = ["low", "normal", "high", "urgent"] as const;
-
-export function NewTaskDialog({ open, onClose, onCreate, agents }: NewTaskDialogProps) {
- const [title, setTitle] = useState("");
- const [description, setDescription] = useState("");
- const [priority, setPriority] = useState("normal");
- const [assignedAgent, setAssignedAgent] = useState("");
- const [tagInput, setTagInput] = useState("");
-
- const handleSubmit = () => {
- if (!title.trim()) return;
- const tags = tagInput
- .split(",")
- .map((t) => t.trim())
- .filter(Boolean);
- onCreate({
- title: title.trim(),
- description: description.trim(),
- priority: priority as Task["priority"],
- assigned_agent: assignedAgent || null,
- tags,
- status: assignedAgent ? "assigned" : "inbox",
- });
- setTitle("");
- setDescription("");
- setPriority("normal");
- setAssignedAgent("");
- setTagInput("");
- onClose();
- };
-
- return (
-
-
-
- New Task
-
-
-
- {/* Title */}
-
- Title
- setTitle(e.target.value)}
- placeholder="Fix robots.txt redirect..."
- autoFocus
- />
-
-
- {/* Description */}
-
- Description
-
-
- {/* Priority */}
-
-
Priority
-
- {priorities.map((p) => (
- setPriority(p)}
- >
- {p}
-
- ))}
-
-
-
- {/* Assign agent */}
-
- Assign to Agent
- setAssignedAgent(e.target.value)}
- className="w-full bg-input rounded-md px-3 py-2 text-sm outline-none focus:ring-1 focus:ring-ring"
- >
- Unassigned (Inbox)
- {agents.map((a) => (
-
- {a.name} ({a.type})
-
- ))}
-
-
-
- {/* Tags */}
-
- Tags (comma-separated)
- setTagInput(e.target.value)}
- placeholder="dev, seo, phase-1"
- />
-
-
-
-
-
- Cancel
-
-
- Create Task
-
-
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/processes-panel.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/processes-panel.tsx
deleted file mode 100644
index b9601bd..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/processes-panel.tsx
+++ /dev/null
@@ -1,138 +0,0 @@
-import { Badge } from "@/components/ui/badge";
-import {
- CheckCircle2,
- XCircle,
- Loader2,
- Clock,
- ChevronDown,
- ChevronRight,
- Terminal,
-} from "lucide-react";
-import { useState } from "react";
-import type { ProcessEntry } from "@/types/dashboard";
-
-interface ProcessesPanelProps {
- processes: ProcessEntry[];
-}
-
-function formatDuration(ms: number): string {
- if (ms < 1000) return `${ms}ms`;
- if (ms < 60000) return `${(ms / 1000).toFixed(1)}s`;
- return `${(ms / 60000).toFixed(1)}m`;
-}
-
-function timeStr(iso: string): string {
- return new Date(iso).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit", second: "2-digit" });
-}
-
-function ProcessRow({ process }: { process: ProcessEntry }) {
- const [expanded, setExpanded] = useState(false);
- const hasOutput = process.output && process.output.length > 0;
-
- const statusIcon =
- process.status === "running" ? (
-
- ) : process.status === "completed" ? (
-
- ) : (
-
- );
-
- const statusColor =
- process.status === "running"
- ? "bg-blue-500/15 text-blue-400 border-blue-500/30"
- : process.status === "completed"
- ? "bg-emerald-500/15 text-emerald-400 border-emerald-500/30"
- : "bg-red-500/15 text-red-400 border-red-500/30";
-
- return (
-
-
hasOutput && setExpanded(!expanded)}
- >
- {statusIcon}
-
-
- {process.name}
-
- {process.status}
-
-
-
-
-
- {timeStr(process.started_at)}
-
- {process.duration_ms !== undefined && (
- {formatDuration(process.duration_ms)}
- )}
- {process.agent && {process.agent} }
- {process.exit_code !== undefined && process.exit_code !== 0 && (
- exit {process.exit_code}
- )}
-
-
- {hasOutput && (
-
- {expanded ? : }
-
- )}
-
- {expanded && process.output && (
-
- )}
-
- );
-}
-
-export function ProcessesPanel({ processes }: ProcessesPanelProps) {
- const running = processes.filter((p) => p.status === "running");
- const completed = processes.filter((p) => p.status !== "running");
-
- return (
-
- {/* Header */}
-
-
-
-
Processes
-
-
- {running.length > 0 && (
-
- {running.length} running
-
- )}
-
- {processes.length} total
-
-
-
-
- {/* Process list */}
-
- {processes.length === 0 ? (
-
-
-
No processes yet
-
Processes will appear when the agent starts working
-
- ) : (
- <>
- {running.map((p) => (
-
- ))}
- {completed.map((p) => (
-
- ))}
- >
- )}
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/task-card.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/task-card.tsx
deleted file mode 100644
index 1d5870a..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/task-card.tsx
+++ /dev/null
@@ -1,83 +0,0 @@
-import { Badge } from "@/components/ui/badge";
-import { MessageSquare, GripVertical } from "lucide-react";
-import type { Task } from "@/types/dashboard";
-import { PRIORITY_COLORS } from "@/types/dashboard";
-
-interface TaskCardProps {
- task: Task;
- onDragStart: (e: React.DragEvent, taskId: string) => void;
- onClick: (task: Task) => void;
-}
-
-function timeAgo(iso: string): string {
- const diff = Date.now() - new Date(iso).getTime();
- const mins = Math.floor(diff / 60000);
- if (mins < 1) return "just now";
- if (mins < 60) return `${mins}m ago`;
- const hrs = Math.floor(mins / 60);
- if (hrs < 24) return `${hrs}h ago`;
- return `${Math.floor(hrs / 24)}d ago`;
-}
-
-export function TaskCard({ task, onDragStart, onClick }: TaskCardProps) {
- const priorityClass = PRIORITY_COLORS[task.priority] || PRIORITY_COLORS.normal;
-
- return (
- onDragStart(e, task.id)}
- onClick={() => onClick(task)}
- className="group bg-card border border-border rounded-lg p-3 cursor-grab active:cursor-grabbing hover:border-primary/30 transition-colors"
- >
- {/* Priority + tags row */}
-
-
- {task.priority}
-
- {task.tags.slice(0, 3).map((tag) => (
-
- {tag}
-
- ))}
-
-
- {/* Title */}
-
- {task.title}
-
-
- {/* Description preview */}
- {task.description && (
-
- {task.description}
-
- )}
-
- {/* Footer: assigned agent, comments, time */}
-
-
- {task.assigned_agent && (
-
-
- {task.assigned_agent[0].toUpperCase()}
-
- {task.assigned_agent}
-
- )}
- {task.comments.length > 0 && (
-
-
- {task.comments.length}
-
- )}
-
-
{timeAgo(task.created_at)}
-
-
- {/* Drag handle (visible on hover) */}
-
-
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/task-detail-view.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/task-detail-view.tsx
deleted file mode 100644
index 29daa50..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/dashboard/task-detail-view.tsx
+++ /dev/null
@@ -1,387 +0,0 @@
-import { useCallback, useEffect, useRef, useState } from "react";
-import { Badge } from "@/components/ui/badge";
-import { Button } from "@/components/ui/button";
-import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
-import {
- ArrowLeft,
- Play,
- Square,
- MessageSquare,
- Terminal,
- FileCode,
- Clock,
- Bot,
- Trash2,
-} from "lucide-react";
-import { ConversationEntry } from "@/components/dashboard/conversation-entry";
-import { FollowUpInput } from "@/components/dashboard/follow-up-input";
-import { ProcessesPanel } from "@/components/dashboard/processes-panel";
-import { FilesPanel } from "@/components/dashboard/files-panel";
-import type {
- Task,
- AgentInfo,
- ConversationEntry as ConversationEntryType,
- ProcessEntry,
- FileChange,
- TaskStatus,
-} from "@/types/dashboard";
-import { PRIORITY_COLORS } from "@/types/dashboard";
-
-interface TaskDetailViewProps {
- task: Task;
- agents: AgentInfo[];
- onBack: () => void;
- onUpdateTask: (id: string, data: Partial) => void;
- onDeleteTask: (id: string) => void;
- onExecuteTask: (taskId: string, agentName: string, prompt: string) => void;
- onFollowUp: (taskId: string, text: string) => void;
- /** Externally-pushed conversation entries (from WS) */
- liveConversation: ConversationEntryType[];
- liveProcesses: ProcessEntry[];
- liveFiles: FileChange[];
- isExecuting: boolean;
-}
-
-function timeAgo(iso: string): string {
- const diff = Date.now() - new Date(iso).getTime();
- const mins = Math.floor(diff / 60000);
- if (mins < 1) return "just now";
- if (mins < 60) return `${mins}m ago`;
- const hrs = Math.floor(mins / 60);
- if (hrs < 24) return `${hrs}h ago`;
- return `${Math.floor(hrs / 24)}d ago`;
-}
-
-const STATUS_OPTIONS: { key: TaskStatus; label: string; color: string }[] = [
- { key: "inbox", label: "Inbox", color: "bg-zinc-500" },
- { key: "assigned", label: "Assigned", color: "bg-yellow-500" },
- { key: "active", label: "Active", color: "bg-blue-500" },
- { key: "review", label: "Review", color: "bg-purple-500" },
- { key: "done", label: "Done", color: "bg-emerald-500" },
-];
-
-export function TaskDetailView({
- task,
- agents,
- onBack,
- onUpdateTask,
- onDeleteTask,
- onExecuteTask,
- onFollowUp,
- liveConversation,
- liveProcesses,
- liveFiles,
- isExecuting,
-}: TaskDetailViewProps) {
- const conversationEndRef = useRef(null);
- const [activeTab, setActiveTab] = useState("conversation");
-
- // Combine stored + live conversation
- const conversation = [
- ...(task.conversation || []),
- ...liveConversation,
- ];
- const processes = [
- ...(task.processes || []),
- ...liveProcesses,
- ];
- const files = [
- ...(task.files_changed || []),
- ...liveFiles,
- ];
-
- // Auto-scroll conversation
- useEffect(() => {
- if (activeTab === "conversation") {
- requestAnimationFrame(() => {
- conversationEndRef.current?.scrollIntoView({ behavior: "smooth" });
- });
- }
- }, [conversation.length, activeTab]);
-
- const handleExecute = useCallback(() => {
- const agent = task.assigned_agent || agents.find((a) => a.status !== "offline")?.name;
- if (!agent) return;
- onExecuteTask(task.id, agent, task.description || task.title);
- }, [task, agents, onExecuteTask]);
-
- const handleFollowUp = useCallback(
- (text: string) => {
- onFollowUp(task.id, text);
- },
- [task.id, onFollowUp]
- );
-
- const priorityClass = PRIORITY_COLORS[task.priority] || PRIORITY_COLORS.normal;
- const currentStatus = STATUS_OPTIONS.find((s) => s.key === task.status);
-
- return (
-
- {/* Header */}
-
-
-
-
-
-
-
-
{task.title}
-
- {task.priority}
-
-
-
-
-
- {timeAgo(task.created_at)}
-
- {task.assigned_agent && (
-
-
- {task.assigned_agent}
-
- )}
- {task.tags.map((tag) => (
-
- {tag}
-
- ))}
-
-
-
- {/* Status selector */}
-
- {STATUS_OPTIONS.map((s) => (
-
onUpdateTask(task.id, { status: s.key })}
- >
-
- {s.label}
-
- ))}
-
-
- {/* Actions */}
-
- {!isExecuting ? (
-
-
- Run
-
- ) : (
-
-
- Stop
-
- )}
-
onDeleteTask(task.id)}
- >
-
-
-
-
-
- {/* Main content area — split view */}
-
- {/* Left: Conversation panel */}
-
- {/* Conversation header */}
-
-
-
- Conversation
-
-
- {conversation.length}
-
-
-
- {/* Conversation messages */}
-
- {conversation.length === 0 && !task.description ? (
-
-
-
No conversation yet
-
Click "Run" to start the agent or send a follow-up
-
- ) : (
-
- {/* Show task description as initial context */}
- {task.description && conversation.length === 0 && (
-
-
Task Description
-
{task.description}
-
- )}
-
- {conversation.map((entry) => (
-
- ))}
-
-
- )}
-
-
- {/* Follow-up input */}
-
-
-
- {/* Right: Tabbed panel (processes, files, details) */}
-
-
-
-
-
- Details
-
-
-
- Processes
- {processes.filter((p) => p.status === "running").length > 0 && (
-
- )}
-
-
-
- Files
- {files.length > 0 && (
-
- {files.length}
-
- )}
-
-
-
-
- {/* Task meta details */}
-
-
-
Description
-
{task.description || "No description"}
-
-
-
-
Assigned Agent
-
- {task.assigned_agent ? (
- <>
-
- {task.assigned_agent[0].toUpperCase()}
-
-
{task.assigned_agent}
-
onUpdateTask(task.id, { assigned_agent: e.target.value || null })}
- className="ml-auto bg-input rounded px-2 py-1 text-xs outline-none"
- >
- Unassign
- {agents.map((a) => (
-
- {a.name} ({a.type})
-
- ))}
-
- >
- ) : (
-
onUpdateTask(task.id, { assigned_agent: e.target.value, status: "assigned" })}
- className="bg-input rounded px-2 py-1 text-xs outline-none"
- >
- Select agent...
- {agents.map((a) => (
-
- {a.name} ({a.type})
-
- ))}
-
- )}
-
-
-
- {/* Comments */}
- {task.comments.length > 0 && (
-
-
- Comments ({task.comments.length})
-
-
- {task.comments.map((c) => (
-
-
- {c.agent}
- {timeAgo((c as unknown as Record).ts || c.timestamp)}
-
-
{c.text}
-
- ))}
-
-
- )}
-
- {/* Timeline summary */}
-
-
Timeline
-
-
- Created
- {new Date(task.created_at).toLocaleString()}
-
-
- Updated
- {new Date(task.updated_at).toLocaleString()}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/dialogs/CommandBar.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/dialogs/CommandBar.tsx
deleted file mode 100644
index 421aa01..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/dialogs/CommandBar.tsx
+++ /dev/null
@@ -1,277 +0,0 @@
-import { useState, useCallback, useEffect, useRef, useMemo } from "react";
-import { useNavigate } from "react-router-dom";
-import { Search, ArrowRight, Brain, LayoutDashboard, Workflow, Database } from "lucide-react";
-import { useHotkeys } from "react-hotkeys-hook";
-import { useProjectContext } from "@/contexts/ProjectContext";
-import { PriorityIcon } from "@/components/primitives/PriorityIcon";
-import { api } from "@/hooks/use-api";
-import type { Issue, Priority, MemoryItem } from "@/types";
-
-interface Props {
- open: boolean;
- onClose: () => void;
- onSelectIssue: (issue: Issue) => void;
- onCreateIssue: () => void;
-}
-
-type ResultItem =
- | { type: "action"; label: string; sublabel?: string; action: () => void }
- | { type: "issue"; issue: Issue; label: string; sublabel?: string }
- | { type: "memory"; memory: MemoryItem; label: string; sublabel?: string };
-
-export function CommandBar({ open, onClose, onSelectIssue, onCreateIssue }: Props) {
- const { issues, statuses } = useProjectContext();
- const navigate = useNavigate();
- const [query, setQuery] = useState("");
- const [selectedIndex, setSelectedIndex] = useState(0);
- const [memoryResults, setMemoryResults] = useState([]);
- const inputRef = useRef(null);
- const searchTimerRef = useRef>(undefined);
-
- useEffect(() => {
- if (open) {
- setQuery("");
- setSelectedIndex(0);
- setMemoryResults([]);
- setTimeout(() => inputRef.current?.focus(), 50);
- }
- }, [open]);
-
- // Debounced memory search
- useEffect(() => {
- if (!query.trim() || query.length < 2) {
- setMemoryResults([]);
- return;
- }
- if (searchTimerRef.current) clearTimeout(searchTimerRef.current);
- searchTimerRef.current = setTimeout(() => {
- api.memorySearch(query, 5).then(setMemoryResults).catch(() => setMemoryResults([]));
- }, 300);
- return () => {
- if (searchTimerRef.current) clearTimeout(searchTimerRef.current);
- };
- }, [query]);
-
- // Close on Escape
- useHotkeys("escape", () => onClose(), { enabled: open, enableOnFormTags: true });
-
- const results = useMemo(() => {
- const items: ResultItem[] = [];
- const q = query.toLowerCase();
-
- // Navigation actions
- if (!query || "board".includes(q)) {
- items.push({
- type: "action",
- label: "Go to Board",
- sublabel: "View kanban board",
- action: () => { navigate("/"); onClose(); },
- });
- }
- if (!query || "workspace".includes(q)) {
- items.push({
- type: "action",
- label: "Go to Workspace",
- sublabel: "View task executions",
- action: () => { navigate("/workspace"); onClose(); },
- });
- }
- if (!query || "memory".includes(q)) {
- items.push({
- type: "action",
- label: "Go to Memory",
- sublabel: "Browse memories",
- action: () => { navigate("/memory"); onClose(); },
- });
- }
-
- if (!query || "create new issue".includes(q)) {
- items.push({
- type: "action",
- label: "Create New Issue",
- sublabel: "Add a new issue to the board",
- action: () => { onCreateIssue(); onClose(); },
- });
- }
-
- // Issues
- for (const issue of issues) {
- if (
- !query ||
- issue.title.toLowerCase().includes(q) ||
- String(issue.issue_number).includes(q) ||
- issue.description.toLowerCase().includes(q)
- ) {
- const status = statuses.find(s => s.id === issue.status_id);
- items.push({
- type: "issue",
- issue,
- label: issue.title,
- sublabel: status ? status.name : undefined,
- });
- }
- }
-
- // Memory results (from debounced search)
- for (const mem of memoryResults) {
- items.push({
- type: "memory",
- memory: mem,
- label: mem.memory.slice(0, 80) + (mem.memory.length > 80 ? "..." : ""),
- sublabel: `${mem.layer.toUpperCase()} · ${mem.strength.toFixed(2)}`,
- });
- }
-
- return items.slice(0, 25);
- }, [query, issues, statuses, memoryResults, navigate, onCreateIssue, onClose]);
-
- const handleSelect = useCallback((index: number) => {
- const item = results[index];
- if (!item) return;
- if (item.type === "action") {
- item.action();
- } else if (item.type === "issue") {
- onSelectIssue(item.issue);
- onClose();
- } else if (item.type === "memory") {
- navigate("/memory");
- onClose();
- }
- }, [results, onSelectIssue, onClose, navigate]);
-
- const handleKeyDown = useCallback((e: React.KeyboardEvent) => {
- switch (e.key) {
- case "ArrowDown":
- e.preventDefault();
- setSelectedIndex(i => Math.min(i + 1, results.length - 1));
- break;
- case "ArrowUp":
- e.preventDefault();
- setSelectedIndex(i => Math.max(i - 1, 0));
- break;
- case "Enter":
- e.preventDefault();
- handleSelect(selectedIndex);
- break;
- }
- }, [results.length, selectedIndex, handleSelect]);
-
- if (!open) return null;
-
- // Group results by type for section headers
- const actionItems = results.filter(r => r.type === "action");
- const issueItems = results.filter(r => r.type === "issue");
- const memItems = results.filter(r => r.type === "memory");
-
- return (
-
-
-
- {/* Input */}
-
-
- { setQuery(e.target.value); setSelectedIndex(0); }}
- onKeyDown={handleKeyDown}
- placeholder="Search issues, memories, or type a command..."
- className="flex-1 bg-transparent text-sm focus:outline-none placeholder:text-muted-foreground/50"
- />
- ESC
-
-
- {/* Results */}
-
- {results.length === 0 && (
-
- No results found
-
- )}
-
- {/* Actions section */}
- {actionItems.length > 0 && (
- <>
-
- Actions
-
- {actionItems.map((item, i) => {
- const globalIdx = results.indexOf(item);
- return (
-
handleSelect(globalIdx)}
- className={`w-full flex items-center gap-3 px-4 py-2 text-sm transition-colors ${
- globalIdx === selectedIndex ? "bg-muted/50" : "hover:bg-muted/30"
- }`}
- >
-
- {item.label}
- {item.sublabel}
-
- );
- })}
- >
- )}
-
- {/* Issues section */}
- {issueItems.length > 0 && (
- <>
-
- Issues
-
- {issueItems.map((item, i) => {
- if (item.type !== "issue") return null;
- const globalIdx = results.indexOf(item);
- return (
-
handleSelect(globalIdx)}
- className={`w-full flex items-center gap-3 px-4 py-2 text-sm transition-colors ${
- globalIdx === selectedIndex ? "bg-muted/50" : "hover:bg-muted/30"
- }`}
- >
-
- {item.label}
- {item.issue.issue_number > 0 && (
- #{item.issue.issue_number}
- )}
- {item.sublabel && (
- {item.sublabel}
- )}
-
- );
- })}
- >
- )}
-
- {/* Memory section */}
- {memItems.length > 0 && (
- <>
-
- Memories
-
- {memItems.map((item, i) => {
- if (item.type !== "memory") return null;
- const globalIdx = results.indexOf(item);
- return (
-
handleSelect(globalIdx)}
- className={`w-full flex items-center gap-3 px-4 py-2 text-sm transition-colors ${
- globalIdx === selectedIndex ? "bg-muted/50" : "hover:bg-muted/30"
- }`}
- >
-
- {item.label}
- {item.sublabel}
-
- );
- })}
- >
- )}
-
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/dialogs/CreateProjectDialog.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/dialogs/CreateProjectDialog.tsx
deleted file mode 100644
index f424af9..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/dialogs/CreateProjectDialog.tsx
+++ /dev/null
@@ -1,97 +0,0 @@
-import { useState, useCallback } from "react";
-import { X } from "lucide-react";
-import { Button } from "@/components/ui/button";
-import { Input } from "@/components/ui/input";
-import { Textarea } from "@/components/ui/textarea";
-import { useProjectContext } from "@/contexts/ProjectContext";
-
-const COLORS = [
- "#6366f1", "#8b5cf6", "#ec4899", "#ef4444", "#f59e0b",
- "#22c55e", "#06b6d4", "#3b82f6", "#64748b", "#f97316",
-];
-
-interface Props {
- open: boolean;
- onClose: () => void;
-}
-
-export function CreateProjectDialog({ open, onClose }: Props) {
- const { createProject } = useProjectContext();
- const [name, setName] = useState("");
- const [color, setColor] = useState("#6366f1");
- const [description, setDescription] = useState("");
- const [saving, setSaving] = useState(false);
-
- const handleCreate = useCallback(async () => {
- if (!name.trim()) return;
- setSaving(true);
- try {
- await createProject({ name: name.trim(), color, description });
- setName("");
- setColor("#6366f1");
- setDescription("");
- onClose();
- } finally {
- setSaving(false);
- }
- }, [name, color, description, createProject, onClose]);
-
- if (!open) return null;
-
- return (
-
-
-
-
-
Create Project
-
-
-
-
-
-
-
- Name
- setName(e.target.value)}
- placeholder="Project name"
- autoFocus
- onKeyDown={e => { if (e.key === "Enter") handleCreate(); }}
- />
-
-
-
-
Color
-
- {COLORS.map(c => (
- setColor(c)}
- className={`w-7 h-7 rounded-full transition-transform ${
- color === c ? "ring-2 ring-primary ring-offset-2 ring-offset-background scale-110" : "hover:scale-105"
- }`}
- style={{ backgroundColor: c }}
- />
- ))}
-
-
-
-
- Description (optional)
-
-
-
- {saving ? "Creating..." : "Create Project"}
-
-
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/dialogs/SettingsDialog.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/dialogs/SettingsDialog.tsx
deleted file mode 100644
index 88f7863..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/dialogs/SettingsDialog.tsx
+++ /dev/null
@@ -1,450 +0,0 @@
-import { useState, useEffect } from "react";
-import { X, Settings, Users, Brain, FolderKanban, Crown, CheckCircle2 } from "lucide-react";
-import { Button } from "@/components/ui/button";
-import { Badge } from "@/components/ui/badge";
-import { Input } from "@/components/ui/input";
-import { StatusDot } from "@/components/primitives/StatusDot";
-import { useProjectContext } from "@/contexts/ProjectContext";
-import { api } from "@/hooks/use-api";
-import { toast } from "sonner";
-import type { AgentInfo } from "@/types/dashboard";
-import type { MemoryStats, SystemInfo, CoordinationAgent } from "@/types";
-
-interface Props {
- open: boolean;
- onClose: () => void;
-}
-
-type Tab = "general" | "agents" | "memory" | "project";
-
-interface BridgeConfig {
- default_agent: string;
- coordination: { enabled: boolean; auto_route: boolean; auto_execute: boolean };
- warroom: { enabled: boolean; monitor_agent: string; auto_pick: boolean; auto_failover: boolean };
- agents: Record;
-}
-
-function GeneralTab() {
- const [config, setConfig] = useState(null);
- const [saving, setSaving] = useState(false);
-
- useEffect(() => {
- api.getConfig().then((data) => setConfig(data as unknown as BridgeConfig)).catch(() => {});
- }, []);
-
- const toggleAutoExecute = async () => {
- if (!config) return;
- setSaving(true);
- const newVal = !config.coordination.auto_execute;
- try {
- await api.updateConfig({ coordination: { auto_execute: newVal } });
- setConfig({ ...config, coordination: { ...config.coordination, auto_execute: newVal } });
- toast.success(newVal ? "Auto-execute enabled" : "Auto-execute disabled");
- } catch { /* ignore */ }
- setSaving(false);
- };
-
- return (
-
-
General Settings
-
-
-
- Use Cmd+K to open the command bar.
-
-
-
- {config && (
- <>
- {/* Auto-execute toggle */}
-
-
-
-
Auto-execute tasks
-
- Automatically run tasks after assigning to an agent
-
-
-
-
-
-
-
-
- {/* Feature status */}
-
-
Features
-
-
-
- Coordination
-
-
-
- Auto-route
-
-
-
- War Room
-
-
-
- Auto-pick
-
-
-
- >
- )}
-
- );
-}
-
-function AgentsTab() {
- const [agents, setAgents] = useState([]);
- const [coordAgents, setCoordAgents] = useState([]);
- const [config, setConfig] = useState(null);
- const [saving, setSaving] = useState(false);
-
- useEffect(() => {
- api.agents().then((data) => setAgents(data as AgentInfo[])).catch(() => {});
- api.coordinationAgents().then(setCoordAgents).catch(() => {});
- api.getConfig().then((data) => setConfig(data as unknown as BridgeConfig)).catch(() => {});
- }, []);
-
- const setDefaultAgent = async (name: string) => {
- setSaving(true);
- try {
- await api.updateConfig({ default_agent: name });
- setConfig((prev) => prev ? { ...prev, default_agent: name } : prev);
- toast.success(`Default agent set to ${name}`);
- } catch { /* ignore */ }
- setSaving(false);
- };
-
- const setSupervisor = async (name: string) => {
- setSaving(true);
- try {
- await api.updateConfig({ warroom: { monitor_agent: name } });
- setConfig((prev) => prev ? { ...prev, warroom: { ...prev.warroom, monitor_agent: name } } : prev);
- toast.success(`Supervisor set to ${name}`);
- } catch { /* ignore */ }
- setSaving(false);
- };
-
- // Merge agent lists for display
- const allAgentNames = Array.from(new Set([
- ...agents.map((a) => a.name),
- ...coordAgents.map((a) => a.name),
- ...Object.keys(config?.agents || {}),
- ]));
-
- return (
-
-
Agents
-
- {allAgentNames.length === 0 ? (
-
No agents connected.
- ) : (
-
- {allAgentNames.map((name) => {
- const coordAgent = coordAgents.find((a) => a.name === name);
- const cfgAgent = config?.agents?.[name];
- const isDefault = config?.default_agent === name;
- const isSupervisor = config?.warroom?.monitor_agent === name;
- const status = coordAgent?.status || "unknown";
-
- return (
-
-
-
- {name[0]?.toUpperCase() || "?"}
- {isSupervisor && (
-
- )}
-
-
-
- {name}
- {isDefault && (
-
- default
-
- )}
- {isSupervisor && (
-
- supervisor
-
- )}
-
-
- {cfgAgent?.type || coordAgent?.type || "agent"}
- {(cfgAgent?.model || coordAgent?.model) && ` / ${cfgAgent?.model || coordAgent?.model}`}
-
-
-
- {status}
-
-
-
- {/* Capabilities */}
- {coordAgent?.capabilities && coordAgent.capabilities.length > 0 && (
-
- {coordAgent.capabilities.slice(0, 6).map((cap) => (
-
- {cap}
-
- ))}
-
- )}
-
- {/* Actions */}
-
- {!isDefault && (
- setDefaultAgent(name)}
- >
-
- Set as default
-
- )}
- {!isSupervisor && config?.warroom?.enabled && (
- setSupervisor(name)}
- >
-
- Set as supervisor
-
- )}
-
-
- );
- })}
-
- )}
-
- );
-}
-
-function MemoryTab() {
- const [stats, setStats] = useState(null);
- const [info, setInfo] = useState(null);
-
- useEffect(() => {
- api.memoryStats().then(setStats).catch(() => {});
- api.info().then(setInfo).catch(() => {});
- }, []);
-
- return (
-
-
Memory
-
-
- Memory available
- {info?.has_memory ? "Yes" : "No"}
-
- {stats && (
- <>
-
- Total memories
- {stats.total}
-
-
- SML / LML
- {stats.sml_count} / {stats.lml_count}
-
-
- Avg strength
- {stats.avg_strength.toFixed(3)}
-
-
- Echo enabled
- {stats.echo_enabled ? "Yes" : "No"}
-
- >
- )}
-
-
- );
-}
-
-function ProjectTab() {
- const { currentProject, statuses, tags, createStatus, createTag } = useProjectContext();
- const [newStatusName, setNewStatusName] = useState("");
- const [newTagName, setNewTagName] = useState("");
-
- if (!currentProject) {
- return No project selected.
;
- }
-
- return (
-
-
Project: {currentProject.name}
-
- {/* Statuses */}
-
-
- Statuses
-
-
- {statuses.map((s) => (
-
-
- {s.name}
-
- ))}
-
-
- setNewStatusName(e.target.value)}
- className="h-8 text-sm"
- onKeyDown={(e) => {
- if (e.key === "Enter" && newStatusName.trim()) {
- createStatus({ name: newStatusName.trim() });
- setNewStatusName("");
- }
- }}
- />
- {
- createStatus({ name: newStatusName.trim() });
- setNewStatusName("");
- }}
- >
- Add
-
-
-
-
- {/* Tags */}
-
-
- Tags
-
-
- {tags.map((t) => (
-
- {t.name}
-
- ))}
-
-
- setNewTagName(e.target.value)}
- className="h-8 text-sm"
- onKeyDown={(e) => {
- if (e.key === "Enter" && newTagName.trim()) {
- createTag({ name: newTagName.trim() });
- setNewTagName("");
- }
- }}
- />
- {
- createTag({ name: newTagName.trim() });
- setNewTagName("");
- }}
- >
- Add
-
-
-
-
- );
-}
-
-const TABS: { key: Tab; label: string; icon: React.ElementType }[] = [
- { key: "general", label: "General", icon: Settings },
- { key: "agents", label: "Agents", icon: Users },
- { key: "memory", label: "Memory", icon: Brain },
- { key: "project", label: "Project", icon: FolderKanban },
-];
-
-export function SettingsDialog({ open, onClose }: Props) {
- const [activeTab, setActiveTab] = useState("general");
-
- if (!open) return null;
-
- return (
-
-
-
- {/* Sidebar */}
-
-
-
Settings
-
-
-
-
- {TABS.map((tab) => {
- const Icon = tab.icon;
- return (
-
setActiveTab(tab.key)}
- className={`flex items-center gap-2 w-full px-2.5 py-2 rounded-md text-sm transition-colors ${
- activeTab === tab.key
- ? "bg-background text-foreground shadow-sm"
- : "text-muted-foreground hover:text-foreground hover:bg-muted/50"
- }`}
- >
-
- {tab.label}
-
- );
- })}
-
-
- {/* Content */}
-
- {activeTab === "general" &&
}
- {activeTab === "agents" &&
}
- {activeTab === "memory" &&
}
- {activeTab === "project" &&
}
-
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/issue/IssuePanel.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/issue/IssuePanel.tsx
deleted file mode 100644
index 8a088a3..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/issue/IssuePanel.tsx
+++ /dev/null
@@ -1,384 +0,0 @@
-import { useState, useCallback, useEffect, useRef } from "react";
-import { useNavigate } from "react-router-dom";
-import { X, Trash2, Plus, Send, MessageSquare } from "lucide-react";
-import { Button } from "@/components/ui/button";
-import { Input } from "@/components/ui/input";
-import { Textarea } from "@/components/ui/textarea";
-import { Badge } from "@/components/ui/badge";
-import { useProjectContext } from "@/contexts/ProjectContext";
-import { PriorityIcon } from "@/components/primitives/PriorityIcon";
-import { StatusDot } from "@/components/primitives/StatusDot";
-import { UserAvatar } from "@/components/primitives/UserAvatar";
-import type { Issue, Priority } from "@/types";
-
-interface Props {
- issue?: Issue;
- createMode?: boolean;
- defaultStatusId?: string | null;
- onClose: () => void;
- onIssueChange?: (issue: Issue) => void;
-}
-
-const PRIORITIES: Priority[] = ["urgent", "high", "medium", "low"];
-
-export function IssuePanel({ issue, createMode, defaultStatusId, onClose, onIssueChange }: Props) {
- const { statuses, tags, createIssue, updateIssue, deleteIssue, addComment, createTag } = useProjectContext();
-
- const [title, setTitle] = useState(issue?.title || "");
- const [description, setDescription] = useState(issue?.description || "");
- const [priority, setPriority] = useState(issue?.priority as Priority || "medium");
- const [statusId, setStatusId] = useState(issue?.status_id || defaultStatusId || statuses[0]?.id || "");
- const [assigneeIds, setAssigneeIds] = useState(issue?.assignee_ids || []);
- const [tagIds, setTagIds] = useState(issue?.tag_ids || []);
- const [commentText, setCommentText] = useState("");
- const [newAssignee, setNewAssignee] = useState("");
- const [saving, setSaving] = useState(false);
-
- const navigate = useNavigate();
- const titleRef = useRef(null);
-
- useEffect(() => {
- if (createMode) titleRef.current?.focus();
- }, [createMode]);
-
- // Refresh panel when issue changes externally
- useEffect(() => {
- if (issue) {
- setTitle(issue.title);
- setDescription(issue.description);
- setPriority(issue.priority as Priority);
- setStatusId(issue.status_id || "");
- setAssigneeIds(issue.assignee_ids);
- setTagIds(issue.tag_ids);
- }
- }, [issue]);
-
- const handleSave = useCallback(async () => {
- if (!title.trim()) return;
- setSaving(true);
- try {
- if (createMode) {
- const created = await createIssue({
- title: title.trim(),
- description,
- priority,
- status_id: statusId,
- assignee_ids: assigneeIds,
- tag_ids: tagIds,
- });
- onIssueChange?.(created);
- onClose();
- } else if (issue) {
- const updated = await updateIssue(issue.id, {
- title: title.trim(),
- description,
- priority,
- status_id: statusId,
- assignee_ids: assigneeIds,
- tag_ids: tagIds,
- });
- onIssueChange?.(updated);
- }
- } finally {
- setSaving(false);
- }
- }, [title, description, priority, statusId, assigneeIds, tagIds, createMode, issue, createIssue, updateIssue, onIssueChange, onClose]);
-
- const handleDelete = useCallback(async () => {
- if (!issue) return;
- await deleteIssue(issue.id);
- onClose();
- }, [issue, deleteIssue, onClose]);
-
- const handleAddComment = useCallback(async () => {
- if (!issue || !commentText.trim()) return;
- await addComment(issue.id, commentText.trim());
- setCommentText("");
- // Refresh
- const { getIssue } = await import("@/hooks/use-api").then(m => ({ getIssue: m.api.getIssue }));
- const updated = await getIssue(issue.id);
- onIssueChange?.(updated);
- }, [issue, commentText, addComment, onIssueChange]);
-
- const handleAddAssignee = useCallback(() => {
- if (newAssignee.trim() && !assigneeIds.includes(newAssignee.trim())) {
- setAssigneeIds(prev => [...prev, newAssignee.trim()]);
- setNewAssignee("");
- }
- }, [newAssignee, assigneeIds]);
-
- const toggleTag = useCallback((tagId: string) => {
- setTagIds(prev =>
- prev.includes(tagId) ? prev.filter(t => t !== tagId) : [...prev, tagId]
- );
- }, []);
-
- const currentStatus = statuses.find(s => s.id === statusId);
-
- // Auto-save on field changes (debounced for edit mode)
- useEffect(() => {
- if (createMode || !issue) return;
- const timer = setTimeout(() => {
- if (
- title !== issue.title ||
- description !== issue.description ||
- priority !== issue.priority ||
- statusId !== issue.status_id ||
- JSON.stringify(assigneeIds) !== JSON.stringify(issue.assignee_ids) ||
- JSON.stringify(tagIds) !== JSON.stringify(issue.tag_ids)
- ) {
- handleSave();
- }
- }, 800);
- return () => clearTimeout(timer);
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, [title, description, priority, statusId, assigneeIds, tagIds]);
-
- return (
-
- {/* Backdrop */}
-
-
- {/* Panel */}
-
- {/* Header */}
-
-
- {issue?.issue_number ? (
- #{issue.issue_number}
- ) : (
- New Issue
- )}
-
-
- {!createMode && issue && (
- { onClose(); navigate(`/task/${issue.id}`); }}
- className="h-7 gap-1 px-2 text-xs text-muted-foreground hover:text-foreground"
- title="Open task chat"
- >
-
- Chat
-
- )}
- {!createMode && issue && (
-
-
-
- )}
-
-
-
-
-
-
- {/* Body */}
-
-
-
- );
-}
-
-function PropertyRow({ label, children }: { label: string; children: React.ReactNode }) {
- return (
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/kanban/KanbanBoard.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/kanban/KanbanBoard.tsx
deleted file mode 100644
index 0283a37..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/kanban/KanbanBoard.tsx
+++ /dev/null
@@ -1,196 +0,0 @@
-import { useCallback } from "react";
-import {
- DragDropContext,
- Droppable,
- Draggable,
- type DropResult,
-} from "@hello-pangea/dnd";
-import { Plus } from "lucide-react";
-import { useProjectContext } from "@/contexts/ProjectContext";
-import { KanbanCardContent } from "./KanbanCardContent";
-import { StatusDot } from "@/components/primitives/StatusDot";
-import type { Issue, ProjectStatus } from "@/types";
-
-interface Props {
- issues: Issue[];
- onCardClick: (issue: Issue) => void;
- onCardDoubleClick?: (issue: Issue) => void;
- onCreateInColumn: (statusId: string) => void;
-}
-
-export function KanbanBoard({ issues, onCardClick, onCardDoubleClick, onCreateInColumn }: Props) {
- const { statuses, updateIssue, bulkUpdateIssues } = useProjectContext();
-
- const visibleStatuses = statuses.filter(s => !s.hidden);
-
- const issuesByStatus = new Map();
- for (const s of visibleStatuses) {
- issuesByStatus.set(s.id, []);
- }
- for (const issue of issues) {
- const col = issuesByStatus.get(issue.status_id || "");
- if (col) {
- col.push(issue);
- } else {
- // Unmatched: put in first column
- const first = visibleStatuses[0];
- if (first) issuesByStatus.get(first.id)?.push(issue);
- }
- }
-
- // Sort each column by sort_order
- for (const arr of issuesByStatus.values()) {
- arr.sort((a, b) => a.sort_order - b.sort_order);
- }
-
- const handleDragEnd = useCallback(async (result: DropResult) => {
- const { source, destination, draggableId } = result;
- if (!destination) return;
- if (source.droppableId === destination.droppableId && source.index === destination.index) return;
-
- const sourceCol = issuesByStatus.get(source.droppableId) || [];
- const destCol = source.droppableId === destination.droppableId
- ? sourceCol
- : (issuesByStatus.get(destination.droppableId) || []);
-
- // Remove from source
- const [moved] = sourceCol.splice(source.index, 1);
- if (!moved) return;
-
- // Insert at destination
- destCol.splice(destination.index, 0, moved);
-
- // Build updates
- const updates: Partial[] = [];
-
- // If column changed, update status_id
- if (source.droppableId !== destination.droppableId) {
- updates.push({
- id: moved.id,
- status_id: destination.droppableId,
- sort_order: destination.index,
- });
- }
-
- // Update sort_order for all items in destination column
- destCol.forEach((issue, idx) => {
- if (issue.sort_order !== idx) {
- const existing = updates.find(u => u.id === issue.id);
- if (existing) {
- existing.sort_order = idx;
- } else {
- updates.push({ id: issue.id, sort_order: idx });
- }
- }
- });
-
- // If moved from different column, also reindex source
- if (source.droppableId !== destination.droppableId) {
- sourceCol.forEach((issue, idx) => {
- if (issue.sort_order !== idx) {
- updates.push({ id: issue.id, sort_order: idx });
- }
- });
- }
-
- if (updates.length > 0) {
- // Optimistic: update first item immediately for responsiveness
- const first = updates[0];
- if (first.id && source.droppableId !== destination.droppableId) {
- await updateIssue(first.id, {
- status_id: destination.droppableId,
- sort_order: destination.index,
- });
- }
- // Bulk the rest
- if (updates.length > 1) {
- await bulkUpdateIssues(updates.slice(1));
- }
- }
- }, [issuesByStatus, updateIssue, bulkUpdateIssues]);
-
- return (
-
-
- {visibleStatuses.map(status => (
- onCreateInColumn(status.id)}
- />
- ))}
-
-
- );
-}
-
-function Column({
- status,
- issues,
- onCardClick,
- onCardDoubleClick,
- onCreateClick,
-}: {
- status: ProjectStatus;
- issues: Issue[];
- onCardClick: (issue: Issue) => void;
- onCardDoubleClick?: (issue: Issue) => void;
- onCreateClick: () => void;
-}) {
- return (
-
- {/* Column header */}
-
-
-
- {status.name}
-
- {issues.length}
-
-
-
-
-
-
-
- {/* Droppable area */}
-
- {(provided, snapshot) => (
-
- {issues.map((issue, index) => (
-
- {(provided, snapshot) => (
-
- onCardClick(issue)}
- onDoubleClick={() => onCardDoubleClick?.(issue)}
- />
-
- )}
-
- ))}
- {provided.placeholder}
-
- )}
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/kanban/KanbanCardContent.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/kanban/KanbanCardContent.tsx
deleted file mode 100644
index 7aa2de2..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/kanban/KanbanCardContent.tsx
+++ /dev/null
@@ -1,97 +0,0 @@
-import { MessageSquare, Link2, Loader2, GitBranch } from "lucide-react";
-import { PriorityIcon } from "@/components/primitives/PriorityIcon";
-import { UserAvatar } from "@/components/primitives/UserAvatar";
-import { useProjectContext } from "@/contexts/ProjectContext";
-import type { Issue, Priority } from "@/types";
-
-interface Props {
- issue: Issue;
- onClick: () => void;
- onDoubleClick?: () => void;
-}
-
-export function KanbanCardContent({ issue, onClick, onDoubleClick }: Props) {
- const { tags } = useProjectContext();
- const issueTags = tags.filter(t => issue.tag_ids.includes(t.id));
-
- const isExecuting = issue.conversation?.some(
- (e) => e.type === "assistant" && e.streaming,
- );
- const hasExecution = (issue.conversation?.length ?? 0) > 0;
-
- return (
-
- {/* Tags row */}
- {issueTags.length > 0 && (
-
- {issueTags.map(tag => (
-
- {tag.name}
-
- ))}
-
- )}
-
- {/* Title */}
-
-
-
- {issue.title}
-
- {isExecuting && (
-
- )}
-
-
- {/* Footer */}
-
-
- {issue.issue_number > 0 && (
- #{issue.issue_number}
- )}
- {issue.comments.length > 0 && (
-
-
- {issue.comments.length}
-
- )}
- {issue.relationships.length > 0 && (
-
-
- {issue.relationships.length}
-
- )}
- {issue.parent_task_id && (
-
-
-
- )}
-
-
- {/* Assignee avatars */}
- {issue.assignee_ids.length > 0 && (
-
- {issue.assignee_ids.slice(0, 3).map(id => (
-
- ))}
- {issue.assignee_ids.length > 3 && (
- +{issue.assignee_ids.length - 3}
- )}
-
- )}
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/kanban/KanbanContainer.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/kanban/KanbanContainer.tsx
deleted file mode 100644
index 790e3f9..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/kanban/KanbanContainer.tsx
+++ /dev/null
@@ -1,173 +0,0 @@
-import { useState, useMemo, useCallback } from "react";
-import { useNavigate } from "react-router-dom";
-import { useProjectContext } from "@/contexts/ProjectContext";
-import { useUiPreferencesStore } from "@/stores/useUiPreferencesStore";
-import { KanbanBoard } from "./KanbanBoard";
-import { KanbanFilterBar } from "./KanbanFilterBar";
-import { IssuePanel } from "@/components/issue/IssuePanel";
-import { ResizablePanel } from "@/components/layout/ResizablePanel";
-import { Button } from "@/components/ui/button";
-import { MessageSquare } from "lucide-react";
-import type { Issue, Priority } from "@/types";
-
-const PRIORITY_ORDER: Record = { urgent: 0, high: 1, medium: 2, normal: 2, low: 3 };
-
-export function KanbanContainer() {
- const navigate = useNavigate();
- const { issues, statuses, loading } = useProjectContext();
- const { filters, sort } = useUiPreferencesStore();
- const [selectedIssue, setSelectedIssue] = useState(null);
- const [createInStatusId, setCreateInStatusId] = useState(null);
- const [showCreate, setShowCreate] = useState(false);
-
- // Filter issues
- const filteredIssues = useMemo(() => {
- let result = [...issues];
-
- // Search
- if (filters.search) {
- const q = filters.search.toLowerCase();
- result = result.filter(i =>
- i.title.toLowerCase().includes(q) ||
- i.description.toLowerCase().includes(q) ||
- String(i.issue_number).includes(q)
- );
- }
-
- // Priority filter
- if (filters.priorities.length > 0) {
- result = result.filter(i => filters.priorities.includes(i.priority as Priority));
- }
-
- // Assignee filter
- if (filters.assignees.length > 0) {
- result = result.filter(i =>
- i.assignee_ids.some(a => filters.assignees.includes(a))
- );
- }
-
- // Tag filter
- if (filters.tagIds.length > 0) {
- result = result.filter(i =>
- i.tag_ids.some(t => filters.tagIds.includes(t))
- );
- }
-
- // Sort (within columns, the board handles column assignment)
- if (sort.field !== "sort_order") {
- result.sort((a, b) => {
- let cmp = 0;
- switch (sort.field) {
- case "priority":
- cmp = (PRIORITY_ORDER[a.priority] ?? 2) - (PRIORITY_ORDER[b.priority] ?? 2);
- break;
- case "created_at":
- cmp = a.created_at.localeCompare(b.created_at);
- break;
- case "updated_at":
- cmp = a.updated_at.localeCompare(b.updated_at);
- break;
- case "title":
- cmp = a.title.localeCompare(b.title);
- break;
- }
- return sort.direction === "desc" ? -cmp : cmp;
- });
- }
-
- return result;
- }, [issues, filters, sort]);
-
- const handleCardClick = useCallback((issue: Issue) => {
- setSelectedIssue(issue);
- }, []);
-
- const handleCardDoubleClick = useCallback((issue: Issue) => {
- navigate(`/task/${issue.id}`);
- }, [navigate]);
-
- const handleCreateInColumn = useCallback((statusId: string) => {
- setCreateInStatusId(statusId);
- setShowCreate(true);
- }, []);
-
- const handleCreateClick = useCallback(() => {
- setCreateInStatusId(statuses[0]?.id || null);
- setShowCreate(true);
- }, [statuses]);
-
- if (loading) {
- return (
-
- );
- }
-
- if (statuses.length === 0) {
- return (
-
-
No statuses configured. Create a project first.
-
- );
- }
-
- const showPanel = selectedIssue || showCreate;
-
- return (
-
- {/* Board area */}
-
-
- {/* Issue detail panel (resizable right split) */}
- {selectedIssue && !showCreate && (
-
-
-
- navigate(`/task/${selectedIssue.id}`)}
- >
-
- Open Chat
-
-
-
setSelectedIssue(null)}
- onIssueChange={(updated) => setSelectedIssue(updated)}
- />
-
-
- )}
-
- {/* Create issue panel */}
- {showCreate && (
-
-
- { setShowCreate(false); setCreateInStatusId(null); }}
- />
-
-
- )}
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/kanban/KanbanFilterBar.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/kanban/KanbanFilterBar.tsx
deleted file mode 100644
index 65c8e74..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/kanban/KanbanFilterBar.tsx
+++ /dev/null
@@ -1,66 +0,0 @@
-import { Search, Plus, SlidersHorizontal, ArrowUpDown } from "lucide-react";
-import { useUiPreferencesStore } from "@/stores/useUiPreferencesStore";
-import { Button } from "@/components/ui/button";
-import { Input } from "@/components/ui/input";
-import type { SortField } from "@/types";
-
-interface Props {
- onCreateClick: () => void;
- totalCount: number;
-}
-
-const SORT_OPTIONS: { field: SortField; label: string }[] = [
- { field: "sort_order", label: "Manual" },
- { field: "priority", label: "Priority" },
- { field: "created_at", label: "Created" },
- { field: "updated_at", label: "Updated" },
- { field: "title", label: "Title" },
-];
-
-export function KanbanFilterBar({ onCreateClick, totalCount }: Props) {
- const { filters, setFilters, sort, setSort } = useUiPreferencesStore();
-
- return (
-
- {/* Search */}
-
-
- setFilters({ search: e.target.value })}
- className="pl-8 h-8 text-sm bg-muted/30 border-border/40"
- />
-
-
- {/* Sort dropdown */}
-
-
-
setSort({ ...sort, field: e.target.value as SortField })}
- className="text-xs bg-transparent border-none text-muted-foreground focus:outline-none cursor-pointer"
- >
- {SORT_OPTIONS.map(o => (
- {o.label}
- ))}
-
-
-
- {/* Count */}
-
- {totalCount} issue{totalCount !== 1 ? "s" : ""}
-
-
- {/* Create */}
-
-
- New Issue
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/layout/AppBar.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/layout/AppBar.tsx
deleted file mode 100644
index 6f96873..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/layout/AppBar.tsx
+++ /dev/null
@@ -1,141 +0,0 @@
-import { useLocation, useNavigate } from "react-router-dom";
-import {
- Wifi,
- WifiOff,
- Loader2,
- MessageSquare,
- ListTodo,
- LayoutDashboard,
- Database,
- Network,
- Swords,
- ChevronDown,
- Settings,
-} from "lucide-react";
-import { Badge } from "@/components/ui/badge";
-import { Button } from "@/components/ui/button";
-import { useProjectContext } from "@/contexts/ProjectContext";
-import { useWsContext } from "@/contexts/WebSocketContext";
-import { StatusDot } from "@/components/primitives/StatusDot";
-
-interface Props {
- onOpenSettings: () => void;
-}
-
-const NAV_TABS = [
- { path: "/", label: "Chat", icon: MessageSquare },
- { path: "/todos", label: "Todos", icon: ListTodo },
- { path: "/board", label: "Board", icon: LayoutDashboard },
- { path: "/memory", label: "Memory", icon: Database },
- { path: "/coordination", label: "Agents", icon: Network },
- { path: "/warroom", label: "War Room", icon: Swords },
-] as const;
-
-export function AppBar({ onOpenSettings }: Props) {
- const { projects, currentProject, selectProject } = useProjectContext();
- const { status: connectionStatus } = useWsContext();
- const location = useLocation();
- const navigate = useNavigate();
-
- const activeTab = NAV_TABS.find(
- (t) =>
- t.path === "/"
- ? location.pathname === "/"
- : location.pathname === t.path || location.pathname.startsWith(t.path + "/"),
- ) || NAV_TABS[0];
-
- const statusIcon =
- connectionStatus === "connected" ? :
- connectionStatus === "connecting" ? :
- ;
-
- const statusColor =
- connectionStatus === "connected" ? "bg-emerald-50 text-emerald-700 border-emerald-200" :
- connectionStatus === "connecting" ? "bg-amber-50 text-amber-700 border-amber-200" :
- "bg-red-50 text-red-700 border-red-200";
-
- return (
-
-
- {/* Logo */}
-
{ e.preventDefault(); navigate("/"); }}
- className="flex items-center hover:opacity-80 transition-opacity"
- >
-
- engram
-
-
-
- {/* Project selector */}
- {currentProject && (
-
-
-
- {currentProject.name}
-
-
-
-
- {projects.map(p => (
- selectProject(p.id)}
- className={`flex items-center gap-2 w-full px-3 py-2 text-sm hover:bg-muted transition-colors ${
- p.id === currentProject.id ? "text-primary font-medium" : ""
- }`}
- >
-
- {p.name}
-
- ))}
-
-
-
- )}
-
- {/* View tabs */}
-
- {NAV_TABS.map((tab) => {
- const Icon = tab.icon;
- const isActive = activeTab.path === tab.path;
- return (
- navigate(tab.path)}
- className={`flex items-center gap-1.5 px-3 py-1.5 rounded-md text-xs font-medium transition-colors ${
- isActive
- ? "bg-background text-foreground shadow-sm"
- : "text-muted-foreground hover:text-foreground"
- }`}
- >
-
- {tab.label}
-
- );
- })}
-
-
-
- {/* Right side */}
-
-
- {statusIcon}
- {connectionStatus}
-
-
-
-
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/layout/ResizablePanel.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/layout/ResizablePanel.tsx
deleted file mode 100644
index f202f98..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/layout/ResizablePanel.tsx
+++ /dev/null
@@ -1,72 +0,0 @@
-import { useCallback, useRef, useState, useEffect, type ReactNode } from "react";
-
-interface Props {
- children: ReactNode;
- defaultWidth?: number;
- minWidth?: number;
- maxWidth?: number;
- side?: "left" | "right";
- className?: string;
-}
-
-export function ResizablePanel({
- children,
- defaultWidth = 480,
- minWidth = 360,
- maxWidth = 640,
- side = "right",
- className = "",
-}: Props) {
- const [width, setWidth] = useState(defaultWidth);
- const isDragging = useRef(false);
- const startX = useRef(0);
- const startWidth = useRef(0);
-
- const handleMouseDown = useCallback(
- (e: React.MouseEvent) => {
- isDragging.current = true;
- startX.current = e.clientX;
- startWidth.current = width;
- e.preventDefault();
- },
- [width],
- );
-
- useEffect(() => {
- const handleMouseMove = (e: MouseEvent) => {
- if (!isDragging.current) return;
- const delta = side === "right"
- ? startX.current - e.clientX
- : e.clientX - startX.current;
- const newWidth = Math.max(minWidth, Math.min(maxWidth, startWidth.current + delta));
- setWidth(newWidth);
- };
-
- const handleMouseUp = () => {
- isDragging.current = false;
- };
-
- document.addEventListener("mousemove", handleMouseMove);
- document.addEventListener("mouseup", handleMouseUp);
- return () => {
- document.removeEventListener("mousemove", handleMouseMove);
- document.removeEventListener("mouseup", handleMouseUp);
- };
- }, [minWidth, maxWidth, side]);
-
- return (
-
- {/* Drag handle */}
-
- {children}
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/layout/Sidebar.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/layout/Sidebar.tsx
deleted file mode 100644
index 8f1bc4e..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/layout/Sidebar.tsx
+++ /dev/null
@@ -1,77 +0,0 @@
-import { Plus, FolderKanban } from "lucide-react";
-import { useProjectContext } from "@/contexts/ProjectContext";
-import { StatusDot } from "@/components/primitives/StatusDot";
-
-interface Props {
- open: boolean;
- onCreateProject: () => void;
-}
-
-export function Sidebar({ open, onCreateProject }: Props) {
- const { projects, currentProject, selectProject, statuses, tags } = useProjectContext();
-
- if (!open) return null;
-
- return (
-
- {/* Projects */}
-
-
-
- {projects.map(p => (
- selectProject(p.id)}
- className={`flex items-center gap-2 w-full px-2 py-1.5 rounded-md text-sm transition-colors ${
- currentProject?.id === p.id
- ? "bg-sidebar-accent text-sidebar-accent-foreground"
- : "text-sidebar-foreground/70 hover:bg-sidebar-accent/50"
- }`}
- >
-
- {p.name}
-
- ))}
-
-
-
- {/* Current project statuses */}
- {currentProject && statuses.length > 0 && (
-
-
Statuses
-
- {statuses.map(s => (
-
-
- {s.name}
-
- ))}
-
-
- )}
-
- {/* Tags */}
- {currentProject && tags.length > 0 && (
-
-
Tags
-
- {tags.map(t => (
-
- {t.name}
-
- ))}
-
-
- )}
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/memory-sidebar.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/memory-sidebar.tsx
deleted file mode 100644
index d1c0fe7..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/memory-sidebar.tsx
+++ /dev/null
@@ -1,265 +0,0 @@
-import {
- Sheet,
- SheetContent,
- SheetHeader,
- SheetTitle,
- SheetTrigger,
-} from "@/components/ui/sheet";
-import { Button } from "@/components/ui/button";
-import { Badge } from "@/components/ui/badge";
-import { Separator } from "@/components/ui/separator";
-import {
- Brain,
- Layers,
- Activity,
- Database,
- Zap,
- Archive,
- BarChart3,
- Sparkles,
-} from "lucide-react";
-
-export interface MemoryStats {
- total: number;
- sml_count: number;
- lml_count: number;
- avg_strength: number;
- echo_stats: {
- shallow: number;
- medium: number;
- deep: number;
- none: number;
- };
- echo_enabled: boolean;
-}
-
-export interface SessionInfo {
- agent: string;
- repo: string;
- running: boolean;
- sessionId: string | null;
-}
-
-interface MemorySidebarProps {
- stats: MemoryStats | null;
- session: SessionInfo | null;
- onRefresh: () => void;
-}
-
-function StatCard({
- icon: Icon,
- label,
- value,
- color,
-}: {
- icon: React.ElementType;
- label: string;
- value: string | number;
- color?: string;
-}) {
- return (
-
-
-
- {label}
-
-
{value}
-
- );
-}
-
-function StrengthBar({ value, max = 1 }: { value: number; max?: number }) {
- const pct = Math.min((value / max) * 100, 100);
- return (
-
- );
-}
-
-export function MemorySidebar({ stats, session, onRefresh }: MemorySidebarProps) {
- return (
-
-
-
-
-
-
-
-
-
-
- Engram Memory
-
-
-
-
- {/* Active Session */}
- {session && (
-
-
- Active Session
-
-
-
- Agent
-
- {session.agent}
-
-
-
- Status
-
- {session.running ? "Running" : "Idle"}
-
-
-
- {session.repo}
-
-
-
- )}
-
-
-
- {/* Memory Stats */}
- {stats ? (
-
-
-
- Memory Stats
-
-
- Refresh
-
-
-
-
-
-
-
-
-
-
-
-
- Avg Strength
-
-
- {stats.avg_strength.toFixed(3)}
-
-
-
-
-
-
- {/* Echo Encoding Stats */}
- {stats.echo_enabled && (
-
-
-
- Echo Encoding
-
-
-
- {(["deep", "medium", "shallow", "none"] as const).map((depth) => (
-
-
- {stats.echo_stats[depth]}
-
-
- {depth}
-
-
- ))}
-
-
-
- )}
-
- {/* Memory Layer Visualization */}
- {stats.total > 0 && (
-
-
-
- Layer Distribution
-
-
- {stats.sml_count > 0 && (
-
- )}
- {stats.lml_count > 0 && (
-
- )}
-
-
-
-
- SML {Math.round((stats.sml_count / stats.total) * 100)}%
-
-
-
- LML {Math.round((stats.lml_count / stats.total) * 100)}%
-
-
-
- )}
-
- ) : (
-
-
-
No memory data available
-
Start a session to see stats
-
- )}
-
-
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/primitives/PriorityIcon.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/primitives/PriorityIcon.tsx
deleted file mode 100644
index 6c3aa64..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/primitives/PriorityIcon.tsx
+++ /dev/null
@@ -1,20 +0,0 @@
-import { ArrowUp, ArrowDown, Minus, AlertTriangle } from "lucide-react";
-import type { Priority } from "@/types";
-
-const config: Record = {
- urgent: { icon: AlertTriangle, color: "text-red-400", label: "Urgent" },
- high: { icon: ArrowUp, color: "text-orange-400", label: "High" },
- medium: { icon: Minus, color: "text-muted-foreground", label: "Medium" },
- low: { icon: ArrowDown, color: "text-green-400", label: "Low" },
-};
-
-export function PriorityIcon({ priority, className = "h-3.5 w-3.5" }: { priority: Priority; className?: string }) {
- const c = config[priority] || config.medium;
- const Icon = c.icon;
- return ;
-}
-
-export function PriorityLabel({ priority }: { priority: Priority }) {
- const c = config[priority] || config.medium;
- return {c.label} ;
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/primitives/StatusDot.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/primitives/StatusDot.tsx
deleted file mode 100644
index c5a5c32..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/primitives/StatusDot.tsx
+++ /dev/null
@@ -1,8 +0,0 @@
-export function StatusDot({ color, size = 8 }: { color: string; size?: number }) {
- return (
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/primitives/UserAvatar.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/primitives/UserAvatar.tsx
deleted file mode 100644
index 17889a9..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/primitives/UserAvatar.tsx
+++ /dev/null
@@ -1,26 +0,0 @@
-import { cn } from "@/lib/utils";
-
-const COLORS = [
- "bg-blue-600", "bg-purple-600", "bg-emerald-600", "bg-amber-600",
- "bg-rose-600", "bg-cyan-600", "bg-pink-600", "bg-indigo-600",
-];
-
-function hashCode(s: string) {
- let hash = 0;
- for (let i = 0; i < s.length; i++) {
- hash = ((hash << 5) - hash + s.charCodeAt(i)) | 0;
- }
- return Math.abs(hash);
-}
-
-export function UserAvatar({ name, size = "sm" }: { name: string; size?: "xs" | "sm" | "md" }) {
- const initials = name.split(/[\s_-]+/).map(w => w[0]?.toUpperCase()).join("").slice(0, 2) || "?";
- const color = COLORS[hashCode(name) % COLORS.length];
- const sizes = { xs: "w-5 h-5 text-[9px]", sm: "w-6 h-6 text-[10px]", md: "w-8 h-8 text-xs" };
-
- return (
-
- {initials}
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/avatar.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/avatar.tsx
deleted file mode 100644
index 1ac1570..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/avatar.tsx
+++ /dev/null
@@ -1,109 +0,0 @@
-"use client"
-
-import * as React from "react"
-import { Avatar as AvatarPrimitive } from "radix-ui"
-
-import { cn } from "@/lib/utils"
-
-function Avatar({
- className,
- size = "default",
- ...props
-}: React.ComponentProps & {
- size?: "default" | "sm" | "lg"
-}) {
- return (
-
- )
-}
-
-function AvatarImage({
- className,
- ...props
-}: React.ComponentProps) {
- return (
-
- )
-}
-
-function AvatarFallback({
- className,
- ...props
-}: React.ComponentProps) {
- return (
-
- )
-}
-
-function AvatarBadge({ className, ...props }: React.ComponentProps<"span">) {
- return (
- svg]:hidden",
- "group-data-[size=default]/avatar:size-2.5 group-data-[size=default]/avatar:[&>svg]:size-2",
- "group-data-[size=lg]/avatar:size-3 group-data-[size=lg]/avatar:[&>svg]:size-2",
- className
- )}
- {...props}
- />
- )
-}
-
-function AvatarGroup({ className, ...props }: React.ComponentProps<"div">) {
- return (
-
- )
-}
-
-function AvatarGroupCount({
- className,
- ...props
-}: React.ComponentProps<"div">) {
- return (
- svg]:size-4 group-has-data-[size=lg]/avatar-group:[&>svg]:size-5 group-has-data-[size=sm]/avatar-group:[&>svg]:size-3",
- className
- )}
- {...props}
- />
- )
-}
-
-export {
- Avatar,
- AvatarImage,
- AvatarFallback,
- AvatarBadge,
- AvatarGroup,
- AvatarGroupCount,
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/badge.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/badge.tsx
deleted file mode 100644
index beb56ed..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/badge.tsx
+++ /dev/null
@@ -1,48 +0,0 @@
-import * as React from "react"
-import { cva, type VariantProps } from "class-variance-authority"
-import { Slot } from "radix-ui"
-
-import { cn } from "@/lib/utils"
-
-const badgeVariants = cva(
- "inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden",
- {
- variants: {
- variant: {
- default: "bg-primary text-primary-foreground [a&]:hover:bg-primary/90",
- secondary:
- "bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90",
- destructive:
- "bg-destructive text-white [a&]:hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",
- outline:
- "border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground",
- ghost: "[a&]:hover:bg-accent [a&]:hover:text-accent-foreground",
- link: "text-primary underline-offset-4 [a&]:hover:underline",
- },
- },
- defaultVariants: {
- variant: "default",
- },
- }
-)
-
-function Badge({
- className,
- variant = "default",
- asChild = false,
- ...props
-}: React.ComponentProps<"span"> &
- VariantProps
& { asChild?: boolean }) {
- const Comp = asChild ? Slot.Root : "span"
-
- return (
-
- )
-}
-
-export { Badge, badgeVariants }
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/button.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/button.tsx
deleted file mode 100644
index b5ea4ab..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/button.tsx
+++ /dev/null
@@ -1,64 +0,0 @@
-import * as React from "react"
-import { cva, type VariantProps } from "class-variance-authority"
-import { Slot } from "radix-ui"
-
-import { cn } from "@/lib/utils"
-
-const buttonVariants = cva(
- "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",
- {
- variants: {
- variant: {
- default: "bg-primary text-primary-foreground hover:bg-primary/90",
- destructive:
- "bg-destructive text-white hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",
- outline:
- "border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50",
- secondary:
- "bg-secondary text-secondary-foreground hover:bg-secondary/80",
- ghost:
- "hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50",
- link: "text-primary underline-offset-4 hover:underline",
- },
- size: {
- default: "h-9 px-4 py-2 has-[>svg]:px-3",
- xs: "h-6 gap-1 rounded-md px-2 text-xs has-[>svg]:px-1.5 [&_svg:not([class*='size-'])]:size-3",
- sm: "h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5",
- lg: "h-10 rounded-md px-6 has-[>svg]:px-4",
- icon: "size-9",
- "icon-xs": "size-6 rounded-md [&_svg:not([class*='size-'])]:size-3",
- "icon-sm": "size-8",
- "icon-lg": "size-10",
- },
- },
- defaultVariants: {
- variant: "default",
- size: "default",
- },
- }
-)
-
-function Button({
- className,
- variant = "default",
- size = "default",
- asChild = false,
- ...props
-}: React.ComponentProps<"button"> &
- VariantProps & {
- asChild?: boolean
- }) {
- const Comp = asChild ? Slot.Root : "button"
-
- return (
-
- )
-}
-
-export { Button, buttonVariants }
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/card.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/card.tsx
deleted file mode 100644
index 681ad98..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/card.tsx
+++ /dev/null
@@ -1,92 +0,0 @@
-import * as React from "react"
-
-import { cn } from "@/lib/utils"
-
-function Card({ className, ...props }: React.ComponentProps<"div">) {
- return (
-
- )
-}
-
-function CardHeader({ className, ...props }: React.ComponentProps<"div">) {
- return (
-
- )
-}
-
-function CardTitle({ className, ...props }: React.ComponentProps<"div">) {
- return (
-
- )
-}
-
-function CardDescription({ className, ...props }: React.ComponentProps<"div">) {
- return (
-
- )
-}
-
-function CardAction({ className, ...props }: React.ComponentProps<"div">) {
- return (
-
- )
-}
-
-function CardContent({ className, ...props }: React.ComponentProps<"div">) {
- return (
-
- )
-}
-
-function CardFooter({ className, ...props }: React.ComponentProps<"div">) {
- return (
-
- )
-}
-
-export {
- Card,
- CardHeader,
- CardFooter,
- CardTitle,
- CardAction,
- CardDescription,
- CardContent,
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/checkbox.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/checkbox.tsx
deleted file mode 100644
index f5de6b1..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/checkbox.tsx
+++ /dev/null
@@ -1,30 +0,0 @@
-import * as React from "react"
-import { CheckIcon } from "lucide-react"
-import { Checkbox as CheckboxPrimitive } from "radix-ui"
-
-import { cn } from "@/lib/utils"
-
-function Checkbox({
- className,
- ...props
-}: React.ComponentProps) {
- return (
-
-
-
-
-
- )
-}
-
-export { Checkbox }
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/dialog.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/dialog.tsx
deleted file mode 100644
index d8a06aa..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/dialog.tsx
+++ /dev/null
@@ -1,156 +0,0 @@
-import * as React from "react"
-import { XIcon } from "lucide-react"
-import { Dialog as DialogPrimitive } from "radix-ui"
-
-import { cn } from "@/lib/utils"
-import { Button } from "@/components/ui/button"
-
-function Dialog({
- ...props
-}: React.ComponentProps) {
- return
-}
-
-function DialogTrigger({
- ...props
-}: React.ComponentProps) {
- return
-}
-
-function DialogPortal({
- ...props
-}: React.ComponentProps) {
- return
-}
-
-function DialogClose({
- ...props
-}: React.ComponentProps) {
- return
-}
-
-function DialogOverlay({
- className,
- ...props
-}: React.ComponentProps) {
- return (
-
- )
-}
-
-function DialogContent({
- className,
- children,
- showCloseButton = true,
- ...props
-}: React.ComponentProps & {
- showCloseButton?: boolean
-}) {
- return (
-
-
-
- {children}
- {showCloseButton && (
-
-
- Close
-
- )}
-
-
- )
-}
-
-function DialogHeader({ className, ...props }: React.ComponentProps<"div">) {
- return (
-
- )
-}
-
-function DialogFooter({
- className,
- showCloseButton = false,
- children,
- ...props
-}: React.ComponentProps<"div"> & {
- showCloseButton?: boolean
-}) {
- return (
-
- {children}
- {showCloseButton && (
-
- Close
-
- )}
-
- )
-}
-
-function DialogTitle({
- className,
- ...props
-}: React.ComponentProps) {
- return (
-
- )
-}
-
-function DialogDescription({
- className,
- ...props
-}: React.ComponentProps) {
- return (
-
- )
-}
-
-export {
- Dialog,
- DialogClose,
- DialogContent,
- DialogDescription,
- DialogFooter,
- DialogHeader,
- DialogOverlay,
- DialogPortal,
- DialogTitle,
- DialogTrigger,
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/input.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/input.tsx
deleted file mode 100644
index 8916905..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/input.tsx
+++ /dev/null
@@ -1,21 +0,0 @@
-import * as React from "react"
-
-import { cn } from "@/lib/utils"
-
-function Input({ className, type, ...props }: React.ComponentProps<"input">) {
- return (
-
- )
-}
-
-export { Input }
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/scroll-area.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/scroll-area.tsx
deleted file mode 100644
index f71026b..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/scroll-area.tsx
+++ /dev/null
@@ -1,56 +0,0 @@
-import * as React from "react"
-import { ScrollArea as ScrollAreaPrimitive } from "radix-ui"
-
-import { cn } from "@/lib/utils"
-
-function ScrollArea({
- className,
- children,
- ...props
-}: React.ComponentProps) {
- return (
-
-
- {children}
-
-
-
-
- )
-}
-
-function ScrollBar({
- className,
- orientation = "vertical",
- ...props
-}: React.ComponentProps) {
- return (
-
-
-
- )
-}
-
-export { ScrollArea, ScrollBar }
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/separator.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/separator.tsx
deleted file mode 100644
index 7bd0d75..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/separator.tsx
+++ /dev/null
@@ -1,26 +0,0 @@
-import * as React from "react"
-import { Separator as SeparatorPrimitive } from "radix-ui"
-
-import { cn } from "@/lib/utils"
-
-function Separator({
- className,
- orientation = "horizontal",
- decorative = true,
- ...props
-}: React.ComponentProps) {
- return (
-
- )
-}
-
-export { Separator }
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/sheet.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/sheet.tsx
deleted file mode 100644
index 5963090..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/sheet.tsx
+++ /dev/null
@@ -1,143 +0,0 @@
-"use client"
-
-import * as React from "react"
-import { XIcon } from "lucide-react"
-import { Dialog as SheetPrimitive } from "radix-ui"
-
-import { cn } from "@/lib/utils"
-
-function Sheet({ ...props }: React.ComponentProps) {
- return
-}
-
-function SheetTrigger({
- ...props
-}: React.ComponentProps) {
- return
-}
-
-function SheetClose({
- ...props
-}: React.ComponentProps) {
- return
-}
-
-function SheetPortal({
- ...props
-}: React.ComponentProps) {
- return
-}
-
-function SheetOverlay({
- className,
- ...props
-}: React.ComponentProps) {
- return (
-
- )
-}
-
-function SheetContent({
- className,
- children,
- side = "right",
- showCloseButton = true,
- ...props
-}: React.ComponentProps & {
- side?: "top" | "right" | "bottom" | "left"
- showCloseButton?: boolean
-}) {
- return (
-
-
-
- {children}
- {showCloseButton && (
-
-
- Close
-
- )}
-
-
- )
-}
-
-function SheetHeader({ className, ...props }: React.ComponentProps<"div">) {
- return (
-
- )
-}
-
-function SheetFooter({ className, ...props }: React.ComponentProps<"div">) {
- return (
-
- )
-}
-
-function SheetTitle({
- className,
- ...props
-}: React.ComponentProps) {
- return (
-
- )
-}
-
-function SheetDescription({
- className,
- ...props
-}: React.ComponentProps) {
- return (
-
- )
-}
-
-export {
- Sheet,
- SheetTrigger,
- SheetClose,
- SheetContent,
- SheetHeader,
- SheetFooter,
- SheetTitle,
- SheetDescription,
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/tabs.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/tabs.tsx
deleted file mode 100644
index 7bf18aa..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/tabs.tsx
+++ /dev/null
@@ -1,89 +0,0 @@
-import * as React from "react"
-import { cva, type VariantProps } from "class-variance-authority"
-import { Tabs as TabsPrimitive } from "radix-ui"
-
-import { cn } from "@/lib/utils"
-
-function Tabs({
- className,
- orientation = "horizontal",
- ...props
-}: React.ComponentProps) {
- return (
-
- )
-}
-
-const tabsListVariants = cva(
- "rounded-lg p-[3px] group-data-[orientation=horizontal]/tabs:h-9 data-[variant=line]:rounded-none group/tabs-list text-muted-foreground inline-flex w-fit items-center justify-center group-data-[orientation=vertical]/tabs:h-fit group-data-[orientation=vertical]/tabs:flex-col",
- {
- variants: {
- variant: {
- default: "bg-muted",
- line: "gap-1 bg-transparent",
- },
- },
- defaultVariants: {
- variant: "default",
- },
- }
-)
-
-function TabsList({
- className,
- variant = "default",
- ...props
-}: React.ComponentProps &
- VariantProps) {
- return (
-
- )
-}
-
-function TabsTrigger({
- className,
- ...props
-}: React.ComponentProps) {
- return (
-
- )
-}
-
-function TabsContent({
- className,
- ...props
-}: React.ComponentProps) {
- return (
-
- )
-}
-
-export { Tabs, TabsList, TabsTrigger, TabsContent, tabsListVariants }
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/textarea.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/textarea.tsx
deleted file mode 100644
index 7f21b5e..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/textarea.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import * as React from "react"
-
-import { cn } from "@/lib/utils"
-
-function Textarea({ className, ...props }: React.ComponentProps<"textarea">) {
- return (
-
- )
-}
-
-export { Textarea }
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/tooltip.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/tooltip.tsx
deleted file mode 100644
index d80a144..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/components/ui/tooltip.tsx
+++ /dev/null
@@ -1,57 +0,0 @@
-"use client"
-
-import * as React from "react"
-import { Tooltip as TooltipPrimitive } from "radix-ui"
-
-import { cn } from "@/lib/utils"
-
-function TooltipProvider({
- delayDuration = 0,
- ...props
-}: React.ComponentProps) {
- return (
-
- )
-}
-
-function Tooltip({
- ...props
-}: React.ComponentProps) {
- return
-}
-
-function TooltipTrigger({
- ...props
-}: React.ComponentProps) {
- return
-}
-
-function TooltipContent({
- className,
- sideOffset = 0,
- children,
- ...props
-}: React.ComponentProps) {
- return (
-
-
- {children}
-
-
-
- )
-}
-
-export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider }
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/contexts/ProjectContext.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/contexts/ProjectContext.tsx
deleted file mode 100644
index 2067da4..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/contexts/ProjectContext.tsx
+++ /dev/null
@@ -1,214 +0,0 @@
-import { createContext, useContext, useCallback, useEffect, useState, type ReactNode } from "react";
-import { api } from "@/hooks/use-api";
-import type { Project, ProjectStatus, ProjectTag, Issue } from "@/types";
-
-interface ProjectContextValue {
- // Data
- projects: Project[];
- currentProject: Project | null;
- statuses: ProjectStatus[];
- tags: ProjectTag[];
- issues: Issue[];
-
- // Project actions
- selectProject: (id: string) => void;
- createProject: (data: { name: string; color?: string; description?: string }) => Promise;
- deleteProject: (id: string) => Promise;
-
- // Issue actions
- createIssue: (data: Partial & { title: string }) => Promise;
- updateIssue: (id: string, data: Partial) => Promise;
- deleteIssue: (id: string) => Promise;
- bulkUpdateIssues: (updates: Partial[]) => Promise;
-
- // Status actions
- createStatus: (data: { name: string; color?: string; sort_order?: number }) => Promise;
- updateStatus: (id: string, data: Partial) => Promise;
-
- // Tag actions
- createTag: (data: { name: string; color?: string }) => Promise;
-
- // Comment actions
- addComment: (issueId: string, text: string) => Promise;
-
- // Refresh
- refreshIssues: () => Promise;
- refreshAll: () => Promise;
- loading: boolean;
-}
-
-const ProjectContext = createContext(null);
-
-export function useProjectContext() {
- const ctx = useContext(ProjectContext);
- if (!ctx) throw new Error("useProjectContext must be used within ProjectProvider");
- return ctx;
-}
-
-export function ProjectProvider({ children }: { children: ReactNode }) {
- const [projects, setProjects] = useState([]);
- const [currentProject, setCurrentProject] = useState(null);
- const [statuses, setStatuses] = useState([]);
- const [tags, setTags] = useState([]);
- const [issues, setIssues] = useState([]);
- const [loading, setLoading] = useState(true);
-
- const loadProjects = useCallback(async () => {
- try {
- const list = await api.listProjects();
- setProjects(list);
- // Auto-select first project if none selected
- if (list.length > 0 && !currentProject) {
- setCurrentProject(list[0]);
- }
- return list;
- } catch {
- return [];
- }
- }, [currentProject]);
-
- const loadProjectData = useCallback(async (projectId: string) => {
- try {
- const [s, t, i] = await Promise.all([
- api.listStatuses(projectId),
- api.listTags(projectId),
- api.listIssues(projectId),
- ]);
- setStatuses(s);
- setTags(t);
- setIssues(i);
- } catch {
- setStatuses([]);
- setTags([]);
- setIssues([]);
- }
- }, []);
-
- // Initial load
- useEffect(() => {
- setLoading(true);
- loadProjects().then(list => {
- if (list.length === 0) {
- // Auto-create default project
- api.createProject({ name: "My Project", color: "#6366f1" })
- .then(p => {
- setProjects([p]);
- setCurrentProject(p);
- })
- .catch(() => {})
- .finally(() => setLoading(false));
- } else {
- setLoading(false);
- }
- });
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, []);
-
- // Load data when project changes
- useEffect(() => {
- if (currentProject) {
- loadProjectData(currentProject.id);
- }
- }, [currentProject, loadProjectData]);
-
- const selectProject = useCallback((id: string) => {
- const p = projects.find(p => p.id === id);
- if (p) setCurrentProject(p);
- }, [projects]);
-
- const createProjectFn = useCallback(async (data: { name: string; color?: string; description?: string }) => {
- const p = await api.createProject(data);
- setProjects(prev => [...prev, p]);
- setCurrentProject(p);
- return p;
- }, []);
-
- const deleteProjectFn = useCallback(async (id: string) => {
- await api.deleteProject(id);
- setProjects(prev => prev.filter(p => p.id !== id));
- if (currentProject?.id === id) {
- setCurrentProject(projects.find(p => p.id !== id) || null);
- }
- }, [currentProject, projects]);
-
- const createIssueFn = useCallback(async (data: Partial & { title: string }) => {
- if (!currentProject) throw new Error("No project selected");
- const issue = await api.createIssue({ ...data, project_id: currentProject.id });
- setIssues(prev => [...prev, issue]);
- return issue;
- }, [currentProject]);
-
- const updateIssueFn = useCallback(async (id: string, data: Partial) => {
- const issue = await api.updateIssue(id, data);
- setIssues(prev => prev.map(i => i.id === id ? issue : i));
- return issue;
- }, []);
-
- const deleteIssueFn = useCallback(async (id: string) => {
- await api.deleteIssue(id);
- setIssues(prev => prev.filter(i => i.id !== id));
- }, []);
-
- const bulkUpdateIssuesFn = useCallback(async (updates: Partial[]) => {
- await api.bulkUpdateIssues(updates);
- if (currentProject) {
- const fresh = await api.listIssues(currentProject.id);
- setIssues(fresh);
- }
- }, [currentProject]);
-
- const createStatusFn = useCallback(async (data: { name: string; color?: string; sort_order?: number }) => {
- if (!currentProject) throw new Error("No project selected");
- const s = await api.createStatus(currentProject.id, data);
- setStatuses(prev => [...prev, s].sort((a, b) => a.sort_order - b.sort_order));
- return s;
- }, [currentProject]);
-
- const updateStatusFn = useCallback(async (id: string, data: Partial) => {
- const s = await api.updateStatus(id, data);
- setStatuses(prev => prev.map(st => st.id === id ? s : st).sort((a, b) => a.sort_order - b.sort_order));
- return s;
- }, []);
-
- const createTagFn = useCallback(async (data: { name: string; color?: string }) => {
- if (!currentProject) throw new Error("No project selected");
- const t = await api.createTag(currentProject.id, data);
- setTags(prev => [...prev, t]);
- return t;
- }, [currentProject]);
-
- const addCommentFn = useCallback(async (issueId: string, text: string) => {
- await api.addComment(issueId, "user", text);
- // Refresh issue
- const issue = await api.getIssue(issueId);
- setIssues(prev => prev.map(i => i.id === issueId ? issue : i));
- }, []);
-
- const refreshIssues = useCallback(async () => {
- if (currentProject) {
- const i = await api.listIssues(currentProject.id);
- setIssues(i);
- }
- }, [currentProject]);
-
- const refreshAll = useCallback(async () => {
- await loadProjects();
- if (currentProject) {
- await loadProjectData(currentProject.id);
- }
- }, [loadProjects, currentProject, loadProjectData]);
-
- return (
-
- {children}
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/contexts/WebSocketContext.tsx b/engram-bridge/engram_bridge/channels/web-ui/src/contexts/WebSocketContext.tsx
deleted file mode 100644
index 4287e96..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/contexts/WebSocketContext.tsx
+++ /dev/null
@@ -1,243 +0,0 @@
-import { createContext, useContext, useCallback, type ReactNode } from "react";
-import { useWebSocket, type ConnectionStatus, type WsMessage } from "@/hooks/use-websocket";
-import { useProjectContext } from "@/contexts/ProjectContext";
-import { useChatStore } from "@/stores/useChatStore";
-import { useTaskConversationStore } from "@/stores/useTaskConversationStore";
-import { useWarRoomStore } from "@/stores/useWarRoomStore";
-import { toast } from "sonner";
-import type { ProcessEntry, FileChange } from "@/types";
-
-// Extended WS message with dynamic fields from server
-type Msg = WsMessage & Record;
-
-interface WebSocketContextValue {
- status: ConnectionStatus;
- send: (data: Record) => void;
-}
-
-const WebSocketContext = createContext(null);
-
-export function useWsContext() {
- const ctx = useContext(WebSocketContext);
- if (!ctx) throw new Error("useWsContext must be used within WebSocketProvider");
- return ctx;
-}
-
-interface Props {
- children: ReactNode;
-}
-
-export function WebSocketProvider({ children }: Props) {
- const { refreshIssues } = useProjectContext();
-
- const handleMessage = useCallback(
- (raw: WsMessage) => {
- const msg = raw as Msg;
-
- // Real-time issue updates
- if (
- msg.type === "issue_created" ||
- msg.type === "issue_updated" ||
- msg.type === "issue_deleted" ||
- msg.type === "status_changed" ||
- msg.type === "issues_bulk_updated"
- ) {
- refreshIssues();
- return;
- }
-
- // ── Auto-execute notification ──
- if (msg.type === "task_auto_started") {
- const autoTaskId = msg.task_id as string;
- const agent = msg.agent as string;
- const title = msg.title as string;
- const store = useTaskConversationStore.getState();
- store.setExecuting(autoTaskId, true);
- store.addConversationEntry(autoTaskId, {
- id: `system-auto-${Date.now()}`,
- type: "system",
- content: `Auto-dispatching to ${agent}...`,
- ts: new Date().toISOString(),
- });
- refreshIssues();
- toast.info(`${agent} started on "${title}"`, {
- action: {
- label: "View",
- onClick: () => { window.location.href = `/task/${autoTaskId}`; },
- },
- duration: 8000,
- });
- return;
- }
-
- const taskId = msg.task_id as string | undefined;
-
- // ── Task-scoped messages → useTaskConversationStore ──
- if (taskId) {
- const store = useTaskConversationStore.getState();
- const now = new Date().toISOString();
-
- switch (msg.type) {
- case "task_text":
- store.addConversationEntry(taskId, {
- id: `assistant-${msg.message_id || Date.now()}`,
- type: "assistant",
- content: (msg.content as string) || "",
- ts: now,
- agent: msg.agent as string,
- streaming: msg.streaming as boolean,
- });
- break;
-
- case "task_edit":
- store.editConversationEntry(
- taskId,
- `assistant-${msg.message_id}`,
- (msg.content as string) || "",
- msg.streaming as boolean,
- );
- break;
-
- case "task_tool_use":
- store.addConversationEntry(taskId, {
- id: `tool-${Date.now()}`,
- type: "tool_use",
- content: (msg.content as string) || "",
- ts: now,
- tool: msg.tool as string,
- file_path: msg.file_path as string,
- streaming: msg.streaming as boolean,
- });
- break;
-
- case "task_tool_result":
- store.addConversationEntry(taskId, {
- id: `result-${Date.now()}`,
- type: "tool_result",
- content: (msg.content as string) || "",
- ts: now,
- });
- break;
-
- case "task_error":
- store.addConversationEntry(taskId, {
- id: `error-${Date.now()}`,
- type: "error",
- content: (msg.content as string) || "",
- ts: now,
- });
- break;
-
- case "task_process": {
- const processId = (msg.process_id as string) || `proc-${Date.now()}`;
- const taskData = store.tasks[taskId];
- const existing = taskData?.liveProcesses.find((p) => p.id === processId);
-
- if (existing) {
- store.updateProcess(taskId, processId, {
- status: (msg.status as ProcessEntry["status"]) || existing.status,
- output: (msg.output as string) || existing.output,
- completed_at: (msg.completed_at as string) || existing.completed_at,
- duration_ms: (msg.duration_ms as number) || existing.duration_ms,
- exit_code: (msg.exit_code as number) ?? existing.exit_code,
- });
- } else {
- store.addProcess(taskId, {
- id: processId,
- name: (msg.name as string) || "Process",
- status: (msg.status as ProcessEntry["status"]) || "running",
- started_at: now,
- agent: msg.agent as string,
- output: msg.output as string,
- });
- }
- break;
- }
-
- case "task_file_change":
- store.addFileChange(taskId, {
- path: (msg.path as string) || "",
- action: (msg.action as FileChange["action"]) || "modified",
- additions: msg.additions as number,
- deletions: msg.deletions as number,
- diff: msg.diff as string,
- ts: now,
- });
- break;
-
- case "task_complete":
- store.markComplete(taskId);
- break;
- }
- return;
- }
-
- // ── War Room broadcasts → useWarRoomStore ──
- const wrStore = useWarRoomStore.getState();
-
- if (msg.type === "warroom_created") {
- wrStore.addRoom(msg.room as any);
- toast.info(`War Room created: ${(msg.room as any)?.wr_topic || "New room"}`);
- return;
- }
- if (msg.type === "warroom_message") {
- const wrmsg = msg.message as any;
- if (wrmsg?.wrmsg_room_id) {
- wrStore.addMessage(wrmsg.wrmsg_room_id, wrmsg);
- }
- return;
- }
- if (msg.type === "warroom_state_changed") {
- wrStore.updateRoom(msg.room_id as string, { wr_state: msg.to_state as any });
- return;
- }
- if (msg.type === "warroom_monitor_changed") {
- wrStore.updateRoom(msg.room_id as string, { wr_monitor_agent: msg.new_monitor as string });
- return;
- }
- if (msg.type === "warroom_decided") {
- wrStore.updateRoom(msg.room_id as string, {
- wr_decision_text: msg.decision as string,
- wr_state: "decided",
- });
- toast.success("War Room decision recorded");
- return;
- }
- if (msg.type === "auto_picked") {
- toast.info(`Auto-picked: ${(msg as any).agent_name || "agent"}`);
- return;
- }
-
- // ── Global chat messages (no task_id) → useChatStore ──
- const chatStore = useChatStore.getState();
-
- if (msg.type === "text") {
- chatStore.addMessage({
- id: `agent-${msg.message_id || Date.now()}`,
- role: "agent",
- content: (msg.content as string) || "",
- messageId: msg.message_id as number,
- timestamp: new Date().toISOString(),
- streaming: msg.streaming as boolean,
- });
- } else if (msg.type === "edit") {
- if (msg.message_id) {
- chatStore.editMessage(
- msg.message_id as number,
- (msg.content as string) || "",
- msg.streaming as boolean,
- );
- }
- }
- },
- [refreshIssues],
- );
-
- const { status, send } = useWebSocket({ onMessage: handleMessage });
-
- return (
-
- {children}
-
- );
-}
diff --git a/engram-bridge/engram_bridge/channels/web-ui/src/hooks/use-api.ts b/engram-bridge/engram_bridge/channels/web-ui/src/hooks/use-api.ts
deleted file mode 100644
index 28da849..0000000
--- a/engram-bridge/engram_bridge/channels/web-ui/src/hooks/use-api.ts
+++ /dev/null
@@ -1,224 +0,0 @@
-// ── REST API client for engram-bridge ──
-
-import { useCallback, useEffect, useState } from "react";
-import type {
- Project, ProjectStatus, ProjectTag, Issue, FeedEvent, SystemInfo,
- MemoryItem, MemoryStats, MemoryCategory,
- CoordinationAgent, CoordinationEvent, RouteResult,
- WarRoom, WarRoomMessage,
-} from "@/types";
-import type { AgentInfo } from "@/types/dashboard";
-
-const BASE = "";
-
-async function json(res: Response): Promise {
- if (!res.ok) {
- const body = await res.text();
- throw new Error(`API ${res.status}: ${body}`);
- }
- return res.json() as Promise;
-}
-
-function get(path: string): Promise {
- return fetch(`${BASE}${path}`).then(r => json(r));
-}
-
-function post(path: string, body?: unknown): Promise {
- return fetch(`${BASE}${path}`, {
- method: "POST",
- headers: { "Content-Type": "application/json" },
- body: body ? JSON.stringify(body) : undefined,
- }).then(r => json(r));
-}
-
-function put(path: string, body: unknown): Promise {
- return fetch(`${BASE}${path}`, {
- method: "PUT",
- headers: { "Content-Type": "application/json" },
- body: JSON.stringify(body),
- }).then(r => json(r));
-}
-
-function del(path: string): Promise {
- return fetch(`${BASE}${path}`, { method: "DELETE" }).then(r => json(r));
-}
-
-export const api = {
- // System
- info: () => get("/api/info"),
- health: () => get<{ status: string }>("/health"),
- feed: () => get("/api/feed"),
- agents: () => get("/api/agents"),
- getConfig: () => get>("/api/config"),
- updateConfig: (data: Record) => post<{ ok: boolean }>("/api/config", data),
-
- // Projects
- listProjects: () => get("/api/projects"),
- createProject: (data: { name: string; color?: string; description?: string }) =>
- post("/api/projects", data),
- getProject: (id: string) => get(`/api/projects/${id}`),
- updateProject: (id: string, data: Partial) =>
- put(`/api/projects/${id}`, data),
- deleteProject: (id: string) => del<{ ok: boolean }>(`/api/projects/${id}`),
-
- // Statuses
- listStatuses: (projectId: string) =>
- get(`/api/projects/${projectId}/statuses`),
- createStatus: (projectId: string, data: { name: string; color?: string; sort_order?: number }) =>
- post(`/api/projects/${projectId}/statuses`, data),
- updateStatus: (statusId: string, data: Partial) =>
- put(`/api/statuses/${statusId}`, data),
- deleteStatus: (statusId: string) => del<{ ok: boolean }>(`/api/statuses/${statusId}`),
- bulkUpdateStatuses: (updates: Partial[]) =>
- post("/api/statuses/bulk", { updates }),
-
- // Tags
- listTags: (projectId: string) =>
- get(`/api/projects/${projectId}/tags`),
- createTag: (projectId: string, data: { name: string; color?: string }) =>
- post(`/api/projects/${projectId}/tags`, data),
- updateTag: (tagId: string, data: Partial) =>
- put(`/api/tags/${tagId}`, data),
- deleteTag: (tagId: string) => del<{ ok: boolean }>(`/api/tags/${tagId}`),
-
- // Issues
- listIssues: (projectId: string) =>
- get(`/api/projects/${projectId}/issues`),
- createIssue: (data: Partial & { title: string; project_id: string }) =>
- post("/api/issues", data),
- getIssue: (id: string) => get