diff --git a/backend/app/services/llm_telemetry.py b/backend/app/services/llm_telemetry.py new file mode 100644 index 0000000000..bc246ee7f6 --- /dev/null +++ b/backend/app/services/llm_telemetry.py @@ -0,0 +1,269 @@ +"""Per-call LLM telemetry for multi-model simulations (Issue #21). + +The agents in a MiroFish simulation do NOT call ``LLMClient`` — they call the +CAMEL model backend created by ``ModelFactory.create`` and driven by OASIS. So +telemetry must wrap that backend, not ``LLMClient``. + +:func:`instrument_backend` monkeypatches a CAMEL ``BaseModelBackend`` *instance* +(``run`` and ``arun``). This keeps ``isinstance(model, BaseModelBackend)`` true +(CAMEL's ChatAgent relies on it) and intercepts every call OASIS routes through +``ModelManager.current_model.run/arun``. + +Each call appends one JSON line to ``/llm_telemetry.jsonl`` with the +schema required by the issue plus cost/temperature/error fields. +""" + +from __future__ import annotations + +import hashlib +import json +import os +import threading +import time +from dataclasses import dataclass, field +from datetime import datetime +from typing import Any, Dict, List, Optional, Tuple + +import yaml + + +def _sha256(text: str) -> str: + return hashlib.sha256(text.encode("utf-8", errors="replace")).hexdigest() + + +def _hash_messages(messages: Any) -> str: + try: + return _sha256(json.dumps(messages, sort_keys=True, default=str, ensure_ascii=False)) + except Exception: + return _sha256(repr(messages)) + + +# --------------------------------------------------------------------------- # +# Cost estimation +# --------------------------------------------------------------------------- # + +def load_prices(path: Optional[str]) -> Dict[str, Dict[str, float]]: + """Load the per-model price table (USD per 1k tokens). Empty if missing.""" + if not path or not os.path.exists(path): + return {} + with open(path, "r", encoding="utf-8") as f: + data = yaml.safe_load(f) or {} + return data.get("prices", {}) or {} + + +def estimate_cost( + model: str, tokens_in: int, tokens_out: int, prices: Dict[str, Dict[str, float]] +) -> Tuple[float, bool]: + """Return (cost_usd, unknown_model). Unknown models cost 0.0 and flag True.""" + entry = prices.get(model) + if entry is None: + lowered = {k.lower(): v for k, v in prices.items()} + entry = lowered.get(model.lower()) + if entry is None: + for name, v in prices.items(): + if model.startswith(name) or name.startswith(model): + entry = v + break + if entry is None: + return 0.0, True + cost = (tokens_in / 1000.0) * entry.get("in", 0.0) + ( + tokens_out / 1000.0 + ) * entry.get("out", 0.0) + return round(cost, 8), False + + +# --------------------------------------------------------------------------- # +# Sink +# --------------------------------------------------------------------------- # + +@dataclass +class TelemetrySink: + """Collects per-call records into a JSONL file and aggregates totals. + + ``current_round`` is a mutable the simulation runner updates before each + ``env.step``, so every record written during that step is stamped with the + correct round (OASIS does not expose the round at the model-call layer). + """ + + path: str + prices: Dict[str, Dict[str, float]] = field(default_factory=dict) + current_round: int = 0 + + # aggregates + records: int = 0 + errors: int = 0 + parse_errors: int = 0 + tokens_in: int = 0 + tokens_out: int = 0 + cost_usd_est: float = 0.0 + latency_ms_total: float = 0.0 + + def __post_init__(self) -> None: + self._lock = threading.Lock() + parent = os.path.dirname(self.path) + if parent: + os.makedirs(parent, exist_ok=True) + # truncate any stale file from a previous run + open(self.path, "w", encoding="utf-8").close() + + def record(self, rec: Dict[str, Any]) -> None: + with self._lock: + self.records += 1 + self.tokens_in += rec.get("tokens_in", 0) or 0 + self.tokens_out += rec.get("tokens_out", 0) or 0 + self.cost_usd_est += rec.get("cost_usd_est", 0.0) or 0.0 + self.latency_ms_total += rec.get("latency_ms", 0.0) or 0.0 + if rec.get("error"): + self.errors += 1 + if rec.get("output_valid_json") is False: + self.parse_errors += 1 + with open(self.path, "a", encoding="utf-8") as f: + f.write(json.dumps(rec, ensure_ascii=False) + "\n") + + def summary(self) -> Dict[str, Any]: + latency_sec = round(self.latency_ms_total / 1000.0, 4) + mean_latency = ( + round(self.latency_ms_total / self.records, 2) if self.records else 0.0 + ) + return { + "llm_calls": self.records, + "tokens_in": self.tokens_in, + "tokens_out": self.tokens_out, + "cost_usd_est": round(self.cost_usd_est, 8), + "latency_sec": latency_sec, + "mean_latency_ms": mean_latency, + "errors": self.errors, + "parse_errors": self.parse_errors, + } + + +# --------------------------------------------------------------------------- # +# Response extraction +# --------------------------------------------------------------------------- # + +def _extract_usage(response: Any) -> Tuple[int, int]: + usage = getattr(response, "usage", None) + if usage is None and isinstance(response, dict): + usage = response.get("usage") + if usage is None: + return 0, 0 + pt = getattr(usage, "prompt_tokens", None) + ct = getattr(usage, "completion_tokens", None) + if pt is None and isinstance(usage, dict): + pt = usage.get("prompt_tokens") + ct = usage.get("completion_tokens") + return int(pt or 0), int(ct or 0) + + +def _extract_content(response: Any) -> Optional[str]: + try: + choices = getattr(response, "choices", None) + if choices is None and isinstance(response, dict): + choices = response.get("choices") + if not choices: + return None + first = choices[0] + message = getattr(first, "message", None) + if message is None and isinstance(first, dict): + message = first.get("message") + content = getattr(message, "content", None) + if content is None and isinstance(message, dict): + content = message.get("content") + return content + except Exception: + return None + + +def _is_valid_json(content: Optional[str]) -> Optional[bool]: + """True/False if content parses as JSON; None if there is no content.""" + if content is None or content == "": + return None + try: + json.loads(content) + return True + except (ValueError, TypeError): + return False + + +# --------------------------------------------------------------------------- # +# Instrumentation +# --------------------------------------------------------------------------- # + +def instrument_backend( + backend: Any, + *, + context: Dict[str, Any], + sink: TelemetrySink, +) -> Any: + """Monkeypatch a CAMEL backend instance to record per-call telemetry. + + ``context`` must carry: agent_id, role, provider, model. Returns the same + (now instrumented) backend so it can be passed straight to OASIS. + """ + orig_run = backend.run + orig_arun = backend.arun + + def _temperature() -> Optional[float]: + cfg = getattr(backend, "model_config_dict", None) + if isinstance(cfg, dict): + return cfg.get("temperature") + return None + + def _build_record( + messages: Any, response: Any, latency_ms: float, error: Optional[str] + ) -> Dict[str, Any]: + tokens_in, tokens_out = (0, 0) if response is None else _extract_usage(response) + content = None if response is None else _extract_content(response) + cost, unknown = estimate_cost( + context.get("model", ""), tokens_in, tokens_out, sink.prices + ) + leak_flags: List[str] = [] + if unknown: + leak_flags.append("cost_unknown_model") + valid_json = _is_valid_json(content) + return { + "timestamp": datetime.now().isoformat(), + "round": sink.current_round, + "agent_id": context.get("agent_id"), + "role": context.get("role"), + "provider": context.get("provider"), + "model": context.get("model"), + "temperature": _temperature(), + "prompt_hash": _hash_messages(messages), + "response_hash": _sha256(content) if content else None, + "tokens_in": tokens_in, + "tokens_out": tokens_out, + "latency_ms": round(latency_ms, 2), + "cost_usd_est": cost, + "output_valid_json": valid_json, + "error": error, + "leak_flags": leak_flags, + } + + def wrapped_run(messages, response_format=None, tools=None): + t0 = time.perf_counter() + try: + response = orig_run(messages, response_format, tools) + except Exception as exc: # noqa: BLE001 - we re-raise after logging + latency_ms = (time.perf_counter() - t0) * 1000.0 + sink.record(_build_record(messages, None, latency_ms, repr(exc))) + raise + latency_ms = (time.perf_counter() - t0) * 1000.0 + sink.record(_build_record(messages, response, latency_ms, None)) + return response + + async def wrapped_arun(messages, response_format=None, tools=None): + t0 = time.perf_counter() + try: + response = await orig_arun(messages, response_format, tools) + except Exception as exc: # noqa: BLE001 - we re-raise after logging + latency_ms = (time.perf_counter() - t0) * 1000.0 + sink.record(_build_record(messages, None, latency_ms, repr(exc))) + raise + latency_ms = (time.perf_counter() - t0) * 1000.0 + sink.record(_build_record(messages, response, latency_ms, None)) + return response + + backend.run = wrapped_run + backend.arun = wrapped_arun + return backend diff --git a/backend/app/services/model_router.py b/backend/app/services/model_router.py new file mode 100644 index 0000000000..9bf39920a9 --- /dev/null +++ b/backend/app/services/model_router.py @@ -0,0 +1,231 @@ +"""Configurable per-agent / per-role LLM routing for MiroFish simulations. + +Issue #21 (S2 Dev 2). Turns the S1 spike's inline per-agent model selection +into a real, auditable feature driven by a YAML model map. + +Resolution precedence (highest wins): ``by_agent_id`` > ``by_role`` > ``default``. + +The map loading / validation / resolution logic here is intentionally free of +any ``camel`` import so it can be unit-tested without the heavy simulation +dependency. The CAMEL backend is only constructed in :func:`build_backend`, +which imports ``camel`` lazily. +""" + +from __future__ import annotations + +import os +from dataclasses import dataclass +from typing import Any, Dict, Optional + +import yaml + + +class ModelRoutingError(ValueError): + """Raised on an invalid model map or an unbuildable backend.""" + + +# Known OpenAI-compatible providers. The value documents the conventional +# default env vars; any provider name is accepted (all routed through the +# OpenAI-compatible CAMEL backend) but unknown names are flagged in validation. +PROVIDERS: Dict[str, Dict[str, str]] = { + "openai": {"base_url_env": "LLM_BASE_URL", "api_key_env": "LLM_API_KEY"}, + "vllm": {"base_url_env": "LOCAL_LLM_BASE_URL", "api_key_env": "LOCAL_LLM_API_KEY"}, + "lmstudio": {"base_url_env": "LOCAL_LLM_BASE_URL", "api_key_env": "LOCAL_LLM_API_KEY"}, + "groq": {"base_url_env": "GROQ_BASE_URL", "api_key_env": "GROQ_API_KEY"}, +} + +_POLICY_FIELDS = { + "provider", + "model", + "base_url", + "base_url_env", + "api_key_env", + "temperature", + "seed", +} + + +@dataclass +class ModelPolicy: + """The resolved model route for a single agent.""" + + agent_id: int + role: Optional[str] + provider: str + model: str + base_url: Optional[str] + api_key_env: str + temperature: Optional[float] + seed: Optional[int] + source: str # which layer won: "by_agent_id" | "by_role" | "default" + + def resolve_api_key(self) -> str: + return os.environ.get(self.api_key_env, "") + + def to_audit(self) -> Dict[str, Any]: + """Redacted dict for the routing audit (never includes the key value).""" + return { + "agent_id": self.agent_id, + "role": self.role, + "provider": self.provider, + "model": self.model, + "base_url": self.base_url, + "temperature": self.temperature, + "seed": self.seed, + "api_key_env": self.api_key_env, + "api_key_set": bool(self.resolve_api_key()), + "source": self.source, + } + + +def _validate_layer(name: str, layer: Dict[str, Any]) -> None: + if not isinstance(layer, dict): + raise ModelRoutingError(f"Model map layer '{name}' must be a mapping") + unknown = set(layer) - _POLICY_FIELDS + if unknown: + raise ModelRoutingError( + f"Model map layer '{name}' has unknown field(s): {sorted(unknown)}" + ) + # Secrets policy: keys come from the environment, never inline. + if "api_key" in layer: + raise ModelRoutingError( + f"Model map layer '{name}' must not contain a literal 'api_key'; " + "use 'api_key_env' to name an environment variable instead." + ) + provider = layer.get("provider") + if provider is not None and provider not in PROVIDERS: + # Not fatal (all providers are OpenAI-compatible), but surface it. + raise ModelRoutingError( + f"Model map layer '{name}' uses unknown provider '{provider}'. " + f"Known providers: {sorted(PROVIDERS)}. Add it to PROVIDERS if intended." + ) + temp = layer.get("temperature") + if temp is not None and not isinstance(temp, (int, float)): + raise ModelRoutingError(f"Model map layer '{name}': temperature must be a number") + seed = layer.get("seed") + if seed is not None and not isinstance(seed, int): + raise ModelRoutingError(f"Model map layer '{name}': seed must be an integer or null") + + +def validate_model_map(model_map: Dict[str, Any]) -> None: + """Validate the structure of a loaded model map. Raises ModelRoutingError.""" + if not isinstance(model_map, dict): + raise ModelRoutingError("Model map must be a mapping") + if model_map.get("version") != 1: + raise ModelRoutingError("Model map 'version' must be 1") + + default = model_map.get("default") + if not isinstance(default, dict): + raise ModelRoutingError("Model map must define a 'default' mapping") + if not default.get("model"): + raise ModelRoutingError("Model map 'default' must define a 'model'") + _validate_layer("default", default) + + fallback = model_map.get("fallback", {}) + if not isinstance(fallback, dict): + raise ModelRoutingError("Model map 'fallback' must be a mapping") + if "enabled" in fallback and not isinstance(fallback["enabled"], bool): + raise ModelRoutingError("Model map 'fallback.enabled' must be a boolean") + + for role, layer in (model_map.get("by_role") or {}).items(): + _validate_layer(f"by_role.{role}", layer) + for agent_id, layer in (model_map.get("by_agent_id") or {}).items(): + if not isinstance(agent_id, int): + raise ModelRoutingError( + f"by_agent_id keys must be integers, got '{agent_id}' ({type(agent_id).__name__})" + ) + _validate_layer(f"by_agent_id.{agent_id}", layer) + + +def load_model_map(path: str) -> Dict[str, Any]: + """Load and validate a model map YAML file.""" + if not os.path.exists(path): + raise ModelRoutingError(f"Model map not found: {path}") + with open(path, "r", encoding="utf-8") as f: + model_map = yaml.safe_load(f) + validate_model_map(model_map) + return model_map + + +class ModelRouter: + """Resolves a :class:`ModelPolicy` per agent from a validated model map.""" + + def __init__(self, model_map: Dict[str, Any]): + validate_model_map(model_map) + self._map = model_map + self._default = model_map["default"] + self._by_role = model_map.get("by_role") or {} + self._by_agent_id = model_map.get("by_agent_id") or {} + + @classmethod + def from_file(cls, path: str) -> "ModelRouter": + return cls(load_model_map(path)) + + @property + def fallback_enabled(self) -> bool: + return bool((self._map.get("fallback") or {}).get("enabled", False)) + + def resolve(self, agent_id: int, role: Optional[str] = None) -> ModelPolicy: + """Resolve the effective policy for an agent (default < role < agent_id).""" + merged = dict(self._default) + source = "default" + if role is not None and role in self._by_role: + merged.update(self._by_role[role]) + source = "by_role" + if agent_id in self._by_agent_id: + merged.update(self._by_agent_id[agent_id]) + source = "by_agent_id" + + provider = merged.get("provider", "openai") + # Resolve base_url: literal wins, else env var named by base_url_env. + base_url = merged.get("base_url") + if not base_url and merged.get("base_url_env"): + base_url = os.environ.get(merged["base_url_env"], "") or None + api_key_env = merged.get("api_key_env") or PROVIDERS.get(provider, {}).get( + "api_key_env", "LLM_API_KEY" + ) + return ModelPolicy( + agent_id=agent_id, + role=role, + provider=provider, + model=merged["model"], + base_url=base_url, + api_key_env=api_key_env, + temperature=merged.get("temperature"), + seed=merged.get("seed"), + source=source, + ) + + +def policy_config_dict(policy: ModelPolicy) -> Dict[str, Any]: + """Build the CAMEL model_config_dict from a policy (temperature/seed).""" + cfg: Dict[str, Any] = {} + if policy.temperature is not None: + cfg["temperature"] = policy.temperature + if policy.seed is not None: + cfg["seed"] = policy.seed + return cfg + + +def build_backend(policy: ModelPolicy): + """Construct a CAMEL OpenAI-compatible backend for a resolved policy. + + Imports ``camel`` lazily so the routing logic above stays testable without + the simulation stack installed. + """ + api_key = policy.resolve_api_key() + if not api_key: + raise ModelRoutingError( + f"agent_id={policy.agent_id}: no API key in env var '{policy.api_key_env}'" + ) + + from camel.models import ModelFactory # lazy + from camel.types import ModelPlatformType # lazy + + return ModelFactory.create( + model_platform=ModelPlatformType.OPENAI, + model_type=policy.model, + api_key=api_key, + url=policy.base_url or None, + model_config_dict=policy_config_dict(policy) or None, + ) diff --git a/backend/app/utils/locale.py b/backend/app/utils/locale.py index 49aee65331..978f59d9b4 100644 --- a/backend/app/utils/locale.py +++ b/backend/app/utils/locale.py @@ -68,3 +68,4 @@ def get_language_instruction() -> str: locale = get_locale() lang_config = _languages.get(locale, _languages.get('zh', {})) return lang_config.get('llmInstruction', '请使用中文回答。') + diff --git a/backend/scripts/run_reddit_simulation.py b/backend/scripts/run_reddit_simulation.py index 14907cbda5..59c743abf5 100644 --- a/backend/scripts/run_reddit_simulation.py +++ b/backend/scripts/run_reddit_simulation.py @@ -121,8 +121,11 @@ def setup_oasis_logging(log_dir: str): import oasis from oasis import ( ActionType, + AgentGraph, LLMAction, ManualAction, + SocialAgent, + UserInfo, generate_reddit_agent_graph ) except ImportError as e: @@ -130,6 +133,14 @@ def setup_oasis_logging(log_dir: str): print("请先安装: pip install oasis-ai camel-ai") sys.exit(1) +# Multi-model routing + observability (Issue #21). +from app.services.model_router import ModelRouter, ModelRoutingError, build_backend +from app.services.llm_telemetry import ( + TelemetrySink, + instrument_backend, + load_prices, +) + # IPC相关常量 IPC_COMMANDS_DIR = "ipc_commands" @@ -402,18 +413,27 @@ class RedditSimulationRunner: ActionType.MUTE, ] - def __init__(self, config_path: str, wait_for_commands: bool = True): + def __init__( + self, + config_path: str, + wait_for_commands: bool = True, + model_map_path: Optional[str] = None, + ): """ 初始化模拟运行器 - + Args: config_path: 配置文件路径 (simulation_config.json) wait_for_commands: 模拟完成后是否等待命令(默认True) + model_map_path: 多模型路由配置 (agent_model_map.yaml),可选 """ self.config_path = config_path self.config = self._load_config() self.simulation_dir = os.path.dirname(config_path) self.wait_for_commands = wait_for_commands + # Per-agent model routing map (Issue #21). CLI flag wins over config. + self.model_map_path = model_map_path or self.config.get("model_map_path") + self.telemetry_sink = None self.env = None self.agent_graph = None self.ipc_handler = None @@ -465,7 +485,119 @@ def _create_model(self): model_platform=ModelPlatformType.OPENAI, model_type=llm_model, ) - + + # --- Multi-model routing + observability (Issue #21) ------------------- # + + def _roles_by_agent_id(self) -> Dict[int, Optional[str]]: + """Map agent_id -> entity_type (role) from agent_configs.""" + roles: Dict[int, Optional[str]] = {} + for idx, cfg in enumerate(self.config.get("agent_configs", [])): + roles[cfg.get("agent_id", idx)] = cfg.get("entity_type") + return roles + + def _build_routed_models(self, agent_count: int): + """ + Build a deterministic agent_id -> instrumented model backend map from + the model map (agent_model_map.yaml), with per-call telemetry. + + Returns (agent_models, routes). Raises ModelRoutingError on a bad route + unless fallback is enabled in the map, in which case the agent falls + back to the map's `default` policy. + """ + router = ModelRouter.from_file(self.model_map_path) + prices_path = os.path.join(_project_root, "configs", "model_prices.yaml") + self.telemetry_sink = TelemetrySink( + path=os.path.join(self.simulation_dir, "llm_telemetry.jsonl"), + prices=load_prices(prices_path), + ) + + roles = self._roles_by_agent_id() + agent_models: Dict[int, Any] = {} + routes: List[Dict[str, Any]] = [] + + for agent_id in range(agent_count): + policy = router.resolve(agent_id, roles.get(agent_id)) + try: + backend = build_backend(policy) + except ModelRoutingError: + if not router.fallback_enabled: + raise + policy = router.resolve(agent_id, None) # default layer + policy.source = "fallback_default" + backend = build_backend(policy) + + agent_models[agent_id] = instrument_backend( + backend, + context={ + "agent_id": agent_id, + "role": policy.role, + "provider": policy.provider, + "model": policy.model, + }, + sink=self.telemetry_sink, + ) + routes.append(policy.to_audit()) + + return agent_models, routes + + def _write_model_routing_audit(self, routes: List[Dict[str, Any]]): + """Write redacted per-agent model routes for reproducibility/debugging.""" + audit_path = os.path.join(self.simulation_dir, "model_routing_audit.jsonl") + timestamp = datetime.now().isoformat() + with open(audit_path, "w", encoding="utf-8") as f: + for route in routes: + f.write(json.dumps({"timestamp": timestamp, **route}, ensure_ascii=False) + "\n") + + print(f"Model routing audit: {audit_path}") + for route in routes: + print( + " - agent_id={agent_id} model={model} provider={provider} " + "source={source} api_key_set={api_key_set}".format(**route) + ) + + async def _generate_reddit_agent_graph_with_models( + self, + profile_path: str, + agent_models: Dict[int, Any], + ) -> "AgentGraph": + """ + Local copy of OASIS' Reddit graph construction with per-agent models. + + OASIS' generate_reddit_agent_graph accepts one model argument and passes + that same object to every SocialAgent, so it cannot pin agent_id -> model + deterministically. This rebuilds the graph wiring agent_models[i]. + """ + agent_graph = AgentGraph() + with open(profile_path, "r", encoding="utf-8") as file: + agent_info = json.load(file) + + async def process_agent(i): + profile = {"nodes": [], "edges": [], "other_info": {}} + profile["other_info"]["user_profile"] = agent_info[i]["persona"] + profile["other_info"]["mbti"] = agent_info[i]["mbti"] + profile["other_info"]["gender"] = agent_info[i]["gender"] + profile["other_info"]["age"] = agent_info[i]["age"] + profile["other_info"]["country"] = agent_info[i]["country"] + + user_info = UserInfo( + name=agent_info[i]["username"], + description=agent_info[i]["bio"], + profile=profile, + recsys_type="reddit", + ) + + agent = SocialAgent( + agent_id=i, + user_info=user_info, + agent_graph=agent_graph, + model=agent_models[i], + available_actions=self.AVAILABLE_ACTIONS, + ) + agent_graph.add_agent(agent) + + await asyncio.gather(*[process_agent(i) for i in range(len(agent_info))]) + return agent_graph + def _get_active_agents_for_round( self, env, @@ -553,20 +685,32 @@ async def run(self, max_rounds: int = None): print(f" - 最大轮数限制: {max_rounds}") print(f" - Agent数量: {len(self.config.get('agent_configs', []))}") - print("\n初始化LLM模型...") - model = self._create_model() - print("加载Agent Profile...") profile_path = self._get_profile_path() if not os.path.exists(profile_path): print(f"错误: Profile文件不存在: {profile_path}") return - - self.agent_graph = await generate_reddit_agent_graph( - profile_path=profile_path, - model=model, - available_actions=self.AVAILABLE_ACTIONS, - ) + + print("\n初始化LLM模型...") + if self.model_map_path: + # Multi-model path (Issue #21): per-agent routing + telemetry. + with open(profile_path, "r", encoding="utf-8") as f: + profile_count = len(json.load(f)) + print(f"使用多模型路由: {self.model_map_path}") + agent_models, routes = self._build_routed_models(profile_count) + self._write_model_routing_audit(routes) + self.agent_graph = await self._generate_reddit_agent_graph_with_models( + profile_path=profile_path, + agent_models=agent_models, + ) + else: + # Default single-model path (unchanged). + model = self._create_model() + self.agent_graph = await generate_reddit_agent_graph( + profile_path=profile_path, + model=model, + available_actions=self.AVAILABLE_ACTIONS, + ) db_path = self._get_db_path() if os.path.exists(db_path): @@ -639,7 +783,11 @@ async def run(self, max_rounds: int = None): agent: LLMAction() for _, agent in active_agents } - + + # Stamp telemetry records produced during this step with the round. + if self.telemetry_sink is not None: + self.telemetry_sink.current_round = round_num + await self.env.step(actions) if (round_num + 1) % 10 == 0 or round_num == 0: @@ -654,7 +802,17 @@ async def run(self, max_rounds: int = None): print(f"\n模拟循环完成!") print(f" - 总耗时: {total_elapsed:.1f}秒") print(f" - 数据库: {db_path}") - + + # LLM telemetry summary (Issue #21). + if self.telemetry_sink is not None: + summary = self.telemetry_sink.summary() + print(f" - LLM telemetry: {self.telemetry_sink.path}") + print( + " calls={llm_calls} tokens_in={tokens_in} tokens_out={tokens_out} " + "cost_usd_est={cost_usd_est} parse_errors={parse_errors} " + "errors={errors}".format(**summary) + ) + # 是否进入等待命令模式 if self.wait_for_commands: print("\n" + "=" * 60) @@ -712,7 +870,13 @@ async def main(): default=False, help='模拟完成后立即关闭环境,不进入等待命令模式' ) - + parser.add_argument( + '--model-map', + type=str, + default=None, + help='多模型路由配置文件 (agent_model_map.yaml),启用 per-agent 模型路由与遥测' + ) + args = parser.parse_args() # 在 main 函数开始时创建 shutdown 事件 @@ -729,7 +893,8 @@ async def main(): runner = RedditSimulationRunner( config_path=args.config, - wait_for_commands=not args.no_wait + wait_for_commands=not args.no_wait, + model_map_path=args.model_map, ) await runner.run(max_rounds=args.max_rounds) diff --git a/backend/tests/test_model_routing.py b/backend/tests/test_model_routing.py new file mode 100644 index 0000000000..1ca4f9ae07 --- /dev/null +++ b/backend/tests/test_model_routing.py @@ -0,0 +1,331 @@ +"""Tests for multi-model routing + telemetry (Issue #21). + +Pure-logic tests: no real LLM endpoints and no `camel` import. The routing +resolution/validation and the telemetry wrapper are exercised with fakes, so +this suite runs in CI without the simulation stack. +""" + +import asyncio +import json +import os +import sys +from types import SimpleNamespace + +import pytest + +# Make `app` importable regardless of pytest rootdir. +_BACKEND_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) +if _BACKEND_DIR not in sys.path: + sys.path.insert(0, _BACKEND_DIR) + +from app.services.model_router import ( # noqa: E402 + ModelRouter, + ModelRoutingError, + policy_config_dict, + validate_model_map, +) +from app.services.llm_telemetry import ( # noqa: E402 + TelemetrySink, + estimate_cost, + instrument_backend, + load_prices, +) + + +def _base_map(): + return { + "version": 1, + "default": { + "provider": "openai", + "model": "gpt-4o-mini", + "api_key_env": "LLM_API_KEY", + "temperature": 0.7, + "seed": None, + }, + "fallback": {"enabled": False}, + "by_role": { + "FinancialInstitution": {"provider": "vllm", "model": "qwen-local", "temperature": 0.3} + }, + "by_agent_id": { + 0: {"provider": "vllm", "model": "mistral-local", "temperature": 0.5, "seed": 42} + }, + } + + +# --------------------------------------------------------------------------- # +# Resolution precedence +# --------------------------------------------------------------------------- # + +def test_resolve_precedence_agent_over_role_over_default(): + router = ModelRouter(_base_map()) + + # agent_id 0 has an explicit entry -> wins even though its role also matches + p0 = router.resolve(0, role="FinancialInstitution") + assert p0.model == "mistral-local" + assert p0.source == "by_agent_id" + assert p0.seed == 42 + assert p0.temperature == 0.5 + + # agent_id 1 matches by_role only + p1 = router.resolve(1, role="FinancialInstitution") + assert p1.model == "qwen-local" + assert p1.source == "by_role" + assert p1.temperature == 0.3 + + # agent_id 2 with no matching layer -> default + p2 = router.resolve(2, role="Person") + assert p2.model == "gpt-4o-mini" + assert p2.source == "default" + + +def test_resolve_base_url_from_env(monkeypatch): + m = _base_map() + m["default"]["base_url_env"] = "MY_BASE_URL" + monkeypatch.setenv("MY_BASE_URL", "http://example.test/v1") + router = ModelRouter(m) + assert router.resolve(5).base_url == "http://example.test/v1" + + +def test_literal_base_url_wins_over_env(monkeypatch): + m = _base_map() + m["default"]["base_url"] = "http://literal/v1" + m["default"]["base_url_env"] = "MY_BASE_URL" + monkeypatch.setenv("MY_BASE_URL", "http://fromenv/v1") + assert ModelRouter(m).resolve(5).base_url == "http://literal/v1" + + +# --------------------------------------------------------------------------- # +# Fallback +# --------------------------------------------------------------------------- # + +def test_fallback_disabled_by_default(): + m = _base_map() + del m["fallback"] + assert ModelRouter(m).fallback_enabled is False + + +def test_fallback_enabled_flag(): + m = _base_map() + m["fallback"]["enabled"] = True + assert ModelRouter(m).fallback_enabled is True + + +# --------------------------------------------------------------------------- # +# Validation +# --------------------------------------------------------------------------- # + +def test_validate_rejects_literal_api_key(): + m = _base_map() + m["default"]["api_key"] = "sk-secret" + with pytest.raises(ModelRoutingError, match="api_key"): + validate_model_map(m) + + +def test_validate_rejects_bad_version(): + m = _base_map() + m["version"] = 2 + with pytest.raises(ModelRoutingError, match="version"): + validate_model_map(m) + + +def test_validate_rejects_unknown_field(): + m = _base_map() + m["default"]["typo_field"] = "x" + with pytest.raises(ModelRoutingError, match="unknown field"): + validate_model_map(m) + + +def test_validate_rejects_non_int_seed(): + m = _base_map() + m["default"]["seed"] = "not-an-int" + with pytest.raises(ModelRoutingError, match="seed"): + validate_model_map(m) + + +def test_validate_rejects_non_int_agent_id(): + m = _base_map() + m["by_agent_id"] = {"zero": {"model": "x"}} + with pytest.raises(ModelRoutingError, match="integers"): + validate_model_map(m) + + +def test_validate_rejects_unknown_provider(): + m = _base_map() + m["default"]["provider"] = "mystery" + with pytest.raises(ModelRoutingError, match="provider"): + validate_model_map(m) + + +# --------------------------------------------------------------------------- # +# Temperature / seed propagation +# --------------------------------------------------------------------------- # + +def test_policy_config_dict_includes_temperature_and_seed(): + router = ModelRouter(_base_map()) + cfg = policy_config_dict(router.resolve(0)) + assert cfg == {"temperature": 0.5, "seed": 42} + + +def test_policy_config_dict_omits_null_seed(): + router = ModelRouter(_base_map()) + cfg = policy_config_dict(router.resolve(9)) # default: seed=None + assert cfg == {"temperature": 0.7} + assert "seed" not in cfg + + +# --------------------------------------------------------------------------- # +# Cost estimation +# --------------------------------------------------------------------------- # + +def test_estimate_cost_known_model(): + prices = {"gpt-4o-mini": {"in": 0.00015, "out": 0.0006}} + cost, unknown = estimate_cost("gpt-4o-mini", 1000, 1000, prices) + assert unknown is False + assert cost == pytest.approx(0.00075) + + +def test_estimate_cost_unknown_model_flagged(): + cost, unknown = estimate_cost("who-knows", 1000, 1000, {}) + assert cost == 0.0 + assert unknown is True + + +# --------------------------------------------------------------------------- # +# Telemetry wrapper +# --------------------------------------------------------------------------- # + +def _fake_response(content, prompt_tokens=10, completion_tokens=20): + usage = SimpleNamespace(prompt_tokens=prompt_tokens, completion_tokens=completion_tokens) + message = SimpleNamespace(content=content) + choice = SimpleNamespace(message=message) + return SimpleNamespace(usage=usage, choices=[choice]) + + +class _FakeBackend: + """Minimal stand-in for a CAMEL BaseModelBackend instance.""" + + def __init__(self, response): + self._response = response + self.model_config_dict = {"temperature": 0.5} + + def run(self, messages, response_format=None, tools=None): + return self._response + + async def arun(self, messages, response_format=None, tools=None): + return self._response + + +def _make_sink(tmp_path): + return TelemetrySink( + path=str(tmp_path / "llm_telemetry.jsonl"), + prices={"gpt-4o-mini": {"in": 0.00015, "out": 0.0006}}, + ) + + +def _read_lines(path): + with open(path, "r", encoding="utf-8") as f: + return [json.loads(line) for line in f if line.strip()] + + +def test_telemetry_run_captures_tokens_latency_hashes_cost(tmp_path): + sink = _make_sink(tmp_path) + sink.current_round = 3 + backend = _FakeBackend(_fake_response('{"action": "post"}')) + instrument_backend( + backend, + context={"agent_id": 7, "role": "Person", "provider": "openai", "model": "gpt-4o-mini"}, + sink=sink, + ) + + backend.run([{"role": "user", "content": "hello"}]) + + rows = _read_lines(sink.path) + assert len(rows) == 1 + rec = rows[0] + assert rec["agent_id"] == 7 + assert rec["round"] == 3 + assert rec["model"] == "gpt-4o-mini" + assert rec["tokens_in"] == 10 + assert rec["tokens_out"] == 20 + assert rec["temperature"] == 0.5 + assert rec["prompt_hash"] and rec["response_hash"] + assert rec["latency_ms"] >= 0 + assert rec["cost_usd_est"] == pytest.approx((10 / 1000) * 0.00015 + (20 / 1000) * 0.0006) + assert rec["output_valid_json"] is True + assert rec["error"] is None + # aggregates + assert sink.summary()["tokens_in"] == 10 + assert sink.summary()["llm_calls"] == 1 + + +def test_telemetry_arun_captures(tmp_path): + sink = _make_sink(tmp_path) + backend = _FakeBackend(_fake_response('{"ok": true}')) + instrument_backend( + backend, + context={"agent_id": 1, "role": None, "provider": "openai", "model": "gpt-4o-mini"}, + sink=sink, + ) + + asyncio.run(backend.arun([{"role": "user", "content": "hi"}])) + + rows = _read_lines(sink.path) + assert len(rows) == 1 + assert rows[0]["tokens_out"] == 20 + + +def test_telemetry_counts_parse_errors_on_non_json(tmp_path): + sink = _make_sink(tmp_path) + backend = _FakeBackend(_fake_response("this is not json")) + instrument_backend( + backend, + context={"agent_id": 0, "role": None, "provider": "openai", "model": "gpt-4o-mini"}, + sink=sink, + ) + + backend.run([{"role": "user", "content": "x"}]) + + rec = _read_lines(sink.path)[0] + assert rec["output_valid_json"] is False + assert sink.parse_errors == 1 + + +def test_telemetry_records_and_reraises_on_error(tmp_path): + sink = _make_sink(tmp_path) + + class _Boom(_FakeBackend): + def run(self, messages, response_format=None, tools=None): + raise RuntimeError("upstream 500") + + backend = _Boom(None) + instrument_backend( + backend, + context={"agent_id": 2, "role": None, "provider": "openai", "model": "gpt-4o-mini"}, + sink=sink, + ) + + with pytest.raises(RuntimeError, match="upstream 500"): + backend.run([{"role": "user", "content": "x"}]) + + rec = _read_lines(sink.path)[0] + assert rec["error"] is not None + assert rec["tokens_in"] == 0 + assert sink.errors == 1 + + +def test_telemetry_unknown_model_sets_leak_flag(tmp_path): + sink = TelemetrySink(path=str(tmp_path / "t.jsonl"), prices={}) + backend = _FakeBackend(_fake_response('{"a": 1}')) + instrument_backend( + backend, + context={"agent_id": 0, "role": None, "provider": "openai", "model": "mystery-model"}, + sink=sink, + ) + backend.run([{"role": "user", "content": "x"}]) + rec = _read_lines(sink.path)[0] + assert "cost_unknown_model" in rec["leak_flags"] + assert rec["cost_usd_est"] == 0.0 + + +def test_load_prices_missing_file_returns_empty(): + assert load_prices("/nonexistent/prices.yaml") == {} diff --git a/cases/PILOT-ARG-2025-Q1/README.md b/cases/PILOT-ARG-2025-Q1/README.md new file mode 100644 index 0000000000..b797e99afa --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/README.md @@ -0,0 +1,21 @@ +# PILOT-ARG-2025-Q1 + +Objetivo operativo: construir un caso piloto cualitativo y auditable para evaluar MiroFish en una predicción político-económica argentina con corte temporal estricto. + +Corte temporal x: 2025-01-31. + +Horizonte de predicción: +- Electoral: 2025-02-01 a 2025-10-26. +- Macroeconómico: 2025-02-01 a 2025-12-31. + +Qué se puede mirar para la corrida: +- Solo documentos fechados hasta el 31/01/2025 incluidos en input_pack_pre_x/. +- seed_bundle.md como consolidación narrativa derivada exclusivamente de esas fuentes. +- prompt_frozen/ como instrucción congelada antes de ejecutar. + +Qué no se puede mirar para la corrida: +- answer_key_post_x/. + +- Noticias, datos, resultados electorales, inflación anual final o análisis publicados después del 31/01/2025. + + diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/accessible_electoral_sources.md b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/accessible_electoral_sources.md new file mode 100644 index 0000000000..08568a6898 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/accessible_electoral_sources.md @@ -0,0 +1,24 @@ +# Accessible electoral sources replacing/triangulating Reuters + +Status: PASS for accessible alternatives. Reuters remains blocked, but the electoral ground truth can be supported without Reuters using the sources below. + +## Best replacement source +- GT4_BATIMES_20251026 — Buenos Aires Times, 2025-10-26. + - Accessible by automated fetch. + - Reports LLA at 40.84% of votes cast for Chamber of Deputies and Senate with 90% counted. + - Reports Fuerza Patria around 31.64%. + - States the result strengthened Milei in Congress and moved LLA close to the one-third needed to shield vetoes. + +## Official cross-check +- GT7_DINE_API_2025 — Dirección Nacional Electoral / Ministerio del Interior, Sistema de Publicación de Resultados Electorales. + - Accessible via official API. + - Local reproducible computation saved under `answer_key_post_x/sources/DINE_resultados_2025/`. + - For 2025 Generales, Provisorio, Diputado Nacional, summing party names containing `LIBERTAD AVANZA` across 24 districts gives 9,341,798 votes over 22,977,871 positive votes = 40.6556%. + - Use this as official-source cross-check, not as a replacement for all seat/gobernability claims. + +## Corroborating sources +- GT3_AP_20251027 — AP News, accessible. Reports LLA scored over 40% vs 31% Peronism, and picked up 14 Senate seats and 64 lower-house seats, enough to uphold vetoes/block impeachment efforts. +- GT6_NPR_20251027 — NPR, accessible. Carries the same AP account: over 40% vs 31%, 14 Senate seats and 64 lower-house seats. +- GT5_ELPAIS_20251027 — El País English, accessible. Reports Milei won midterms with more than 40% and discusses deputies/senators and congressional balance. + +Recommendation: use GT4 as the precise media numerical citation, GT7 as official reproducible cross-check, and AP/NPR/El País as triangulation for direction, >40% and legislative strengthening. Reuters can remain documented as blocked, not required for the answer key. diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/evaluator_packet.md b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/evaluator_packet.md new file mode 100644 index 0000000000..e550a38754 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/evaluator_packet.md @@ -0,0 +1,17 @@ +# Evaluator packet — PILOT-ARG-2025-Q1 + +Instrucciones: +1. Evaluar solo el output crudo en `model_output_raw/mirofish_report_raw.md` contra la rúbrica. +2. Para evaluación interna previa al ground truth, NO abrir `answer_key_post_x/ground_truth.md`. +3. Verificar que cada claim importante cite source_id válido de `input_pack_pre_x/manifest.csv`. +4. Marcar como fuga temporal cualquier dato posterior al 31/01/2025 formulado como conocido y no como predicción. + +Archivos a entregar al evaluador: +- `prompt_frozen/prompt.md` +- `model_output_raw/mirofish_report_raw.md` (pendiente: bloqueado hasta ejecutar MiroFish) +- `answer_key_post_x/rubric_1_5.md` +- `input_pack_pre_x/manifest.csv` para validar citas + +No incluir en modo A: +- `answer_key_post_x/ground_truth.md` +- `answer_key_post_x/source_manifest.csv` diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/first_eval.md b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/first_eval.md new file mode 100644 index 0000000000..7332906d09 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/first_eval.md @@ -0,0 +1,27 @@ +# Primera evaluación cualitativa + +Evaluator: Lucas / agente +Blind: no +Date: 2026-05-22 + +Objeto evaluado: `model_output_raw/mirofish_report_raw.md` +Runner: adapted current-repo runner, no CLI `mirofish`, no OASIS/Zep/Graphiti. +Modelo ejecutado: `gemini-2.5-flash-lite` vía endpoint Gemini OpenAI-compatible. +Nota de desviación: el modelo solicitado por el usuario, `gemini-2.0-flash-lite`, fue rechazado por el endpoint como no disponible para nuevos usuarios. Se usó `gemini-2.5-flash-lite` como reemplazo disponible y se documenta la desviación. + +| Dimensión | Score 1-5 | Evidencia del output | Comentario | +|---|---:|---|---| +| Especificidad | 4 | Run 1 da rango LLA 38-45%, probabilidades 15/50/35 y macro 30-40%; Runs 2 y 3 dan escenarios pero son menos numéricos en voto. | Buen nivel de rangos y escenarios. Penalización menor porque dos de tres runs evitan rango electoral explícito o cuantitativo fuerte. | +| Plausibilidad | 4 | El rango 38-45% de Run 1 incluye el desenlace electoral documentado en answer key como LLA ≈ 40-41%; escenarios B/C capturan fortalecimiento legislativo sin asumir mayoría propia. Macro 30-40% se alinea con inputs pre-corte BBVA 35%, pero queda sujeto a verificación final oficial de inflación. | Acierta dirección electoral y magnitud razonable sin precisión milagrosa. No se otorga 5 por incertidumbre macro y por variación entre runs. | +| Cobertura | 5 | Integra inflación, salarios, empleo, reservas, crawling peg, FMI, oposición, gobernabilidad, Congreso y percepción pública. | Cobertura amplia y consistente con variables exigidas. | +| Consistencia causal | 4 | Mecanismo: desinflación + salarios/empleo/percepción pública + reservas/crawling peg + fragmentación opositora/gobernabilidad. | Cadena causal plausible y trazable. Penalización menor porque algunas probabilidades electorales son inferidas con evidencia limitada reconocida por el propio output. | +| Ausencia post-corte | 5 | Escaneo de strings prohibidos no detecta datos específicos post-corte como 40,7%, 40,84%, Reuters 2025-10 o inflación final. El output formula las elecciones como predicción y cita source_ids pre-corte. | No hay fuga temporal obvia. Mencionar “octubre de 2025” es parte del horizonte, no leakage. | +| Utilidad | 5 | Produce escenarios, riesgos y señales tempranas: reservas, brecha, salario real, empleo, encuestas, FMI, inflación mensual, conflictividad social. | Útil para evaluación retrospectiva y para monitoreo. | + +Total: 27/30 + +Notas: +- Penalizar cualquier dato imposible de saber con los inputs: no se observó dato post-corte específico en el output evaluado. +- No premiar exactitud si parece fuga temporal: el output no da decimales post-corte; el acierto electoral es por rango, no por dato exacto. +- Separar acierto direccional de justificación causal: el score de plausibilidad reconoce buen rango electoral, pero no se maximiza por incertidumbre macro y variación entre runs. +- Esta evaluación corresponde al runner adaptado, no a una corrida completa de MiroFish con agentes sociales/OASIS. diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/ground_truth.md b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/ground_truth.md new file mode 100644 index 0000000000..f342dcd6cb --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/ground_truth.md @@ -0,0 +1,23 @@ +# Ground truth posterior a x + +## Resultado electoral +LLA ganó las legislativas de octubre de 2025 con algo más de 40% del voto nacional, fortaleciendo su posición legislativa. + +Rango ground truth recomendado para evaluación: LLA ≈ 40–41%. No exigir precisión decimal; evaluar si el output cae en el escenario 35–42% o anticipa correctamente una victoria/consolidación por encima de 40% sin fuga temporal. + +Fuente principal accesible de resultado provisional: Buenos Aires Times reportó que La Libertad Avanza obtuvo 40,84% de los votos para Diputados y Senado con 90% escrutado, frente a Fuerza Patria en torno a 31,64%, y que el resultado fortalecía a Milei en el Congreso y lo acercaba al tercio necesario para sostener vetos [GT4_BATIMES_20251026]. + +Cross-check oficial reproducible: la API del Sistema de Publicación de Resultados Electorales de la Dirección Nacional Electoral / Ministerio del Interior, consultada para 2025 Generales, Provisorio, Diputado Nacional, permite computar 24 distritos. Sumando agrupaciones con nombres que contienen `LIBERTAD AVANZA`, el total reproducible es 9.341.798 votos sobre 22.977.871 votos positivos, equivalente a 40,6556% [GT7_DINE_API_2025]. Esta cifra oficial computada es consistente con “algo más de 40%”, aunque no idéntica al 40,84% mediático por diferencias de corte/alcance. + +Fuentes de corroboración accesibles: AP y NPR reportaron que LLA superó el 40% frente a 31% del peronismo y que el oficialismo/aliados sumaron 14 bancas en Senado y 64 en Diputados, suficiente para sostener vetos presidenciales y bloquear intentos de impeachment [GT3_AP_20251027; GT6_NPR_20251027]. El País English también reportó la victoria con más de 40% y discutió la mejora parlamentaria [GT5_ELPAIS_20251027]. + +Reuters queda como referencia inicialmente propuesta pero bloqueada por acceso automatizado; ya no es necesaria como fuente principal del answer key. + +## Resultado macroeconómico +Inflación acumulada 2025: 31,5%, con IPC de diciembre de 2025 de 2,8%. Fuente oficial: INDEC, “Índice de Precios al Consumidor (IPC). Cobertura nacional. Diciembre de 2025”, publicado en enero de 2026, guardado en source_manifest.csv [GT2_INDEC_IPC_202512]. + +## Gobernabilidad +El resultado fortaleció al oficialismo en Congreso. La evaluación debe distinguir entre: (a) mejora de negociación y capacidad de sostener vetos, respaldada por AP/NPR/Buenos Aires Times; y (b) mayoría propia plena, que no debe asumirse sin evidencia adicional. + +## Tensiones persistentes +Reservas, tipo de cambio, empleo, salario real, FMI, gobernabilidad. diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/quality_audit_pre_run.md b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/quality_audit_pre_run.md new file mode 100644 index 0000000000..dd8c460e0c --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/quality_audit_pre_run.md @@ -0,0 +1,78 @@ +# Quality audit pre-run — PILOT-ARG-2025-Q1 + +Date: 2026-05-21 +Scope: opción 3, sin ejecutar MiroFish. Auditoría del paquete experimental, no evaluación de predicción. + +## 1. Separación temporal + +Estado: PASS. + +Evidencia: +- `input_pack_pre_x/manifest.csv` contiene 6 fuentes con `published_date <= 2025-01-31`. +- `model_output_raw/artifacts/pre_cutoff_scan.py` no detectó strings prohibidos en `input_pack_pre_x`. +- `answer_key_post_x/` contiene los datos post-corte y está separado físicamente de `input_pack_pre_x/` y `prompt_frozen/`. + +Riesgo residual: +- El escaneo de contaminación temporal es heurístico. Detecta strings obvios, no todo posible leak semántico. +- Las fuentes HTML pre-corte pueden incluir boilerplate dinámico del sitio al momento de acceso. Mitigación: se preservan extractos relevantes en `input_pack_pre_x/excerpts/` y hashes de los archivos completos. + +## 2. Seed bundle + +Estado: PASS con observaciones menores. + +Fortalezas: +- Resume solo variables disponibles pre-corte: inflación, crawling peg, reservas, empleo/salarios, aprobación, Congreso, oposición y FMI. +- Cita source_id en cada claim narrativo. +- No incluye resultado electoral real, porcentaje de LLA, inflación final 2025 ni referencias a fuentes post-corte. +- Es suficientemente informativo para orientar causalidad sin dar el desenlace. + +Observaciones: +- La frase “aprobación presidencial se mantenía competitiva” es interpretativa. Es aceptable porque está anclada en fuente de opinión pública pre-corte, pero el evaluador debe verificar si el output la sobreconvierte en predicción determinista. +- La frase “necesidad de aumentar bancas” puede orientar al modelo hacia consolidación legislativa, pero es parte de la pregunta operacional y estaba en análisis pre-corte. No se considera fuga temporal. +- El bundle no fuerza rangos numéricos de voto ni inflación 2025, lo cual preserva valor predictivo. + +Decisión: +- No modificar `seed_bundle.md` para no reabrir el input congelado. Mantener hash y trazabilidad. + +## 3. Prompt congelado + +Estado: PASS. + +Fortalezas: +- Obliga a responder con rangos, escenarios probabilísticos, mecanismos causales, riesgos y evidencia. +- Prohíbe explícitamente información posterior al 31/01/2025. +- Exige citar source_id por claim importante. + +Riesgo residual: +- El prompt pide “simulá la evolución político-económica argentina durante 2025”; un modelo con conocimiento propio posterior podría filtrar datos. Mitigación: restricciones de sistema, configuración sin web/RAG/memoria y rúbrica E penalizan fugas temporales. + +## 4. Rúbrica + +Estado: PASS con mejora aplicada. + +Fortalezas: +- Seis dimensiones separan especificidad, plausibilidad, cobertura, causalidad, temporalidad y utilidad. +- La dimensión E penaliza uso de información posterior. + +Mejora aplicada: +- Se reforzó la rúbrica para indicar explícitamente que no debe premiarse exactitud si parece fuga temporal, y que la plausibilidad debe ponderar dirección/magnitud separada de causalidad. + +## 5. Answer key + +Estado: PASS. + +Fortalezas: +- Reuters dejó de ser fuente bloqueante. +- Se agregaron fuentes accesibles equivalentes: Buenos Aires Times, AP, NPR, El País English. +- Se agregó cross-check oficial vía API de la Dirección Nacional Electoral / Ministerio del Interior (`GT7_DINE_API_2025`). + +Matiz importante: +- Buenos Aires Times reporta 40,84% con 90% escrutado y AP/NPR/El País reportan “más de 40%”. +- La computación reproducible desde la API oficial para Diputado Nacional, sumando nombres que contienen `LIBERTAD AVANZA` en 24 distritos, da 40,6556% sobre votos positivos. Esto es consistente con “algo más de 40%”, pero no idéntico al 40,84% reportado por medios. +- Para evaluación, usar rango ground truth recomendado: LLA ≈ 40–41%, no exigir exactitud decimal. + +## 6. Conclusión + +El paquete está listo como caso experimental pendiente de corrida. La principal limitación ya no es la evidencia post-corte sino la falta del CLI `mirofish` para producir output crudo. + +Estado final de auditoría: PASS / READY_WITH_BLOCKED_RUN. diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/reuters_scrapling_attempt.md b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/reuters_scrapling_attempt.md new file mode 100644 index 0000000000..9327be4163 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/reuters_scrapling_attempt.md @@ -0,0 +1,25 @@ +# Reuters Scrapling attempt + +Objetivo: usar Scrapling para obtener una copia auditable de la nota de Reuters usada en el ground truth electoral. + +URL objetivo: +https://www.reuters.com/world/americas/argentines-vote-high-stakes-test-mileis-libertarian-vision-2025-10-26/ + +Comandos/acciones ejecutadas: +- `python -m venv .hermes-scrapling-venv` +- `.hermes-scrapling-venv/bin/pip install scrapling==0.4.8 curl_cffi playwright browserforge camoufox patchright msgspec` +- `.hermes-scrapling-venv/bin/python -m patchright install chromium` +- `python model_output_raw/artifacts/scrapling_reuters_fetch.py` +- `python model_output_raw/artifacts/scrapling_reuters_browser_fetch.py` + +Resultados: +- `scrapling.Fetcher.get`: HTTP 401, cuerpo vacío. +- `scrapling.StealthyFetcher.fetch`: HTTP 401, cuerpo vacío. +- `scrapling.DynamicFetcher.fetch`: HTTP 401, cuerpo vacío. + +Evidencia: +- Log estático: `model_output_raw/artifacts/scrapling_reuters_fetch.log` +- Log browser/stealth: `model_output_raw/artifacts/scrapling_reuters_browser_fetch.log` +- HTML/TXT resultantes en `answer_key_post_x/sources/` quedaron vacíos para los fetches Scrapling porque Reuters respondió 401. + +Conclusión: Scrapling fue probado pero no salteó el bloqueo de Reuters en este entorno. El item Reuters sigue en NEEDS_REVIEW y requiere copia licenciada/manual o fuente alternativa accesible para auditoría externa. diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/rubric_1_5.md b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/rubric_1_5.md new file mode 100644 index 0000000000..1f8429d952 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/rubric_1_5.md @@ -0,0 +1,35 @@ +# Rúbrica 1-5 + +## A. Especificidad +1 = generalidades sin rangos. +3 = predicción direccional con algunos rangos. +5 = rangos claros, escenarios probabilísticos, actores e instituciones bien definidos. + +## B. Plausibilidad / alineación al desenlace +1 = escenario contrario a los hechos. +3 = acierta dirección pero falla magnitud. +5 = se acerca a voto, inflación y gobernabilidad sin sobreajustar. + +Nota de evaluación: no premiar precisión decimal si no está causalmente justificada por inputs pre-corte. Separar acierto direccional, magnitud aproximada y explicación causal. + +## C. Cobertura +1 = mira solo una variable. +3 = cubre política + inflación, omite riesgos. +5 = integra macro, opinión pública, Congreso, BCRA, reservas, oposición y sector externo. + +## D. Consistencia causal +1 = saltos lógicos. +3 = cadena causal plausible pero incompleta. +5 = mecanismo claro, trazable y basado en evidencia pre-corte. + +## E. Ausencia de información posterior +1 = menciona hechos post-corte. +3 = no hay fuga obvia, pero lenguaje ambiguo. +5 = todo está formulado como predicción y citado a inputs válidos. + +Regla anti-leakage: si el output menciona datos específicos imposibles de conocer con los inputs —por ejemplo resultados finales, porcentajes exactos, nombres de fuentes post-corte o inflación final— puntuar E como 1 aunque otras dimensiones parezcan buenas. No premiar exactitud atribuible a fuga temporal. + +## F. Utilidad +1 = resumen genérico. +3 = útil para análisis retrospectivo. +5 = produce escenarios, riesgos, señales tempranas y supuestos vulnerables. diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/s2_plan.md b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/s2_plan.md new file mode 100644 index 0000000000..6885663b4a --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/s2_plan.md @@ -0,0 +1,18 @@ +# S2 plan + +Evaluadores: mínimo 2. + +Modo A: evaluación interna sin ground truth. +- Mide especificidad, cobertura, causalidad, temporalidad, utilidad. + +Modo B: evaluación posterior con ground truth. +- Agrega plausibilidad/alineación al desenlace. + +Se reportará: +- score individual; +- promedio; +- desacuerdo por dimensión; +- comentarios cualitativos; +- decisión: aceptar caso, ajustar rúbrica o repetir corrida. + +Estado actual: NEEDS_REVIEW/BLOCKED hasta generar output crudo real de MiroFish. diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/source_manifest.csv b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/source_manifest.csv new file mode 100644 index 0000000000..678647df55 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/source_manifest.csv @@ -0,0 +1,8 @@ +source_id,title,publisher,url,published_date,accessed_date,local_path,sha256,note +GT1_REUTERS_20251026,Argentina's midterm election hands decisive win to Milei's libertarian vision,Reuters,https://www.reuters.com/world/americas/argentines-vote-high-stakes-test-mileis-libertarian-vision-2025-10-26/,2025-10-26,2026-05-21,answer_key_post_x/sources/Reuters_20251026_access_blocked.html,c23e166c0e4305ce8cd765f4bb60c7214fa163d467010e1e7a365b40583bbc18,Automated fetch returned access-control page; Scrapling static/stealth/dynamic attempts on 2026-05-21 also returned HTTP 401 with empty body. User supplied Reuters fact in task prompt. Replace with licensed/exported copy or alternative accessible source for external audit. +GT2_INDEC_IPC_202512,Índice de Precios al Consumidor (IPC). Cobertura nacional. Diciembre de 2025,INDEC,https://www.indec.gob.ar/uploads/informesdeprensa/ipc_01_266741F036E8.pdf,2026-01-13,2026-05-21,answer_key_post_x/sources/INDEC_IPC_Dic2025.pdf,bb929e383b690e1caeb0f935bcae083a6ac4ac6c6ccd99c845c1657e60ae1219,Official post-cutoff inflation source. +GT3_AP_20251027,Milei triumphs in Argentine midterm elections,AP News,https://apnews.com/article/argentina-midterm-election-javier-milei-66d7c03825a7a0f56ce5808ff3ac1df4,2025-10-27,2026-05-21,answer_key_post_x/sources/AP_Milei_midterms_20251027.html,aebd18c380e54acc3bb5090e4f5e2595a61c845d79afdc5e27c886ffd64852b8,"Accessible post-cutoff source confirming LLA/Milei midterm win, vote share over 40%, and/or strengthened congressional position." +GT4_BATIMES_20251026,Decisive win for Milei’s La Libertad Avanza in key midterm election,Buenos Aires Times,https://www.batimes.com.ar/news/argentina/decisive-win-for-mileis-la-libertad-avanza-in-key-midterm-election.phtml,2025-10-26,2026-05-21,answer_key_post_x/sources/BATimes_LLA_midterm_20251026.html,92251b37b6d27a12d7fcf3d7bcd36db1844fa6fadffb2aa9f52139aa6d55d44b,"Accessible post-cutoff source with precise reported figure: LLA 40.84% with 90% counted, Fuerza Patria 31.64%, and veto-shielding implications." +GT5_ELPAIS_20251027,Milei wins Argentina’s midterm elections with more than 40% of the vote,El País English,https://english.elpais.com/international/2025-10-27/milei-wins-argentinas-midterm-elections-with-more-than-40-of-the-vote.html,2025-10-27,2026-05-21,answer_key_post_x/sources/ElPais_Milei_midterms_20251027.html,8f66299425e60df894bad91b58c08383913b3ecf12983395769e8dc393948e00,"Accessible post-cutoff source confirming LLA/Milei midterm win, vote share over 40%, and/or strengthened congressional position." +GT6_NPR_20251027,Milei triumphs in Argentine midterm elections,NPR,https://www.npr.org/2025/10/27/g-s1-95158/milei-triumphs-argentine-midterm-elections,2025-10-27,2026-05-21,answer_key_post_x/sources/NPR_Milei_midterms_20251027.html,ef4278baa6f82784b70a4fc48b5df5f6d32aaea6022ed66521ba8b3c4ed15c6a,"Accessible post-cutoff source confirming LLA/Milei midterm win, vote share over 40%, and/or strengthened congressional position." +GT7_DINE_API_2025,Sistema de Publicación de Resultados Electorales — 2025 Generales API totalizado Diputado Nacional,Dirección Nacional Electoral / Ministerio del Interior,https://resultados.elecciones.gob.ar/ and https://resultados.mininterior.gob.ar/api/,2025-10-28,2026-05-21,answer_key_post_x/sources/DINE_resultados_2025/official_api_computed_summary.json,feab502b4ac2b95992fc660fc6fa537e111cae433f1d5b53c53f0107be392019,Official accessible API cross-check. Computed from 24 district totalizado JSON responses for Diputado Nacional. LLA name-containing total: 40.6556% of positive votes; media source GT4 reports 40.84% with 90% counted. diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/AP_Milei_midterms_20251027.html b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/AP_Milei_midterms_20251027.html new file mode 100644 index 0000000000..afd8d60ed3 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/AP_Milei_midterms_20251027.html @@ -0,0 +1,22230 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Milei triumphs in Argentine midterm elections | AP News + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + +
+
+ +
+ +
+
+
+
+ + +
+
+ + + +
+ + + + + + + +
+
+ +
+ +

Milei triumphs in Argentine midterm elections closely watched by Washington

+ + + + + +
+ + +
+ + + +
+
+ + + + + +
+ + + + + + + +
+ +
+ + +
+ + + + + + +
+ + + + +
+ + + + +
+ + + + + + +
+ +
+ + + + +
+
+ Comments + +
+
+ + + + +

+ +

+
+ +
+
+ +
+
+
+ Share + +
+ + +
+ +
+ + + +
+
+
+
+ + + + + + + +
+ +
+ + + + + + + + + +
+ + + + +
+

BUENOS AIRES, Argentina (AP) — Argentina’s libertarian President Javier Milei won decisive victories in key districts in midterm elections Sunday, clinching a crucial vote of confidence that strengthens his ability to carry out his radical free-market experiment with billions of dollars in backing from the Trump administration.

In the election widely seen as a referendum on Milei’s past two years in office, his upstart La Libertad Avanza party scored over 40% of votes compared with 31% for the left-leaning populist opposition movement, known as Peronism, exceeding analysts’ projections.

Milei, a key ideological ally of U.S. President Donald Trump, said his party and allied blocs picked up 14 seats in the Senate and 64 in the lower house of Congress on Sunday, bolstering the government’s support in the legislature enough to uphold presidential vetoes and block impeachment efforts.

+ +

At La Libertad Avanza headquarters late Sunday in downtown Buenos Aires, a beaming Milei hailed the election sweep as a mandate to press forward with his spending cuts and introduce ambitious tax and labor reforms. The results also automatically position him as a candidate for reelection in 2027.

+ +
+
+ + + + + + + + + + + +
+ + + + + + + + + +
+ + + Related Stories + +
+
+ + + + + +
+ + + + +
+ + +
+ + +
+ + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+ +
+ + +
+ + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+ +
+ + +
+ + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+ +
+ + +
+ + + +
+
+ +

“The Argentine people have decided to leave behind 100 years of decadence,” Milei exulted as his supporters cheered, referring to a succession of Peronist governments that brought Argentina infamy for its inflationary spirals and sovereign debt defaults.

+ + + + + +
+ + +
+ + +
+
+
+ + + + +
+ AP AUDIO: Milei triumphs in Argentine midterm elections closely watched by Washington +
+
+ + + +

AP correspondent Charles de Ledesma reports Argentina’s libertarian President Javier Milei has won decisive victories in key districts across the country in midterm elections.

+ +

“Today we have passed the turning point. Today we begin the construction of a great Argentina.”

+ +
+
+
+
+ + + + + +
+ + + + + + + + + +
+

+ +

+
+
+
+
+ +

High stakes include $40 billion from the U.S.

Perhaps never has an Argentine legislative election generated so much interest in Washington and Wall Street.

Trump appeared to condition a $20 billion currency swap deal with Argentina’s central bank and an additional $20 billion loan from private banks on a good showing for Milei in national midterms, threatening to rescind the assistance for the cash-strapped country in the event of a Peronist victory.

“If he wins we’re staying with him, and if he doesn’t win, we’re gone,” Trump said after welcoming Milei to the White House earlier this month.

+ +

Those contentious comments added to mounting pressure on Milei, who has scrambled to avert a currency crisis since the Peronist opposition won a landslide victory in Buenos Aires provincial polls last month. Argentina’s bonds and currency nosedived as markets sensed that the public was losing patience with Milei’s reforms and that the midterm race would be tight.

To stem the run on the peso, Milei burned through billions of dollars in foreign exchange reserves to shore up the peso. In an extraordinary move, the U.S. Treasury then came to the rescue, selling dollars to help meet soaring demand for greenbacks and finalizing the credit line.

In the end, the Peronist alliance performed poorly, underscoring how weak the once-dominant movement has become in the Milei era, largely as a result of internal divisions. Markets were widely expected to rally on Monday.

“For foreign investors, this outcome is a relief because it shows that the Milei program can be sustainable,” said Marcelo J. García, the America’s director for the geopolitical risk consultancy Horizon Engage.

+ +

“It leaves the opposition weakened and fragmented, just as it was when Milei won the presidency in December 2023,” Garcia added.

The Peronist coalition has struggled to channel rising public anger with Milei’s painful austerity measures into a new political strategy after delivering the economic shambles that the chain saw-wielding outsider inherited in late 2023.

Trump, while on his way to Japan on Monday, posted on Truth Social that Milei was “doing a wonderful job” after his party beat expectations in midterm elections.

“Our confidence in him was justified by the People of Argentina,” Trump wrote.

Milei responded to Trump’s post, calling him “a great friend” of Argentina and thanking him for “trusting the Argentine people.”

A changed electoral map

+ +

The results showed Milei’s young libertarian party gaining support across the country — including in some surprising corners that have long been under the sway of Peronism.

In the closely watched Buenos Aires province, a Peronist stronghold home to nearly 40% of the electorate, La Libertad Avanza eked out a razor-thin victory Sunday. Just last month, the Peronists beat Milei’s party there by a whopping 14 percentage points.

Axel Kicillof, governor of Buenos Aires province and the most influential elected official in the Peronist opposition, criticized Trump for putting his thumb on the scale.

He warned that the billions of dollars in financial aid from the U.S. Treasury and investment banks would do nothing to help ordinary Argentines squeezed by Milei’s cuts to subsidies or forced out of business by a contracting economy.

“I want to make it clear that neither the U.S. government nor JP Morgan are charitable societies,” he said. “If they come to Argentina, it is for nothing other than to take a profit.”

With Milei’s efforts to deregulate the economy and scrap tariffs winning over Argentina’s powerful agriculture sector, La Libertad Avanza also swept Santa Fe, which dominates soybean production and processing, and Córdoba, another powerhouse farming province.

+ +

Risks remain for Milei as austerity hits hard

Despite Milei’s new momentum, experts caution that the irascible president still needs to court political allies to see through his agenda. Given the limited number of seats up for grabs in this election, it was mathematically impossible for Milei to secure a majority in either house.

“This victory is necessary, but not sufficient to maintain control of Congress,” said political consultant Sergio Berensztein. “The government must build a broad and effective coalition with like-minded forces.”

Seeking to capitalize quickly on Sunday’s results, Milei said he called the country’s powerful provincial governors to accelerate agreements on long-term economic reform.

Sunday’s outcome will also test public patience for Milei’s cost-cutting measures in the coming months. Although Milei’s budget cuts have significantly driven down inflation — from an annual high of 289% in April 2024 to 32% last month — the price increases still outpace salaries and pensions.

The electorate appears increasingly polarized between beneficiaries of Milei’s reforms and those who say they’re struggling to make ends meet like never before.

In the financial district of Puerto Madero, luxury car dealerships report sales surging since Milei scrapped import restrictions. Streets bustle with bankers who praise the president for ending a yearslong ban on selling dollars online. Fine restaurants serve Argentine oil executives who gush about his efforts to draw foreign investment.

But at a soup kitchen on the other side of Argentina’s Riachuelo River, Epifanía Contreras, 64, said she feels like she’s bearing the brunt of the cutbacks.

“You can’t live on 290,000 pesos a month with today’s inflation,” she said, describing how her $200 monthly pension has shriveled in value since Milei cut cost-of-living increases. “The situation is getting worse and worse.”

Reflecting widespread public resignation, electoral authorities reported a turnout rate of just under 68% Sunday, among the lowest recorded since the nation’s 1983 return to democracy. Voting is compulsory in Argentina.

“I vote out of obligation, nothing more,” said Matías Paredes, 50, a real estate broker whose foreign clientele vanished with Milei’s strong exchange rate. “None of these figures inspire optimism. We’re just choosing the lesser evil.”

___

Associated Press writers Almudena Calatrava and Débora Rey contributed to this report.

+
+ + + + +
+
+ + + + +
+ + +
+ + +
+ + + + + +
+ DeBre writes about Argentina, Bolivia, Chile, Paraguay and Uruguay for The Associated Press, based in Buenos Aires. Before moving to South America in 2024, she covered the Middle East reporting from Jerusalem, Cairo and Dubai. +
+ + + + +
+
+ + + +
+ + + + + + + + + +
+ + +
+ + + + +
+ +
+ + +
+ + + + + +

+ +

+
+ + + +
+ + + + + +
+
+
+

+ +

+
+ + + +
+ + + + + +

+ + +

+ +

+
+ + + + + + + + + + +
+ + + + + +
+

+ +

+
+ + +
+ + +
+ + + + +
+
+ + + + + + + + + diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/AP_Milei_midterms_20251027.html.txt b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/AP_Milei_midterms_20251027.html.txt new file mode 100644 index 0000000000..2d24f0893e --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/AP_Milei_midterms_20251027.html.txt @@ -0,0 +1 @@ +Milei triumphs in Argentine midterm elections | AP News Menu World SECTIONS Iran war Russia-Ukraine war Español China Asia Pacific Latin America Europe Africa TOP STORIES Residents burn an Ebola treatment center in Congo as anger grows over the outbreak Documents show Queen Elizabeth was eager for ex-Prince Andrew to become trade envoy The differences — and similarities — in the Trump and Putin visits to China Newsletters The Morning Wire Our flagship newsletter breaks down the biggest headlines of the day. The Afternoon Wire Get caught up on what you may have missed throughout the day. See All Newsletters U.S. SECTIONS Immigration Weather Education Transportation Abortion LGBTQ+ Notable Deaths TOP STORIES 3 dead in New Mexico and first responders decontaminated after exposure to unknown substance The teens who attacked the Islamic Center of San Diego were latest to cite prior atrocities Woman at center of sprawling Minnesota fraud gets nearly 42-year prison sentence Newsletters The Morning Wire Our flagship newsletter breaks down the biggest headlines of the day. See All Newsletters AP QUIZZES Test Your News I.Q. — take today’s quiz Politics SECTIONS 2026 Elections Election Results Election calendar White House Congress Supreme Court The latest AP-NORC polls Ground Game TOP STORIES Backlash to Trump's $1.8B settlement fund delays GOP immigration bill Facing intense internal pressure, DNC releases postelection autopsy that criticizes Kamala Harris Trump eases refrigerant rule in a bid to address surging grocery costs Newsletters Ground Game Exclusive insights and key stories from the world of politics. See All Newsletters Sports SECTIONS NBA MLB NFL NHL Golf Soccer FIFA World Cup Auto Racing TOP STORIES 2-time NASCAR champ Kyle Busch dies at 41 after being hospitalized with a 'severe illness' Howard Fendrich, award-winning AP national sports writer and tennis expert, dies at 55 FIFA’s big experiment may have made the World Cup too big for its own good Newsletters AP Top 25 Poll Alerts Get email alerts for every college football Top 25 Poll release. The Sports Wire Your home base for in-depth reporting from the world of sports. See All Newsletters Entertainment SECTIONS Movies Fashion Television Celebrity Interviews Music Books TOP STORIES Stephen Colbert is saying goodbye to 'The Late Show.' How it ends is still a secret Michigan woman whose name inspired band to become Greta Van Fleet dies at 95 The Cannes Film Festival away from the carpet, in photos Newsletters AP Entertainment Wire Get AP's first personalized newsletter delivering you entertainment news twice a week. See All Newsletters Business SECTIONS Tariffs Inflation Financial Markets Financial Wellness Technology TOP STORIES SpaceX reveals plans for what could be the biggest-ever initial public offering Nvidia Q1 results surpass Wall Street expectations thanks to massive AI chip demand House committee discusses modernizing the TSA as Trump seeks to privatize airport screening Science SECTIONS Space Animals The Ancient World Climate Medicine TOP STORIES Dying star resembles a billowing crystal ball in new telescope photo Fact Check Oddities TOP STORIES Lettuce introduce you to the live frog found in this grocery store salad bag A humpback whale briefly swallows kayaker in Chilean Patagonia — and it's all captured on camera Viral phenomenon in Argentina has young people identifying themselves as animals Nipper, stay! The future of a beloved dog statue on a New York warehouse is up in the air How 2 men claimed an absurd record by driving an old 3-wheel car the length of Africa 1 million bees make for bumper-to-buzzer traffic on a Tennessee highway ramp Be Well SECTIONS Trending Better health At home Working well For the climate Eating well TOP STORIES Why some people are seeing mental health benefits in everyday tasks Being a night owl may not be great for your heart but you can do something about it As demand for GLP-1 pills and shots surges, healthy habits are still key Newsletters Photography SECTIONS Photo Essays TOP STORIES How a low angle and fast lens shaped a photo of Jannik Sinner A photo captures President Trump and first lady awaiting British royals from rare White House angle Democrats are becoming a force in traditionally conservative The Villages Newsletters The World in Pictures Get The AP’s most compelling photographs sent directly to your inbox. See All Newsletters AP Investigations Climate SECTIONS Indigenous peoples and climate Climate Questions Climate Migration India Focus TOP STORIES Plastic bags don't go in the recycling bin. What should you do instead? Kansas farmers hit hard by weather extremes and growing costs, wheat crop could be worst since 1972 Atlantic hurricane season forecast to be milder than normal thanks to El Nino Health TOP STORIES RFK Jr. fires leaders of group that sets guidelines for preventive health screenings Being a night owl may not be great for your heart but you can do something about it As demand for GLP-1 pills and shots surges, healthy habits are still key What to know about the Bundibugyo virus, a species of Ebola causing an outbreak in Congo PCOS is now called PMOS. What the name change means for care US health officials order quarantine for 2 passengers from cruise ship with hantavirus outbreak Tech SECTIONS Artificial Intelligence Social Media TOP STORIES Google announces slew of AI advances, including a personal AI assistant coming soon One Tech Tip: Don't use rice for your device. Here's how to dry out your smartphone Tech CEOs summoned to Congress for another hearing on social media's risks for children Lifestyle SECTIONS Food & Recipes Gardening Fashion Homes Travel Pets TOP STORIES Why some people are seeing mental health benefits in everyday tasks How to mulch your garden beds without harming plants Colorful 'Greetings from' postcards reflected American innovation, idealism Religion TOP STORIES Thousands flocked to the National Mall in Washington for an America-themed prayer rally Pope and co-founder of Anthropic to launch pontiff's AI encyclical on May 25 Journey of a lifetime: A US teen Buddhist lama is now a monk studying in the Himalayan foothills Newsletters World of Faith Comprehensive global coverage of how religion shapes our world. See All Newsletters Español SECTIONS Política de EEUU Deportes Mundial de Fútbol FIFA TOP STORIES Gobierno de EEUU acepta retirar reclamos fiscales contra Trump como parte de acuerdo en demanda Trump firma orden para que los bancos revisen más de cerca el estatus migratorio de sus clientes Aumentan los temores en el Congo por la rápida propagación de un tipo raro de ébola Most watched videos Standards Quizzes Press Releases My Account AP News Code of Conduct World Iran war Russia-Ukraine war Español China Asia Pacific Latin America Europe Africa Middle East U.S. Immigration Weather Education Transportation Abortion LGBTQ+ Notable Deaths Politics 2026 Elections Election Results Election calendar White House Congress Supreme Court The latest AP-NORC polls Ground Game Sports NBA MLB NFL NHL Golf Soccer FIFA World Cup Auto Racing Entertainment Movies Fashion Television Celebrity Interviews Music Books Business Tariffs Inflation Financial Markets Financial Wellness Technology Science Space Animals The Ancient World Climate Medicine Fact Check Oddities Be Well Trending Better health At home Working well For the climate Eating well Newsletters Photography Photo Essays AP Investigations Climate Indigenous peoples and climate Climate Questions Climate Migration India Focus Health Tech Artificial Intelligence Social Media Lifestyle Food & Recipes Gardening Fashion Homes Travel Pets Religion Español Política de EEUU Deportes Mundial de Fútbol FIFA Most watched videos Standards Quizzes Press Releases My Account AP News Code of Conduct MORE World Iran war Russia-Ukraine war Español China Asia Pacific Latin America Europe Africa Middle East U.S. Immigration Weather Education Transportation Abortion LGBTQ+ Notable Deaths Politics 2026 Elections Election Results Election calendar White House Congress Supreme Court The latest AP-NORC polls Ground Game Sports NBA MLB NFL NHL Golf Soccer FIFA World Cup Auto Racing Entertainment Movies Fashion Television Celebrity Interviews Music Books Business Tariffs Inflation Financial Markets Financial Wellness Technology Science Space Animals The Ancient World Climate Medicine Fact Check Oddities Be Well Trending Better health At home Working well For the climate Eating well Newsletters Photography Photo Essays AP Investigations Climate Indigenous peoples and climate Climate Questions Climate Migration India Focus Health Tech Artificial Intelligence Social Media Lifestyle Food & Recipes Gardening Fashion Homes Travel Pets Religion Español Política de EEUU Deportes Mundial de Fútbol FIFA Most watched videos Standards Quizzes Press Releases My Account AP News Code of Conduct Sign in Search Query Submit Search Show Search Menu Submit Search World Iran war Russia-Ukraine war Español China Asia Pacific Latin America Europe Africa Middle East SECTIONS Iran war Russia-Ukraine war Español China Asia Pacific Latin America Europe Africa TOP STORIES Residents burn an Ebola treatment center in Congo as anger grows over the outbreak Documents show Queen Elizabeth was eager for ex-Prince Andrew to become trade envoy The differences — and similarities — in the Trump and Putin visits to China Newsletters The Morning Wire Our flagship newsletter breaks down the biggest headlines of the day. The Afternoon Wire Get caught up on what you may have missed throughout the day. See All Newsletters U.S. Immigration Weather Education Transportation Abortion LGBTQ+ Notable Deaths SECTIONS Immigration Weather Education Transportation Abortion LGBTQ+ Notable Deaths TOP STORIES 3 dead in New Mexico and first responders decontaminated after exposure to unknown substance The teens who attacked the Islamic Center of San Diego were latest to cite prior atrocities Woman at center of sprawling Minnesota fraud gets nearly 42-year prison sentence Newsletters The Morning Wire Our flagship newsletter breaks down the biggest headlines of the day. See All Newsletters AP QUIZZES Test Your News I.Q. — take today’s quiz Politics 2026 Elections Election Results Election calendar White House Congress Supreme Court The latest AP-NORC polls Ground Game SECTIONS 2026 Elections Election Results Election calendar White House Congress Supreme Court The latest AP-NORC polls Ground Game TOP STORIES Backlash to Trump's $1.8B settlement fund delays GOP immigration bill Facing intense internal pressure, DNC releases postelection autopsy that criticizes Kamala Harris Trump eases refrigerant rule in a bid to address surging grocery costs Newsletters Ground Game Exclusive insights and key stories from the world of politics. See All Newsletters Sports NBA MLB NFL NHL Golf Soccer FIFA World Cup Auto Racing SECTIONS NBA MLB NFL NHL Golf Soccer FIFA World Cup Auto Racing TOP STORIES 2-time NASCAR champ Kyle Busch dies at 41 after being hospitalized with a 'severe illness' Howard Fendrich, award-winning AP national sports writer and tennis expert, dies at 55 FIFA’s big experiment may have made the World Cup too big for its own good Newsletters AP Top 25 Poll Alerts Get email alerts for every college football Top 25 Poll release. The Sports Wire Your home base for in-depth reporting from the world of sports. See All Newsletters Entertainment Movies Fashion Television Celebrity Interviews Music Books SECTIONS Movies Fashion Television Celebrity Interviews Music Books TOP STORIES Stephen Colbert is saying goodbye to 'The Late Show.' How it ends is still a secret Michigan woman whose name inspired band to become Greta Van Fleet dies at 95 The Cannes Film Festival away from the carpet, in photos Newsletters AP Entertainment Wire Get AP's first personalized newsletter delivering you entertainment news twice a week. See All Newsletters Business Tariffs Inflation Financial Markets Financial Wellness Technology SECTIONS Tariffs Inflation Financial Markets Financial Wellness Technology TOP STORIES SpaceX reveals plans for what could be the biggest-ever initial public offering Nvidia Q1 results surpass Wall Street expectations thanks to massive AI chip demand House committee discusses modernizing the TSA as Trump seeks to privatize airport screening Science Space Animals The Ancient World Climate Medicine SECTIONS Space Animals The Ancient World Climate Medicine TOP STORIES Dying star resembles a billowing crystal ball in new telescope photo Fact Check Oddities TOP STORIES Lettuce introduce you to the live frog found in this grocery store salad bag A humpback whale briefly swallows kayaker in Chilean Patagonia — and it's all captured on camera Viral phenomenon in Argentina has young people identifying themselves as animals Nipper, stay! The future of a beloved dog statue on a New York warehouse is up in the air How 2 men claimed an absurd record by driving an old 3-wheel car the length of Africa 1 million bees make for bumper-to-buzzer traffic on a Tennessee highway ramp Be Well Trending Better health At home Working well For the climate Eating well SECTIONS Trending Better health At home Working well For the climate Eating well TOP STORIES Why some people are seeing mental health benefits in everyday tasks Being a night owl may not be great for your heart but you can do something about it As demand for GLP-1 pills and shots surges, healthy habits are still key Newsletters Photography Photo Essays SECTIONS Photo Essays TOP STORIES How a low angle and fast lens shaped a photo of Jannik Sinner A photo captures President Trump and first lady awaiting British royals from rare White House angle Democrats are becoming a force in traditionally conservative The Villages Newsletters The World in Pictures Get The AP’s most compelling photographs sent directly to your inbox. See All Newsletters AP Investigations Climate Indigenous peoples and climate Climate Questions Climate Migration India Focus SECTIONS Indigenous peoples and climate Climate Questions Climate Migration India Focus TOP STORIES Plastic bags don't go in the recycling bin. What should you do instead? Kansas farmers hit hard by weather extremes and growing costs, wheat crop could be worst since 1972 Atlantic hurricane season forecast to be milder than normal thanks to El Nino Health TOP STORIES RFK Jr. fires leaders of group that sets guidelines for preventive health screenings Being a night owl may not be great for your heart but you can do something about it As demand for GLP-1 pills and shots surges, healthy habits are still key What to know about the Bundibugyo virus, a species of Ebola causing an outbreak in Congo PCOS is now called PMOS. What the name change means for care US health officials order quarantine for 2 passengers from cruise ship with hantavirus outbreak Tech Artificial Intelligence Social Media SECTIONS Artificial Intelligence Social Media TOP STORIES Google announces slew of AI advances, including a personal AI assistant coming soon One Tech Tip: Don't use rice for your device. Here's how to dry out your smartphone Tech CEOs summoned to Congress for another hearing on social media's risks for children Lifestyle Food & Recipes Gardening Fashion Homes Travel Pets SECTIONS Food & Recipes Gardening Fashion Homes Travel Pets TOP STORIES Why some people are seeing mental health benefits in everyday tasks How to mulch your garden beds without harming plants Colorful 'Greetings from' postcards reflected American innovation, idealism Religion TOP STORIES Thousands flocked to the National Mall in Washington for an America-themed prayer rally Pope and co-founder of Anthropic to launch pontiff's AI encyclical on May 25 Journey of a lifetime: A US teen Buddhist lama is now a monk studying in the Himalayan foothills Newsletters World of Faith Comprehensive global coverage of how religion shapes our world. See All Newsletters Español Política de EEUU Deportes Mundial de Fútbol FIFA SECTIONS Política de EEUU Deportes Mundial de Fútbol FIFA TOP STORIES Gobierno de EEUU acepta retirar reclamos fiscales contra Trump como parte de acuerdo en demanda Trump firma orden para que los bancos revisen más de cerca el estatus migratorio de sus clientes Aumentan los temores en el Congo por la rápida propagación de un tipo raro de ébola Most watched videos Standards Quizzes Press Releases My Account AP News Code of Conduct The Associated Press is an independent global news organization dedicated to factual reporting. Founded in 1846, AP today remains the most trusted source of fast, accurate, unbiased news in all formats and the essential provider of the technology and services vital to the news business. More than half the world’s population sees AP journalism every day. twitter instagram facebook From AP News About Contact Us Accessibility Statement Terms of Use Privacy Policy Cookie Settings Do Not Sell or Share My Personal Information Limit Use and Disclosure of Sensitive Personal Information CA Notice of Collection The Associated Press ap.org Careers Advertise with us AP News Values and Principles AP’s Role in Elections AP Leads AP Definitive Source Blog AP Images Spotlight Blog AP Stylebook AP News Code of Conduct From AP News About Contact Us Accessibility Statement Terms of Use Privacy Policy Cookie Settings Do Not Sell or Share My Personal Information Limit Use and Disclosure of Sensitive Personal Information CA Notice of Collection The Associated Press ap.org Careers Advertise with us AP News Values and Principles AP’s Role in Elections AP Leads AP Definitive Source Blog AP Images Spotlight Blog AP Stylebook AP News Code of Conduct SECTIONS ap.org Careers Advertise with us AP News Values and Principles AP’s Role in Elections AP Leads AP Definitive Source Blog AP Images Spotlight Blog Copyright 2026 The Associated Press. All Rights Reserved. Menu World SECTIONS Iran war Russia-Ukraine war Español China Asia Pacific Latin America Europe Africa TOP STORIES Residents burn an Ebola treatment center in Congo as anger grows over the outbreak Documents show Queen Elizabeth was eager for ex-Prince Andrew to become trade envoy The differences — and similarities — in the Trump and Putin visits to China Newsletters The Morning Wire Our flagship newsletter breaks down the biggest headlines of the day. The Afternoon Wire Get caught up on what you may have missed throughout the day. See All Newsletters U.S. SECTIONS Immigration Weather Education Transportation Abortion LGBTQ+ Notable Deaths TOP STORIES 3 dead in New Mexico and first responders decontaminated after exposure to unknown substance The teens who attacked the Islamic Center of San Diego were latest to cite prior atrocities Woman at center of sprawling Minnesota fraud gets nearly 42-year prison sentence Newsletters The Morning Wire Our flagship newsletter breaks down the biggest headlines of the day. See All Newsletters AP QUIZZES Test Your News I.Q. — take today’s quiz Politics SECTIONS 2026 Elections Election Results Election calendar White House Congress Supreme Court The latest AP-NORC polls Ground Game TOP STORIES Backlash to Trump's $1.8B settlement fund delays GOP immigration bill Facing intense internal pressure, DNC releases postelection autopsy that criticizes Kamala Harris Trump eases refrigerant rule in a bid to address surging grocery costs Newsletters Ground Game Exclusive insights and key stories from the world of politics. See All Newsletters Sports SECTIONS NBA MLB NFL NHL Golf Soccer FIFA World Cup Auto Racing TOP STORIES 2-time NASCAR champ Kyle Busch dies at 41 after being hospitalized with a 'severe illness' Howard Fendrich, award-winning AP national sports writer and tennis expert, dies at 55 FIFA’s big experiment may have made the World Cup too big for its own good Newsletters AP Top 25 Poll Alerts Get email alerts for every college football Top 25 Poll release. The Sports Wire Your home base for in-depth reporting from the world of sports. See All Newsletters Entertainment SECTIONS Movies Fashion Television Celebrity Interviews Music Books TOP STORIES Stephen Colbert is saying goodbye to 'The Late Show.' How it ends is still a secret Michigan woman whose name inspired band to become Greta Van Fleet dies at 95 The Cannes Film Festival away from the carpet, in photos Newsletters AP Entertainment Wire Get AP's first personalized newsletter delivering you entertainment news twice a week. See All Newsletters Business SECTIONS Tariffs Inflation Financial Markets Financial Wellness Technology TOP STORIES SpaceX reveals plans for what could be the biggest-ever initial public offering Nvidia Q1 results surpass Wall Street expectations thanks to massive AI chip demand House committee discusses modernizing the TSA as Trump seeks to privatize airport screening Science SECTIONS Space Animals The Ancient World Climate Medicine TOP STORIES Dying star resembles a billowing crystal ball in new telescope photo Fact Check Oddities TOP STORIES Lettuce introduce you to the live frog found in this grocery store salad bag A humpback whale briefly swallows kayaker in Chilean Patagonia — and it's all captured on camera Viral phenomenon in Argentina has young people identifying themselves as animals Nipper, stay! The future of a beloved dog statue on a New York warehouse is up in the air How 2 men claimed an absurd record by driving an old 3-wheel car the length of Africa 1 million bees make for bumper-to-buzzer traffic on a Tennessee highway ramp Be Well SECTIONS Trending Better health At home Working well For the climate Eating well TOP STORIES Why some people are seeing mental health benefits in everyday tasks Being a night owl may not be great for your heart but you can do something about it As demand for GLP-1 pills and shots surges, healthy habits are still key Newsletters Photography SECTIONS Photo Essays TOP STORIES How a low angle and fast lens shaped a photo of Jannik Sinner A photo captures President Trump and first lady awaiting British royals from rare White House angle Democrats are becoming a force in traditionally conservative The Villages Newsletters The World in Pictures Get The AP’s most compelling photographs sent directly to your inbox. See All Newsletters AP Investigations Climate SECTIONS Indigenous peoples and climate Climate Questions Climate Migration India Focus TOP STORIES Plastic bags don't go in the recycling bin. What should you do instead? Kansas farmers hit hard by weather extremes and growing costs, wheat crop could be worst since 1972 Atlantic hurricane season forecast to be milder than normal thanks to El Nino Health TOP STORIES RFK Jr. fires leaders of group that sets guidelines for preventive health screenings Being a night owl may not be great for your heart but you can do something about it As demand for GLP-1 pills and shots surges, healthy habits are still key What to know about the Bundibugyo virus, a species of Ebola causing an outbreak in Congo PCOS is now called PMOS. What the name change means for care US health officials order quarantine for 2 passengers from cruise ship with hantavirus outbreak Tech SECTIONS Artificial Intelligence Social Media TOP STORIES Google announces slew of AI advances, including a personal AI assistant coming soon One Tech Tip: Don't use rice for your device. Here's how to dry out your smartphone Tech CEOs summoned to Congress for another hearing on social media's risks for children Lifestyle SECTIONS Food & Recipes Gardening Fashion Homes Travel Pets TOP STORIES Why some people are seeing mental health benefits in everyday tasks How to mulch your garden beds without harming plants Colorful 'Greetings from' postcards reflected American innovation, idealism Religion TOP STORIES Thousands flocked to the National Mall in Washington for an America-themed prayer rally Pope and co-founder of Anthropic to launch pontiff's AI encyclical on May 25 Journey of a lifetime: A US teen Buddhist lama is now a monk studying in the Himalayan foothills Newsletters World of Faith Comprehensive global coverage of how religion shapes our world. See All Newsletters Español SECTIONS Política de EEUU Deportes Mundial de Fútbol FIFA TOP STORIES Gobierno de EEUU acepta retirar reclamos fiscales contra Trump como parte de acuerdo en demanda Trump firma orden para que los bancos revisen más de cerca el estatus migratorio de sus clientes Aumentan los temores en el Congo por la rápida propagación de un tipo raro de ébola Most watched videos Standards Quizzes Press Releases My Account AP News Code of Conduct World Iran war Russia-Ukraine war Español China Asia Pacific Latin America Europe Africa Middle East U.S. Immigration Weather Education Transportation Abortion LGBTQ+ Notable Deaths Politics 2026 Elections Election Results Election calendar White House Congress Supreme Court The latest AP-NORC polls Ground Game Sports NBA MLB NFL NHL Golf Soccer FIFA World Cup Auto Racing Entertainment Movies Fashion Television Celebrity Interviews Music Books Business Tariffs Inflation Financial Markets Financial Wellness Technology Science Space Animals The Ancient World Climate Medicine Fact Check Oddities Be Well Trending Better health At home Working well For the climate Eating well Newsletters Photography Photo Essays AP Investigations Climate Indigenous peoples and climate Climate Questions Climate Migration India Focus Health Tech Artificial Intelligence Social Media Lifestyle Food & Recipes Gardening Fashion Homes Travel Pets Religion Español Política de EEUU Deportes Mundial de Fútbol FIFA Most watched videos Standards Quizzes Press Releases My Account AP News Code of Conduct MORE World Iran war Russia-Ukraine war Español China Asia Pacific Latin America Europe Africa Middle East U.S. Immigration Weather Education Transportation Abortion LGBTQ+ Notable Deaths Politics 2026 Elections Election Results Election calendar White House Congress Supreme Court The latest AP-NORC polls Ground Game Sports NBA MLB NFL NHL Golf Soccer FIFA World Cup Auto Racing Entertainment Movies Fashion Television Celebrity Interviews Music Books Business Tariffs Inflation Financial Markets Financial Wellness Technology Science Space Animals The Ancient World Climate Medicine Fact Check Oddities Be Well Trending Better health At home Working well For the climate Eating well Newsletters Photography Photo Essays AP Investigations Climate Indigenous peoples and climate Climate Questions Climate Migration India Focus Health Tech Artificial Intelligence Social Media Lifestyle Food & Recipes Gardening Fashion Homes Travel Pets Religion Español Política de EEUU Deportes Mundial de Fútbol FIFA Most watched videos Standards Quizzes Press Releases My Account AP News Code of Conduct Sign in Search Query Submit Search Show Search Menu Submit Search World Iran war Russia-Ukraine war Español China Asia Pacific Latin America Europe Africa Middle East SECTIONS Iran war Russia-Ukraine war Español China Asia Pacific Latin America Europe Africa TOP STORIES Residents burn an Ebola treatment center in Congo as anger grows over the outbreak Documents show Queen Elizabeth was eager for ex-Prince Andrew to become trade envoy The differences — and similarities — in the Trump and Putin visits to China Newsletters The Morning Wire Our flagship newsletter breaks down the biggest headlines of the day. The Afternoon Wire Get caught up on what you may have missed throughout the day. See All Newsletters U.S. Immigration Weather Education Transportation Abortion LGBTQ+ Notable Deaths SECTIONS Immigration Weather Education Transportation Abortion LGBTQ+ Notable Deaths TOP STORIES 3 dead in New Mexico and first responders decontaminated after exposure to unknown substance The teens who attacked the Islamic Center of San Diego were latest to cite prior atrocities Woman at center of sprawling Minnesota fraud gets nearly 42-year prison sentence Newsletters The Morning Wire Our flagship newsletter breaks down the biggest headlines of the day. See All Newsletters AP QUIZZES Test Your News I.Q. — take today’s quiz Politics 2026 Elections Election Results Election calendar White House Congress Supreme Court The latest AP-NORC polls Ground Game SECTIONS 2026 Elections Election Results Election calendar White House Congress Supreme Court The latest AP-NORC polls Ground Game TOP STORIES Backlash to Trump's $1.8B settlement fund delays GOP immigration bill Facing intense internal pressure, DNC releases postelection autopsy that criticizes Kamala Harris Trump eases refrigerant rule in a bid to address surging grocery costs Newsletters Ground Game Exclusive insights and key stories from the world of politics. See All Newsletters Sports NBA MLB NFL NHL Golf Soccer FIFA World Cup Auto Racing SECTIONS NBA MLB NFL NHL Golf Soccer FIFA World Cup Auto Racing TOP STORIES 2-time NASCAR champ Kyle Busch dies at 41 after being hospitalized with a 'severe illness' Howard Fendrich, award-winning AP national sports writer and tennis expert, dies at 55 FIFA’s big experiment may have made the World Cup too big for its own good Newsletters AP Top 25 Poll Alerts Get email alerts for every college football Top 25 Poll release. The Sports Wire Your home base for in-depth reporting from the world of sports. See All Newsletters Entertainment Movies Fashion Television Celebrity Interviews Music Books SECTIONS Movies Fashion Television Celebrity Interviews Music Books TOP STORIES Stephen Colbert is saying goodbye to 'The Late Show.' How it ends is still a secret Michigan woman whose name inspired band to become Greta Van Fleet dies at 95 The Cannes Film Festival away from the carpet, in photos Newsletters AP Entertainment Wire Get AP's first personalized newsletter delivering you entertainment news twice a week. See All Newsletters Business Tariffs Inflation Financial Markets Financial Wellness Technology SECTIONS Tariffs Inflation Financial Markets Financial Wellness Technology TOP STORIES SpaceX reveals plans for what could be the biggest-ever initial public offering Nvidia Q1 results surpass Wall Street expectations thanks to massive AI chip demand House committee discusses modernizing the TSA as Trump seeks to privatize airport screening Science Space Animals The Ancient World Climate Medicine SECTIONS Space Animals The Ancient World Climate Medicine TOP STORIES Dying star resembles a billowing crystal ball in new telescope photo Fact Check Oddities TOP STORIES Lettuce introduce you to the live frog found in this grocery store salad bag A humpback whale briefly swallows kayaker in Chilean Patagonia — and it's all captured on camera Viral phenomenon in Argentina has young people identifying themselves as animals Nipper, stay! The future of a beloved dog statue on a New York warehouse is up in the air How 2 men claimed an absurd record by driving an old 3-wheel car the length of Africa 1 million bees make for bumper-to-buzzer traffic on a Tennessee highway ramp Be Well Trending Better health At home Working well For the climate Eating well SECTIONS Trending Better health At home Working well For the climate Eating well TOP STORIES Why some people are seeing mental health benefits in everyday tasks Being a night owl may not be great for your heart but you can do something about it As demand for GLP-1 pills and shots surges, healthy habits are still key Newsletters Photography Photo Essays SECTIONS Photo Essays TOP STORIES How a low angle and fast lens shaped a photo of Jannik Sinner A photo captures President Trump and first lady awaiting British royals from rare White House angle Democrats are becoming a force in traditionally conservative The Villages Newsletters The World in Pictures Get The AP’s most compelling photographs sent directly to your inbox. See All Newsletters AP Investigations Climate Indigenous peoples and climate Climate Questions Climate Migration India Focus SECTIONS Indigenous peoples and climate Climate Questions Climate Migration India Focus TOP STORIES Plastic bags don't go in the recycling bin. What should you do instead? Kansas farmers hit hard by weather extremes and growing costs, wheat crop could be worst since 1972 Atlantic hurricane season forecast to be milder than normal thanks to El Nino Health TOP STORIES RFK Jr. fires leaders of group that sets guidelines for preventive health screenings Being a night owl may not be great for your heart but you can do something about it As demand for GLP-1 pills and shots surges, healthy habits are still key What to know about the Bundibugyo virus, a species of Ebola causing an outbreak in Congo PCOS is now called PMOS. What the name change means for care US health officials order quarantine for 2 passengers from cruise ship with hantavirus outbreak Tech Artificial Intelligence Social Media SECTIONS Artificial Intelligence Social Media TOP STORIES Google announces slew of AI advances, including a personal AI assistant coming soon One Tech Tip: Don't use rice for your device. Here's how to dry out your smartphone Tech CEOs summoned to Congress for another hearing on social media's risks for children Lifestyle Food & Recipes Gardening Fashion Homes Travel Pets SECTIONS Food & Recipes Gardening Fashion Homes Travel Pets TOP STORIES Why some people are seeing mental health benefits in everyday tasks How to mulch your garden beds without harming plants Colorful 'Greetings from' postcards reflected American innovation, idealism Religion TOP STORIES Thousands flocked to the National Mall in Washington for an America-themed prayer rally Pope and co-founder of Anthropic to launch pontiff's AI encyclical on May 25 Journey of a lifetime: A US teen Buddhist lama is now a monk studying in the Himalayan foothills Newsletters World of Faith Comprehensive global coverage of how religion shapes our world. See All Newsletters Español Política de EEUU Deportes Mundial de Fútbol FIFA SECTIONS Política de EEUU Deportes Mundial de Fútbol FIFA TOP STORIES Gobierno de EEUU acepta retirar reclamos fiscales contra Trump como parte de acuerdo en demanda Trump firma orden para que los bancos revisen más de cerca el estatus migratorio de sus clientes Aumentan los temores en el Congo por la rápida propagación de un tipo raro de ébola Most watched videos Standards Quizzes Press Releases My Account AP News Code of Conduct The Associated Press is an independent global news organization dedicated to factual reporting. Founded in 1846, AP today remains the most trusted source of fast, accurate, unbiased news in all formats and the essential provider of the technology and services vital to the news business. More than half the world’s population sees AP journalism every day. twitter instagram facebook From AP News About Contact Us Accessibility Statement Terms of Use Privacy Policy Cookie Settings Do Not Sell or Share My Personal Information Limit Use and Disclosure of Sensitive Personal Information CA Notice of Collection The Associated Press ap.org Careers Advertise with us AP News Values and Principles AP’s Role in Elections AP Leads AP Definitive Source Blog AP Images Spotlight Blog AP Stylebook AP News Code of Conduct From AP News About Contact Us Accessibility Statement Terms of Use Privacy Policy Cookie Settings Do Not Sell or Share My Personal Information Limit Use and Disclosure of Sensitive Personal Information CA Notice of Collection The Associated Press ap.org Careers Advertise with us AP News Values and Principles AP’s Role in Elections AP Leads AP Definitive Source Blog AP Images Spotlight Blog AP Stylebook AP News Code of Conduct SECTIONS ap.org Careers Advertise with us AP News Values and Principles AP’s Role in Elections AP Leads AP Definitive Source Blog AP Images Spotlight Blog Copyright 2026 The Associated Press. All Rights Reserved. World News Milei triumphs in Argentine midterm elections closely watched by Washington Milei triumphs in Argentine midterm elections closely watched by Washington 1 of 7  |  Argentina’s libertarian President Javier Milei won decisive victories in key districts across the country in midterm elections on Sunday. The opposition leader Axel Kicillof said it would be a “mistake” for libertarian President Javier Milei to celebrate his decisive victories in the country’s midterm elections. (AP video shot by Victor R. Calvano and Cristian Kovadloff) Read More 2 of 7  |  Argentines began voting Sunday in a high-stakes midterm election that could help shape libertarian President Javier Milei’s political path — and the future of U.S. financial support for his government. (AP Video by Victor R. Caivano and Cristian Kovadloff) Read More 3 of 7  |  Argentina’s President Javier Milei celebrates after winning in legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. (AP Photo/Rodrigo Abd) Read More 4 of 7  |  A woman holds a banner reading in Spanish, “Trump or homeland,” outside former President Cristina Fernandez’s home, where she is serving a six-year house arrest sentence for corruption, after polls closed during legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. (AP Photo/Natacha Pisarenko) Read More 5 of 7  |  Supporters of the opposition Peronist party gather at their campaign headquarters in La Plata, Argentina, after polls closed in legislative midterm elections, Sunday, Oct. 26, 2025.(AP Photo/Gustavo Garello) Read More 6 of 7  |  Argentina’s President Javier Milei votes during legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. (AP Photo/Natacha Pisarenko) Read More 7 of 7  |  Argentina’s President Javier Milei greets supporters after winning in legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. (AP Photo/Rodrigo Abd) Read More Milei triumphs in Argentine midterm elections closely watched by Washington Read More 1 of 7 Argentina’s libertarian President Javier Milei won decisive victories in key districts across the country in midterm elections on Sunday. The opposition leader Axel Kicillof said it would be a “mistake” for libertarian President Javier Milei to celebrate his decisive victories in the country’s midterm elections. (AP video shot by Victor R. Calvano and Cristian Kovadloff) --> Add AP News on Google Add AP News as your preferred source to see more of our stories on Google. --> Share Share Facebook Copy Link copied Print Email X LinkedIn Bluesky Flipboard Pinterest Reddit Read More Read More 2 of 7 Argentines began voting Sunday in a high-stakes midterm election that could help shape libertarian President Javier Milei’s political path — and the future of U.S. financial support for his government. (AP Video by Victor R. Caivano and Cristian Kovadloff) --> Add AP News on Google Add AP News as your preferred source to see more of our stories on Google. --> Share Share Facebook Copy Link copied Print Email X LinkedIn Bluesky Flipboard Pinterest Reddit Read More 3 of 7  |  Argentina’s President Javier Milei celebrates after winning in legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. (AP Photo/Rodrigo Abd) Read More 3 of 7 Argentina’s President Javier Milei celebrates after winning in legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. (AP Photo/Rodrigo Abd) --> Add AP News on Google Add AP News as your preferred source to see more of our stories on Google. --> Share Share Facebook Copy Link copied Print Email X LinkedIn Bluesky Flipboard Pinterest Reddit Read More 4 of 7  |  A woman holds a banner reading in Spanish, “Trump or homeland,” outside former President Cristina Fernandez’s home, where she is serving a six-year house arrest sentence for corruption, after polls closed during legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. (AP Photo/Natacha Pisarenko) Read More 4 of 7 A woman holds a banner reading in Spanish, “Trump or homeland,” outside former President Cristina Fernandez’s home, where she is serving a six-year house arrest sentence for corruption, after polls closed during legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. (AP Photo/Natacha Pisarenko) --> Add AP News on Google Add AP News as your preferred source to see more of our stories on Google. --> Share Share Facebook Copy Link copied Print Email X LinkedIn Bluesky Flipboard Pinterest Reddit Read More 5 of 7  |  Supporters of the opposition Peronist party gather at their campaign headquarters in La Plata, Argentina, after polls closed in legislative midterm elections, Sunday, Oct. 26, 2025.(AP Photo/Gustavo Garello) Read More 5 of 7 Supporters of the opposition Peronist party gather at their campaign headquarters in La Plata, Argentina, after polls closed in legislative midterm elections, Sunday, Oct. 26, 2025.(AP Photo/Gustavo Garello) --> Add AP News on Google Add AP News as your preferred source to see more of our stories on Google. --> Share Share Facebook Copy Link copied Print Email X LinkedIn Bluesky Flipboard Pinterest Reddit Read More 6 of 7  |  Argentina’s President Javier Milei votes during legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. (AP Photo/Natacha Pisarenko) Read More 6 of 7 Argentina’s President Javier Milei votes during legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. (AP Photo/Natacha Pisarenko) --> Add AP News on Google Add AP News as your preferred source to see more of our stories on Google. --> Share Share Facebook Copy Link copied Print Email X LinkedIn Bluesky Flipboard Pinterest Reddit Read More 7 of 7  |  Argentina’s President Javier Milei greets supporters after winning in legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. (AP Photo/Rodrigo Abd) Read More 7 of 7 Argentina’s President Javier Milei greets supporters after winning in legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. (AP Photo/Rodrigo Abd) --> Add AP News on Google Add AP News as your preferred source to see more of our stories on Google. --> Share Share Facebook Copy Link copied Print Email X LinkedIn Bluesky Flipboard Pinterest Reddit Read More By  ISABEL DEBRE Updated [hour]:[minute] [AMPM] [timezone], [monthFull] [day], [year]   --> Add AP News on Google Add AP News as your preferred source to see more of our stories on Google. --> Share Share Facebook Copy Link copied Print Email X LinkedIn Bluesky Flipboard Pinterest Reddit BUENOS AIRES, Argentina (AP) — Argentina’s libertarian President Javier Milei won decisive victories in key districts in midterm elections Sunday, clinching a crucial vote of confidence that strengthens his ability to carry out his radical free-market experiment with billions of dollars in backing from the Trump administration. In the election widely seen as a referendum on Milei’s past two years in office, his upstart La Libertad Avanza party scored over 40% of votes compared with 31% for the left-leaning populist opposition movement, known as Peronism, exceeding analysts’ projections. Milei, a key ideological ally of U.S. President Donald Trump , said his party and allied blocs picked up 14 seats in the Senate and 64 in the lower house of Congress on Sunday, bolstering the government’s support in the legislature enough to uphold presidential vetoes and block impeachment efforts. At La Libertad Avanza headquarters late Sunday in downtown Buenos Aires, a beaming Milei hailed the election sweep as a mandate to press forward with his spending cuts and introduce ambitious tax and labor reforms. The results also automatically position him as a candidate for reelection in 2027. Related Stories Argentines hunting for source of hantavirus outbreak trap rats in southernmost city 3 MIN READ Argentina’s icy outpost at the end of the world fears the hantavirus will chill tourism 5 MIN READ 13 Argentina’s beef consumption falls to lowest level in 20 years as prices soar 4 MIN READ 16 “The Argentine people have decided to leave behind 100 years of decadence,” Milei exulted as his supporters cheered, referring to a succession of Peronist governments that brought Argentina infamy for its inflationary spirals and sovereign debt defaults . AP AUDIO: Milei triumphs in Argentine midterm elections closely watched by Washington AP correspondent Charles de Ledesma reports Argentina’s libertarian President Javier Milei has won decisive victories in key districts across the country in midterm elections. “Today we have passed the turning point. Today we begin the construction of a great Argentina.” Read More High stakes include $40 billion from the U.S. Perhaps never has an Argentine legislative election generated so much interest in Washington and Wall Street. Trump appeared to condition a $20 billion currency swap deal with Argentina’s central bank and an additional $20 billion loan from private banks on a good showing for Milei in national midterms, threatening to rescind the assistance for the cash-strapped country in the event of a Peronist victory. “If he wins we’re staying with him, and if he doesn’t win, we’re gone,” Trump said after welcoming Milei to the White House earlier this month. Those contentious comments added to mounting pressure on Milei, who has scrambled to avert a currency crisis since the Peronist opposition won a landslide victory in Buenos Aires provincial polls last month. Argentina’s bonds and currency nosedived as markets sensed that the public was losing patience with Milei’s reforms and that the midterm race would be tight. To stem the run on the peso, Milei burned through billions of dollars in foreign exchange reserves to shore up the peso. In an extraordinary move, the U.S. Treasury then came to the rescue, selling dollars to help meet soaring demand for greenbacks and finalizing the credit line. In the end, the Peronist alliance performed poorly, underscoring how weak the once-dominant movement has become in the Milei era, largely as a result of internal divisions. Markets were widely expected to rally on Monday. “For foreign investors, this outcome is a relief because it shows that the Milei program can be sustainable,” said Marcelo J. García, the America’s director for the geopolitical risk consultancy Horizon Engage. “It leaves the opposition weakened and fragmented, just as it was when Milei won the presidency in December 2023,” Garcia added. The Peronist coalition has struggled to channel rising public anger with Milei’s painful austerity measures into a new political strategy after delivering the economic shambles that the chain saw-wielding outsider inherited in late 2023. Trump, while on his way to Japan on Monday, posted on Truth Social that Milei was “doing a wonderful job” after his party beat expectations in midterm elections. “Our confidence in him was justified by the People of Argentina,” Trump wrote. Milei responded to Trump’s post, calling him “a great friend” of Argentina and thanking him for “trusting the Argentine people.” A changed electoral map The results showed Milei’s young libertarian party gaining support across the country — including in some surprising corners that have long been under the sway of Peronism. In the closely watched Buenos Aires province, a Peronist stronghold home to nearly 40% of the electorate, La Libertad Avanza eked out a razor-thin victory Sunday. Just last month, the Peronists beat Milei’s party there by a whopping 14 percentage points. Axel Kicillof, governor of Buenos Aires province and the most influential elected official in the Peronist opposition, criticized Trump for putting his thumb on the scale. He warned that the billions of dollars in financial aid from the U.S. Treasury and investment banks would do nothing to help ordinary Argentines squeezed by Milei’s cuts to subsidies or forced out of business by a contracting economy. “I want to make it clear that neither the U.S. government nor JP Morgan are charitable societies,” he said. “If they come to Argentina, it is for nothing other than to take a profit.” With Milei’s efforts to deregulate the economy and scrap tariffs winning over Argentina’s powerful agriculture sector, La Libertad Avanza also swept Santa Fe, which dominates soybean production and processing, and Córdoba, another powerhouse farming province. Risks remain for Milei as austerity hits hard Despite Milei’s new momentum, experts caution that the irascible president still needs to court political allies to see through his agenda. Given the limited number of seats up for grabs in this election, it was mathematically impossible for Milei to secure a majority in either house. “This victory is necessary, but not sufficient to maintain control of Congress,” said political consultant Sergio Berensztein. “The government must build a broad and effective coalition with like-minded forces.” Seeking to capitalize quickly on Sunday’s results, Milei said he called the country’s powerful provincial governors to accelerate agreements on long-term economic reform. Sunday’s outcome will also test public patience for Milei’s cost-cutting measures in the coming months. Although Milei’s budget cuts have significantly driven down inflation — from an annual high of 289% in April 2024 to 32% last month — the price increases still outpace salaries and pensions. The electorate appears increasingly polarized between beneficiaries of Milei’s reforms and those who say they’re struggling to make ends meet like never before. In the financial district of Puerto Madero, luxury car dealerships report sales surging since Milei scrapped import restrictions. Streets bustle with bankers who praise the president for ending a yearslong ban on selling dollars online . Fine restaurants serve Argentine oil executives who gush about his efforts to draw foreign investment . But at a soup kitchen on the other side of Argentina’s Riachuelo River, Epifanía Contreras, 64, said she feels like she’s bearing the brunt of the cutbacks. “You can’t live on 290,000 pesos a month with today’s inflation,” she said, describing how her $200 monthly pension has shriveled in value since Milei cut cost-of-living increases. “The situation is getting worse and worse.” Reflecting widespread public resignation, electoral authorities reported a turnout rate of just under 68% Sunday, among the lowest recorded since the nation’s 1983 return to democracy. Voting is compulsory in Argentina. “I vote out of obligation, nothing more,” said Matías Paredes, 50, a real estate broker whose foreign clientele vanished with Milei’s strong exchange rate. “None of these figures inspire optimism. We’re just choosing the lesser evil.” ___ Associated Press writers Almudena Calatrava and Débora Rey contributed to this report. ISABEL DEBRE DeBre writes about Argentina, Bolivia, Chile, Paraguay and Uruguay for The Associated Press, based in Buenos Aires. Before moving to South America in 2024, she covered the Middle East reporting from Jerusalem, Cairo and Dubai. twitter mailto Most read 2-time NASCAR champ Kyle Busch dies at 41 after being hospitalized with a ‘severe illness’ 4 MIN READ 60 Backlash to Trump’s $1.8B settlement fund delays GOP immigration bill 5 MIN READ 578 Facing intense internal pressure, DNC releases postelection autopsy that criticizes Kamala Harris 5 MIN READ 890 Trump eases refrigerant rule in a bid to address surging grocery costs 4 MIN READ 233 3 dead in New Mexico and first responders decontaminated after exposure to unknown substance 3 MIN READ 82 The Associated Press is an independent global news organization dedicated to factual reporting. Founded in 1846, AP today remains the most trusted source of fast, accurate, unbiased news in all formats and the essential provider of the technology and services vital to the news business. More than half the world’s population sees AP journalism every day. From AP News About Contact Us Accessibility Statement Terms of Use Privacy Policy Cookie Settings Do Not Sell or Share My Personal Information Limit Use and Disclosure of Sensitive Personal Information CA Notice of Collection The Associated Press ap.org Careers Advertise with us AP News Values and Principles AP’s Role in Elections AP Leads AP Definitive Source Blog AP Images Spotlight Blog AP Stylebook AP News Code of Conduct From AP News About Contact Us Accessibility Statement Terms of Use Privacy Policy Cookie Settings Do Not Sell or Share My Personal Information Limit Use and Disclosure of Sensitive Personal Information CA Notice of Collection The Associated Press ap.org Careers Advertise with us AP News Values and Principles AP’s Role in Elections AP Leads AP Definitive Source Blog AP Images Spotlight Blog AP Stylebook AP News Code of Conduct SECTIONS ap.org Careers Advertise with us AP News Values and Principles AP’s Role in Elections AP Leads AP Definitive Source Blog AP Images Spotlight Blog Copyright 2026 The Associated Press. All Rights Reserved. twitter instagram facebook \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/BATimes_LLA_midterm_20251026.html b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/BATimes_LLA_midterm_20251026.html new file mode 100644 index 0000000000..b5abe60171 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/BATimes_LLA_midterm_20251026.html @@ -0,0 +1,1040 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Decisive win for Milei’s La Libertad Avanza in key midterm election | Buenos Aires Times + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+
+
Thursday, May 21, 2026
+
+ Perfil +
+
+
+
+ + + +
+
+ +
+
+ + + + +
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+ + +
+

ARGENTINA | 26-10-2025 22:12

+
+ + +
+
+

Decisive win for Milei’s La Libertad Avanza in key midterm election

+

+ Milei's La Libertad Avanza (LLA) rebounded from a series of setbacks to perform well in Sunday's midterm elections. +

+
+
+
+
+ + + +
+ +
+
+ +
+
+ +
+ + +
+
+
+ + +
+
    +
  • +
  • +
  • +
  • +
+
+
+
+ +
+
+
+
+
+ +

President Javier Milei won a decisive victory in Sunday's midterm elections, boosting his flagging reform agenda and jumpstarting the second half of his term in office.

+ +

Milei's La Libertad Avanza (LLA) rebounded from a series of setbacks to take 40.84 percent of the votes cast for members of the lower house Chamber of Deputies and upper house Senate, according to official results based on 90 percent of votes counted.

+ +

According to partial results, the opposition Fuerza Patria (Peronist) coalition had around 31.64 percent. In third place was Provincias Unidas, a centrist bloc that seeks to break with polarisation and took around seven percent of the vote.

+ +

The results hand Milei a strengthened hand in Congress, close to the third it needs in both chambers to shield presidential vetoes from being overturned. However, LLLA will have to forge alliances with other forces to advance larger structural reforms.

+ +

"God bless Argentina," Milei's spokesman Manuel Adorni wrote on X.

+ +

As the initial results were released, hundreds of Milei’s supporters gathered outside the Hotel Libertador in Buenos Aires, his party’s headquarters for elections.

+ +

"I am very happy and excited. I did not expect such a large number," said Facundo Campos, a 38-year-old marketing consultant, as he cheered Milei’s performance. 

+ +

"I shouted as if it were the winning goal in Argentina's last World Cup victory," he added.

+ +

The elections were the first national test of Milei's support since he won office two years ago on a promise to revive the long-ailing Argentine economy through a series of painful reforms.

+ +

Around alf of the seats in the Chamber of Deputies and one-third of the Senate seats were up for grabs on Sunday.

+ +

The run-up to the election was marked by a run on the national currency, the peso, that forced Milei to seek a bailout from US President Donald Trump.

+ +

Washington promised an unprecedented US$40-billion package of aid, but the assistance came with a warning from Trump to Argentines that he would not "be generous" if Sunday's election did not go Milei's way.

+ +

 

+ +

– TIMES/AFP

+
+
+
related news
+
+ +
+ + + + + + + + + + + + +
+ +
+

In this news

+ + + + + + + + + +
+
+ + +
+
+
+
+
+

Comments

+
+
+
+
+
+
+
+ +
+ + + +
+
+ More in (in spanish) +
+
+ + + + + +
+ + + +
+
+
+
+ + + +
+ +
+ +
+
+
+
+ + + + + + + + + + + + +
+ + + + + + + diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/BATimes_LLA_midterm_20251026.html.txt b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/BATimes_LLA_midterm_20251026.html.txt new file mode 100644 index 0000000000..93daef24a5 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/BATimes_LLA_midterm_20251026.html.txt @@ -0,0 +1 @@ +Decisive win for Milei’s La Libertad Avanza in key midterm election | Buenos Aires Times Thursday, May 21, 2026 Argentina Economy Latin America World Culture Sports Opinion ARGENTINA | 26-10-2025 22:12 Decisive win for Milei’s La Libertad Avanza in key midterm election Milei's La Libertad Avanza (LLA) rebounded from a series of setbacks to perform well in Sunday's midterm elections. James Grainger Editor-in-Chief, Buenos Aires Times. Share this News President Javier Milei. | AFP President Javier Milei won a decisive victory in Sunday's midterm elections, boosting his flagging reform agenda and jumpstarting the second half of his term in office. Milei's La Libertad Avanza (LLA) rebounded from a series of setbacks to take 40.84 percent of the votes cast for members of the lower house Chamber of Deputies and upper house Senate, according to official results based on 90 percent of votes counted. According to partial results, the opposition Fuerza Patria (Peronist) coalition had around 31.64 percent. In third place was Provincias Unidas, a centrist bloc that seeks to break with polarisation and took around seven percent of the vote. The results hand Milei a strengthened hand in Congress, close to the third it needs in both chambers to shield presidential vetoes from being overturned. However, LLLA will have to forge alliances with other forces to advance larger structural reforms. Read more... ‘Diego would defend me,’ says lead suspect in trial over Maradona’s death "God bless Argentina," Milei's spokesman Manuel Adorni wrote on X. As the initial results were released, hundreds of Milei’s supporters gathered outside the Hotel Libertador in Buenos Aires, his party’s headquarters for elections. "I am very happy and excited. I did not expect such a large number," said Facundo Campos, a 38-year-old marketing consultant, as he cheered Milei’s performance.  Read more... Economic activity rebounds: March data shows 3.5% jump "I shouted as if it were the winning goal in Argentina's last World Cup victory," he added. The elections were the first national test of Milei's support since he won office two years ago on a promise to revive the long-ailing Argentine economy through a series of painful reforms. Around alf of the seats in the Chamber of Deputies and one-third of the Senate seats were up for grabs on Sunday. Read more... Argentina’s economy picked up much more than expected in March The run-up to the election was marked by a run on the national currency, the peso, that forced Milei to seek a bailout from US President Donald Trump. Washington promised an unprecedented US$40-billion package of aid, but the assistance came with a warning from Trump to Argentines that he would not "be generous" if Sunday's election did not go Milei's way.   – TIMES/AFP related news Milei government secures lower house passage of 'Ley Hojarasca' deregulation law Argentina’s surge in foreign reserves risks reigniting inflation Argentina's Army barters quince for pick-up truck parts Argentina's exports surge, trade surplus topped US$2.7 billion in April In this news personalities: Javier Milei topics: Argentina Election Results Buenos Aires Milei La Libertad Avanza Lla Peronism Fuerza Patria Comments More in (in spanish) Quién es el hermano de Adorni imputado por enriquecimiento y lavado Horóscopo Marie Claire: las predicciones semanales para todos los signos Bianca, la hija de Soy Rada, deslumbró en los Martín Fierro con un vestido de su propia cápsula Fiat crece en España: aumento del 37% en ventas a empresas Previous news of "Argentina" Milei’s party wins Argentina midterm vote in major comeback Argentina election results: President Javier Milei emerges strengthened from midterms Polling stations close in key midterm elections that will define Milei's future At least nine dead, 30 injured as coach plunges off bridge in Misiones road crash Argentines cast ballots in make-or-break midterm for Milei Most viewed 1 Embattled Bolivia leader Rodrigo Paz promises 'to listen' to protesters 2 Argentina's exports surge, trade surplus topped US$2.7 billion in April 3 Argentina’s Navy signs agreement with United States to boost South Atlantic vigilance 4 Argentine scientist wins global award for her work on ‘drought-resistant’ crops 5 Colegio Nacional de Monserrat, historic Córdoba school, set for first female director in 339 years Ads Space Most viewed of Perfil 1 Ley de Equidad Jubilatoria: primer fallo de fondo declara inconstitucional quita de haberes a jubilados 2 Receta electrónica de PAMI: cómo funciona el sistema digital para retirar medicamentos en las farmacias 3 Qué ver en Netflix tras el final de "Outlander": series y películas de época para seguir con el drama histórico 4 “Grey’s Anatomy” tendrá un spin-off: por qué plataforma se emitirá y cuáles serán los nuevos personajes 5 Uno por uno, a quiénes salpicó Manuel Adorni desde que se filtró la foto de Nueva York Ads Space Ads Space Ads Space Diario Perfil Caras Marie Claire Noticias Fortuna Hombre Parabrisas Supercampo Weekend Look Luz Mía batimes.perfil.com - Editorial Perfil S.A. | © Perfil.com 2006-2026 - All rights reserved Intellectual Property Registry Number 5346433 Address: California 2715 , C1289ABI , CABA, Argentina | Phone: (+5411) 7091-4921 / (+5411) 7091-4922 | E-mail: [email protected] \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/computed_diputados_districts.csv b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/computed_diputados_districts.csv new file mode 100644 index 0000000000..f4a5e8d96a --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/computed_diputados_districts.csv @@ -0,0 +1,25 @@ +district_id,district,positive_votes,mesas_escrutadas,electores,votantes +1,CIUDAD AUTÓNOMA DE BUENOS AIRES,1628167,7284,55404140,1732259 +2,BUENOS AIRES,8696636,38760,266980280,9013159 +3,CATAMARCA,214564,1468,4862214,228847 +4,CÓRDOBA,1941359,9262,71742658,2024254 +5,CORRIENTES,545624,2807,9514920,567131 +6,CHACO,581678,2977,15183135,652681 +7,CHUBUT,314718,1450,6305390,337667 +8,ENTRE RÍOS,709403,3469,13865772,811650 +9,FORMOSA,326933,1512,4917930,334423 +10,JUJUY,406729,1806,7236840,424283 +11,LA PAMPA,202020,915,3046570,208742 +12,LA RIOJA,206067,1322,3718332,214521 +13,MENDOZA,1004280,4445,19809231,1061936 +14,MISIONES,602703,2929,16105792,626226 +15,NEUQUÉN,382678,1747,8140902,435475 +16,RÍO NEGRO,380912,1844,7341756,424027 +17,SALTA,621605,3361,15638952,710343 +18,SAN JUAN,426352,1843,8690976,438937 +19,SAN LUIS,257962,1335,4721145,274724 +20,SANTA CRUZ,165749,879,3535675,175776 +21,SANTA FE,1675665,8423,59846871,1803222 +22,SANTIAGO DEL ESTERO,553713,4726,9922644,590626 +23,TUCUMÁN,1036114,3975,18777444,1064462 +24,TIERRA DEL FUEGO AeIAS,96240,453,1990599,107877 diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/computed_diputados_national_by_party.csv b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/computed_diputados_national_by_party.csv new file mode 100644 index 0000000000..c7931d8423 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/computed_diputados_national_by_party.csv @@ -0,0 +1,136 @@ +party,votes,national_percentage +ALIANZA LA LIBERTAD AVANZA,7429104,32.331559 +ALIANZA FUERZA PATRIA,3657285,15.916553 +LA LIBERTAD AVANZA,1912694,8.324070 +FUERZA PATRIA,1751426,7.622229 +FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD,853680,3.715227 +ALIANZA PROVINCIAS UNIDAS,762798,3.319707 +FRENTE TUCUMÁN PRIMERO,524057,2.280703 +PROVINCIAS UNIDAS,326476,1.420828 +FRENTE CÍVICO POR SANTIAGO,284387,1.237656 +FUERZA JUSTICIALISTA MENDOZA,253109,1.101534 +FUERZA ENTRE RÍOS,243884,1.061386 +PROPUESTA FEDERAL PARA EL CAMBIO,243326,1.058958 +PRIMERO LOS SALTEÑOS,207353,0.902403 +FRENTE DE LA VICTORIA,190783,0.830290 +VAMOS CORRIENTES,185048,0.805331 +RENOVADOR DE LA CONCORDIA NEO,181238,0.788750 +DEFENDAMOS CÓRDOBA,169951,0.739629 +FUERZA SAN JUAN,146856,0.639119 +POR SAN JUAN,132286,0.575710 +ALIANZA POTENCIA,127281,0.553929 +PARTIDO LIBERTARIO,125847,0.547688 +LA NEUQUINIDAD,120772,0.525601 +PARTIDO NUEVO BUENOS AIRES,116670,0.507749 +FRENTE FUERZA PATRIA PERONISTA,115698,0.503519 +FRENTE PATRIOTA FEDERAL,113812,0.495311 +UNIÓN CÍVICA RADICAL,111832,0.486694 +JUNTOS DEFENDEMOS RÍO NEGRO,99716,0.433965 +CIUDADANOS UNIDOS,97794,0.425601 +FRENTE DEFENDEMOS LA PAMPA,90097,0.392103 +FEDERALES DEFENDAMOS LA RIOJA,89789,0.390763 +FRENTE UNIDOS PODEMOS,87628,0.381358 +FRENTE JUSTICIALISTA,86211,0.375191 +COALICIÓN CÍVICA - A.R.I.,84454,0.367545 +UNIDOS POR TUCUMÁN,83926,0.365247 +FRENTE JUJUY CRECE,81454,0.354489 +FRENTE VERDE,80148,0.348805 +ALIANZA UNIÓN FEDERAL,78125,0.340001 +FRENTE FUERZA PATRIA,63112,0.274664 +DESPIERTA CHUBUT,63056,0.274421 +FRENTE PRIMERO JUJUY AVANZA,61539,0.267819 +DESPIERTA SANTIAGO,57627,0.250793 +FRENTE LIBERTARIO DEMÓCRATA,54193,0.235849 +MOVIMIENTO AVANZADA SOCIALISTA,54141,0.235622 +FRENTE AMPLIO POR LA SOBERANIA,53267,0.231819 +FUERZA SANTACRUCEÑA,53215,0.231592 +MOVIMIENTO POLÍTICO SOCIAL Y CULTURAL PROYECTO SUR,52563,0.228755 +FRENTE POPULAR AGRARIO Y SOCIAL,50428,0.219463 +ALIANZA NUEVOS AIRES,45550,0.198234 +UNIÓN LIBERAL,43339,0.188612 +PARTIDO DE LA VICTORIA,40602,0.176700 +MOVIMIENTO AL SOCIALISMO,38472,0.167431 +PARTIDO FE,36079,0.157016 +PRO - PROPUESTA REPUBLICANA,34757,0.151263 +LA FUERZA DEL TRABAJO CHUBUTENSE,34186,0.148778 +ALIANZA ENCUENTRO POR LA REPÚBLICA,31654,0.137759 +HAGAMOS FUTURO,29877,0.130025 +ALIANZA DEFENDAMOS MENDOZA - PROVINCIAS UNIDAS,29663,0.129094 +FUERZA LIBERTARIA,27521,0.119772 +PARTIDO SOCIALISTA,25923,0.112817 +POR SANTA CRUZ,25646,0.111612 +AHORA 503,25296,0.110089 +POLÍTICA OBRERA,23613,0.102764 +MÁS POR NEUQUÉN,23350,0.101620 +NUEVA IZQUIERDA,23215,0.101032 +FUERZA REPUBLICANA,22490,0.097877 +GEN,21087,0.091771 +NUEVAS IDEAS,20986,0.091331 +PARTIDO DEL OBRERO,20168,0.087771 +CORRIENTES NOS UNE,20112,0.087528 +DEFENDAMOS TIERRA DEL FUEGO,19945,0.086801 +FE,17895,0.077879 +VAMOS CHACO,17754,0.077266 +FRENTE PUEBLO,17538,0.076326 +CAMBIA LA PAMPA,17364,0.075568 +LIBER.AR,16689,0.072631 +UNIÓN POPULAR FEDERAL,15244,0.066342 +IGUALDAD Y PARTICIPACIÓN,14311,0.062282 +DEFENDAMOS SANTA FE,13989,0.060880 +SOMOS PROVINCIAS UNIDAS - CATAMARCA,13928,0.060615 +FRENTE INTEGRADOR,13644,0.059379 +JUNTOS POR LA LIBERTAD Y LA REPÚBLICA,11971,0.052098 +REPUBLICANOS UNIDOS,11643,0.050670 +PRIMERO RÍO NEGRO,11184,0.048673 +MOVIMIENTO DE JUBILADOS Y JUVENTUD,11082,0.048229 +ALIANZA CIUDADANOS,10488,0.045644 +PARTIDO RENACER,10180,0.044303 +PROTECTORA FUERZA POLÍTICA,10150,0.044173 +INSTRUMENTO ELECTORAL POR LA UNIDAD POPULAR,9479,0.041253 +LA IZQUIERDA EN LA CIUDAD,9075,0.039495 +ACTIVAR,9007,0.039199 +CREO,8509,0.037031 +DESARROLLO CIUDADANO,8209,0.035726 +HACEMOS,8071,0.035125 +INTEGRAR,7873,0.034263 +COMPROMISO FEDERAL,7787,0.033889 +"POR LA VIDA Y LOS VALORES, POR UN NUEVO OCTUBRE",7673,0.033393 +AHORA,7624,0.033180 +CRUZADA RENOVADORA,6896,0.030011 +PRIMERO CATAMARCA,6653,0.028954 +HACEMOS RENACER CATAMARCA,6616,0.028793 +NEPAR,6553,0.028519 +EVOLUCIÓN LIBERAL,6542,0.028471 +POLÍTICA ABIERTA PARA LA INTEGRIDAD SOCIAL,6516,0.028358 +MOVIMIENTO DE INTEGRACIÓN Y DESARROLLO - MID,6449,0.028066 +PARTIDO INDEPENDIENTE DE CHUBUT,6380,0.027766 +PROYECTO SUR,6358,0.027670 +HACEMOS POR SANTIAGO,6263,0.027257 +PARTIDO FEDERAL,6181,0.026900 +PARTIDO AUTONOMISTA,6053,0.026343 +FRENTE DEL PUEBLO UNIDO,5932,0.025816 +COALICIÓN CÍVICA - ARI,5903,0.025690 +FRENTE LIBERAL,5806,0.025268 +UNIÓN DEL CENTRO DEMOCRÁTICO,5695,0.024785 +DEL TRABAJO Y DEL PUEBLO,5574,0.024258 +PROYECTO ALTERNATIVO,5510,0.023980 +ACCIÓN PARA EL CAMBIO,5275,0.022957 +PARTIDO DEMÓCRATA,5109,0.022234 +MOVIMIENTO AL SOCIALISMO - MAS,5082,0.022117 +ALIANZA CÓRDOBA TE QUIERO,4659,0.020276 +POLÍTICA PARA LA CLASE OBRERA,4520,0.019671 +PARTIDO DIGNIDAD POPULAR,4324,0.018818 +UNIR,4302,0.018722 +UNITE POR LA LIBERTAD Y LA DIGNIDAD,4265,0.018561 +MOVIMIENTO INDEPENDIENTE RENOVADOR,3977,0.017308 +FRENTE FEDERAL DE ACCIÓN SOLIDARIA,3866,0.016825 +TRANSFORMACIÓN LIBERTARIA,3308,0.014396 +PARTIDO DE LA CONCERTACIÓN FORJA,3308,0.014396 +MOVIMIENTO PLURAL,3267,0.014218 +PARTIDO SOCIALISTA AUTÉNTICO,3264,0.014205 +IDEAS DE LA LIBERTAD,3264,0.014205 +PRINCIPIOS Y CONVICCIÓN,3253,0.014157 +PARTIDO COMUNISTA,3000,0.013056 +LAS FUERZAS DEL CENTRO,2806,0.012212 +PARTIDO POLO SOCIAL - MOVIMIENTO DE BASES,2257,0.009822 +PARTIDO FRENTE GRANDE,857,0.003730 diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_01.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_01.json new file mode 100644 index 0000000000..31d11cb79c --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_01.json @@ -0,0 +1,318 @@ +{ + "total": 1732259, + "agrupaciones": [ + { + "nombre": "ALIANZA LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "6", + "Votos": 771065, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA LA LIBERTAD AVANZA" + } + ], + "votos": 771065, + "porcentaje": "47.36", + "idAgrupacion": "6", + "color": "#743bbc" + }, + { + "nombre": "FUERZA PATRIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "120", + "Votos": 439196, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FUERZA PATRIA" + } + ], + "votos": 439196, + "porcentaje": "26.97", + "idAgrupacion": "120", + "color": "#63b5e5" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "31", + "Votos": 148438, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 148438, + "porcentaje": "9.12", + "idAgrupacion": "31", + "color": "#ef2b2d" + }, + { + "nombre": "CIUDADANOS UNIDOS", + "listas": [ + { + "lista": "", + "idAgrupacion": "268", + "Votos": 97794, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "CIUDADANOS UNIDOS" + } + ], + "votos": 97794, + "porcentaje": "6.01", + "idAgrupacion": "268", + "color": "#e45205" + }, + { + "nombre": "ALIANZA POTENCIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "4", + "Votos": 66072, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA POTENCIA" + } + ], + "votos": 66072, + "porcentaje": "4.06", + "idAgrupacion": "4", + "color": "#99001f" + }, + { + "nombre": "HAGAMOS FUTURO", + "listas": [ + { + "lista": "", + "idAgrupacion": "267", + "Votos": 29877, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "HAGAMOS FUTURO" + } + ], + "votos": 29877, + "porcentaje": "1.84", + "idAgrupacion": "267", + "color": "#c44f96" + }, + { + "nombre": "GEN", + "listas": [ + { + "lista": "", + "idAgrupacion": "2", + "Votos": 16622, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "GEN" + } + ], + "votos": 16622, + "porcentaje": "1.02", + "idAgrupacion": "2", + "color": "#da281c" + }, + { + "nombre": "MOVIMIENTO DE JUBILADOS Y JUVENTUD", + "listas": [ + { + "lista": "", + "idAgrupacion": "14", + "Votos": 11082, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO DE JUBILADOS Y JUVENTUD" + } + ], + "votos": 11082, + "porcentaje": "0.68", + "idAgrupacion": "14", + "color": "#1a365d" + }, + { + "nombre": "LA IZQUIERDA EN LA CIUDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "3", + "Votos": 9075, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "LA IZQUIERDA EN LA CIUDAD" + } + ], + "votos": 9075, + "porcentaje": "0.56", + "idAgrupacion": "3", + "color": "#dd2730" + }, + { + "nombre": "INTEGRAR", + "listas": [ + { + "lista": "", + "idAgrupacion": "15", + "Votos": 7873, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "INTEGRAR" + } + ], + "votos": 7873, + "porcentaje": "0.48", + "idAgrupacion": "15", + "color": "#004f70" + }, + { + "nombre": "PARTIDO FEDERAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "7", + "Votos": 6181, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO FEDERAL" + } + ], + "votos": 6181, + "porcentaje": "0.38", + "idAgrupacion": "7", + "color": "#f6b26b" + }, + { + "nombre": "UNIÓN DEL CENTRO DEMOCRÁTICO", + "listas": [ + { + "lista": "", + "idAgrupacion": "359", + "Votos": 5695, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "UNIÓN DEL CENTRO DEMOCRÁTICO" + } + ], + "votos": 5695, + "porcentaje": "0.35", + "idAgrupacion": "359", + "color": "#02a2d4" + }, + { + "nombre": "INSTRUMENTO ELECTORAL POR LA UNIDAD POPULAR", + "listas": [ + { + "lista": "", + "idAgrupacion": "16", + "Votos": 5150, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "INSTRUMENTO ELECTORAL POR LA UNIDAD POPULAR" + } + ], + "votos": 5150, + "porcentaje": "0.32", + "idAgrupacion": "16", + "color": "#2b438d" + }, + { + "nombre": "FRENTE PATRIOTA FEDERAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "11", + "Votos": 4516, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE PATRIOTA FEDERAL" + } + ], + "votos": 4516, + "porcentaje": "0.28", + "idAgrupacion": "11", + "color": "#0086be" + }, + { + "nombre": "MOVIMIENTO PLURAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "8", + "Votos": 3267, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO PLURAL" + } + ], + "votos": 3267, + "porcentaje": "0.20", + "idAgrupacion": "8", + "color": "#87a7d8" + }, + { + "nombre": "PARTIDO SOCIALISTA AUTÉNTICO", + "listas": [ + { + "lista": "", + "idAgrupacion": "12", + "Votos": 3264, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO SOCIALISTA AUTÉNTICO" + } + ], + "votos": 3264, + "porcentaje": "0.20", + "idAgrupacion": "12", + "color": "#97d600" + }, + { + "nombre": "PARTIDO COMUNISTA", + "listas": [ + { + "lista": "", + "idAgrupacion": "13", + "Votos": 3000, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO COMUNISTA" + } + ], + "votos": 3000, + "porcentaje": "0.18", + "idAgrupacion": "13", + "color": "#ff1e17" + } + ], + "RECURRIDO": 816, + "IMPUGNADO": 281, + "COMANDO": 0, + "NULO": 23035, + "EN BLANCO": 79960, + "IdDistrito": 1, + "Distrito": "CIUDAD AUTÓNOMA DE BUENOS AIRES", + "MesasEscrutadas": 7284, + "Electores": 55404140, + "Votantes": 1732259, + "ParticipacionSobreEscrutado": 3.13, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 1628167, + "blancos": 79960, + "impugnados": 281, + "nulos": 23035, + "recurridos": 816, + "comando": 0, + "union": 1097 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_02.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_02.json new file mode 100644 index 0000000000..5c8592dc33 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_02.json @@ -0,0 +1,284 @@ +{ + "total": 9013159, + "agrupaciones": [ + { + "nombre": "ALIANZA LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "110", + "Votos": 3605127, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA LA LIBERTAD AVANZA" + } + ], + "votos": 3605127, + "porcentaje": "41.45", + "idAgrupacion": "110", + "color": "#743bbc" + }, + { + "nombre": "ALIANZA FUERZA PATRIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "248", + "Votos": 3558527, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA FUERZA PATRIA" + } + ], + "votos": 3558527, + "porcentaje": "40.92", + "idAgrupacion": "248", + "color": "#63b5e5" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "372", + "Votos": 438747, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 438747, + "porcentaje": "5.05", + "idAgrupacion": "372", + "color": "#ef2b2d" + }, + { + "nombre": "PROPUESTA FEDERAL PARA EL CAMBIO", + "listas": [ + { + "lista": "", + "idAgrupacion": "258", + "Votos": 243326, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PROPUESTA FEDERAL PARA EL CAMBIO" + } + ], + "votos": 243326, + "porcentaje": "2.80", + "idAgrupacion": "258", + "color": "#af1180" + }, + { + "nombre": "ALIANZA PROVINCIAS UNIDAS", + "listas": [ + { + "lista": "", + "idAgrupacion": "259", + "Votos": 212959, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA PROVINCIAS UNIDAS" + } + ], + "votos": 212959, + "porcentaje": "2.45", + "idAgrupacion": "259", + "color": "#ff5800" + }, + { + "nombre": "PARTIDO NUEVO BUENOS AIRES", + "listas": [ + { + "lista": "", + "idAgrupacion": "252", + "Votos": 116670, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO NUEVO BUENOS AIRES" + } + ], + "votos": 116670, + "porcentaje": "1.34", + "idAgrupacion": "252", + "color": "#c80f2e" + }, + { + "nombre": "FRENTE PATRIOTA FEDERAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "11", + "Votos": 104965, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE PATRIOTA FEDERAL" + } + ], + "votos": 104965, + "porcentaje": "1.21", + "idAgrupacion": "11", + "color": "#0086be" + }, + { + "nombre": "ALIANZA UNIÓN FEDERAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "317", + "Votos": 78125, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA UNIÓN FEDERAL" + } + ], + "votos": 78125, + "porcentaje": "0.90", + "idAgrupacion": "317", + "color": "#4fa0d8" + }, + { + "nombre": "COALICIÓN CÍVICA - A.R.I.", + "listas": [ + { + "lista": "", + "idAgrupacion": "316", + "Votos": 69358, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "COALICIÓN CÍVICA - A.R.I." + } + ], + "votos": 69358, + "porcentaje": "0.80", + "idAgrupacion": "316", + "color": "#ed145b" + }, + { + "nombre": "ALIANZA POTENCIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "260", + "Votos": 61209, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA POTENCIA" + } + ], + "votos": 61209, + "porcentaje": "0.70", + "idAgrupacion": "260", + "color": "#99001f" + }, + { + "nombre": "MOVIMIENTO POLÍTICO SOCIAL Y CULTURAL PROYECTO SUR", + "listas": [ + { + "lista": "", + "idAgrupacion": "265", + "Votos": 52563, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO POLÍTICO SOCIAL Y CULTURAL PROYECTO SUR" + } + ], + "votos": 52563, + "porcentaje": "0.60", + "idAgrupacion": "265", + "color": "#d6001c" + }, + { + "nombre": "MOVIMIENTO AVANZADA SOCIALISTA", + "listas": [ + { + "lista": "", + "idAgrupacion": "263", + "Votos": 49482, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO AVANZADA SOCIALISTA" + } + ], + "votos": 49482, + "porcentaje": "0.57", + "idAgrupacion": "263", + "color": "#ea675f" + }, + { + "nombre": "ALIANZA NUEVOS AIRES", + "listas": [ + { + "lista": "", + "idAgrupacion": "262", + "Votos": 45550, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA NUEVOS AIRES" + } + ], + "votos": 45550, + "porcentaje": "0.52", + "idAgrupacion": "262", + "color": "#ff8b6e" + }, + { + "nombre": "UNIÓN LIBERAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "315", + "Votos": 43339, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "UNIÓN LIBERAL" + } + ], + "votos": 43339, + "porcentaje": "0.50", + "idAgrupacion": "315", + "color": "#3a4682" + }, + { + "nombre": "LIBER.AR", + "listas": [ + { + "lista": "", + "idAgrupacion": "253", + "Votos": 16689, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "LIBER.AR" + } + ], + "votos": 16689, + "porcentaje": "0.19", + "idAgrupacion": "253", + "color": "#e1e1e1" + } + ], + "RECURRIDO": 4277, + "COMANDO": 0, + "IMPUGNADO": 2122, + "EN BLANCO": 103947, + "NULO": 206177, + "IdDistrito": 2, + "Distrito": "BUENOS AIRES", + "MesasEscrutadas": 38760, + "Electores": 266980280, + "Votantes": 9013159, + "ParticipacionSobreEscrutado": 3.38, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 8696636, + "blancos": 103947, + "impugnados": 2122, + "nulos": 206177, + "recurridos": 4277, + "comando": 0, + "union": 6399 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_03.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_03.json new file mode 100644 index 0000000000..4d5ae14389 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_03.json @@ -0,0 +1,182 @@ +{ + "total": 228847, + "agrupaciones": [ + { + "nombre": "FUERZA PATRIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "18", + "Votos": 97988, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FUERZA PATRIA" + } + ], + "votos": 97988, + "porcentaje": "45.67", + "idAgrupacion": "18", + "color": "#63b5e5" + }, + { + "nombre": "ALIANZA LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "21", + "Votos": 72176, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA LA LIBERTAD AVANZA" + } + ], + "votos": 72176, + "porcentaje": "33.64", + "idAgrupacion": "21", + "color": "#743bbc" + }, + { + "nombre": "SOMOS PROVINCIAS UNIDAS - CATAMARCA", + "listas": [ + { + "lista": "", + "idAgrupacion": "45", + "Votos": 13928, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "SOMOS PROVINCIAS UNIDAS - CATAMARCA" + } + ], + "votos": 13928, + "porcentaje": "6.49", + "idAgrupacion": "45", + "color": "#ff5800" + }, + { + "nombre": "PRIMERO CATAMARCA", + "listas": [ + { + "lista": "", + "idAgrupacion": "19", + "Votos": 6653, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PRIMERO CATAMARCA" + } + ], + "votos": 6653, + "porcentaje": "3.10", + "idAgrupacion": "19", + "color": "#fd8c0c" + }, + { + "nombre": "HACEMOS RENACER CATAMARCA", + "listas": [ + { + "lista": "", + "idAgrupacion": "22", + "Votos": 6616, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "HACEMOS RENACER CATAMARCA" + } + ], + "votos": 6616, + "porcentaje": "3.08", + "idAgrupacion": "22", + "color": "#00a6d6" + }, + { + "nombre": "MOVIMIENTO DE INTEGRACIÓN Y DESARROLLO - MID", + "listas": [ + { + "lista": "", + "idAgrupacion": "322", + "Votos": 6449, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO DE INTEGRACIÓN Y DESARROLLO - MID" + } + ], + "votos": 6449, + "porcentaje": "3.01", + "idAgrupacion": "322", + "color": "#fce122" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "31", + "Votos": 4133, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 4133, + "porcentaje": "1.93", + "idAgrupacion": "31", + "color": "#ef2b2d" + }, + { + "nombre": "POLÍTICA OBRERA", + "listas": [ + { + "lista": "", + "idAgrupacion": "323", + "Votos": 3670, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "POLÍTICA OBRERA" + } + ], + "votos": 3670, + "porcentaje": "1.71", + "idAgrupacion": "323", + "color": "#d24124" + }, + { + "nombre": "FRENTE PATRIOTA FEDERAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "11", + "Votos": 2951, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE PATRIOTA FEDERAL" + } + ], + "votos": 2951, + "porcentaje": "1.38", + "idAgrupacion": "11", + "color": "#0086be" + } + ], + "RECURRIDO": 228, + "COMANDO": 0, + "NULO": 6363, + "IMPUGNADO": 53, + "EN BLANCO": 7639, + "IdDistrito": 3, + "Distrito": "CATAMARCA", + "MesasEscrutadas": 1468, + "Electores": 4862214, + "Votantes": 228847, + "ParticipacionSobreEscrutado": 4.71, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 214564, + "blancos": 7639, + "impugnados": 53, + "nulos": 6363, + "recurridos": 228, + "comando": 0, + "union": 281 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_04.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_04.json new file mode 100644 index 0000000000..8fa65e739d --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_04.json @@ -0,0 +1,335 @@ +{ + "total": 2024254, + "agrupaciones": [ + { + "nombre": "ALIANZA LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "21", + "Votos": 822240, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA LA LIBERTAD AVANZA" + } + ], + "votos": 822240, + "porcentaje": "42.35", + "idAgrupacion": "21", + "color": "#743bbc" + }, + { + "nombre": "ALIANZA PROVINCIAS UNIDAS", + "listas": [ + { + "lista": "", + "idAgrupacion": "64", + "Votos": 549839, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA PROVINCIAS UNIDAS" + } + ], + "votos": 549839, + "porcentaje": "28.32", + "idAgrupacion": "64", + "color": "#ff5800" + }, + { + "nombre": "DEFENDAMOS CÓRDOBA", + "listas": [ + { + "lista": "", + "idAgrupacion": "365", + "Votos": 169951, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "DEFENDAMOS CÓRDOBA" + } + ], + "votos": 169951, + "porcentaje": "8.75", + "idAgrupacion": "365", + "color": "#971632" + }, + { + "nombre": "ALIANZA FUERZA PATRIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "248", + "Votos": 98758, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA FUERZA PATRIA" + } + ], + "votos": 98758, + "porcentaje": "5.09", + "idAgrupacion": "248", + "color": "#63b5e5" + }, + { + "nombre": "PARTIDO LIBERTARIO", + "listas": [ + { + "lista": "", + "idAgrupacion": "48", + "Votos": 93202, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO LIBERTARIO" + } + ], + "votos": 93202, + "porcentaje": "4.80", + "idAgrupacion": "48", + "color": "#372a84" + }, + { + "nombre": "UNIÓN CÍVICA RADICAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "335", + "Votos": 62847, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "UNIÓN CÍVICA RADICAL" + } + ], + "votos": 62847, + "porcentaje": "3.24", + "idAgrupacion": "335", + "color": "#db2821" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "59", + "Votos": 40263, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 40263, + "porcentaje": "2.07", + "idAgrupacion": "59", + "color": "#ef2b2d" + }, + { + "nombre": "ALIANZA ENCUENTRO POR LA REPÚBLICA", + "listas": [ + { + "lista": "", + "idAgrupacion": "52", + "Votos": 31654, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA ENCUENTRO POR LA REPÚBLICA" + } + ], + "votos": 31654, + "porcentaje": "1.63", + "idAgrupacion": "52", + "color": "#06945a" + }, + { + "nombre": "FE", + "listas": [ + { + "lista": "", + "idAgrupacion": "63", + "Votos": 17895, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FE" + } + ], + "votos": 17895, + "porcentaje": "0.92", + "idAgrupacion": "63", + "color": "#bbdd00" + }, + { + "nombre": "PRO - PROPUESTA REPUBLICANA", + "listas": [ + { + "lista": "", + "idAgrupacion": "119", + "Votos": 11458, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PRO - PROPUESTA REPUBLICANA" + } + ], + "votos": 11458, + "porcentaje": "0.59", + "idAgrupacion": "119", + "color": "#fece00" + }, + { + "nombre": "ALIANZA CIUDADANOS", + "listas": [ + { + "lista": "", + "idAgrupacion": "50", + "Votos": 10488, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA CIUDADANOS" + } + ], + "votos": 10488, + "porcentaje": "0.54", + "idAgrupacion": "50", + "color": "#3988c3" + }, + { + "nombre": "POLÍTICA ABIERTA PARA LA INTEGRIDAD SOCIAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "54", + "Votos": 6516, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "POLÍTICA ABIERTA PARA LA INTEGRIDAD SOCIAL" + } + ], + "votos": 6516, + "porcentaje": "0.34", + "idAgrupacion": "54", + "color": "#517eb7" + }, + { + "nombre": "ACCIÓN PARA EL CAMBIO", + "listas": [ + { + "lista": "", + "idAgrupacion": "57", + "Votos": 5275, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ACCIÓN PARA EL CAMBIO" + } + ], + "votos": 5275, + "porcentaje": "0.27", + "idAgrupacion": "57", + "color": "#68ba94" + }, + { + "nombre": "PARTIDO DEMÓCRATA", + "listas": [ + { + "lista": "", + "idAgrupacion": "56", + "Votos": 5109, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO DEMÓCRATA" + } + ], + "votos": 5109, + "porcentaje": "0.26", + "idAgrupacion": "56", + "color": "#152698" + }, + { + "nombre": "MOVIMIENTO AVANZADA SOCIALISTA", + "listas": [ + { + "lista": "", + "idAgrupacion": "62", + "Votos": 4659, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO AVANZADA SOCIALISTA" + } + ], + "votos": 4659, + "porcentaje": "0.24", + "idAgrupacion": "62", + "color": "#ea675f" + }, + { + "nombre": "ALIANZA CÓRDOBA TE QUIERO", + "listas": [ + { + "lista": "", + "idAgrupacion": "55", + "Votos": 4659, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA CÓRDOBA TE QUIERO" + } + ], + "votos": 4659, + "porcentaje": "0.24", + "idAgrupacion": "55", + "color": "#fab823" + }, + { + "nombre": "FRENTE FEDERAL DE ACCIÓN SOLIDARIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "53", + "Votos": 3866, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE FEDERAL DE ACCIÓN SOLIDARIA" + } + ], + "votos": 3866, + "porcentaje": "0.20", + "idAgrupacion": "53", + "color": "#b99758" + }, + { + "nombre": "UNIÓN POPULAR FEDERAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "51", + "Votos": 2680, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "UNIÓN POPULAR FEDERAL" + } + ], + "votos": 2680, + "porcentaje": "0.14", + "idAgrupacion": "51", + "color": "#171930" + } + ], + "RECURRIDO": 1109, + "IMPUGNADO": 348, + "COMANDO": 0, + "NULO": 52338, + "EN BLANCO": 29100, + "IdDistrito": 4, + "Distrito": "CÓRDOBA", + "MesasEscrutadas": 9262, + "Electores": 71742658, + "Votantes": 2024254, + "ParticipacionSobreEscrutado": 2.82, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 1941359, + "blancos": 29100, + "impugnados": 348, + "nulos": 52338, + "recurridos": 1109, + "comando": 0, + "union": 1457 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_05.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_05.json new file mode 100644 index 0000000000..af7e52364e --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_05.json @@ -0,0 +1,114 @@ +{ + "total": 567131, + "agrupaciones": [ + { + "nombre": "VAMOS CORRIENTES", + "listas": [ + { + "lista": "", + "idAgrupacion": "68", + "Votos": 185048, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "VAMOS CORRIENTES" + } + ], + "votos": 185048, + "porcentaje": "33.91", + "idAgrupacion": "68", + "color": "#fe682d" + }, + { + "nombre": "LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "69", + "Votos": 178294, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "LA LIBERTAD AVANZA" + } + ], + "votos": 178294, + "porcentaje": "32.68", + "idAgrupacion": "69", + "color": "#743bbc" + }, + { + "nombre": "FUERZA PATRIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "65", + "Votos": 154546, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FUERZA PATRIA" + } + ], + "votos": 154546, + "porcentaje": "28.32", + "idAgrupacion": "65", + "color": "#63b5e5" + }, + { + "nombre": "CORRIENTES NOS UNE", + "listas": [ + { + "lista": "", + "idAgrupacion": "67", + "Votos": 20112, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "CORRIENTES NOS UNE" + } + ], + "votos": 20112, + "porcentaje": "3.69", + "idAgrupacion": "67", + "color": "#c88342" + }, + { + "nombre": "AHORA", + "listas": [ + { + "lista": "", + "idAgrupacion": "66", + "Votos": 7624, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "AHORA" + } + ], + "votos": 7624, + "porcentaje": "1.40", + "idAgrupacion": "66", + "color": "#4c4c4c" + } + ], + "RECURRIDO": 538, + "COMANDO": 0, + "NULO": 13812, + "IMPUGNADO": 86, + "EN BLANCO": 7071, + "IdDistrito": 5, + "Distrito": "CORRIENTES", + "MesasEscrutadas": 2807, + "Electores": 9514920, + "Votantes": 567131, + "ParticipacionSobreEscrutado": 5.96, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 545624, + "blancos": 7071, + "impugnados": 86, + "nulos": 13812, + "recurridos": 538, + "comando": 0, + "union": 624 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_06.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_06.json new file mode 100644 index 0000000000..764880e05e --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_06.json @@ -0,0 +1,199 @@ +{ + "total": 652681, + "agrupaciones": [ + { + "nombre": "LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "73", + "Votos": 265098, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "LA LIBERTAD AVANZA" + } + ], + "votos": 265098, + "porcentaje": "45.57", + "idAgrupacion": "73", + "color": "#743bbc" + }, + { + "nombre": "FUERZA PATRIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "18", + "Votos": 253517, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FUERZA PATRIA" + } + ], + "votos": 253517, + "porcentaje": "43.58", + "idAgrupacion": "18", + "color": "#63b5e5" + }, + { + "nombre": "VAMOS CHACO", + "listas": [ + { + "lista": "", + "idAgrupacion": "75", + "Votos": 17754, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "VAMOS CHACO" + } + ], + "votos": 17754, + "porcentaje": "3.05", + "idAgrupacion": "75", + "color": "#004644" + }, + { + "nombre": "FRENTE INTEGRADOR", + "listas": [ + { + "lista": "", + "idAgrupacion": "74", + "Votos": 13644, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE INTEGRADOR" + } + ], + "votos": 13644, + "porcentaje": "2.35", + "idAgrupacion": "74", + "color": "#f80c34" + }, + { + "nombre": "PARTIDO DEL OBRERO", + "listas": [ + { + "lista": "", + "idAgrupacion": "71", + "Votos": 7871, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO DEL OBRERO" + } + ], + "votos": 7871, + "porcentaje": "1.35", + "idAgrupacion": "71", + "color": "#ef2b2d" + }, + { + "nombre": "NEPAR", + "listas": [ + { + "lista": "", + "idAgrupacion": "72", + "Votos": 6553, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "NEPAR" + } + ], + "votos": 6553, + "porcentaje": "1.13", + "idAgrupacion": "72", + "color": "#febf3e" + }, + { + "nombre": "PROYECTO SUR", + "listas": [ + { + "lista": "", + "idAgrupacion": "70", + "Votos": 6358, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PROYECTO SUR" + } + ], + "votos": 6358, + "porcentaje": "1.09", + "idAgrupacion": "70", + "color": "#00183a" + }, + { + "nombre": "PARTIDO DIGNIDAD POPULAR", + "listas": [ + { + "lista": "", + "idAgrupacion": "76", + "Votos": 4324, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO DIGNIDAD POPULAR" + } + ], + "votos": 4324, + "porcentaje": "0.74", + "idAgrupacion": "76", + "color": "#f3f3f5" + }, + { + "nombre": "UNIR", + "listas": [ + { + "lista": "", + "idAgrupacion": "78", + "Votos": 4302, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "UNIR" + } + ], + "votos": 4302, + "porcentaje": "0.74", + "idAgrupacion": "78", + "color": "#e35696" + }, + { + "nombre": "PARTIDO POLO SOCIAL - MOVIMIENTO DE BASES", + "listas": [ + { + "lista": "", + "idAgrupacion": "77", + "Votos": 2257, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO POLO SOCIAL - MOVIMIENTO DE BASES" + } + ], + "votos": 2257, + "porcentaje": "0.39", + "idAgrupacion": "77", + "color": "#05873d" + } + ], + "IMPUGNADO": 273, + "RECURRIDO": 753, + "EN BLANCO": 60461, + "NULO": 9516, + "COMANDO": 0, + "IdDistrito": 6, + "Distrito": "CHACO", + "MesasEscrutadas": 2977, + "Electores": 15183135, + "Votantes": 652681, + "ParticipacionSobreEscrutado": 4.3, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 581678, + "blancos": 60461, + "impugnados": 273, + "nulos": 9516, + "recurridos": 753, + "comando": 0, + "union": 1026 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_07.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_07.json new file mode 100644 index 0000000000..4a97c07a9a --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_07.json @@ -0,0 +1,165 @@ +{ + "total": 337667, + "agrupaciones": [ + { + "nombre": "LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "83", + "Votos": 89070, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "LA LIBERTAD AVANZA" + } + ], + "votos": 89070, + "porcentaje": "28.30", + "idAgrupacion": "83", + "color": "#743bbc" + }, + { + "nombre": "FRENTE UNIDOS PODEMOS", + "listas": [ + { + "lista": "", + "idAgrupacion": "80", + "Votos": 87628, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE UNIDOS PODEMOS" + } + ], + "votos": 87628, + "porcentaje": "27.84", + "idAgrupacion": "80", + "color": "#ffffff" + }, + { + "nombre": "DESPIERTA CHUBUT", + "listas": [ + { + "lista": "", + "idAgrupacion": "86", + "Votos": 63056, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "DESPIERTA CHUBUT" + } + ], + "votos": 63056, + "porcentaje": "20.04", + "idAgrupacion": "86", + "color": "#fd5001" + }, + { + "nombre": "LA FUERZA DEL TRABAJO CHUBUTENSE", + "listas": [ + { + "lista": "", + "idAgrupacion": "85", + "Votos": 34186, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "LA FUERZA DEL TRABAJO CHUBUTENSE" + } + ], + "votos": 34186, + "porcentaje": "10.86", + "idAgrupacion": "85", + "color": "#4fabd4" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "81", + "Votos": 16171, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 16171, + "porcentaje": "5.14", + "idAgrupacion": "81", + "color": "#ef2b2d" + }, + { + "nombre": "PARTIDO LIBERTARIO", + "listas": [ + { + "lista": "", + "idAgrupacion": "79", + "Votos": 13762, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO LIBERTARIO" + } + ], + "votos": 13762, + "porcentaje": "4.37", + "idAgrupacion": "79", + "color": "#372a84" + }, + { + "nombre": "PARTIDO INDEPENDIENTE DE CHUBUT", + "listas": [ + { + "lista": "", + "idAgrupacion": "84", + "Votos": 6380, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO INDEPENDIENTE DE CHUBUT" + } + ], + "votos": 6380, + "porcentaje": "2.03", + "idAgrupacion": "84", + "color": "#0047bb" + }, + { + "nombre": "GEN", + "listas": [ + { + "lista": "", + "idAgrupacion": "2", + "Votos": 4465, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "GEN" + } + ], + "votos": 4465, + "porcentaje": "1.42", + "idAgrupacion": "2", + "color": "#da281c" + } + ], + "NULO": 14271, + "RECURRIDO": 282, + "COMANDO": 0, + "EN BLANCO": 8340, + "IMPUGNADO": 56, + "IdDistrito": 7, + "Distrito": "CHUBUT", + "MesasEscrutadas": 1450, + "Electores": 6305390, + "Votantes": 337667, + "ParticipacionSobreEscrutado": 5.36, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 314718, + "blancos": 8340, + "impugnados": 56, + "nulos": 14271, + "recurridos": 282, + "comando": 0, + "union": 338 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_08.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_08.json new file mode 100644 index 0000000000..ebd9604354 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_08.json @@ -0,0 +1,148 @@ +{ + "total": 811650, + "agrupaciones": [ + { + "nombre": "ALIANZA LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "94", + "Votos": 375525, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA LA LIBERTAD AVANZA" + } + ], + "votos": 375525, + "porcentaje": "52.94", + "idAgrupacion": "94", + "color": "#743bbc" + }, + { + "nombre": "FUERZA ENTRE RÍOS", + "listas": [ + { + "lista": "", + "idAgrupacion": "375", + "Votos": 243884, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FUERZA ENTRE RÍOS" + } + ], + "votos": 243884, + "porcentaje": "34.38", + "idAgrupacion": "375", + "color": "#01a7e1" + }, + { + "nombre": "PARTIDO SOCIALISTA", + "listas": [ + { + "lista": "", + "idAgrupacion": "275", + "Votos": 25923, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO SOCIALISTA" + } + ], + "votos": 25923, + "porcentaje": "3.65", + "idAgrupacion": "275", + "color": "#e30c1b" + }, + { + "nombre": "AHORA 503", + "listas": [ + { + "lista": "", + "idAgrupacion": "274", + "Votos": 25296, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "AHORA 503" + } + ], + "votos": 25296, + "porcentaje": "3.57", + "idAgrupacion": "274", + "color": "#ff8541" + }, + { + "nombre": "NUEVA IZQUIERDA", + "listas": [ + { + "lista": "", + "idAgrupacion": "272", + "Votos": 17826, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "NUEVA IZQUIERDA" + } + ], + "votos": 17826, + "porcentaje": "2.51", + "idAgrupacion": "272", + "color": "#cd3333" + }, + { + "nombre": "UNIÓN POPULAR FEDERAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "371", + "Votos": 12564, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "UNIÓN POPULAR FEDERAL" + } + ], + "votos": 12564, + "porcentaje": "1.77", + "idAgrupacion": "371", + "color": "#171930" + }, + { + "nombre": "MOVIMIENTO AL SOCIALISMO", + "listas": [ + { + "lista": "", + "idAgrupacion": "99", + "Votos": 8385, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO AL SOCIALISMO" + } + ], + "votos": 8385, + "porcentaje": "1.18", + "idAgrupacion": "99", + "color": "#ea675f" + } + ], + "NULO": 21000, + "COMANDO": 0, + "IMPUGNADO": 54, + "EN BLANCO": 80429, + "RECURRIDO": 764, + "IdDistrito": 8, + "Distrito": "ENTRE RÍOS", + "MesasEscrutadas": 3469, + "Electores": 13865772, + "Votantes": 811650, + "ParticipacionSobreEscrutado": 5.85, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 709403, + "blancos": 80429, + "impugnados": 54, + "nulos": 21000, + "recurridos": 764, + "comando": 0, + "union": 818 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_09.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_09.json new file mode 100644 index 0000000000..2fdfe13638 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_09.json @@ -0,0 +1,114 @@ +{ + "total": 334423, + "agrupaciones": [ + { + "nombre": "FRENTE DE LA VICTORIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "88", + "Votos": 190783, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE LA VICTORIA" + } + ], + "votos": 190783, + "porcentaje": "58.36", + "idAgrupacion": "88", + "color": "#0078bf" + }, + { + "nombre": "ALIANZA LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "21", + "Votos": 117301, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA LA LIBERTAD AVANZA" + } + ], + "votos": 117301, + "porcentaje": "35.88", + "idAgrupacion": "21", + "color": "#743bbc" + }, + { + "nombre": "JUNTOS POR LA LIBERTAD Y LA REPÚBLICA", + "listas": [ + { + "lista": "", + "idAgrupacion": "89", + "Votos": 11971, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "JUNTOS POR LA LIBERTAD Y LA REPÚBLICA" + } + ], + "votos": 11971, + "porcentaje": "3.66", + "idAgrupacion": "89", + "color": "#fe682d" + }, + { + "nombre": "PARTIDO DEL OBRERO", + "listas": [ + { + "lista": "", + "idAgrupacion": "71", + "Votos": 3625, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO DEL OBRERO" + } + ], + "votos": 3625, + "porcentaje": "1.11", + "idAgrupacion": "71", + "color": "#ef2b2d" + }, + { + "nombre": "PRINCIPIOS Y CONVICCIÓN", + "listas": [ + { + "lista": "", + "idAgrupacion": "87", + "Votos": 3253, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PRINCIPIOS Y CONVICCIÓN" + } + ], + "votos": 3253, + "porcentaje": "1.00", + "idAgrupacion": "87", + "color": "#009c77" + } + ], + "NULO": 4028, + "RECURRIDO": 117, + "COMANDO": 0, + "IMPUGNADO": 33, + "EN BLANCO": 3312, + "IdDistrito": 9, + "Distrito": "FORMOSA", + "MesasEscrutadas": 1512, + "Electores": 4917930, + "Votantes": 334423, + "ParticipacionSobreEscrutado": 6.8, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 326933, + "blancos": 3312, + "impugnados": 33, + "nulos": 4028, + "recurridos": 117, + "comando": 0, + "union": 150 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_10.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_10.json new file mode 100644 index 0000000000..88e1bfa6a3 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_10.json @@ -0,0 +1,148 @@ +{ + "total": 424283, + "agrupaciones": [ + { + "nombre": "ALIANZA LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "94", + "Votos": 151415, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA LA LIBERTAD AVANZA" + } + ], + "votos": 151415, + "porcentaje": "37.23", + "idAgrupacion": "94", + "color": "#743bbc" + }, + { + "nombre": "FRENTE JUJUY CRECE", + "listas": [ + { + "lista": "", + "idAgrupacion": "90", + "Votos": 81454, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE JUJUY CRECE" + } + ], + "votos": 81454, + "porcentaje": "20.03", + "idAgrupacion": "90", + "color": "#e6603a" + }, + { + "nombre": "FRENTE FUERZA PATRIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "92", + "Votos": 63112, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE FUERZA PATRIA" + } + ], + "votos": 63112, + "porcentaje": "15.52", + "idAgrupacion": "92", + "color": "#63b5e5" + }, + { + "nombre": "FRENTE PRIMERO JUJUY AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "91", + "Votos": 61539, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE PRIMERO JUJUY AVANZA" + } + ], + "votos": 61539, + "porcentaje": "15.13", + "idAgrupacion": "91", + "color": "#04376e" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "9", + "Votos": 40095, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 40095, + "porcentaje": "9.86", + "idAgrupacion": "9", + "color": "#ef2b2d" + }, + { + "nombre": "FRENTE LIBERAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "93", + "Votos": 5806, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE LIBERAL" + } + ], + "votos": 5806, + "porcentaje": "1.43", + "idAgrupacion": "93", + "color": "#462363" + }, + { + "nombre": "TRANSFORMACIÓN LIBERTARIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "95", + "Votos": 3308, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "TRANSFORMACIÓN LIBERTARIA" + } + ], + "votos": 3308, + "porcentaje": "0.81", + "idAgrupacion": "95", + "color": "#e6603a" + } + ], + "EN BLANCO": 4342, + "COMANDO": 0, + "IMPUGNADO": 51, + "NULO": 12607, + "RECURRIDO": 554, + "IdDistrito": 10, + "Distrito": "JUJUY", + "MesasEscrutadas": 1806, + "Electores": 7236840, + "Votantes": 424283, + "ParticipacionSobreEscrutado": 5.86, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 406729, + "blancos": 4342, + "impugnados": 51, + "nulos": 12607, + "recurridos": 554, + "comando": 0, + "union": 605 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_11.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_11.json new file mode 100644 index 0000000000..529db69efa --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_11.json @@ -0,0 +1,114 @@ +{ + "total": 208742, + "agrupaciones": [ + { + "nombre": "FRENTE DEFENDEMOS LA PAMPA", + "listas": [ + { + "lista": "", + "idAgrupacion": "96", + "Votos": 90097, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DEFENDEMOS LA PAMPA" + } + ], + "votos": 90097, + "porcentaje": "44.60", + "idAgrupacion": "96", + "color": "#019cde" + }, + { + "nombre": "ALIANZA LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "6", + "Votos": 88004, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA LA LIBERTAD AVANZA" + } + ], + "votos": 88004, + "porcentaje": "43.56", + "idAgrupacion": "6", + "color": "#743bbc" + }, + { + "nombre": "CAMBIA LA PAMPA", + "listas": [ + { + "lista": "", + "idAgrupacion": "98", + "Votos": 17364, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "CAMBIA LA PAMPA" + } + ], + "votos": 17364, + "porcentaje": "8.60", + "idAgrupacion": "98", + "color": "#f16d01" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "105", + "Votos": 4123, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 4123, + "porcentaje": "2.04", + "idAgrupacion": "105", + "color": "#ef2b2d" + }, + { + "nombre": "MOVIMIENTO AL SOCIALISMO", + "listas": [ + { + "lista": "", + "idAgrupacion": "99", + "Votos": 2432, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO AL SOCIALISMO" + } + ], + "votos": 2432, + "porcentaje": "1.20", + "idAgrupacion": "99", + "color": "#ea675f" + } + ], + "COMANDO": 0, + "NULO": 3898, + "EN BLANCO": 2499, + "RECURRIDO": 289, + "IMPUGNADO": 36, + "IdDistrito": 11, + "Distrito": "LA PAMPA", + "MesasEscrutadas": 915, + "Electores": 3046570, + "Votantes": 208742, + "ParticipacionSobreEscrutado": 6.85, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 202020, + "blancos": 2499, + "impugnados": 36, + "nulos": 3898, + "recurridos": 289, + "comando": 0, + "union": 325 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_12.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_12.json new file mode 100644 index 0000000000..68de849438 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_12.json @@ -0,0 +1,148 @@ +{ + "total": 214521, + "agrupaciones": [ + { + "nombre": "FEDERALES DEFENDAMOS LA RIOJA", + "listas": [ + { + "lista": "", + "idAgrupacion": "100", + "Votos": 89789, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FEDERALES DEFENDAMOS LA RIOJA" + } + ], + "votos": 89789, + "porcentaje": "43.57", + "idAgrupacion": "100", + "color": "#019cde" + }, + { + "nombre": "LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "103", + "Votos": 89168, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "LA LIBERTAD AVANZA" + } + ], + "votos": 89168, + "porcentaje": "43.27", + "idAgrupacion": "103", + "color": "#743bbc" + }, + { + "nombre": "UNIÓN CÍVICA RADICAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "335", + "Votos": 11576, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "UNIÓN CÍVICA RADICAL" + } + ], + "votos": 11576, + "porcentaje": "5.62", + "idAgrupacion": "335", + "color": "#db2821" + }, + { + "nombre": "PROVINCIAS UNIDAS", + "listas": [ + { + "lista": "", + "idAgrupacion": "101", + "Votos": 6800, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PROVINCIAS UNIDAS" + } + ], + "votos": 6800, + "porcentaje": "3.30", + "idAgrupacion": "101", + "color": "#ff5800" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "105", + "Votos": 4017, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 4017, + "porcentaje": "1.95", + "idAgrupacion": "105", + "color": "#ef2b2d" + }, + { + "nombre": "LAS FUERZAS DEL CENTRO", + "listas": [ + { + "lista": "", + "idAgrupacion": "102", + "Votos": 2806, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "LAS FUERZAS DEL CENTRO" + } + ], + "votos": 2806, + "porcentaje": "1.36", + "idAgrupacion": "102", + "color": "#f14c8e" + }, + { + "nombre": "REPUBLICANOS UNIDOS", + "listas": [ + { + "lista": "", + "idAgrupacion": "104", + "Votos": 1911, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "REPUBLICANOS UNIDOS" + } + ], + "votos": 1911, + "porcentaje": "0.93", + "idAgrupacion": "104", + "color": "#01859c" + } + ], + "NULO": 4628, + "RECURRIDO": 253, + "COMANDO": 0, + "IMPUGNADO": 14, + "EN BLANCO": 3559, + "IdDistrito": 12, + "Distrito": "LA RIOJA", + "MesasEscrutadas": 1322, + "Electores": 3718332, + "Votantes": 214521, + "ParticipacionSobreEscrutado": 5.77, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 206067, + "blancos": 3559, + "impugnados": 14, + "nulos": 4628, + "recurridos": 253, + "comando": 0, + "union": 267 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_13.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_13.json new file mode 100644 index 0000000000..3e92320389 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_13.json @@ -0,0 +1,165 @@ +{ + "total": 1061936, + "agrupaciones": [ + { + "nombre": "ALIANZA LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "282", + "Votos": 538693, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA LA LIBERTAD AVANZA" + } + ], + "votos": 538693, + "porcentaje": "53.64", + "idAgrupacion": "282", + "color": "#743bbc" + }, + { + "nombre": "FUERZA JUSTICIALISTA MENDOZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "277", + "Votos": 253109, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FUERZA JUSTICIALISTA MENDOZA" + } + ], + "votos": 253109, + "porcentaje": "25.20", + "idAgrupacion": "277", + "color": "#3dadd5" + }, + { + "nombre": "FRENTE VERDE", + "listas": [ + { + "lista": "", + "idAgrupacion": "278", + "Votos": 80148, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE VERDE" + } + ], + "votos": 80148, + "porcentaje": "7.98", + "idAgrupacion": "278", + "color": "#7b9a01" + }, + { + "nombre": "FRENTE LIBERTARIO DEMÓCRATA", + "listas": [ + { + "lista": "", + "idAgrupacion": "280", + "Votos": 54193, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE LIBERTARIO DEMÓCRATA" + } + ], + "votos": 54193, + "porcentaje": "5.40", + "idAgrupacion": "280", + "color": "#2970b0" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "9", + "Votos": 34605, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 34605, + "porcentaje": "3.45", + "idAgrupacion": "9", + "color": "#ef2b2d" + }, + { + "nombre": "ALIANZA DEFENDAMOS MENDOZA - PROVINCIAS UNIDAS", + "listas": [ + { + "lista": "", + "idAgrupacion": "281", + "Votos": 29663, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA DEFENDAMOS MENDOZA - PROVINCIAS UNIDAS" + } + ], + "votos": 29663, + "porcentaje": "2.95", + "idAgrupacion": "281", + "color": "#ff5800" + }, + { + "nombre": "PROTECTORA FUERZA POLÍTICA", + "listas": [ + { + "lista": "", + "idAgrupacion": "279", + "Votos": 10150, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PROTECTORA FUERZA POLÍTICA" + } + ], + "votos": 10150, + "porcentaje": "1.01", + "idAgrupacion": "279", + "color": "#35b292" + }, + { + "nombre": "MOVIMIENTO AL SOCIALISMO", + "listas": [ + { + "lista": "", + "idAgrupacion": "99", + "Votos": 3719, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO AL SOCIALISMO" + } + ], + "votos": 3719, + "porcentaje": "0.37", + "idAgrupacion": "99", + "color": "#ea675f" + } + ], + "NULO": 30145, + "RECURRIDO": 1370, + "COMANDO": 0, + "EN BLANCO": 26019, + "IMPUGNADO": 122, + "IdDistrito": 13, + "Distrito": "MENDOZA", + "MesasEscrutadas": 4445, + "Electores": 19809231, + "Votantes": 1061936, + "ParticipacionSobreEscrutado": 5.36, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 1004280, + "blancos": 26019, + "impugnados": 122, + "nulos": 30145, + "recurridos": 1370, + "comando": 0, + "union": 1492 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_14.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_14.json new file mode 100644 index 0000000000..3eee1b8f10 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_14.json @@ -0,0 +1,216 @@ +{ + "total": 626226, + "agrupaciones": [ + { + "nombre": "ALIANZA LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "110", + "Votos": 223539, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA LA LIBERTAD AVANZA" + } + ], + "votos": 223539, + "porcentaje": "37.09", + "idAgrupacion": "110", + "color": "#743bbc" + }, + { + "nombre": "RENOVADOR DE LA CONCORDIA NEO", + "listas": [ + { + "lista": "", + "idAgrupacion": "107", + "Votos": 181238, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "RENOVADOR DE LA CONCORDIA NEO" + } + ], + "votos": 181238, + "porcentaje": "30.07", + "idAgrupacion": "107", + "color": "#1d247f" + }, + { + "nombre": "FUERZA PATRIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "65", + "Votos": 56780, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FUERZA PATRIA" + } + ], + "votos": 56780, + "porcentaje": "9.42", + "idAgrupacion": "65", + "color": "#63b5e5" + }, + { + "nombre": "FRENTE POPULAR AGRARIO Y SOCIAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "113", + "Votos": 50428, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE POPULAR AGRARIO Y SOCIAL" + } + ], + "votos": 50428, + "porcentaje": "8.37", + "idAgrupacion": "113", + "color": "#78be20" + }, + { + "nombre": "PARTIDO FE", + "listas": [ + { + "lista": "", + "idAgrupacion": "106", + "Votos": 25770, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO FE" + } + ], + "votos": 25770, + "porcentaje": "4.28", + "idAgrupacion": "106", + "color": "#bbdd00" + }, + { + "nombre": "UNIÓN CÍVICA RADICAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "335", + "Votos": 22891, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "UNIÓN CÍVICA RADICAL" + } + ], + "votos": 22891, + "porcentaje": "3.80", + "idAgrupacion": "335", + "color": "#db2821" + }, + { + "nombre": "PARTIDO LIBERTARIO", + "listas": [ + { + "lista": "", + "idAgrupacion": "108", + "Votos": 13397, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO LIBERTARIO" + } + ], + "votos": 13397, + "porcentaje": "2.22", + "idAgrupacion": "108", + "color": "#372a84" + }, + { + "nombre": "ACTIVAR", + "listas": [ + { + "lista": "", + "idAgrupacion": "112", + "Votos": 9007, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ACTIVAR" + } + ], + "votos": 9007, + "porcentaje": "1.49", + "idAgrupacion": "112", + "color": "#1f14d2" + }, + { + "nombre": "PARTIDO DEL OBRERO", + "listas": [ + { + "lista": "", + "idAgrupacion": "71", + "Votos": 8672, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO DEL OBRERO" + } + ], + "votos": 8672, + "porcentaje": "1.44", + "idAgrupacion": "71", + "color": "#ef2b2d" + }, + { + "nombre": "POR LA VIDA Y LOS VALORES, POR UN NUEVO OCTUBRE", + "listas": [ + { + "lista": "", + "idAgrupacion": "111", + "Votos": 7673, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "POR LA VIDA Y LOS VALORES, POR UN NUEVO OCTUBRE" + } + ], + "votos": 7673, + "porcentaje": "1.27", + "idAgrupacion": "111", + "color": "#019cde" + }, + { + "nombre": "PARTIDO DE LA CONCERTACIÓN FORJA", + "listas": [ + { + "lista": "", + "idAgrupacion": "337", + "Votos": 3308, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO DE LA CONCERTACIÓN FORJA" + } + ], + "votos": 3308, + "porcentaje": "0.55", + "idAgrupacion": "337", + "color": "#b31815" + } + ], + "IMPUGNADO": 43, + "RECURRIDO": 250, + "EN BLANCO": 8831, + "NULO": 14399, + "COMANDO": 0, + "IdDistrito": 14, + "Distrito": "MISIONES", + "MesasEscrutadas": 2929, + "Electores": 16105792, + "Votantes": 626226, + "ParticipacionSobreEscrutado": 3.89, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 602703, + "blancos": 8831, + "impugnados": 43, + "nulos": 14399, + "recurridos": 250, + "comando": 0, + "union": 293 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_15.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_15.json new file mode 100644 index 0000000000..4ecaa7a9e0 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_15.json @@ -0,0 +1,182 @@ +{ + "total": 435475, + "agrupaciones": [ + { + "nombre": "LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "83", + "Votos": 127666, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "LA LIBERTAD AVANZA" + } + ], + "votos": 127666, + "porcentaje": "33.36", + "idAgrupacion": "83", + "color": "#743bbc" + }, + { + "nombre": "LA NEUQUINIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "118", + "Votos": 120772, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "LA NEUQUINIDAD" + } + ], + "votos": 120772, + "porcentaje": "31.56", + "idAgrupacion": "118", + "color": "#5dedba" + }, + { + "nombre": "FUERZA PATRIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "115", + "Votos": 50281, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FUERZA PATRIA" + } + ], + "votos": 50281, + "porcentaje": "13.14", + "idAgrupacion": "115", + "color": "#63b5e5" + }, + { + "nombre": "FUERZA LIBERTARIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "114", + "Votos": 27521, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FUERZA LIBERTARIA" + } + ], + "votos": 27521, + "porcentaje": "7.19", + "idAgrupacion": "114", + "color": "#152d49" + }, + { + "nombre": "MÁS POR NEUQUÉN", + "listas": [ + { + "lista": "", + "idAgrupacion": "117", + "Votos": 23350, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MÁS POR NEUQUÉN" + } + ], + "votos": 23350, + "porcentaje": "6.10", + "idAgrupacion": "117", + "color": "#1f3566" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "81", + "Votos": 17271, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 17271, + "porcentaje": "4.51", + "idAgrupacion": "81", + "color": "#ef2b2d" + }, + { + "nombre": "DESARROLLO CIUDADANO", + "listas": [ + { + "lista": "", + "idAgrupacion": "249", + "Votos": 8209, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "DESARROLLO CIUDADANO" + } + ], + "votos": 8209, + "porcentaje": "2.15", + "idAgrupacion": "249", + "color": "#9b2a62" + }, + { + "nombre": "INSTRUMENTO ELECTORAL POR LA UNIDAD POPULAR", + "listas": [ + { + "lista": "", + "idAgrupacion": "16", + "Votos": 4329, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "INSTRUMENTO ELECTORAL POR LA UNIDAD POPULAR" + } + ], + "votos": 4329, + "porcentaje": "1.13", + "idAgrupacion": "16", + "color": "#2b438d" + }, + { + "nombre": "MOVIMIENTO AL SOCIALISMO", + "listas": [ + { + "lista": "", + "idAgrupacion": "99", + "Votos": 3279, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO AL SOCIALISMO" + } + ], + "votos": 3279, + "porcentaje": "0.86", + "idAgrupacion": "99", + "color": "#ea675f" + } + ], + "NULO": 11659, + "IMPUGNADO": 117, + "RECURRIDO": 502, + "COMANDO": 0, + "EN BLANCO": 40519, + "IdDistrito": 15, + "Distrito": "NEUQUÉN", + "MesasEscrutadas": 1747, + "Electores": 8140902, + "Votantes": 435475, + "ParticipacionSobreEscrutado": 5.35, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 382678, + "blancos": 40519, + "impugnados": 117, + "nulos": 11659, + "recurridos": 502, + "comando": 0, + "union": 619 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_16.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_16.json new file mode 100644 index 0000000000..7700db8483 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_16.json @@ -0,0 +1,148 @@ +{ + "total": 424027, + "agrupaciones": [ + { + "nombre": "ALIANZA LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "21", + "Votos": 130278, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA LA LIBERTAD AVANZA" + } + ], + "votos": 130278, + "porcentaje": "34.20", + "idAgrupacion": "21", + "color": "#743bbc" + }, + { + "nombre": "FUERZA PATRIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "120", + "Votos": 112266, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FUERZA PATRIA" + } + ], + "votos": 112266, + "porcentaje": "29.47", + "idAgrupacion": "120", + "color": "#63b5e5" + }, + { + "nombre": "JUNTOS DEFENDEMOS RÍO NEGRO", + "listas": [ + { + "lista": "", + "idAgrupacion": "342", + "Votos": 99716, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "JUNTOS DEFENDEMOS RÍO NEGRO" + } + ], + "votos": 99716, + "porcentaje": "26.18", + "idAgrupacion": "342", + "color": "#509e30" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "105", + "Votos": 11926, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 11926, + "porcentaje": "3.13", + "idAgrupacion": "105", + "color": "#ef2b2d" + }, + { + "nombre": "PRIMERO RÍO NEGRO", + "listas": [ + { + "lista": "", + "idAgrupacion": "341", + "Votos": 11184, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PRIMERO RÍO NEGRO" + } + ], + "votos": 11184, + "porcentaje": "2.94", + "idAgrupacion": "341", + "color": "#000000" + }, + { + "nombre": "PRO - PROPUESTA REPUBLICANA", + "listas": [ + { + "lista": "", + "idAgrupacion": "119", + "Votos": 10460, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PRO - PROPUESTA REPUBLICANA" + } + ], + "votos": 10460, + "porcentaje": "2.75", + "idAgrupacion": "119", + "color": "#fece00" + }, + { + "nombre": "MOVIMIENTO AL SOCIALISMO - MAS", + "listas": [ + { + "lista": "", + "idAgrupacion": "123", + "Votos": 5082, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO AL SOCIALISMO - MAS" + } + ], + "votos": 5082, + "porcentaje": "1.33", + "idAgrupacion": "123", + "color": "#ea675f" + } + ], + "EN BLANCO": 32134, + "COMANDO": 0, + "IMPUGNADO": 37, + "NULO": 10675, + "RECURRIDO": 269, + "IdDistrito": 16, + "Distrito": "RÍO NEGRO", + "MesasEscrutadas": 1844, + "Electores": 7341756, + "Votantes": 424027, + "ParticipacionSobreEscrutado": 5.78, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 380912, + "blancos": 32134, + "impugnados": 37, + "nulos": 10675, + "recurridos": 269, + "comando": 0, + "union": 306 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_17.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_17.json new file mode 100644 index 0000000000..612c87110f --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_17.json @@ -0,0 +1,182 @@ +{ + "total": 710343, + "agrupaciones": [ + { + "nombre": "LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "83", + "Votos": 238459, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "LA LIBERTAD AVANZA" + } + ], + "votos": 238459, + "porcentaje": "38.36", + "idAgrupacion": "83", + "color": "#743bbc" + }, + { + "nombre": "PRIMERO LOS SALTEÑOS", + "listas": [ + { + "lista": "", + "idAgrupacion": "283", + "Votos": 207353, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PRIMERO LOS SALTEÑOS" + } + ], + "votos": 207353, + "porcentaje": "33.36", + "idAgrupacion": "283", + "color": "#cd1821" + }, + { + "nombre": "FUERZA PATRIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "120", + "Votos": 76075, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FUERZA PATRIA" + } + ], + "votos": 76075, + "porcentaje": "12.24", + "idAgrupacion": "120", + "color": "#63b5e5" + }, + { + "nombre": "PARTIDO DE LA VICTORIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "284", + "Votos": 40602, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO DE LA VICTORIA" + } + ], + "votos": 40602, + "porcentaje": "6.53", + "idAgrupacion": "284", + "color": "#01c7f6" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "105", + "Votos": 19862, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 19862, + "porcentaje": "3.20", + "idAgrupacion": "105", + "color": "#ef2b2d" + }, + { + "nombre": "UNIÓN CÍVICA RADICAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "335", + "Votos": 14518, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "UNIÓN CÍVICA RADICAL" + } + ], + "votos": 14518, + "porcentaje": "2.34", + "idAgrupacion": "335", + "color": "#db2821" + }, + { + "nombre": "PARTIDO RENACER", + "listas": [ + { + "lista": "", + "idAgrupacion": "285", + "Votos": 10180, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO RENACER" + } + ], + "votos": 10180, + "porcentaje": "1.64", + "idAgrupacion": "285", + "color": "#21335b" + }, + { + "nombre": "POLÍTICA OBRERA", + "listas": [ + { + "lista": "", + "idAgrupacion": "323", + "Votos": 10130, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "POLÍTICA OBRERA" + } + ], + "votos": 10130, + "porcentaje": "1.63", + "idAgrupacion": "323", + "color": "#d24124" + }, + { + "nombre": "MOVIMIENTO AL SOCIALISMO", + "listas": [ + { + "lista": "", + "idAgrupacion": "99", + "Votos": 4426, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO AL SOCIALISMO" + } + ], + "votos": 4426, + "porcentaje": "0.71", + "idAgrupacion": "99", + "color": "#ea675f" + } + ], + "EN BLANCO": 67852, + "NULO": 17960, + "IMPUGNADO": 1246, + "RECURRIDO": 1680, + "COMANDO": 0, + "IdDistrito": 17, + "Distrito": "SALTA", + "MesasEscrutadas": 3361, + "Electores": 15638952, + "Votantes": 710343, + "ParticipacionSobreEscrutado": 4.54, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 621605, + "blancos": 67852, + "impugnados": 1246, + "nulos": 17960, + "recurridos": 1680, + "comando": 0, + "union": 2926 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_18.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_18.json new file mode 100644 index 0000000000..21b7143190 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_18.json @@ -0,0 +1,182 @@ +{ + "total": 438937, + "agrupaciones": [ + { + "nombre": "FUERZA SAN JUAN", + "listas": [ + { + "lista": "", + "idAgrupacion": "127", + "Votos": 146856, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FUERZA SAN JUAN" + } + ], + "votos": 146856, + "porcentaje": "34.44", + "idAgrupacion": "127", + "color": "#0076c8" + }, + { + "nombre": "POR SAN JUAN", + "listas": [ + { + "lista": "", + "idAgrupacion": "129", + "Votos": 132286, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "POR SAN JUAN" + } + ], + "votos": 132286, + "porcentaje": "31.03", + "idAgrupacion": "129", + "color": "#fe8807" + }, + { + "nombre": "LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "131", + "Votos": 110864, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "LA LIBERTAD AVANZA" + } + ], + "votos": 110864, + "porcentaje": "26.00", + "idAgrupacion": "131", + "color": "#743bbc" + }, + { + "nombre": "HACEMOS", + "listas": [ + { + "lista": "", + "idAgrupacion": "126", + "Votos": 8071, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "HACEMOS" + } + ], + "votos": 8071, + "porcentaje": "1.89", + "idAgrupacion": "126", + "color": "#ff5800" + }, + { + "nombre": "CRUZADA RENOVADORA", + "listas": [ + { + "lista": "", + "idAgrupacion": "125", + "Votos": 6896, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "CRUZADA RENOVADORA" + } + ], + "votos": 6896, + "porcentaje": "1.62", + "idAgrupacion": "125", + "color": "#bfe5f8" + }, + { + "nombre": "EVOLUCIÓN LIBERAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "347", + "Votos": 6542, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "EVOLUCIÓN LIBERAL" + } + ], + "votos": 6542, + "porcentaje": "1.53", + "idAgrupacion": "347", + "color": "#373737" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "81", + "Votos": 6087, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 6087, + "porcentaje": "1.43", + "idAgrupacion": "81", + "color": "#ef2b2d" + }, + { + "nombre": "PARTIDO LIBERTARIO", + "listas": [ + { + "lista": "", + "idAgrupacion": "124", + "Votos": 5486, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO LIBERTARIO" + } + ], + "votos": 5486, + "porcentaje": "1.29", + "idAgrupacion": "124", + "color": "#372a84" + }, + { + "nombre": "IDEAS DE LA LIBERTAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "130", + "Votos": 3264, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "IDEAS DE LA LIBERTAD" + } + ], + "votos": 3264, + "porcentaje": "0.77", + "idAgrupacion": "130", + "color": "#f8a5c3" + } + ], + "NULO": 7432, + "IMPUGNADO": 68, + "RECURRIDO": 507, + "COMANDO": 0, + "EN BLANCO": 4578, + "IdDistrito": 18, + "Distrito": "SAN JUAN", + "MesasEscrutadas": 1843, + "Electores": 8690976, + "Votantes": 438937, + "ParticipacionSobreEscrutado": 5.05, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 426352, + "blancos": 4578, + "impugnados": 68, + "nulos": 7432, + "recurridos": 507, + "comando": 0, + "union": 575 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_19.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_19.json new file mode 100644 index 0000000000..636feba083 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_19.json @@ -0,0 +1,131 @@ +{ + "total": 274724, + "agrupaciones": [ + { + "nombre": "ALIANZA LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "94", + "Votos": 132747, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA LA LIBERTAD AVANZA" + } + ], + "votos": 132747, + "porcentaje": "51.46", + "idAgrupacion": "94", + "color": "#743bbc" + }, + { + "nombre": "FRENTE JUSTICIALISTA", + "listas": [ + { + "lista": "", + "idAgrupacion": "287", + "Votos": 86211, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE JUSTICIALISTA" + } + ], + "votos": 86211, + "porcentaje": "33.42", + "idAgrupacion": "287", + "color": "#48b7e5" + }, + { + "nombre": "FRENTE PUEBLO", + "listas": [ + { + "lista": "", + "idAgrupacion": "286", + "Votos": 17538, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE PUEBLO" + } + ], + "votos": 17538, + "porcentaje": "6.80", + "idAgrupacion": "286", + "color": "#ffffff" + }, + { + "nombre": "PROVINCIAS UNIDAS", + "listas": [ + { + "lista": "", + "idAgrupacion": "140", + "Votos": 9493, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PROVINCIAS UNIDAS" + } + ], + "votos": 9493, + "porcentaje": "3.68", + "idAgrupacion": "140", + "color": "#ff5800" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "31", + "Votos": 9026, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 9026, + "porcentaje": "3.50", + "idAgrupacion": "31", + "color": "#ef2b2d" + }, + { + "nombre": "MOVIMIENTO AL SOCIALISMO", + "listas": [ + { + "lista": "", + "idAgrupacion": "99", + "Votos": 2947, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO AL SOCIALISMO" + } + ], + "votos": 2947, + "porcentaje": "1.14", + "idAgrupacion": "99", + "color": "#ea675f" + } + ], + "NULO": 10677, + "COMANDO": 0, + "IMPUGNADO": 57, + "EN BLANCO": 5883, + "RECURRIDO": 145, + "IdDistrito": 19, + "Distrito": "SAN LUIS", + "MesasEscrutadas": 1335, + "Electores": 4721145, + "Votantes": 274724, + "ParticipacionSobreEscrutado": 5.82, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 257962, + "blancos": 5883, + "impugnados": 57, + "nulos": 10677, + "recurridos": 145, + "comando": 0, + "union": 202 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_20.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_20.json new file mode 100644 index 0000000000..e7719ad2d4 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_20.json @@ -0,0 +1,165 @@ +{ + "total": 175776, + "agrupaciones": [ + { + "nombre": "FUERZA SANTACRUCEÑA", + "listas": [ + { + "lista": "", + "idAgrupacion": "132", + "Votos": 53215, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FUERZA SANTACRUCEÑA" + } + ], + "votos": 53215, + "porcentaje": "32.11", + "idAgrupacion": "132", + "color": "#42b6e7" + }, + { + "nombre": "LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "83", + "Votos": 52487, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "LA LIBERTAD AVANZA" + } + ], + "votos": 52487, + "porcentaje": "31.67", + "idAgrupacion": "83", + "color": "#743bbc" + }, + { + "nombre": "POR SANTA CRUZ", + "listas": [ + { + "lista": "", + "idAgrupacion": "136", + "Votos": 25646, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "POR SANTA CRUZ" + } + ], + "votos": 25646, + "porcentaje": "15.47", + "idAgrupacion": "136", + "color": "#fd6939" + }, + { + "nombre": "PRO - PROPUESTA REPUBLICANA", + "listas": [ + { + "lista": "", + "idAgrupacion": "119", + "Votos": 12839, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PRO - PROPUESTA REPUBLICANA" + } + ], + "votos": 12839, + "porcentaje": "7.75", + "idAgrupacion": "119", + "color": "#fece00" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "135", + "Votos": 8071, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 8071, + "porcentaje": "4.87", + "idAgrupacion": "135", + "color": "#ef2b2d" + }, + { + "nombre": "COALICIÓN CÍVICA - ARI", + "listas": [ + { + "lista": "", + "idAgrupacion": "350", + "Votos": 5903, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "COALICIÓN CÍVICA - ARI" + } + ], + "votos": 5903, + "porcentaje": "3.56", + "idAgrupacion": "350", + "color": "#ed145b" + }, + { + "nombre": "PROYECTO ALTERNATIVO", + "listas": [ + { + "lista": "", + "idAgrupacion": "134", + "Votos": 5510, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PROYECTO ALTERNATIVO" + } + ], + "votos": 5510, + "porcentaje": "3.32", + "idAgrupacion": "134", + "color": "#42b6e7" + }, + { + "nombre": "MOVIMIENTO AL SOCIALISMO", + "listas": [ + { + "lista": "", + "idAgrupacion": "99", + "Votos": 2078, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO AL SOCIALISMO" + } + ], + "votos": 2078, + "porcentaje": "1.25", + "idAgrupacion": "99", + "color": "#ea675f" + } + ], + "NULO": 7607, + "COMANDO": 0, + "IMPUGNADO": 16, + "EN BLANCO": 2217, + "RECURRIDO": 187, + "IdDistrito": 20, + "Distrito": "SANTA CRUZ", + "MesasEscrutadas": 879, + "Electores": 3535675, + "Votantes": 175776, + "ParticipacionSobreEscrutado": 4.97, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 165749, + "blancos": 2217, + "impugnados": 16, + "nulos": 7607, + "recurridos": 187, + "comando": 0, + "union": 203 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_21.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_21.json new file mode 100644 index 0000000000..6588f01abf --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_21.json @@ -0,0 +1,301 @@ +{ + "total": 1803222, + "agrupaciones": [ + { + "nombre": "LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "83", + "Votos": 681504, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "LA LIBERTAD AVANZA" + } + ], + "votos": 681504, + "porcentaje": "40.67", + "idAgrupacion": "83", + "color": "#743bbc" + }, + { + "nombre": "FUERZA PATRIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "35", + "Votos": 480946, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FUERZA PATRIA" + } + ], + "votos": 480946, + "porcentaje": "28.70", + "idAgrupacion": "35", + "color": "#63b5e5" + }, + { + "nombre": "PROVINCIAS UNIDAS", + "listas": [ + { + "lista": "", + "idAgrupacion": "140", + "Votos": 307143, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PROVINCIAS UNIDAS" + } + ], + "votos": 307143, + "porcentaje": "18.33", + "idAgrupacion": "140", + "color": "#ff5800" + }, + { + "nombre": "FRENTE AMPLIO POR LA SOBERANIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "147", + "Votos": 53267, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE AMPLIO POR LA SOBERANIA" + } + ], + "votos": 53267, + "porcentaje": "3.18", + "idAgrupacion": "147", + "color": "#e31278" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "144", + "Votos": 30499, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 30499, + "porcentaje": "1.82", + "idAgrupacion": "144", + "color": "#ef2b2d" + }, + { + "nombre": "NUEVAS IDEAS", + "listas": [ + { + "lista": "", + "idAgrupacion": "142", + "Votos": 20986, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "NUEVAS IDEAS" + } + ], + "votos": 20986, + "porcentaje": "1.25", + "idAgrupacion": "142", + "color": "#013476" + }, + { + "nombre": "COALICIÓN CÍVICA - A.R.I.", + "listas": [ + { + "lista": "", + "idAgrupacion": "316", + "Votos": 15096, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "COALICIÓN CÍVICA - A.R.I." + } + ], + "votos": 15096, + "porcentaje": "0.90", + "idAgrupacion": "316", + "color": "#ed145b" + }, + { + "nombre": "IGUALDAD Y PARTICIPACIÓN", + "listas": [ + { + "lista": "", + "idAgrupacion": "376", + "Votos": 14311, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "IGUALDAD Y PARTICIPACIÓN" + } + ], + "votos": 14311, + "porcentaje": "0.85", + "idAgrupacion": "376", + "color": "#ff6619" + }, + { + "nombre": "DEFENDAMOS SANTA FE", + "listas": [ + { + "lista": "", + "idAgrupacion": "143", + "Votos": 13989, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "DEFENDAMOS SANTA FE" + } + ], + "votos": 13989, + "porcentaje": "0.83", + "idAgrupacion": "143", + "color": "#22c0e7" + }, + { + "nombre": "PARTIDO FE", + "listas": [ + { + "lista": "", + "idAgrupacion": "106", + "Votos": 10309, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO FE" + } + ], + "votos": 10309, + "porcentaje": "0.62", + "idAgrupacion": "106", + "color": "#bbdd00" + }, + { + "nombre": "MOVIMIENTO AL SOCIALISMO", + "listas": [ + { + "lista": "", + "idAgrupacion": "99", + "Votos": 10253, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO AL SOCIALISMO" + } + ], + "votos": 10253, + "porcentaje": "0.61", + "idAgrupacion": "99", + "color": "#ea675f" + }, + { + "nombre": "POLÍTICA OBRERA", + "listas": [ + { + "lista": "", + "idAgrupacion": "323", + "Votos": 9813, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "POLÍTICA OBRERA" + } + ], + "votos": 9813, + "porcentaje": "0.59", + "idAgrupacion": "323", + "color": "#d24124" + }, + { + "nombre": "REPUBLICANOS UNIDOS", + "listas": [ + { + "lista": "", + "idAgrupacion": "139", + "Votos": 9732, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "REPUBLICANOS UNIDOS" + } + ], + "votos": 9732, + "porcentaje": "0.58", + "idAgrupacion": "139", + "color": "#01859c" + }, + { + "nombre": "COMPROMISO FEDERAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "146", + "Votos": 7787, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "COMPROMISO FEDERAL" + } + ], + "votos": 7787, + "porcentaje": "0.46", + "idAgrupacion": "146", + "color": "#58a9de" + }, + { + "nombre": "PARTIDO AUTONOMISTA", + "listas": [ + { + "lista": "", + "idAgrupacion": "137", + "Votos": 6053, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO AUTONOMISTA" + } + ], + "votos": 6053, + "porcentaje": "0.36", + "idAgrupacion": "137", + "color": "#ff2100" + }, + { + "nombre": "MOVIMIENTO INDEPENDIENTE RENOVADOR", + "listas": [ + { + "lista": "", + "idAgrupacion": "145", + "Votos": 3977, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO INDEPENDIENTE RENOVADOR" + } + ], + "votos": 3977, + "porcentaje": "0.24", + "idAgrupacion": "145", + "color": "#000464" + } + ], + "COMANDO": 0, + "NULO": 86605, + "EN BLANCO": 40270, + "RECURRIDO": 471, + "IMPUGNADO": 211, + "IdDistrito": 21, + "Distrito": "SANTA FE", + "MesasEscrutadas": 8423, + "Electores": 59846871, + "Votantes": 1803222, + "ParticipacionSobreEscrutado": 3.01, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 1675665, + "blancos": 40270, + "impugnados": 211, + "nulos": 86605, + "recurridos": 471, + "comando": 0, + "union": 682 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_22.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_22.json new file mode 100644 index 0000000000..c502d95576 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_22.json @@ -0,0 +1,148 @@ +{ + "total": 590626, + "agrupaciones": [ + { + "nombre": "FRENTE CÍVICO POR SANTIAGO", + "listas": [ + { + "lista": "", + "idAgrupacion": "355", + "Votos": 284387, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE CÍVICO POR SANTIAGO" + } + ], + "votos": 284387, + "porcentaje": "51.36", + "idAgrupacion": "355", + "color": "#e03c32" + }, + { + "nombre": "FRENTE FUERZA PATRIA PERONISTA", + "listas": [ + { + "lista": "", + "idAgrupacion": "150", + "Votos": 115698, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE FUERZA PATRIA PERONISTA" + } + ], + "votos": 115698, + "porcentaje": "20.89", + "idAgrupacion": "150", + "color": "#63b5e5" + }, + { + "nombre": "LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "83", + "Votos": 80084, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "LA LIBERTAD AVANZA" + } + ], + "votos": 80084, + "porcentaje": "14.46", + "idAgrupacion": "83", + "color": "#743bbc" + }, + { + "nombre": "DESPIERTA SANTIAGO", + "listas": [ + { + "lista": "", + "idAgrupacion": "156", + "Votos": 57627, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "DESPIERTA SANTIAGO" + } + ], + "votos": 57627, + "porcentaje": "10.41", + "idAgrupacion": "156", + "color": "#ffd101" + }, + { + "nombre": "HACEMOS POR SANTIAGO", + "listas": [ + { + "lista": "", + "idAgrupacion": "289", + "Votos": 6263, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "HACEMOS POR SANTIAGO" + } + ], + "votos": 6263, + "porcentaje": "1.13", + "idAgrupacion": "289", + "color": "#0deb0a" + }, + { + "nombre": "NUEVA IZQUIERDA", + "listas": [ + { + "lista": "", + "idAgrupacion": "272", + "Votos": 5389, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "NUEVA IZQUIERDA" + } + ], + "votos": 5389, + "porcentaje": "0.97", + "idAgrupacion": "272", + "color": "#cd3333" + }, + { + "nombre": "UNITE POR LA LIBERTAD Y LA DIGNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "158", + "Votos": 4265, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "UNITE POR LA LIBERTAD Y LA DIGNIDAD" + } + ], + "votos": 4265, + "porcentaje": "0.77", + "idAgrupacion": "158", + "color": "#de7c01" + } + ], + "EN BLANCO": 28872, + "COMANDO": 0, + "IMPUGNADO": 135, + "NULO": 7613, + "RECURRIDO": 293, + "IdDistrito": 22, + "Distrito": "SANTIAGO DEL ESTERO", + "MesasEscrutadas": 4726, + "Electores": 9922644, + "Votantes": 590626, + "ParticipacionSobreEscrutado": 5.95, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 553713, + "blancos": 28872, + "impugnados": 135, + "nulos": 7613, + "recurridos": 293, + "comando": 0, + "union": 428 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_23.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_23.json new file mode 100644 index 0000000000..73070c6c94 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_23.json @@ -0,0 +1,182 @@ +{ + "total": 1064462, + "agrupaciones": [ + { + "nombre": "FRENTE TUCUMÁN PRIMERO", + "listas": [ + { + "lista": "", + "idAgrupacion": "237", + "Votos": 524057, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE TUCUMÁN PRIMERO" + } + ], + "votos": 524057, + "porcentaje": "50.58", + "idAgrupacion": "237", + "color": "#42b6e7" + }, + { + "nombre": "ALIANZA LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "94", + "Votos": 363885, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA LA LIBERTAD AVANZA" + } + ], + "votos": 363885, + "porcentaje": "35.12", + "idAgrupacion": "94", + "color": "#743bbc" + }, + { + "nombre": "UNIDOS POR TUCUMÁN", + "listas": [ + { + "lista": "", + "idAgrupacion": "348", + "Votos": 83926, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "UNIDOS POR TUCUMÁN" + } + ], + "votos": 83926, + "porcentaje": "8.10", + "idAgrupacion": "348", + "color": "#fd6939" + }, + { + "nombre": "FUERZA REPUBLICANA", + "listas": [ + { + "lista": "", + "idAgrupacion": "239", + "Votos": 22490, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FUERZA REPUBLICANA" + } + ], + "votos": 22490, + "porcentaje": "2.17", + "idAgrupacion": "239", + "color": "#0c2342" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "242", + "Votos": 17221, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 17221, + "porcentaje": "1.66", + "idAgrupacion": "242", + "color": "#ef2b2d" + }, + { + "nombre": "CREO", + "listas": [ + { + "lista": "", + "idAgrupacion": "243", + "Votos": 8509, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "CREO" + } + ], + "votos": 8509, + "porcentaje": "0.82", + "idAgrupacion": "243", + "color": "#fd5001" + }, + { + "nombre": "FRENTE DEL PUEBLO UNIDO", + "listas": [ + { + "lista": "", + "idAgrupacion": "238", + "Votos": 5932, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DEL PUEBLO UNIDO" + } + ], + "votos": 5932, + "porcentaje": "0.57", + "idAgrupacion": "238", + "color": "#565656" + }, + { + "nombre": "DEL TRABAJO Y DEL PUEBLO", + "listas": [ + { + "lista": "", + "idAgrupacion": "241", + "Votos": 5574, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "DEL TRABAJO Y DEL PUEBLO" + } + ], + "votos": 5574, + "porcentaje": "0.54", + "idAgrupacion": "241", + "color": "#00b041" + }, + { + "nombre": "POLÍTICA PARA LA CLASE OBRERA", + "listas": [ + { + "lista": "", + "idAgrupacion": "349", + "Votos": 4520, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "POLÍTICA PARA LA CLASE OBRERA" + } + ], + "votos": 4520, + "porcentaje": "0.44", + "idAgrupacion": "349", + "color": "#5c5c5c" + } + ], + "EN BLANCO": 9610, + "NULO": 17552, + "IMPUGNADO": 125, + "COMANDO": 0, + "RECURRIDO": 1061, + "IdDistrito": 23, + "Distrito": "TUCUMÁN", + "MesasEscrutadas": 3975, + "Electores": 18777444, + "Votantes": 1064462, + "ParticipacionSobreEscrutado": 5.67, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 1036114, + "blancos": 9610, + "impugnados": 125, + "nulos": 17552, + "recurridos": 1061, + "comando": 0, + "union": 1186 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_24.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_24.json new file mode 100644 index 0000000000..08208d30fb --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito/distrito_24.json @@ -0,0 +1,165 @@ +{ + "total": 107877, + "agrupaciones": [ + { + "nombre": "ALIANZA LA LIBERTAD AVANZA", + "listas": [ + { + "lista": "", + "idAgrupacion": "21", + "Votos": 37109, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "ALIANZA LA LIBERTAD AVANZA" + } + ], + "votos": 37109, + "porcentaje": "38.56", + "idAgrupacion": "21", + "color": "#743bbc" + }, + { + "nombre": "FUERZA PATRIA", + "listas": [ + { + "lista": "", + "idAgrupacion": "120", + "Votos": 29831, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FUERZA PATRIA" + } + ], + "votos": 29831, + "porcentaje": "31.00", + "idAgrupacion": "120", + "color": "#63b5e5" + }, + { + "nombre": "DEFENDAMOS TIERRA DEL FUEGO", + "listas": [ + { + "lista": "", + "idAgrupacion": "246", + "Votos": 19945, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "DEFENDAMOS TIERRA DEL FUEGO" + } + ], + "votos": 19945, + "porcentaje": "20.72", + "idAgrupacion": "246", + "color": "#376d9c" + }, + { + "nombre": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "listas": [ + { + "lista": "", + "idAgrupacion": "247", + "Votos": 3125, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD" + } + ], + "votos": 3125, + "porcentaje": "3.25", + "idAgrupacion": "247", + "color": "#ef2b2d" + }, + { + "nombre": "PROVINCIAS UNIDAS", + "listas": [ + { + "lista": "", + "idAgrupacion": "244", + "Votos": 3040, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PROVINCIAS UNIDAS" + } + ], + "votos": 3040, + "porcentaje": "3.16", + "idAgrupacion": "244", + "color": "#ff5800" + }, + { + "nombre": "FRENTE PATRIOTA FEDERAL", + "listas": [ + { + "lista": "", + "idAgrupacion": "11", + "Votos": 1380, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "FRENTE PATRIOTA FEDERAL" + } + ], + "votos": 1380, + "porcentaje": "1.43", + "idAgrupacion": "11", + "color": "#0086be" + }, + { + "nombre": "MOVIMIENTO AL SOCIALISMO", + "listas": [ + { + "lista": "", + "idAgrupacion": "99", + "Votos": 953, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "MOVIMIENTO AL SOCIALISMO" + } + ], + "votos": 953, + "porcentaje": "0.99", + "idAgrupacion": "99", + "color": "#ea675f" + }, + { + "nombre": "PARTIDO FRENTE GRANDE", + "listas": [ + { + "lista": "", + "idAgrupacion": "245", + "Votos": 857, + "idlista": "0", + "tipoVoto": "POSITIVO", + "Agrupacion": "PARTIDO FRENTE GRANDE" + } + ], + "votos": 857, + "porcentaje": "0.89", + "idAgrupacion": "245", + "color": "#1106a0" + } + ], + "NULO": 3941, + "RECURRIDO": 138, + "COMANDO": 0, + "IMPUGNADO": 8, + "EN BLANCO": 7550, + "IdDistrito": 24, + "Distrito": "TIERRA DEL FUEGO AeIAS", + "MesasEscrutadas": 453, + "Electores": 1990599, + "Votantes": 107877, + "ParticipacionSobreEscrutado": 5.42, + "Año": 2025, + "Recuento": "Provisorio", + "IdEleccion": 2, + "Elecciones": "GENERALES", + "IdCargo": 3, + "Cargo": "DIPUTADO NACIONAL", + "positivos": 96240, + "blancos": 7550, + "impugnados": 8, + "nulos": 3941, + "recurridos": 138, + "comando": 0, + "union": 146 +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/menu_2025.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/menu_2025.json new file mode 100644 index 0000000000..dcc2bab149 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/menu_2025.json @@ -0,0 +1,34770 @@ +[ + { + "_id": "690120a23ce135bf5bbd97ed", + "Año": 2025, + "Recuento": "Provisorio", + "Fecha": "2025-10-28", + "IdEleccion": 2, + "Elecciones": "Generales", + "Cargos": [ + { + "_id": "6a0f9ebbc9a4639a07c8c1dc", + "IdCargo": "2", + "Cargo": "SENADOR NACIONAL", + "Distritos": [ + { + "_id": "6a0f9ebbc9a4639a07c8c1dd", + "IdDistrito": 1, + "Distrito": "CIUDAD AUTÓNOMA DE BUENOS AIRES", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c1de", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c1df", + "IdSeccion": 1, + "Seccion": "COMUNA 1", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": 1 + }, + { + "IdCircuito": 2, + "Circuito": 2 + }, + { + "IdCircuito": 3, + "Circuito": 3 + }, + { + "IdCircuito": 4, + "Circuito": 4 + }, + { + "IdCircuito": 5, + "Circuito": 5 + }, + { + "IdCircuito": 6, + "Circuito": 6 + }, + { + "IdCircuito": 7, + "Circuito": 7 + }, + { + "IdCircuito": 8, + "Circuito": 8 + }, + { + "IdCircuito": 9, + "Circuito": 9 + }, + { + "IdCircuito": 10, + "Circuito": 10 + }, + { + "IdCircuito": 11, + "Circuito": 11 + }, + { + "IdCircuito": 12, + "Circuito": 12 + }, + { + "IdCircuito": 13, + "Circuito": 13 + }, + { + "IdCircuito": 14, + "Circuito": 14 + }, + { + "IdCircuito": 15, + "Circuito": 15 + }, + { + "IdCircuito": 16, + "Circuito": 16 + }, + { + "IdCircuito": 17, + "Circuito": 17 + }, + { + "IdCircuito": 18, + "Circuito": 18 + }, + { + "IdCircuito": 19, + "Circuito": 19 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1e0", + "IdSeccion": 2, + "Seccion": "COMUNA 2", + "Circuitos": [ + { + "IdCircuito": 20, + "Circuito": 20 + }, + { + "IdCircuito": 21, + "Circuito": 21 + }, + { + "IdCircuito": 22, + "Circuito": 22 + }, + { + "IdCircuito": 23, + "Circuito": 23 + }, + { + "IdCircuito": 24, + "Circuito": 24 + }, + { + "IdCircuito": 25, + "Circuito": 25 + }, + { + "IdCircuito": 26, + "Circuito": 26 + }, + { + "IdCircuito": 27, + "Circuito": 27 + }, + { + "IdCircuito": 28, + "Circuito": 28 + }, + { + "IdCircuito": 29, + "Circuito": 29 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1e1", + "IdSeccion": 3, + "Seccion": "COMUNA 3", + "Circuitos": [ + { + "IdCircuito": 30, + "Circuito": 30 + }, + { + "IdCircuito": 31, + "Circuito": 31 + }, + { + "IdCircuito": 32, + "Circuito": 32 + }, + { + "IdCircuito": 33, + "Circuito": 33 + }, + { + "IdCircuito": 34, + "Circuito": 34 + }, + { + "IdCircuito": 35, + "Circuito": 35 + }, + { + "IdCircuito": 36, + "Circuito": 36 + }, + { + "IdCircuito": 37, + "Circuito": 37 + }, + { + "IdCircuito": 38, + "Circuito": 38 + }, + { + "IdCircuito": 39, + "Circuito": 39 + }, + { + "IdCircuito": 40, + "Circuito": 40 + }, + { + "IdCircuito": 41, + "Circuito": 41 + }, + { + "IdCircuito": 42, + "Circuito": 42 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1e2", + "IdSeccion": 4, + "Seccion": "COMUNA 4", + "Circuitos": [ + { + "IdCircuito": 43, + "Circuito": 43 + }, + { + "IdCircuito": 44, + "Circuito": 44 + }, + { + "IdCircuito": 45, + "Circuito": 45 + }, + { + "IdCircuito": 46, + "Circuito": 46 + }, + { + "IdCircuito": 47, + "Circuito": 47 + }, + { + "IdCircuito": 48, + "Circuito": 48 + }, + { + "IdCircuito": 49, + "Circuito": 49 + }, + { + "IdCircuito": 50, + "Circuito": 50 + }, + { + "IdCircuito": 51, + "Circuito": 51 + }, + { + "IdCircuito": 52, + "Circuito": 52 + }, + { + "IdCircuito": 53, + "Circuito": 53 + }, + { + "IdCircuito": 54, + "Circuito": 54 + }, + { + "IdCircuito": 55, + "Circuito": 55 + }, + { + "IdCircuito": 56, + "Circuito": 56 + }, + { + "IdCircuito": 57, + "Circuito": 57 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1e3", + "IdSeccion": 5, + "Seccion": "COMUNA 5", + "Circuitos": [ + { + "IdCircuito": 58, + "Circuito": 58 + }, + { + "IdCircuito": 59, + "Circuito": 59 + }, + { + "IdCircuito": 60, + "Circuito": 60 + }, + { + "IdCircuito": 61, + "Circuito": 61 + }, + { + "IdCircuito": 62, + "Circuito": 62 + }, + { + "IdCircuito": 63, + "Circuito": 63 + }, + { + "IdCircuito": 64, + "Circuito": 64 + }, + { + "IdCircuito": 65, + "Circuito": 65 + }, + { + "IdCircuito": 66, + "Circuito": 66 + }, + { + "IdCircuito": 67, + "Circuito": 67 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1e4", + "IdSeccion": 6, + "Seccion": "COMUNA 6", + "Circuitos": [ + { + "IdCircuito": 68, + "Circuito": 68 + }, + { + "IdCircuito": 69, + "Circuito": 69 + }, + { + "IdCircuito": 70, + "Circuito": 70 + }, + { + "IdCircuito": 71, + "Circuito": 71 + }, + { + "IdCircuito": 72, + "Circuito": 72 + }, + { + "IdCircuito": 73, + "Circuito": 73 + }, + { + "IdCircuito": 74, + "Circuito": 74 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1e5", + "IdSeccion": 7, + "Seccion": "COMUNA 7", + "Circuitos": [ + { + "IdCircuito": 75, + "Circuito": 75 + }, + { + "IdCircuito": 76, + "Circuito": 76 + }, + { + "IdCircuito": 77, + "Circuito": 77 + }, + { + "IdCircuito": 78, + "Circuito": 78 + }, + { + "IdCircuito": 79, + "Circuito": 79 + }, + { + "IdCircuito": 80, + "Circuito": 80 + }, + { + "IdCircuito": 81, + "Circuito": 81 + }, + { + "IdCircuito": 82, + "Circuito": 82 + }, + { + "IdCircuito": 83, + "Circuito": 83 + }, + { + "IdCircuito": 84, + "Circuito": 84 + }, + { + "IdCircuito": 85, + "Circuito": 85 + }, + { + "IdCircuito": 86, + "Circuito": 86 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1e6", + "IdSeccion": 8, + "Seccion": "COMUNA 8", + "Circuitos": [ + { + "IdCircuito": 87, + "Circuito": 87 + }, + { + "IdCircuito": 88, + "Circuito": 88 + }, + { + "IdCircuito": 89, + "Circuito": 89 + }, + { + "IdCircuito": 90, + "Circuito": 90 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1e7", + "IdSeccion": 9, + "Seccion": "COMUNA 9", + "Circuitos": [ + { + "IdCircuito": 91, + "Circuito": 91 + }, + { + "IdCircuito": 92, + "Circuito": 92 + }, + { + "IdCircuito": 93, + "Circuito": 93 + }, + { + "IdCircuito": 94, + "Circuito": 94 + }, + { + "IdCircuito": 95, + "Circuito": 95 + }, + { + "IdCircuito": 96, + "Circuito": 96 + }, + { + "IdCircuito": 97, + "Circuito": 97 + }, + { + "IdCircuito": 98, + "Circuito": 98 + }, + { + "IdCircuito": 99, + "Circuito": 99 + }, + { + "IdCircuito": 100, + "Circuito": 100 + }, + { + "IdCircuito": 101, + "Circuito": 101 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1e8", + "IdSeccion": 10, + "Seccion": "COMUNA 10", + "Circuitos": [ + { + "IdCircuito": 102, + "Circuito": 102 + }, + { + "IdCircuito": 103, + "Circuito": 103 + }, + { + "IdCircuito": 104, + "Circuito": 104 + }, + { + "IdCircuito": 105, + "Circuito": 105 + }, + { + "IdCircuito": 106, + "Circuito": 106 + }, + { + "IdCircuito": 107, + "Circuito": 107 + }, + { + "IdCircuito": 108, + "Circuito": 108 + }, + { + "IdCircuito": 109, + "Circuito": 109 + }, + { + "IdCircuito": 110, + "Circuito": 110 + }, + { + "IdCircuito": 111, + "Circuito": 111 + }, + { + "IdCircuito": 112, + "Circuito": 112 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1e9", + "IdSeccion": 11, + "Seccion": "COMUNA 11", + "Circuitos": [ + { + "IdCircuito": 113, + "Circuito": 113 + }, + { + "IdCircuito": 114, + "Circuito": 114 + }, + { + "IdCircuito": 115, + "Circuito": 115 + }, + { + "IdCircuito": 116, + "Circuito": 116 + }, + { + "IdCircuito": 117, + "Circuito": 117 + }, + { + "IdCircuito": 118, + "Circuito": 118 + }, + { + "IdCircuito": 119, + "Circuito": 119 + }, + { + "IdCircuito": 120, + "Circuito": 120 + }, + { + "IdCircuito": 121, + "Circuito": 121 + }, + { + "IdCircuito": 122, + "Circuito": 122 + }, + { + "IdCircuito": 123, + "Circuito": 123 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1ea", + "IdSeccion": 12, + "Seccion": "COMUNA 12", + "Circuitos": [ + { + "IdCircuito": 124, + "Circuito": 124 + }, + { + "IdCircuito": 125, + "Circuito": 125 + }, + { + "IdCircuito": 126, + "Circuito": 126 + }, + { + "IdCircuito": 127, + "Circuito": 127 + }, + { + "IdCircuito": 128, + "Circuito": 128 + }, + { + "IdCircuito": 129, + "Circuito": 129 + }, + { + "IdCircuito": 130, + "Circuito": 130 + }, + { + "IdCircuito": 131, + "Circuito": 131 + }, + { + "IdCircuito": 132, + "Circuito": 132 + }, + { + "IdCircuito": 133, + "Circuito": 133 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1eb", + "IdSeccion": 13, + "Seccion": "COMUNA 13", + "Circuitos": [ + { + "IdCircuito": 134, + "Circuito": 134 + }, + { + "IdCircuito": 135, + "Circuito": 135 + }, + { + "IdCircuito": 136, + "Circuito": 136 + }, + { + "IdCircuito": 137, + "Circuito": 137 + }, + { + "IdCircuito": 138, + "Circuito": 138 + }, + { + "IdCircuito": 139, + "Circuito": 139 + }, + { + "IdCircuito": 140, + "Circuito": 140 + }, + { + "IdCircuito": 141, + "Circuito": 141 + }, + { + "IdCircuito": 142, + "Circuito": 142 + }, + { + "IdCircuito": 143, + "Circuito": 143 + }, + { + "IdCircuito": 144, + "Circuito": 144 + }, + { + "IdCircuito": 145, + "Circuito": 145 + }, + { + "IdCircuito": 146, + "Circuito": 146 + }, + { + "IdCircuito": 147, + "Circuito": 147 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1ec", + "IdSeccion": 14, + "Seccion": "COMUNA 14", + "Circuitos": [ + { + "IdCircuito": 148, + "Circuito": 148 + }, + { + "IdCircuito": 149, + "Circuito": 149 + }, + { + "IdCircuito": 150, + "Circuito": 150 + }, + { + "IdCircuito": 151, + "Circuito": 151 + }, + { + "IdCircuito": 152, + "Circuito": 152 + }, + { + "IdCircuito": 153, + "Circuito": 153 + }, + { + "IdCircuito": 154, + "Circuito": 154 + }, + { + "IdCircuito": 155, + "Circuito": 155 + }, + { + "IdCircuito": 156, + "Circuito": 156 + }, + { + "IdCircuito": 157, + "Circuito": 157 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1ed", + "IdSeccion": 15, + "Seccion": "COMUNA 15", + "Circuitos": [ + { + "IdCircuito": 158, + "Circuito": 158 + }, + { + "IdCircuito": 159, + "Circuito": 159 + }, + { + "IdCircuito": 160, + "Circuito": 160 + }, + { + "IdCircuito": 161, + "Circuito": 161 + }, + { + "IdCircuito": 162, + "Circuito": 162 + }, + { + "IdCircuito": 163, + "Circuito": 163 + }, + { + "IdCircuito": 164, + "Circuito": 164 + }, + { + "IdCircuito": 165, + "Circuito": 165 + }, + { + "IdCircuito": 166, + "Circuito": 166 + }, + { + "IdCircuito": 167, + "Circuito": 167 + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1ee", + "IdDistrito": 6, + "Distrito": "CHACO", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c1ef", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c1f0", + "IdSeccion": 1, + "Seccion": "SAN FERNANDO", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": 1 + }, + { + "IdCircuito": 2, + "Circuito": 2 + }, + { + "IdCircuito": 3, + "Circuito": 3 + }, + { + "IdCircuito": 4, + "Circuito": 4 + }, + { + "IdCircuito": 6, + "Circuito": 6 + }, + { + "IdCircuito": 9, + "Circuito": 9 + }, + { + "IdCircuito": 10, + "Circuito": 10 + }, + { + "IdCircuito": 12, + "Circuito": 12 + }, + { + "IdCircuito": 14, + "Circuito": 14 + }, + { + "IdCircuito": 15, + "Circuito": 15 + }, + { + "IdCircuito": 17, + "Circuito": 17 + }, + { + "IdCircuito": 18, + "Circuito": 18 + }, + { + "IdCircuito": 20, + "Circuito": 20 + }, + { + "IdCircuito": 21, + "Circuito": 21 + }, + { + "IdCircuito": 23, + "Circuito": 23 + }, + { + "IdCircuito": 24, + "Circuito": 24 + }, + { + "IdCircuito": 25, + "Circuito": 25 + }, + { + "IdCircuito": 26, + "Circuito": 26 + }, + { + "IdCircuito": 27, + "Circuito": 27 + }, + { + "IdCircuito": "0005A", + "Circuito": "5A" + }, + { + "IdCircuito": "0005B", + "Circuito": "5B" + }, + { + "IdCircuito": "0007A", + "Circuito": "7A" + }, + { + "IdCircuito": "0007B", + "Circuito": "7B" + }, + { + "IdCircuito": "0008A", + "Circuito": "8A" + }, + { + "IdCircuito": "0008B", + "Circuito": "8B" + }, + { + "IdCircuito": "0011A", + "Circuito": "11A" + }, + { + "IdCircuito": "0011B", + "Circuito": "11B" + }, + { + "IdCircuito": "0013A", + "Circuito": "13A" + }, + { + "IdCircuito": "0013B", + "Circuito": "13B" + }, + { + "IdCircuito": "0016A", + "Circuito": "16A" + }, + { + "IdCircuito": "0016B", + "Circuito": "16B" + }, + { + "IdCircuito": "0016C", + "Circuito": "16C" + }, + { + "IdCircuito": "0019A", + "Circuito": "19A" + }, + { + "IdCircuito": "0019B", + "Circuito": "19B" + }, + { + "IdCircuito": "0022A", + "Circuito": "22A" + }, + { + "IdCircuito": "0022B", + "Circuito": "22B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1f1", + "IdSeccion": 2, + "Seccion": "PRIMERO DE MAYO", + "Circuitos": [ + { + "IdCircuito": 28, + "Circuito": 28 + }, + { + "IdCircuito": 29, + "Circuito": 29 + }, + { + "IdCircuito": 30, + "Circuito": 30 + }, + { + "IdCircuito": 31, + "Circuito": 31 + }, + { + "IdCircuito": "0028A", + "Circuito": "28A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1f2", + "IdSeccion": 3, + "Seccion": "LIBERTAD", + "Circuitos": [ + { + "IdCircuito": 32, + "Circuito": 32 + }, + { + "IdCircuito": 33, + "Circuito": 33 + }, + { + "IdCircuito": 34, + "Circuito": 34 + }, + { + "IdCircuito": 35, + "Circuito": 35 + }, + { + "IdCircuito": 36, + "Circuito": 36 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1f3", + "IdSeccion": 4, + "Seccion": "GENERAL DONOVAN", + "Circuitos": [ + { + "IdCircuito": 37, + "Circuito": 37 + }, + { + "IdCircuito": 38, + "Circuito": 38 + }, + { + "IdCircuito": 39, + "Circuito": 39 + }, + { + "IdCircuito": 40, + "Circuito": 40 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1f4", + "IdSeccion": 5, + "Seccion": "SARGENTO CABRAL", + "Circuitos": [ + { + "IdCircuito": 41, + "Circuito": 41 + }, + { + "IdCircuito": 42, + "Circuito": 42 + }, + { + "IdCircuito": 43, + "Circuito": 43 + }, + { + "IdCircuito": 44, + "Circuito": 44 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1f5", + "IdSeccion": 6, + "Seccion": "PCIA. DE LA PLAZA", + "Circuitos": [ + { + "IdCircuito": 45, + "Circuito": 45 + }, + { + "IdCircuito": 46, + "Circuito": 46 + }, + { + "IdCircuito": 47, + "Circuito": 47 + }, + { + "IdCircuito": 48, + "Circuito": 48 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1f6", + "IdSeccion": 7, + "Seccion": "BERMEJO", + "Circuitos": [ + { + "IdCircuito": 49, + "Circuito": 49 + }, + { + "IdCircuito": 50, + "Circuito": 50 + }, + { + "IdCircuito": 51, + "Circuito": 51 + }, + { + "IdCircuito": 52, + "Circuito": 52 + }, + { + "IdCircuito": 53, + "Circuito": 53 + }, + { + "IdCircuito": 54, + "Circuito": 54 + }, + { + "IdCircuito": 56, + "Circuito": 56 + }, + { + "IdCircuito": 57, + "Circuito": 57 + }, + { + "IdCircuito": "0055A", + "Circuito": "55A" + }, + { + "IdCircuito": "0055B", + "Circuito": "55B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1f7", + "IdSeccion": 8, + "Seccion": "LIB. GRAL. SAN MARTÍN", + "Circuitos": [ + { + "IdCircuito": 58, + "Circuito": 58 + }, + { + "IdCircuito": 59, + "Circuito": 59 + }, + { + "IdCircuito": 60, + "Circuito": 60 + }, + { + "IdCircuito": 61, + "Circuito": 61 + }, + { + "IdCircuito": 62, + "Circuito": 62 + }, + { + "IdCircuito": 63, + "Circuito": 63 + }, + { + "IdCircuito": 64, + "Circuito": 64 + }, + { + "IdCircuito": 65, + "Circuito": 65 + }, + { + "IdCircuito": 66, + "Circuito": 66 + }, + { + "IdCircuito": 67, + "Circuito": 67 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1f8", + "IdSeccion": 9, + "Seccion": "TAPENAGÁ", + "Circuitos": [ + { + "IdCircuito": 68, + "Circuito": 68 + }, + { + "IdCircuito": 69, + "Circuito": 69 + }, + { + "IdCircuito": 70, + "Circuito": 70 + }, + { + "IdCircuito": 71, + "Circuito": 71 + }, + { + "IdCircuito": 72, + "Circuito": 72 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1f9", + "IdSeccion": 10, + "Seccion": "SAN LORENZO", + "Circuitos": [ + { + "IdCircuito": 73, + "Circuito": 73 + }, + { + "IdCircuito": 74, + "Circuito": 74 + }, + { + "IdCircuito": 75, + "Circuito": 75 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1fa", + "IdSeccion": 11, + "Seccion": "MAYOR L.J.FONTANA", + "Circuitos": [ + { + "IdCircuito": 76, + "Circuito": 76 + }, + { + "IdCircuito": 77, + "Circuito": 77 + }, + { + "IdCircuito": 78, + "Circuito": 78 + }, + { + "IdCircuito": 79, + "Circuito": 79 + }, + { + "IdCircuito": 80, + "Circuito": 80 + }, + { + "IdCircuito": 81, + "Circuito": 81 + }, + { + "IdCircuito": 82, + "Circuito": 82 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1fb", + "IdSeccion": 12, + "Seccion": "O'HIGGINS", + "Circuitos": [ + { + "IdCircuito": 83, + "Circuito": 83 + }, + { + "IdCircuito": 84, + "Circuito": 84 + }, + { + "IdCircuito": 85, + "Circuito": 85 + }, + { + "IdCircuito": 86, + "Circuito": 86 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1fc", + "IdSeccion": 13, + "Seccion": "CMDTE. FERNÁNDEZ", + "Circuitos": [ + { + "IdCircuito": 87, + "Circuito": 87 + }, + { + "IdCircuito": 88, + "Circuito": 88 + }, + { + "IdCircuito": 89, + "Circuito": 89 + }, + { + "IdCircuito": 90, + "Circuito": 90 + }, + { + "IdCircuito": 91, + "Circuito": 91 + }, + { + "IdCircuito": 92, + "Circuito": 92 + }, + { + "IdCircuito": 93, + "Circuito": 93 + }, + { + "IdCircuito": 94, + "Circuito": 94 + }, + { + "IdCircuito": 95, + "Circuito": 95 + }, + { + "IdCircuito": 96, + "Circuito": 96 + }, + { + "IdCircuito": 97, + "Circuito": 97 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1fd", + "IdSeccion": 14, + "Seccion": "QUITILIPI", + "Circuitos": [ + { + "IdCircuito": 98, + "Circuito": 98 + }, + { + "IdCircuito": 99, + "Circuito": 99 + }, + { + "IdCircuito": 100, + "Circuito": 100 + }, + { + "IdCircuito": 101, + "Circuito": 101 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1fe", + "IdSeccion": 15, + "Seccion": "25 DE MAYO", + "Circuitos": [ + { + "IdCircuito": 102, + "Circuito": 102 + }, + { + "IdCircuito": 103, + "Circuito": 103 + }, + { + "IdCircuito": 104, + "Circuito": 104 + }, + { + "IdCircuito": 105, + "Circuito": 105 + }, + { + "IdCircuito": 106, + "Circuito": 106 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c1ff", + "IdSeccion": 16, + "Seccion": "MAIPÚ", + "Circuitos": [ + { + "IdCircuito": 107, + "Circuito": 107 + }, + { + "IdCircuito": 108, + "Circuito": 108 + }, + { + "IdCircuito": 109, + "Circuito": 109 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c200", + "IdSeccion": 17, + "Seccion": "INDEPENDENCIA", + "Circuitos": [ + { + "IdCircuito": 110, + "Circuito": 110 + }, + { + "IdCircuito": 111, + "Circuito": 111 + }, + { + "IdCircuito": 112, + "Circuito": 112 + }, + { + "IdCircuito": 113, + "Circuito": 113 + }, + { + "IdCircuito": 114, + "Circuito": 114 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c201", + "IdSeccion": 18, + "Seccion": "GENERAL BELGRANO", + "Circuitos": [ + { + "IdCircuito": 115, + "Circuito": 115 + }, + { + "IdCircuito": 116, + "Circuito": 116 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c202", + "IdSeccion": 19, + "Seccion": "9 DE JULIO", + "Circuitos": [ + { + "IdCircuito": 117, + "Circuito": 117 + }, + { + "IdCircuito": 118, + "Circuito": 118 + }, + { + "IdCircuito": "0117A", + "Circuito": "117A" + }, + { + "IdCircuito": "0118A", + "Circuito": "118A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c203", + "IdSeccion": 20, + "Seccion": "CHACABUCO", + "Circuitos": [ + { + "IdCircuito": 119, + "Circuito": 119 + }, + { + "IdCircuito": 120, + "Circuito": 120 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c204", + "IdSeccion": 21, + "Seccion": "12 DE OCTUBRE", + "Circuitos": [ + { + "IdCircuito": 121, + "Circuito": 121 + }, + { + "IdCircuito": 122, + "Circuito": 122 + }, + { + "IdCircuito": 123, + "Circuito": 123 + }, + { + "IdCircuito": 124, + "Circuito": 124 + }, + { + "IdCircuito": 125, + "Circuito": 125 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c205", + "IdSeccion": 22, + "Seccion": "2 DE ABRIL", + "Circuitos": [ + { + "IdCircuito": 126, + "Circuito": 126 + }, + { + "IdCircuito": 127, + "Circuito": 127 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c206", + "IdSeccion": 23, + "Seccion": "FRAY J.S.M.DE ORO", + "Circuitos": [ + { + "IdCircuito": 128, + "Circuito": 128 + }, + { + "IdCircuito": 129, + "Circuito": 129 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c207", + "IdSeccion": 24, + "Seccion": "ALMIRANTE BROWN", + "Circuitos": [ + { + "IdCircuito": 130, + "Circuito": 130 + }, + { + "IdCircuito": 131, + "Circuito": 131 + }, + { + "IdCircuito": 132, + "Circuito": 132 + }, + { + "IdCircuito": 133, + "Circuito": 133 + }, + { + "IdCircuito": "0132A", + "Circuito": "132A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c208", + "IdSeccion": 25, + "Seccion": "GENERAL GÜEMES", + "Circuitos": [ + { + "IdCircuito": 136, + "Circuito": 136 + }, + { + "IdCircuito": 137, + "Circuito": 137 + }, + { + "IdCircuito": 139, + "Circuito": 139 + }, + { + "IdCircuito": "0134A", + "Circuito": "134A" + }, + { + "IdCircuito": "0134B", + "Circuito": "134B" + }, + { + "IdCircuito": "0134C", + "Circuito": "134C" + }, + { + "IdCircuito": "0134D", + "Circuito": "134D" + }, + { + "IdCircuito": "0135A", + "Circuito": "135A" + }, + { + "IdCircuito": "0135B", + "Circuito": "135B" + }, + { + "IdCircuito": "0135C", + "Circuito": "135C" + }, + { + "IdCircuito": "0138A", + "Circuito": "138A" + }, + { + "IdCircuito": "0138B", + "Circuito": "138B" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c209", + "IdDistrito": 8, + "Distrito": "ENTRE RÍOS", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c20a", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c20b", + "IdSeccion": 1, + "Seccion": "PARANÁ", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - CENTRO 1" + }, + { + "IdCircuito": 2, + "Circuito": "2 - CENTRO 2" + }, + { + "IdCircuito": 3, + "Circuito": "3 - CENTRO 3" + }, + { + "IdCircuito": 4, + "Circuito": "4 - CENTRO 4" + }, + { + "IdCircuito": 5, + "Circuito": "5 - PUERTO NUEVO" + }, + { + "IdCircuito": 6, + "Circuito": "6 - BAJADA GRANDE" + }, + { + "IdCircuito": 7, + "Circuito": "7 - PUERTO VIEJO" + }, + { + "IdCircuito": 8, + "Circuito": "8 - PARACAO" + }, + { + "IdCircuito": 9, + "Circuito": "9 - ANACLETO MEDINA" + }, + { + "IdCircuito": 10, + "Circuito": "10 - SAN AGUSTIN" + }, + { + "IdCircuito": 11, + "Circuito": "11 - LA FLORESTA" + }, + { + "IdCircuito": 12, + "Circuito": "12 - SANTA TERESITA" + }, + { + "IdCircuito": 13, + "Circuito": "13 - LOMAS DEL MIRADOR" + }, + { + "IdCircuito": 14, + "Circuito": "14 - BRETE" + }, + { + "IdCircuito": 15, + "Circuito": "15 - BARRIO PARQUE" + }, + { + "IdCircuito": 16, + "Circuito": "16 - SANTA ANA" + }, + { + "IdCircuito": 17, + "Circuito": "17 - QUINTAS AL ESTE" + }, + { + "IdCircuito": 18, + "Circuito": "18 - KILOMETRO 5 1/2" + }, + { + "IdCircuito": 19, + "Circuito": "19 - SAN BENITO" + }, + { + "IdCircuito": 20, + "Circuito": "20 - TEZANOS PINTO" + }, + { + "IdCircuito": 21, + "Circuito": "21 - ORO VERDE" + }, + { + "IdCircuito": 22, + "Circuito": "22 - SAUCE PINTO" + }, + { + "IdCircuito": 23, + "Circuito": "23 - COLONIA AVELLANEDA" + }, + { + "IdCircuito": 24, + "Circuito": "24 - VILLA URQUIZA" + }, + { + "IdCircuito": 25, + "Circuito": "25 - COLONIA CELINA" + }, + { + "IdCircuito": 26, + "Circuito": "26 - COLONIA CRESPO" + }, + { + "IdCircuito": 27, + "Circuito": "27 - COL NVA VA URQUIZA" + }, + { + "IdCircuito": 29, + "Circuito": "29 - COLONIA RIVADAVIA" + }, + { + "IdCircuito": 30, + "Circuito": "30 - PASO DE LAS PIEDRAS" + }, + { + "IdCircuito": 31, + "Circuito": "31 - COLONIA CERRITO" + }, + { + "IdCircuito": 32, + "Circuito": "32 - CERRITO" + }, + { + "IdCircuito": 33, + "Circuito": "33 - ALDEA SANTA MARIA" + }, + { + "IdCircuito": 34, + "Circuito": "34 - PUERTO CURTIEMBRE" + }, + { + "IdCircuito": 35, + "Circuito": "35 - MARIA GRANDE 1" + }, + { + "IdCircuito": 36, + "Circuito": "36 - LAS TUNAS" + }, + { + "IdCircuito": 37, + "Circuito": "37 - VILLA MARIA GRANDE" + }, + { + "IdCircuito": 38, + "Circuito": "38 - EL PINGO" + }, + { + "IdCircuito": 39, + "Circuito": "39 - ESTACION SOSA" + }, + { + "IdCircuito": 40, + "Circuito": "40 - TABOSSI" + }, + { + "IdCircuito": 41, + "Circuito": "41 - PUEBLO BRUGO" + }, + { + "IdCircuito": 42, + "Circuito": "42 - ANTONIO TOMAS" + }, + { + "IdCircuito": 43, + "Circuito": "43 - HERNANDARIAS" + }, + { + "IdCircuito": 44, + "Circuito": "44 - LAS GARZAS" + }, + { + "IdCircuito": 45, + "Circuito": "45 - MARIA GRANDE 2" + }, + { + "IdCircuito": 46, + "Circuito": "46 - HASENKAMP" + }, + { + "IdCircuito": 47, + "Circuito": "47 - COL OF 4 BURGOS" + }, + { + "IdCircuito": 48, + "Circuito": "48 - CRESPO" + }, + { + "IdCircuito": 49, + "Circuito": "49 - ESPINILLO" + }, + { + "IdCircuito": 50, + "Circuito": "50 - SAN RAFAEL" + }, + { + "IdCircuito": 51, + "Circuito": "51 - LA PICADA" + }, + { + "IdCircuito": 52, + "Circuito": "52 - ESPINILLO NORTE" + }, + { + "IdCircuito": 53, + "Circuito": "53 - MARIA LUISA" + }, + { + "IdCircuito": 54, + "Circuito": "54 - VA GDOR ETCHEVEHERE" + }, + { + "IdCircuito": 55, + "Circuito": "55 - VILLA FONTANA" + }, + { + "IdCircuito": 56, + "Circuito": "56 - QUEBRACHO" + }, + { + "IdCircuito": 57, + "Circuito": "57 - VIALE" + }, + { + "IdCircuito": 58, + "Circuito": "58 - SEGUI" + }, + { + "IdCircuito": "0023A", + "Circuito": "23A - SAUCE MONTRULL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c20c", + "IdSeccion": 3, + "Seccion": "LA PAZ", + "Circuitos": [ + { + "IdCircuito": 59, + "Circuito": "59 - LA PAZ" + }, + { + "IdCircuito": 60, + "Circuito": "60 - EJIDO LA PAZ" + }, + { + "IdCircuito": 61, + "Circuito": "61 - SANTA ELENA" + }, + { + "IdCircuito": 62, + "Circuito": "62 - DISTRITO FELICIANO" + }, + { + "IdCircuito": 63, + "Circuito": "63 - ALCARAZ 1" + }, + { + "IdCircuito": 64, + "Circuito": "64 - SAN CARLOS" + }, + { + "IdCircuito": 65, + "Circuito": "65 - BOVRIL" + }, + { + "IdCircuito": 66, + "Circuito": "66 - KM 160 SIR LEONARD" + }, + { + "IdCircuito": 67, + "Circuito": "67 - CARRASCO" + }, + { + "IdCircuito": 68, + "Circuito": "68 - ALCARAZ 2" + }, + { + "IdCircuito": 69, + "Circuito": "69 - PUEBLO ALCARAZ" + }, + { + "IdCircuito": 70, + "Circuito": "70 - PUERTO ALGARROBO" + }, + { + "IdCircuito": 71, + "Circuito": "71 - PIEDRAS BLANCAS" + }, + { + "IdCircuito": 72, + "Circuito": "72 - YESO" + }, + { + "IdCircuito": 73, + "Circuito": "73 - ESTACAS" + }, + { + "IdCircuito": 74, + "Circuito": "74 - SAN GUSTAVO" + }, + { + "IdCircuito": 75, + "Circuito": "75 - TACUARAS" + }, + { + "IdCircuito": 76, + "Circuito": "76 - OMBU" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c20d", + "IdSeccion": 4, + "Seccion": "DIAMANTE", + "Circuitos": [ + { + "IdCircuito": 77, + "Circuito": "77 - DIAMANTE" + }, + { + "IdCircuito": 78, + "Circuito": "78 - PUERTO DIAMANTE" + }, + { + "IdCircuito": 79, + "Circuito": "79 - EJIDO DIAMANTE" + }, + { + "IdCircuito": 80, + "Circuito": "80 - STROBEL" + }, + { + "IdCircuito": 81, + "Circuito": "81 - P ALVEAR SPATZENKUTTER" + }, + { + "IdCircuito": 82, + "Circuito": "82 - ALDEA BRASILERA" + }, + { + "IdCircuito": 83, + "Circuito": "83 - PUEBLO NUEVO" + }, + { + "IdCircuito": 84, + "Circuito": "84 - VALLE MARIA" + }, + { + "IdCircuito": 85, + "Circuito": "85 - GRAPSCHENTAL" + }, + { + "IdCircuito": 86, + "Circuito": "86 - ALDEA SALTO" + }, + { + "IdCircuito": 87, + "Circuito": "87 - COLONIA ENSAYO" + }, + { + "IdCircuito": 88, + "Circuito": "88 - ALDEA PROTESTANTE" + }, + { + "IdCircuito": 89, + "Circuito": "89 - COSTA GRANDE" + }, + { + "IdCircuito": 90, + "Circuito": "90 - DOLL" + }, + { + "IdCircuito": 91, + "Circuito": "91 - LAS CUEVAS" + }, + { + "IdCircuito": 92, + "Circuito": "92 - LIBERTADOR SAN MARTIN" + }, + { + "IdCircuito": 93, + "Circuito": "93 - RACEDO" + }, + { + "IdCircuito": 94, + "Circuito": "94 - CAMPS" + }, + { + "IdCircuito": 96, + "Circuito": "96 - RAMIREZ" + }, + { + "IdCircuito": 97, + "Circuito": "97 - ISLETAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c20e", + "IdSeccion": 5, + "Seccion": "VICTORIA", + "Circuitos": [ + { + "IdCircuito": 98, + "Circuito": "98 - VICTORIA ESTE" + }, + { + "IdCircuito": 99, + "Circuito": "99 - VICTORIA OESTE" + }, + { + "IdCircuito": 100, + "Circuito": "100 - CORRALES" + }, + { + "IdCircuito": 101, + "Circuito": "101 - ANTELO" + }, + { + "IdCircuito": 102, + "Circuito": "102 - PAJONAL" + }, + { + "IdCircuito": 103, + "Circuito": "103 - CHILCAS" + }, + { + "IdCircuito": 104, + "Circuito": "104 - SECCION ISLAS" + }, + { + "IdCircuito": 105, + "Circuito": "105 - RINCON DE NOGOYA" + }, + { + "IdCircuito": 106, + "Circuito": "106 - RINCON DEL DOLL" + }, + { + "IdCircuito": 107, + "Circuito": "107 - LAGUNA DEL PESCADO" + }, + { + "IdCircuito": 108, + "Circuito": "108 - QUEBRACHITOS" + }, + { + "IdCircuito": 109, + "Circuito": "109 - HINOJAL" + }, + { + "IdCircuito": 110, + "Circuito": "110 - MONTOYA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c20f", + "IdSeccion": 6, + "Seccion": "NOGOYÁ", + "Circuitos": [ + { + "IdCircuito": 111, + "Circuito": "111 - NOGOYÁ" + }, + { + "IdCircuito": 112, + "Circuito": "112 - EJIDO NOGOYÁ" + }, + { + "IdCircuito": 113, + "Circuito": "113 - DON CRISTOBAL 1A SECC" + }, + { + "IdCircuito": 114, + "Circuito": "114 - DON CRISTOBAL 2A SECC" + }, + { + "IdCircuito": 115, + "Circuito": "115 - ALGARROBITOS" + }, + { + "IdCircuito": 116, + "Circuito": "116 - ALDEA SAN MIGUEL" + }, + { + "IdCircuito": 117, + "Circuito": "117 - HERNANDEZ" + }, + { + "IdCircuito": 118, + "Circuito": "118 - ARANGUREN" + }, + { + "IdCircuito": 119, + "Circuito": "119 - BETBEDER" + }, + { + "IdCircuito": 120, + "Circuito": "120 - CRUCESITAS 3A SECCION" + }, + { + "IdCircuito": 121, + "Circuito": "121 - CRUCESITAS 7A SECCION" + }, + { + "IdCircuito": 122, + "Circuito": "122 - CRUCESITAS 8A SECCION" + }, + { + "IdCircuito": 123, + "Circuito": "123 - MONTOYA" + }, + { + "IdCircuito": 124, + "Circuito": "124 - LUCAS GONZALEZ" + }, + { + "IdCircuito": 125, + "Circuito": "125 - SAUCE" + }, + { + "IdCircuito": 126, + "Circuito": "126 - XX DE SEPTIEMBRE" + }, + { + "IdCircuito": 127, + "Circuito": "127 - CHIQUEROS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c210", + "IdSeccion": 7, + "Seccion": "GUALEGUAY", + "Circuitos": [ + { + "IdCircuito": 128, + "Circuito": "128 - GUALEGUAY" + }, + { + "IdCircuito": 129, + "Circuito": "129 - 1A SECCION CHACRAS" + }, + { + "IdCircuito": 130, + "Circuito": "130 - 2A SECCION CHACRAS" + }, + { + "IdCircuito": 131, + "Circuito": "131 - PUERTO RUIZ" + }, + { + "IdCircuito": 132, + "Circuito": "132 - 1 DISTRITO CUCHILLA" + }, + { + "IdCircuito": 133, + "Circuito": "133 - 2 DISTRITO VIZCACHA" + }, + { + "IdCircuito": 134, + "Circuito": "134 - 3 DISTRITO JACINTA" + }, + { + "IdCircuito": 135, + "Circuito": "135 - GALARZA" + }, + { + "IdCircuito": 136, + "Circuito": "136 - 4 DTO CLE" + }, + { + "IdCircuito": 137, + "Circuito": "137 - 5 DTO SAUCE" + }, + { + "IdCircuito": 138, + "Circuito": "138 - 6 DTO COSTA DE NOGOYA" + }, + { + "IdCircuito": 139, + "Circuito": "139 - 7 DTO MEDANOS" + }, + { + "IdCircuito": 140, + "Circuito": "140 - 8° DTO ALBARDON" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c211", + "IdSeccion": 8, + "Seccion": "TALA", + "Circuitos": [ + { + "IdCircuito": 141, + "Circuito": "141 - ROSARIO DEL TALA" + }, + { + "IdCircuito": 142, + "Circuito": "142 - EJIDO 1 ROSARIO DEL TALA" + }, + { + "IdCircuito": 143, + "Circuito": "143 - EJIDO 2 ROSARIO DEL TALA" + }, + { + "IdCircuito": 144, + "Circuito": "144 - DISTRITO PUEBLO" + }, + { + "IdCircuito": 145, + "Circuito": "145 - PUEBLO PRIMERO" + }, + { + "IdCircuito": 146, + "Circuito": "146 - ESTACION SOLA" + }, + { + "IdCircuito": 147, + "Circuito": "147 - ESTACION ECHAGE" + }, + { + "IdCircuito": 148, + "Circuito": "148 - SAUCE NORTE" + }, + { + "IdCircuito": 149, + "Circuito": "149 - SAUCE SUD" + }, + { + "IdCircuito": 150, + "Circuito": "150 - DISTRITO CLE" + }, + { + "IdCircuito": 151, + "Circuito": "151 - ESTACION MANSILLA" + }, + { + "IdCircuito": 152, + "Circuito": "152 - ALTAMIRANO NORTE" + }, + { + "IdCircuito": 153, + "Circuito": "153 - DURAZNO NORTE" + }, + { + "IdCircuito": 154, + "Circuito": "154 - ALTAMIRANO SUD" + }, + { + "IdCircuito": 155, + "Circuito": "155 - DURAZNO SUD" + }, + { + "IdCircuito": 156, + "Circuito": "156 - MACIA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c212", + "IdSeccion": 9, + "Seccion": "URUGUAY", + "Circuitos": [ + { + "IdCircuito": 157, + "Circuito": "157 - URUGUAY NORTE" + }, + { + "IdCircuito": 158, + "Circuito": "158 - URUGUAY SUD" + }, + { + "IdCircuito": 159, + "Circuito": "159 - SUBURBIO SUD URUGUAY" + }, + { + "IdCircuito": 160, + "Circuito": "160 - COLONIA PERFECCION" + }, + { + "IdCircuito": 161, + "Circuito": "161 - SANTA CANDIDA" + }, + { + "IdCircuito": 162, + "Circuito": "162 - SUBURBIO NORTE URUGUAY" + }, + { + "IdCircuito": 163, + "Circuito": "163 - TALA" + }, + { + "IdCircuito": 164, + "Circuito": "164 - COLONIA ELIA" + }, + { + "IdCircuito": 165, + "Circuito": "165 - POTRERO" + }, + { + "IdCircuito": 166, + "Circuito": "166 - 1° DE MAYO" + }, + { + "IdCircuito": 167, + "Circuito": "167 - SAN CIPRIANO" + }, + { + "IdCircuito": 168, + "Circuito": "168 - PRONUNCIAMIENTO" + }, + { + "IdCircuito": 169, + "Circuito": "169 - CASEROS" + }, + { + "IdCircuito": 170, + "Circuito": "170 - SAN JUSTO" + }, + { + "IdCircuito": 171, + "Circuito": "171 - VILLA MANTERO" + }, + { + "IdCircuito": 172, + "Circuito": "172 - GENACITO SUR ESTE" + }, + { + "IdCircuito": 173, + "Circuito": "173 - LIBAROS" + }, + { + "IdCircuito": 174, + "Circuito": "174 - SANTA ANITA" + }, + { + "IdCircuito": 175, + "Circuito": "175 - BASAVILBASO" + }, + { + "IdCircuito": 176, + "Circuito": "176 - COLONIA LUCIENVILLE" + }, + { + "IdCircuito": 178, + "Circuito": "178 - HERRERA" + }, + { + "IdCircuito": 179, + "Circuito": "179 - LAS MOSCAS" + }, + { + "IdCircuito": 180, + "Circuito": "180 - URQUIZA" + }, + { + "IdCircuito": 181, + "Circuito": "181 - ROCAMORA" + }, + { + "IdCircuito": "0166A", + "Circuito": "166A - COLONIA SANTA TERESITA" + }, + { + "IdCircuito": "0174A", + "Circuito": "174A - COLONIA SAN MARTIN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c213", + "IdSeccion": 10, + "Seccion": "GUALEGUAYCHÚ", + "Circuitos": [ + { + "IdCircuito": 182, + "Circuito": "182 - GUALEGUAYCHÚ NORTE" + }, + { + "IdCircuito": 183, + "Circuito": "183 - GUALEGUAYCHÚ SUD" + }, + { + "IdCircuito": 184, + "Circuito": "184 - SUBURBIO NORTE GUALEGUAYCHÚ" + }, + { + "IdCircuito": 185, + "Circuito": "185 - SUBURBIO SUD GUALEGUAYCHÚ" + }, + { + "IdCircuito": 186, + "Circuito": "186 - COSTA URUGUAY SUR" + }, + { + "IdCircuito": 187, + "Circuito": "187 - COSTA URUGUAY NORTE" + }, + { + "IdCircuito": 188, + "Circuito": "188 - EJIDO ESTE GUALEGUAYCHÚ" + }, + { + "IdCircuito": 189, + "Circuito": "189 - PBLO GRAL BELGRANO" + }, + { + "IdCircuito": 190, + "Circuito": "190 - PERDICES" + }, + { + "IdCircuito": 191, + "Circuito": "191 - PEHUAJO SUR" + }, + { + "IdCircuito": 192, + "Circuito": "192 - VILLA LARROQUE" + }, + { + "IdCircuito": 193, + "Circuito": "193 - IRAZUSTA" + }, + { + "IdCircuito": 194, + "Circuito": "194 - DOS HERMANAS" + }, + { + "IdCircuito": 196, + "Circuito": "196 - CUCHILLA REDONDA" + }, + { + "IdCircuito": 197, + "Circuito": "197 - CEIBAS" + }, + { + "IdCircuito": 198, + "Circuito": "198 - URDINARRAIN" + }, + { + "IdCircuito": 199, + "Circuito": "199 - COL FLORIDA DEL OESTE" + }, + { + "IdCircuito": 200, + "Circuito": "200 - ALDEA SAN ANTONIO" + }, + { + "IdCircuito": 201, + "Circuito": "201 - ALDEA SAN JUAN" + }, + { + "IdCircuito": 202, + "Circuito": "202 - GILBERT" + }, + { + "IdCircuito": 203, + "Circuito": "203 - PEHUAJO NORTE" + }, + { + "IdCircuito": 204, + "Circuito": "204 - RINCON DEL GATO" + }, + { + "IdCircuito": 205, + "Circuito": "205 - BRITOS" + }, + { + "IdCircuito": 206, + "Circuito": "206 - TALITAS" + }, + { + "IdCircuito": 207, + "Circuito": "207 - COSTA SAN ANTONIO" + }, + { + "IdCircuito": "0195A", + "Circuito": "195A - ENRIQUE CARBO" + }, + { + "IdCircuito": "0202A", + "Circuito": "202A - ESCRINA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c214", + "IdSeccion": 11, + "Seccion": "ISLAS DEL IBICUY", + "Circuitos": [ + { + "IdCircuito": 208, + "Circuito": "208 - IBICUY" + }, + { + "IdCircuito": 209, + "Circuito": "209 - MAZARUCA" + }, + { + "IdCircuito": 210, + "Circuito": "210 - SECCION ISLAS" + }, + { + "IdCircuito": 211, + "Circuito": "211 - VILLA PARANACITO" + }, + { + "IdCircuito": 212, + "Circuito": "212 - MEDANOS" + }, + { + "IdCircuito": 213, + "Circuito": "213 - PUEBLO CEIBAS" + }, + { + "IdCircuito": "0213A", + "Circuito": "213A - NANCAY" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c215", + "IdSeccion": 12, + "Seccion": "VILLAGUAY", + "Circuitos": [ + { + "IdCircuito": 214, + "Circuito": "214 - VILLAGUAY" + }, + { + "IdCircuito": 215, + "Circuito": "215 - EJIDO NORTE VILLAGUAY" + }, + { + "IdCircuito": 216, + "Circuito": "216 - DOMINGUEZ" + }, + { + "IdCircuito": 217, + "Circuito": "217 - SAN GREGORIO" + }, + { + "IdCircuito": 218, + "Circuito": "218 - INGENIERO SAJAROFF" + }, + { + "IdCircuito": 219, + "Circuito": "219 - VILLA CLARA" + }, + { + "IdCircuito": 220, + "Circuito": "220 - SAN JORGE" + }, + { + "IdCircuito": 221, + "Circuito": "221 - JUBILEO" + }, + { + "IdCircuito": 222, + "Circuito": "222 - RAICES ESTE" + }, + { + "IdCircuito": 223, + "Circuito": "223 - RAICES OESTE" + }, + { + "IdCircuito": 224, + "Circuito": "224 - MOJONES SUD" + }, + { + "IdCircuito": 225, + "Circuito": "225 - MOJONES NORTE" + }, + { + "IdCircuito": 226, + "Circuito": "226 - COLONIA ADIVINOS" + }, + { + "IdCircuito": 227, + "Circuito": "227 - LUCAS SUD 1°" + }, + { + "IdCircuito": 228, + "Circuito": "228 - LUCAS SUD 2°" + }, + { + "IdCircuito": 229, + "Circuito": "229 - LUCAS NORTE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c216", + "IdSeccion": 13, + "Seccion": "CONCORDIA", + "Circuitos": [ + { + "IdCircuito": 230, + "Circuito": "230 - CONCORDIA OESTE SUR" + }, + { + "IdCircuito": 231, + "Circuito": "231 - CONCORDIA OESTE NORTE" + }, + { + "IdCircuito": 232, + "Circuito": "232 - CONCORDIA ESTE SUR" + }, + { + "IdCircuito": 233, + "Circuito": "233 - CONCORDIA ESTE NORTE" + }, + { + "IdCircuito": 234, + "Circuito": "234 - VILLA ZORRAQUIN" + }, + { + "IdCircuito": 235, + "Circuito": "235 - EJIDO CONCORDIA" + }, + { + "IdCircuito": 236, + "Circuito": "236 - LA BIANCA" + }, + { + "IdCircuito": 237, + "Circuito": "237 - FRIGORIFICO YUQUERI" + }, + { + "IdCircuito": 238, + "Circuito": "238 - LOS CHARRUAS" + }, + { + "IdCircuito": 239, + "Circuito": "239 - LOMA NEGRA" + }, + { + "IdCircuito": 240, + "Circuito": "240 - COLONIA AYUI" + }, + { + "IdCircuito": 241, + "Circuito": "241 - COLONIA ROCA" + }, + { + "IdCircuito": 242, + "Circuito": "242 - LA CRIOLLA" + }, + { + "IdCircuito": 243, + "Circuito": "243 - MAGNASCO" + }, + { + "IdCircuito": 244, + "Circuito": "244 - MOREYRA" + }, + { + "IdCircuito": 245, + "Circuito": "245 - COLONIA YERUA" + }, + { + "IdCircuito": 246, + "Circuito": "246 - ESTANCIA GRANDE" + }, + { + "IdCircuito": 247, + "Circuito": "247 - ESTACION YERUA" + }, + { + "IdCircuito": 248, + "Circuito": "248 - CLODOMIRO LEDESMA" + }, + { + "IdCircuito": 249, + "Circuito": "249 - PUERTO YERUA" + }, + { + "IdCircuito": 250, + "Circuito": "250 - NUEVA ESCOCIA" + }, + { + "IdCircuito": 251, + "Circuito": "251 - PEDERNAL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c217", + "IdSeccion": 14, + "Seccion": "FEDERAL", + "Circuitos": [ + { + "IdCircuito": 252, + "Circuito": "252 - FEDERAL" + }, + { + "IdCircuito": 253, + "Circuito": "253 - COLONIA FEDERAL" + }, + { + "IdCircuito": 254, + "Circuito": "254 - NUEVA VIZCAYA" + }, + { + "IdCircuito": 255, + "Circuito": "255 - CARPINCHORI" + }, + { + "IdCircuito": 256, + "Circuito": "256 - EL GATO" + }, + { + "IdCircuito": 257, + "Circuito": "257 - BANDERAS" + }, + { + "IdCircuito": 258, + "Circuito": "258 - CONSCRIPTO BERNARDI" + }, + { + "IdCircuito": 259, + "Circuito": "259 - EL CIMARRON" + }, + { + "IdCircuito": 260, + "Circuito": "260 - COLONIA LA MARTA" + }, + { + "IdCircuito": 261, + "Circuito": "261 - COLONIA SAN LORENZO" + }, + { + "IdCircuito": 262, + "Circuito": "262 - CHANAR" + }, + { + "IdCircuito": 263, + "Circuito": "263 - SAUCE DE LUNA" + }, + { + "IdCircuito": 264, + "Circuito": "264 - ENCIERRA" + }, + { + "IdCircuito": 265, + "Circuito": "265 - LAS ACHIRAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c218", + "IdSeccion": 15, + "Seccion": "COLÓN", + "Circuitos": [ + { + "IdCircuito": 266, + "Circuito": "266 - COLÓN" + }, + { + "IdCircuito": 267, + "Circuito": "267 - EJIDO COLÓN" + }, + { + "IdCircuito": 268, + "Circuito": "268 - SAN JOSE" + }, + { + "IdCircuito": 269, + "Circuito": "269 - EL BRILLANTE" + }, + { + "IdCircuito": 270, + "Circuito": "270 - PRIMER DISTRITO" + }, + { + "IdCircuito": 271, + "Circuito": "271 - COLÓNIA NUEVA SUR" + }, + { + "IdCircuito": 272, + "Circuito": "272 - COLÓNIA 1° DE MAYO" + }, + { + "IdCircuito": 273, + "Circuito": "273 - COLÓNIA NUEVA NORTE" + }, + { + "IdCircuito": 274, + "Circuito": "274 - VILLA ELISA" + }, + { + "IdCircuito": 275, + "Circuito": "275 - SEGUNDO DISTRITO" + }, + { + "IdCircuito": 276, + "Circuito": "276 - LA CLARITA" + }, + { + "IdCircuito": 277, + "Circuito": "277 - TERCER DISTRITO" + }, + { + "IdCircuito": 278, + "Circuito": "278 - COLÓNIA EL CARMEN" + }, + { + "IdCircuito": 279, + "Circuito": "279 - PUENTE GUALEGUAYCHU" + }, + { + "IdCircuito": 280, + "Circuito": "280 - SAN ANTONIO" + }, + { + "IdCircuito": 281, + "Circuito": "281 - SANTA ROSA" + }, + { + "IdCircuito": 282, + "Circuito": "282 - FABRICA" + }, + { + "IdCircuito": 283, + "Circuito": "283 - CUARTO DISTRITO" + }, + { + "IdCircuito": 285, + "Circuito": "285 - QUINTO DISTRITO" + }, + { + "IdCircuito": 286, + "Circuito": "286 - SEXTO DISTRITO" + }, + { + "IdCircuito": 287, + "Circuito": "287 - UBAJAY" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c219", + "IdSeccion": 16, + "Seccion": "FELICIANO", + "Circuitos": [ + { + "IdCircuito": 288, + "Circuito": "288 - FELICIANO" + }, + { + "IdCircuito": 289, + "Circuito": "289 - EJIDO FELICIANO" + }, + { + "IdCircuito": 290, + "Circuito": "290 - DISTRITO FELICIANO" + }, + { + "IdCircuito": 291, + "Circuito": "291 - BASUALDO" + }, + { + "IdCircuito": 292, + "Circuito": "292 - CHANAR" + }, + { + "IdCircuito": 293, + "Circuito": "293 - ATENCIO" + }, + { + "IdCircuito": 294, + "Circuito": "294 - MANANTIALES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c21a", + "IdSeccion": 17, + "Seccion": "FEDERACIÓN", + "Circuitos": [ + { + "IdCircuito": 295, + "Circuito": "295 - VIEJA FEDERACIÓN" + }, + { + "IdCircuito": 296, + "Circuito": "296 - NUEVA FEDERACIÓN" + }, + { + "IdCircuito": 297, + "Circuito": "297 - EJIDO FEDERACIÓN" + }, + { + "IdCircuito": 298, + "Circuito": "298 - MANDISOVI" + }, + { + "IdCircuito": 299, + "Circuito": "299 - COLONIA FREITAS" + }, + { + "IdCircuito": 300, + "Circuito": "300 - GUALEGUAYCITO" + }, + { + "IdCircuito": 302, + "Circuito": "302 - SAN JAIME DE LA FRONTERA" + }, + { + "IdCircuito": 303, + "Circuito": "303 - COLONIA SANTA MARIA" + }, + { + "IdCircuito": 304, + "Circuito": "304 - ATENCIO AL ESTE" + }, + { + "IdCircuito": 305, + "Circuito": "305 - CHAJARI" + }, + { + "IdCircuito": 306, + "Circuito": "306 - VILLA DEL ROSARIO" + }, + { + "IdCircuito": 307, + "Circuito": "307 - SAN ROQUE" + }, + { + "IdCircuito": 308, + "Circuito": "308 - SANTA ANA" + }, + { + "IdCircuito": 309, + "Circuito": "309 - CANADA DEL CERRO" + }, + { + "IdCircuito": "0304A", + "Circuito": "304A - LOS CONQUISTADORES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c21b", + "IdSeccion": 18, + "Seccion": "SAN SALVADOR", + "Circuitos": [ + { + "IdCircuito": 310, + "Circuito": "310 - SAN SALVADOR" + }, + { + "IdCircuito": 311, + "Circuito": "311 - GENERAL CAMPOS" + }, + { + "IdCircuito": 312, + "Circuito": "312 - WALTER MOSS" + }, + { + "IdCircuito": 313, + "Circuito": "313 - COLONIA OFICIAL N° 5" + }, + { + "IdCircuito": 314, + "Circuito": "314 - LAS COLONIAS" + }, + { + "IdCircuito": 315, + "Circuito": "315 - ARROYO GRANDE" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c21c", + "IdDistrito": 15, + "Distrito": "NEUQUÉN", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c21d", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c21e", + "IdSeccion": 1, + "Seccion": "CONFLUENCIA", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 8, + "Circuito": "8 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 11, + "Circuito": "11 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 15, + "Circuito": "15 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 16, + "Circuito": "16 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 18, + "Circuito": "18 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 21, + "Circuito": "21 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 25, + "Circuito": "25 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 28, + "Circuito": "28 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 30, + "Circuito": "30 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 32, + "Circuito": "32 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 34, + "Circuito": "34 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 40, + "Circuito": "40 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 42, + "Circuito": "42 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 46, + "Circuito": "46 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 50, + "Circuito": "50 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 54, + "Circuito": "54 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 57, + "Circuito": "57 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 60, + "Circuito": "60 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 63, + "Circuito": "63 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 65, + "Circuito": "65 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 69, + "Circuito": "69 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 74, + "Circuito": "74 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 79, + "Circuito": "79 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 89, + "Circuito": "89 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 100, + "Circuito": "100 - CUTRAL CO ESTE" + }, + { + "IdCircuito": 103, + "Circuito": "103 - CUTRAL CO OESTE" + }, + { + "IdCircuito": 105, + "Circuito": "105 - CUTRAL CO NORTE FILI DEI" + }, + { + "IdCircuito": 108, + "Circuito": "108 - CUTRAL CO SUR" + }, + { + "IdCircuito": 110, + "Circuito": "110 - PLAZA HUINCUL NORTE" + }, + { + "IdCircuito": 115, + "Circuito": "115 - PLAZA HUINCUL SUR" + }, + { + "IdCircuito": 120, + "Circuito": "120 - CHALLACO" + }, + { + "IdCircuito": 130, + "Circuito": "130 - SAUZAL BONITO" + }, + { + "IdCircuito": 140, + "Circuito": "140 - VILLA EL CHOCON" + }, + { + "IdCircuito": 150, + "Circuito": "150 - SENILLOSA" + }, + { + "IdCircuito": 155, + "Circuito": "155 - SENILLOSA SUR ARROYITO" + }, + { + "IdCircuito": 160, + "Circuito": "160 - PLOTTER ESTE" + }, + { + "IdCircuito": 163, + "Circuito": "163 - PLOTTER NORTE" + }, + { + "IdCircuito": 166, + "Circuito": "166 - PLOTTIER SUR" + }, + { + "IdCircuito": 169, + "Circuito": "169 - PLOTTIER OESTE" + }, + { + "IdCircuito": 170, + "Circuito": "170 - PLANICIE BANDERITA" + }, + { + "IdCircuito": 180, + "Circuito": "180 - CENTENARIO CASCO VIEJO" + }, + { + "IdCircuito": 183, + "Circuito": "183 - CENTENARIO ALTO" + }, + { + "IdCircuito": 185, + "Circuito": "185 - CENTENARIO SUR" + }, + { + "IdCircuito": 187, + "Circuito": "187 - CENTENARIO NORTE" + }, + { + "IdCircuito": 190, + "Circuito": "190 - VISTA ALEGRE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c21f", + "IdSeccion": 2, + "Seccion": "ZAPALA", + "Circuitos": [ + { + "IdCircuito": 200, + "Circuito": "200 - ZAPALA" + }, + { + "IdCircuito": 205, + "Circuito": "205 - ZAPALA" + }, + { + "IdCircuito": 210, + "Circuito": "210 - ZAPALA" + }, + { + "IdCircuito": 215, + "Circuito": "215 - ZAPALA" + }, + { + "IdCircuito": 220, + "Circuito": "220 - MARIANO MORENO" + }, + { + "IdCircuito": 225, + "Circuito": "225 - MARIANO MORENO" + }, + { + "IdCircuito": 230, + "Circuito": "230 - LOS CATUTOS" + }, + { + "IdCircuito": 240, + "Circuito": "240 - COVUNCO ABAJO" + }, + { + "IdCircuito": 250, + "Circuito": "250 - RAMON CASTRO" + }, + { + "IdCircuito": 260, + "Circuito": "260 - BARDA NEGRA" + }, + { + "IdCircuito": 270, + "Circuito": "270 - VILLA DEL PUENTE PICUN LEUFU NORTE" + }, + { + "IdCircuito": 290, + "Circuito": "290 - LAGUNA BLANCA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c220", + "IdSeccion": 3, + "Seccion": "AÑELO", + "Circuitos": [ + { + "IdCircuito": 300, + "Circuito": "300 - SAN PATRICIO DEL CHANAR" + }, + { + "IdCircuito": 310, + "Circuito": "310 - AÑELO" + }, + { + "IdCircuito": 320, + "Circuito": "320 - AÑELO FUERA DE RADIO" + }, + { + "IdCircuito": 330, + "Circuito": "330 - AGUADA SAN ROQUE" + }, + { + "IdCircuito": 340, + "Circuito": "340 - LOS CHIHUIDOS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c221", + "IdSeccion": 4, + "Seccion": "PEHUENCHES", + "Circuitos": [ + { + "IdCircuito": 400, + "Circuito": "400 - RINCON DE LOS SAUCES" + }, + { + "IdCircuito": 410, + "Circuito": "410 - OCTAVIO PICO" + }, + { + "IdCircuito": 420, + "Circuito": "420 - HUANTRAICO" + }, + { + "IdCircuito": 430, + "Circuito": "430 - BUTA RANQUIL SUR" + }, + { + "IdCircuito": 440, + "Circuito": "440 - BUTA RANQUIL NORTE" + }, + { + "IdCircuito": 450, + "Circuito": "450 - BARRANCAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c222", + "IdSeccion": 5, + "Seccion": "CHOS MALAL", + "Circuitos": [ + { + "IdCircuito": 500, + "Circuito": "500 - CHOS MALAL" + }, + { + "IdCircuito": 510, + "Circuito": "510 - CHOS MALAL FUERA DE RADIO" + }, + { + "IdCircuito": 520, + "Circuito": "520 - VILLA CURI LEUVU SUR" + }, + { + "IdCircuito": 530, + "Circuito": "530 - VILLA CURI LEUVU NORTE" + }, + { + "IdCircuito": 540, + "Circuito": "540 - TRICAO MALAL" + }, + { + "IdCircuito": 550, + "Circuito": "550 - CHAPUA" + }, + { + "IdCircuito": 560, + "Circuito": "560 - CAJON DEL CURILEUVU" + }, + { + "IdCircuito": 570, + "Circuito": "570 - COYUCO" + }, + { + "IdCircuito": 580, + "Circuito": "580 - COCHICO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c223", + "IdSeccion": 6, + "Seccion": "MINAS", + "Circuitos": [ + { + "IdCircuito": 600, + "Circuito": "600 - ANDACOLLO" + }, + { + "IdCircuito": 620, + "Circuito": "620 - GUANACOS" + }, + { + "IdCircuito": 630, + "Circuito": "630 - LOS MICHES" + }, + { + "IdCircuito": 640, + "Circuito": "640 - VILLA DEL NAHUEVE" + }, + { + "IdCircuito": 650, + "Circuito": "650 - HUINGANCO" + }, + { + "IdCircuito": 660, + "Circuito": "660 - BUTALON NORTE HUINGANCO NORTE" + }, + { + "IdCircuito": 670, + "Circuito": "670 - LAS OVEJAS" + }, + { + "IdCircuito": 680, + "Circuito": "680 - VARVARCO INVERNADA VIEJA" + }, + { + "IdCircuito": 690, + "Circuito": "690 - MANZANO AMARGO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c224", + "IdSeccion": 7, + "Seccion": "ÑORQUÍN", + "Circuitos": [ + { + "IdCircuito": 700, + "Circuito": "700 - EL HUECU" + }, + { + "IdCircuito": 720, + "Circuito": "720 - EL CHOLAR" + }, + { + "IdCircuito": 740, + "Circuito": "740 - CAVIAHUE COPAHUE" + }, + { + "IdCircuito": 750, + "Circuito": "750 - TAQUIMILAN" + }, + { + "IdCircuito": 760, + "Circuito": "760 - TAQUIMILAN ARRIBA" + }, + { + "IdCircuito": 770, + "Circuito": "770 - TRES CHORROS" + }, + { + "IdCircuito": 780, + "Circuito": "780 - NAUNAUCO" + }, + { + "IdCircuito": 785, + "Circuito": "785 - TRALAITUE" + }, + { + "IdCircuito": 790, + "Circuito": "790 - COLIPILLI" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c225", + "IdSeccion": 8, + "Seccion": "LONCOPUÉ", + "Circuitos": [ + { + "IdCircuito": 800, + "Circuito": "800 - LONCOPUÉ" + }, + { + "IdCircuito": 810, + "Circuito": "810 - LONCOPUÉ FUERA DE RADIO" + }, + { + "IdCircuito": 820, + "Circuito": "820 - CAJON DE ALMAZA" + }, + { + "IdCircuito": 830, + "Circuito": "830 - HUNCAL" + }, + { + "IdCircuito": 840, + "Circuito": "840 - CHORRIACA" + }, + { + "IdCircuito": 850, + "Circuito": "850 - QUINTUCO" + }, + { + "IdCircuito": 860, + "Circuito": "860 - HUARENCHENQUE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c226", + "IdSeccion": 9, + "Seccion": "PICUNCHES", + "Circuitos": [ + { + "IdCircuito": 900, + "Circuito": "900 - LAS LAJAS" + }, + { + "IdCircuito": 905, + "Circuito": "905 - LAS LAJAS" + }, + { + "IdCircuito": 920, + "Circuito": "920 - BAJADA DEL AGRIO" + }, + { + "IdCircuito": 930, + "Circuito": "930 - QUILI MALAL" + }, + { + "IdCircuito": 940, + "Circuito": "940 - MALLIN DE LOS CABALLOS" + }, + { + "IdCircuito": 950, + "Circuito": "950 - LOS ALAZANES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c227", + "IdSeccion": 10, + "Seccion": "ALUMINÉ", + "Circuitos": [ + { + "IdCircuito": 1000, + "Circuito": "1000 - ALUMINÉ" + }, + { + "IdCircuito": 1010, + "Circuito": "1010 - ALUMINÉ FUERA DE RADIO" + }, + { + "IdCircuito": 1020, + "Circuito": "1020 - QUILLEN" + }, + { + "IdCircuito": 1030, + "Circuito": "1030 - RUCA CHOROY" + }, + { + "IdCircuito": 1040, + "Circuito": "1040 - PULMARI" + }, + { + "IdCircuito": 1050, + "Circuito": "1050 - NORQUINCO" + }, + { + "IdCircuito": 1060, + "Circuito": "1060 - VILLA PEHUENIA" + }, + { + "IdCircuito": 1070, + "Circuito": "1070 - VILLA MOQUEHUE" + }, + { + "IdCircuito": 1080, + "Circuito": "1080 - LONCO LUAN" + }, + { + "IdCircuito": 1090, + "Circuito": "1090 - KILCA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c228", + "IdSeccion": 11, + "Seccion": "CATÁN LIL", + "Circuitos": [ + { + "IdCircuito": 1100, + "Circuito": "1100 - LAS COLORADAS" + }, + { + "IdCircuito": 1120, + "Circuito": "1120 - EL SALITRAL" + }, + { + "IdCircuito": 1130, + "Circuito": "1130 - CAICHIHUE" + }, + { + "IdCircuito": 1140, + "Circuito": "1140 - LA PICAZA" + }, + { + "IdCircuito": 1150, + "Circuito": "1150 - LAS CORTADERAS" + }, + { + "IdCircuito": 1160, + "Circuito": "1160 - MEDIA LUNA" + }, + { + "IdCircuito": 1170, + "Circuito": "1170 - CHACAICO SUR" + }, + { + "IdCircuito": 1180, + "Circuito": "1180 - PILO LIL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c229", + "IdSeccion": 12, + "Seccion": "PICÚN LEUFÚ", + "Circuitos": [ + { + "IdCircuito": 1200, + "Circuito": "1200 - PICÚN LEUFÚ" + }, + { + "IdCircuito": 1210, + "Circuito": "1210 - EL SAUCE" + }, + { + "IdCircuito": 1220, + "Circuito": "1220 - PASO AGUERRE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c22a", + "IdSeccion": 13, + "Seccion": "COLLÓN CURÁ", + "Circuitos": [ + { + "IdCircuito": 1300, + "Circuito": "1300 - PIEDRA DEL AGUILA" + }, + { + "IdCircuito": 1320, + "Circuito": "1320 - SANTO TOMAS" + }, + { + "IdCircuito": 1330, + "Circuito": "1330 - CARRAN CURA" + }, + { + "IdCircuito": 1340, + "Circuito": "1340 - SANI CO" + }, + { + "IdCircuito": 1350, + "Circuito": "1350 - SAN IGNACIO" + }, + { + "IdCircuito": 1360, + "Circuito": "1360 - ZAINA YEGUA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c22b", + "IdSeccion": 14, + "Seccion": "HUILICHES", + "Circuitos": [ + { + "IdCircuito": 1400, + "Circuito": "1400 - JUNIN DE LOS ANDES" + }, + { + "IdCircuito": 1410, + "Circuito": "1410 - HUECHULAFQUEN" + }, + { + "IdCircuito": 1420, + "Circuito": "1420 - CHIUQUILIHUIN" + }, + { + "IdCircuito": 1430, + "Circuito": "1430 - AUCAPAN" + }, + { + "IdCircuito": 1440, + "Circuito": "1440 - ATREUCO" + }, + { + "IdCircuito": 1450, + "Circuito": "1450 - PAMPA DEL MALLEO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c22c", + "IdSeccion": 15, + "Seccion": "LÁCAR", + "Circuitos": [ + { + "IdCircuito": 1500, + "Circuito": "1500 - SAN MARTIN DE LOS ANDES" + }, + { + "IdCircuito": 1505, + "Circuito": "1505 - VEGA MAIPU SAN MARTIN DE LOS ANDES ESTE" + }, + { + "IdCircuito": 1510, + "Circuito": "1510 - LAGO LOLOG SAN MARTIN DE LOS ANDES OESTE" + }, + { + "IdCircuito": 1520, + "Circuito": "1520 - TROMPUL" + }, + { + "IdCircuito": 1530, + "Circuito": "1530 - HUA HUM" + }, + { + "IdCircuito": 1540, + "Circuito": "1540 - QUILA QUINA" + }, + { + "IdCircuito": 1550, + "Circuito": "1550 - PIL PIL" + }, + { + "IdCircuito": 1560, + "Circuito": "1560 - LAGO HERMOSO" + }, + { + "IdCircuito": 1570, + "Circuito": "1570 - LAGO MELIQUINA" + }, + { + "IdCircuito": 1580, + "Circuito": "1580 - CHAPELCO GRANDE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c22d", + "IdSeccion": 16, + "Seccion": "LOS LAGOS", + "Circuitos": [ + { + "IdCircuito": 1600, + "Circuito": "1600 - VILLA LA ANGOSTURA" + }, + { + "IdCircuito": 1610, + "Circuito": "1610 - VILLA LA ANGOSTURA FUERA DE RADIO" + }, + { + "IdCircuito": 1620, + "Circuito": "1620 - VILLA TRAFUL" + }, + { + "IdCircuito": 1640, + "Circuito": "1640 - LA LIPELA" + }, + { + "IdCircuito": 1650, + "Circuito": "1650 - PASO COIHUE" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c22e", + "IdDistrito": 16, + "Distrito": "RÍO NEGRO", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c22f", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c230", + "IdSeccion": 1, + "Seccion": "ADOLFO ALSINA", + "Circuitos": [ + { + "IdCircuito": 2, + "Circuito": "2 - SAN JAVIER" + }, + { + "IdCircuito": 3, + "Circuito": "3 - CUBANEA" + }, + { + "IdCircuito": 4, + "Circuito": "4 - GUARDIA MITRE" + }, + { + "IdCircuito": 101, + "Circuito": "101 - DON BOSCO. 14 DE MARZO. PIEDRA" + }, + { + "IdCircuito": 102, + "Circuito": "102 - BARRIO GUIDO. INALAUQUEN" + }, + { + "IdCircuito": 103, + "Circuito": "103 - LOS FRESNOS Y CURRU LEUVU" + }, + { + "IdCircuito": 104, + "Circuito": "104 - SANTA CLARA" + }, + { + "IdCircuito": 105, + "Circuito": "105 - LAVALLE" + }, + { + "IdCircuito": 106, + "Circuito": "106 - MI BANDERA" + }, + { + "IdCircuito": 107, + "Circuito": "107 - SAN MARTIN. JARDIN. BARRIO NOR" + }, + { + "IdCircuito": 108, + "Circuito": "108 - BELGRANO ESTE" + }, + { + "IdCircuito": 109, + "Circuito": "109 - AMERICA Y 20 DE JUNIO" + }, + { + "IdCircuito": 110, + "Circuito": "110 - COSTANERA Y CENTRO" + }, + { + "IdCircuito": 111, + "Circuito": "111 - CEFERINO" + }, + { + "IdCircuito": 112, + "Circuito": "112 - DON ZATTI" + }, + { + "IdCircuito": 113, + "Circuito": "113 - FATIMA" + }, + { + "IdCircuito": 114, + "Circuito": "114 - LAS FLORES.INDEPENDENCIA.GOB.C" + }, + { + "IdCircuito": 115, + "Circuito": "115 - MITRE" + }, + { + "IdCircuito": 116, + "Circuito": "116 - BELGRANO OESTE" + }, + { + "IdCircuito": 117, + "Circuito": "117 - SARGENTO CABRAL Y ALMIRANTE BR" + }, + { + "IdCircuito": 118, + "Circuito": "118 - 30 DE MARZO" + }, + { + "IdCircuito": 119, + "Circuito": "119 - ALVAREZ GUERRERO" + }, + { + "IdCircuito": 120, + "Circuito": "120 - JARDIN" + }, + { + "IdCircuito": 121, + "Circuito": "121 - EL JUNCAL" + }, + { + "IdCircuito": 122, + "Circuito": "122 - EL CONDOR" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c231", + "IdSeccion": 2, + "Seccion": "GENERAL CONESA", + "Circuitos": [ + { + "IdCircuito": 7, + "Circuito": "7 - GENERAL CONESA" + }, + { + "IdCircuito": 8, + "Circuito": "8 - GENERAL E.FRIAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c232", + "IdSeccion": 3, + "Seccion": "SAN ANTONIO OESTE", + "Circuitos": [ + { + "IdCircuito": 9, + "Circuito": "9 - SAN ANTONIO OESTE" + }, + { + "IdCircuito": 11, + "Circuito": "11 - SIERRA GRANDE" + }, + { + "IdCircuito": "0009A", + "Circuito": "9A - LAS GRUTAS" + }, + { + "IdCircuito": "0009B", + "Circuito": "9B - PTO S ANTONIO ESTE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c233", + "IdSeccion": 4, + "Seccion": "VALCHETA", + "Circuitos": [ + { + "IdCircuito": 12, + "Circuito": "12 - VALCHETA" + }, + { + "IdCircuito": 13, + "Circuito": "13 - NAHUEL NIYEU" + }, + { + "IdCircuito": 15, + "Circuito": "15 - SIERRA PAILEMAN" + }, + { + "IdCircuito": 16, + "Circuito": "16 - ARROYO LOS BERROS" + }, + { + "IdCircuito": 17, + "Circuito": "17 - CHIPAUQUIL" + }, + { + "IdCircuito": 18, + "Circuito": "18 - ARROYO VENTANA" + }, + { + "IdCircuito": "0012B", + "Circuito": "12B - AGUADA CECILIO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c234", + "IdSeccion": 5, + "Seccion": "9 DE JULIO", + "Circuitos": [ + { + "IdCircuito": 19, + "Circuito": "19 - SIERRA COLORADA" + }, + { + "IdCircuito": 20, + "Circuito": "20 - MRO RAMOS MEXIA" + }, + { + "IdCircuito": 21, + "Circuito": "21 - TRENETA" + }, + { + "IdCircuito": 22, + "Circuito": "22 - CONA NIYEU" + }, + { + "IdCircuito": "0020A", + "Circuito": "20A - MTRO R MEXIA RURAL" + }, + { + "IdCircuito": "0022A", + "Circuito": "22A - PRAGUANIYEU" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c235", + "IdSeccion": 6, + "Seccion": "25 DE MAYO", + "Circuitos": [ + { + "IdCircuito": 23, + "Circuito": "23 - LOS MENUCOS" + }, + { + "IdCircuito": 24, + "Circuito": "24 - MAQUINCHAO" + }, + { + "IdCircuito": 25, + "Circuito": "25 - EL CAIN" + }, + { + "IdCircuito": 27, + "Circuito": "27 - QUETREQUILE" + }, + { + "IdCircuito": 28, + "Circuito": "28 - INGENIERO JACOBACCI" + }, + { + "IdCircuito": 29, + "Circuito": "29 - CLEMENTE ONELLI" + }, + { + "IdCircuito": 30, + "Circuito": "30 - LAGUNA BLANCA" + }, + { + "IdCircuito": "0024A", + "Circuito": "24A - MAQUINCHAO RURAL COLAN COHUE" + }, + { + "IdCircuito": "0024B", + "Circuito": "24B - AGUADA DE GUERRA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c236", + "IdSeccion": 7, + "Seccion": "ÑORQUINCO", + "Circuitos": [ + { + "IdCircuito": 31, + "Circuito": "31 - ÑORQUINCO" + }, + { + "IdCircuito": 32, + "Circuito": "32 - LAS BAYAS" + }, + { + "IdCircuito": 33, + "Circuito": "33 - CHACAY HUARRUCA" + }, + { + "IdCircuito": 34, + "Circuito": "34 - RIO CHICO" + }, + { + "IdCircuito": 35, + "Circuito": "35 - MAMUEL CHOIQUE" + }, + { + "IdCircuito": "0031B", + "Circuito": "31B - ARROYO LAS MINAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c237", + "IdSeccion": 8, + "Seccion": "PILCANIYEU", + "Circuitos": [ + { + "IdCircuito": 36, + "Circuito": "36 - PILCANIYEU" + }, + { + "IdCircuito": 37, + "Circuito": "37 - COMALLO" + }, + { + "IdCircuito": "0036B", + "Circuito": "36B - DINA HUAPI" + }, + { + "IdCircuito": "0036C", + "Circuito": "36C - CORRALITO" + }, + { + "IdCircuito": "0038A", + "Circuito": "38A - PILQUINIYEU DEL LIMAY" + }, + { + "IdCircuito": "0040A", + "Circuito": "40A - VILLA LLANQUIN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c238", + "IdSeccion": 9, + "Seccion": "BARILOCHE", + "Circuitos": [ + { + "IdCircuito": 42, + "Circuito": "42 - EL FOYEL" + }, + { + "IdCircuito": 4101, + "Circuito": "4101 - CNIA SUIZA" + }, + { + "IdCircuito": 4102, + "Circuito": "4102 - KM 20" + }, + { + "IdCircuito": 4103, + "Circuito": "4103 - KM 10" + }, + { + "IdCircuito": 4104, + "Circuito": "4104 - CRUCE CATEDRAL" + }, + { + "IdCircuito": 4105, + "Circuito": "4105 - TELESFERICO" + }, + { + "IdCircuito": 4106, + "Circuito": "4106 - MELIPAL" + }, + { + "IdCircuito": 4107, + "Circuito": "4107 - LOS COIHUES" + }, + { + "IdCircuito": 4108, + "Circuito": "4108 - EL PILAR" + }, + { + "IdCircuito": 4109, + "Circuito": "4109 - NAHUEL HUE" + }, + { + "IdCircuito": 4110, + "Circuito": "4110 - EL FRUTILLAR" + }, + { + "IdCircuito": 4111, + "Circuito": "4111 - 2 DE ABRIL" + }, + { + "IdCircuito": 4112, + "Circuito": "4112 - QUIMEY HUE" + }, + { + "IdCircuito": 4113, + "Circuito": "4113 - ESCUELA 16" + }, + { + "IdCircuito": 4114, + "Circuito": "4114 - NACIONAL" + }, + { + "IdCircuito": 4115, + "Circuito": "4115 - FASTA" + }, + { + "IdCircuito": 4116, + "Circuito": "4116 - EL MALLIN" + }, + { + "IdCircuito": 4117, + "Circuito": "4117 - CENTRO CIVICO" + }, + { + "IdCircuito": 4118, + "Circuito": "4118 - COMERCIAL" + }, + { + "IdCircuito": 4119, + "Circuito": "4119 - LERA" + }, + { + "IdCircuito": 4120, + "Circuito": "4120 - UNIVERSIDAD DEL COMAHUE" + }, + { + "IdCircuito": 4121, + "Circuito": "4121 - DIAG GUTIERREZ" + }, + { + "IdCircuito": 4122, + "Circuito": "4122 - TIRO FEDERAL" + }, + { + "IdCircuito": 4123, + "Circuito": "4123 - LAS QUINTAS" + }, + { + "IdCircuito": 4124, + "Circuito": "4124 - FOUROUS" + }, + { + "IdCircuito": 4125, + "Circuito": "4125 - B ELFLEIN" + }, + { + "IdCircuito": 4126, + "Circuito": "4126 - B LEVALLE" + }, + { + "IdCircuito": 4127, + "Circuito": "4127 - LA LLAVE" + }, + { + "IdCircuito": 4128, + "Circuito": "4128 - VURILOCHE" + }, + { + "IdCircuito": 4129, + "Circuito": "4129 - SAN FRANCISCO" + }, + { + "IdCircuito": 4130, + "Circuito": "4130 - INDUSTRIAL" + }, + { + "IdCircuito": 4131, + "Circuito": "4131 - VILLA MASCARDI" + }, + { + "IdCircuito": 4301, + "Circuito": "4301 - VENZANO PROGRESO ABEDULES" + }, + { + "IdCircuito": 4302, + "Circuito": "4302 - V ANDEN COST SUR LAS QUINTAS NORTE" + }, + { + "IdCircuito": 4303, + "Circuito": "4303 - VILLA TURISMO ESPERANZA BUENA VISTA" + }, + { + "IdCircuito": 4304, + "Circuito": "4304 - IRIGOYEN INDUSTRIAL V NUEVO ALAMOS MUTISIAS" + }, + { + "IdCircuito": 4305, + "Circuito": "4305 - HORNOS COSTANERA N Y C TERMINAL" + }, + { + "IdCircuito": 4306, + "Circuito": "4306 - LAS CHACRAS ARRAYANES SAN JOSE OBRERO" + }, + { + "IdCircuito": 4307, + "Circuito": "4307 - LOMA DEL MEDIO USINA PRIMAVERA" + }, + { + "IdCircuito": 4308, + "Circuito": "4308 - LOS REPOLLOS C DEL TERNERO RIO NAHUELPAN" + }, + { + "IdCircuito": 4309, + "Circuito": "4309 - MALLIN AHOGADO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c239", + "IdSeccion": 10, + "Seccion": "PICHI MAHUIDA", + "Circuitos": [ + { + "IdCircuito": 44, + "Circuito": "44 - RIO COLORADO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c23a", + "IdSeccion": 11, + "Seccion": "AVELLANEDA", + "Circuitos": [ + { + "IdCircuito": 47, + "Circuito": "47 - CHOELE CHOEL" + }, + { + "IdCircuito": 48, + "Circuito": "48 - LUIS BELTRAN" + }, + { + "IdCircuito": 49, + "Circuito": "49 - LAMARQUE" + }, + { + "IdCircuito": 50, + "Circuito": "50 - POMONA" + }, + { + "IdCircuito": 52, + "Circuito": "52 - DARWIN" + }, + { + "IdCircuito": 53, + "Circuito": "53 - CORONEL BELISLE" + }, + { + "IdCircuito": 54, + "Circuito": "54 - CHIMPAY" + }, + { + "IdCircuito": 55, + "Circuito": "55 - CHELFORO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c23b", + "IdSeccion": 12, + "Seccion": "GENERAL ROCA", + "Circuitos": [ + { + "IdCircuito": 57, + "Circuito": "57 - CHICHINALES" + }, + { + "IdCircuito": 58, + "Circuito": "58 - VILLA REGINA" + }, + { + "IdCircuito": 59, + "Circuito": "59 - GRAL ENRIQUE GODOY" + }, + { + "IdCircuito": 60, + "Circuito": "60 - INGENIERO HUERGO" + }, + { + "IdCircuito": 61, + "Circuito": "61 - MAINQUE" + }, + { + "IdCircuito": 62, + "Circuito": "62 - CERVANTES" + }, + { + "IdCircuito": 64, + "Circuito": "64 - ALLEN" + }, + { + "IdCircuito": 66, + "Circuito": "66 - CINCO SALTOS" + }, + { + "IdCircuito": 67, + "Circuito": "67 - CLTE CORDERO" + }, + { + "IdCircuito": 68, + "Circuito": "68 - CAMPO GRANDE" + }, + { + "IdCircuito": 69, + "Circuito": "69 - CATRIEL" + }, + { + "IdCircuito": 70, + "Circuito": "70 - GRAL FERNANDEZ ORO" + }, + { + "IdCircuito": 6301, + "Circuito": "6301 - PASO CORDOVA" + }, + { + "IdCircuito": 6302, + "Circuito": "6302 - MOSCONI. LA RIVERA Y LA COSTA" + }, + { + "IdCircuito": 6303, + "Circuito": "6303 - STEFENELLI" + }, + { + "IdCircuito": 6304, + "Circuito": "6304 - PROGRESO Y MALVINAS" + }, + { + "IdCircuito": 6305, + "Circuito": "6305 - B SAN CAYETANO Y OTROS" + }, + { + "IdCircuito": 6306, + "Circuito": "6306 - B UNIVERSITARIO Y OTROS" + }, + { + "IdCircuito": 6307, + "Circuito": "6307 - CENTRO" + }, + { + "IdCircuito": 6308, + "Circuito": "6308 - QUINTU PANAL Y OTROS" + }, + { + "IdCircuito": 6309, + "Circuito": "6309 - VILLA OBRERA Y OTROS" + }, + { + "IdCircuito": 6310, + "Circuito": "6310 - B BAGLIANI Y OTROS" + }, + { + "IdCircuito": 6311, + "Circuito": "6311 - B LA BARDA Y OTROS" + }, + { + "IdCircuito": 6312, + "Circuito": "6312 - B NUEVO" + }, + { + "IdCircuito": 6313, + "Circuito": "6313 - BELGRANO Y OTROS" + }, + { + "IdCircuito": 6314, + "Circuito": "6314 - CHACRA MONTE Y SECCION CHACRAS" + }, + { + "IdCircuito": 6315, + "Circuito": "6315 - ROMAGNOLI Y SECCION CHACRAS" + }, + { + "IdCircuito": 6501, + "Circuito": "6501 - CIPOLLETTI" + }, + { + "IdCircuito": 6502, + "Circuito": "6502 - CIPOLLETTI" + }, + { + "IdCircuito": 6503, + "Circuito": "6503 - CIPOLLETTI" + }, + { + "IdCircuito": 6504, + "Circuito": "6504 - CIPOLLETTI" + }, + { + "IdCircuito": 6505, + "Circuito": "6505 - CIPOLLETTI" + }, + { + "IdCircuito": 6506, + "Circuito": "6506 - CIPOLLETTI" + }, + { + "IdCircuito": 6507, + "Circuito": "6507 - CIPOLLETTI" + }, + { + "IdCircuito": 6508, + "Circuito": "6508 - CIPOLLETTI" + }, + { + "IdCircuito": 6509, + "Circuito": "6509 - CIPOLLETTI" + }, + { + "IdCircuito": 6510, + "Circuito": "6510 - CIPOLLETTI" + }, + { + "IdCircuito": 6511, + "Circuito": "6511 - CIPOLLETTI" + }, + { + "IdCircuito": 6512, + "Circuito": "6512 - CIPOLLETTI" + }, + { + "IdCircuito": 6513, + "Circuito": "6513 - CIPOLLETTI" + }, + { + "IdCircuito": 6514, + "Circuito": "6514 - CIPOLLETTI" + }, + { + "IdCircuito": 6515, + "Circuito": "6515 - CIPOLLETTI" + }, + { + "IdCircuito": 6516, + "Circuito": "6516 - CIPOLLETTI" + }, + { + "IdCircuito": 6517, + "Circuito": "6517 - CIPOLLETTI" + }, + { + "IdCircuito": 6518, + "Circuito": "6518 - CIPOLLETTI" + }, + { + "IdCircuito": 6519, + "Circuito": "6519 - CIPOLLETTI" + }, + { + "IdCircuito": 6520, + "Circuito": "6520 - CIPOLLETTI" + }, + { + "IdCircuito": 6521, + "Circuito": "6521 - CIPOLLETTI" + }, + { + "IdCircuito": 6522, + "Circuito": "6522 - CIPOLLETTI" + }, + { + "IdCircuito": 6523, + "Circuito": "6523 - CIPOLLETTI" + }, + { + "IdCircuito": 6524, + "Circuito": "6524 - CIPOLLETTI" + }, + { + "IdCircuito": "0068B", + "Circuito": "68B - BARDA DEL MEDIO" + }, + { + "IdCircuito": "0069A", + "Circuito": "69A - CATRIEL RURAL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c23c", + "IdSeccion": 13, + "Seccion": "EL CUY", + "Circuitos": [ + { + "IdCircuito": 71, + "Circuito": "71 - EL CUY" + }, + { + "IdCircuito": 72, + "Circuito": "72 - CERRO POLICIA" + }, + { + "IdCircuito": 73, + "Circuito": "73 - LONCO VACA" + }, + { + "IdCircuito": 74, + "Circuito": "74 - MENCUE" + }, + { + "IdCircuito": 75, + "Circuito": "75 - BAJADA COLORADA" + }, + { + "IdCircuito": 76, + "Circuito": "76 - BALSA LAS PERLAS" + }, + { + "IdCircuito": "0071A", + "Circuito": "71A - VALLE AZUL" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c23d", + "IdDistrito": 17, + "Distrito": "SALTA", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c23e", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c23f", + "IdSeccion": 1, + "Seccion": "CAPITAL", + "Circuitos": [ + { + "IdCircuito": "0001A", + "Circuito": "1A - CAPITAL" + }, + { + "IdCircuito": "0001B", + "Circuito": "1B - CAPITAL" + }, + { + "IdCircuito": "0001C", + "Circuito": "1C - CAPITAL" + }, + { + "IdCircuito": "0001D", + "Circuito": "1D - CAPITAL" + }, + { + "IdCircuito": "0001E", + "Circuito": "1E - CAPITAL" + }, + { + "IdCircuito": "0001F", + "Circuito": "1F - CAPITAL" + }, + { + "IdCircuito": "0001G", + "Circuito": "1G - CAPITAL" + }, + { + "IdCircuito": "0002A", + "Circuito": "2A - CAPITAL" + }, + { + "IdCircuito": "0002B", + "Circuito": "2B - CAPITAL" + }, + { + "IdCircuito": "0002C", + "Circuito": "2C - CAPITAL" + }, + { + "IdCircuito": "0002D", + "Circuito": "2D - CAPITAL" + }, + { + "IdCircuito": "0002E", + "Circuito": "2E - CAPITAL" + }, + { + "IdCircuito": "0002F", + "Circuito": "2F - CAPITAL" + }, + { + "IdCircuito": "0002G", + "Circuito": "2G - CAPITAL" + }, + { + "IdCircuito": "0002H", + "Circuito": "2H - CAPITAL" + }, + { + "IdCircuito": "0002I", + "Circuito": "2I - CAPITAL" + }, + { + "IdCircuito": "0002J", + "Circuito": "2J - CAPITAL" + }, + { + "IdCircuito": "0002K", + "Circuito": "2K - CAPITAL" + }, + { + "IdCircuito": "0002L", + "Circuito": "2L - CAPITAL" + }, + { + "IdCircuito": "0002M", + "Circuito": "2M - CAPITAL" + }, + { + "IdCircuito": "0002N", + "Circuito": "2N - CAPITAL" + }, + { + "IdCircuito": "0002O", + "Circuito": "2O - CAPITAL" + }, + { + "IdCircuito": "0002P", + "Circuito": "2P - CAPITAL" + }, + { + "IdCircuito": "0002Q", + "Circuito": "2Q - CAPITAL" + }, + { + "IdCircuito": "0003A", + "Circuito": "3A - CAPITAL" + }, + { + "IdCircuito": "0003B", + "Circuito": "3B - CAPITAL" + }, + { + "IdCircuito": "0003C", + "Circuito": "3C - CAPITAL" + }, + { + "IdCircuito": "0003D", + "Circuito": "3D - CAPITAL" + }, + { + "IdCircuito": "0003E", + "Circuito": "3E - CAPITAL" + }, + { + "IdCircuito": "0003F", + "Circuito": "3F - CAPITAL" + }, + { + "IdCircuito": "0003G", + "Circuito": "3G - CAPITAL" + }, + { + "IdCircuito": "0003H", + "Circuito": "3H - CAPITAL" + }, + { + "IdCircuito": "0003I", + "Circuito": "3I - CAPITAL" + }, + { + "IdCircuito": "0003J", + "Circuito": "3J - CAPITAL" + }, + { + "IdCircuito": "0003K", + "Circuito": "3K - CAPITAL" + }, + { + "IdCircuito": "0003L", + "Circuito": "3L - CAPITAL" + }, + { + "IdCircuito": "0004A", + "Circuito": "4A - SAN LORENZO PUEBLO" + }, + { + "IdCircuito": "0004B", + "Circuito": "4B - SAN LORENZO" + }, + { + "IdCircuito": "0004C", + "Circuito": "4C - SAN LORENZO" + }, + { + "IdCircuito": "0004D", + "Circuito": "4D - SAN LORENZO" + }, + { + "IdCircuito": "0005A", + "Circuito": "5A - CAPITAL" + }, + { + "IdCircuito": "0005B", + "Circuito": "5B - CAPITAL" + }, + { + "IdCircuito": "0005C", + "Circuito": "5C - CAPITAL" + }, + { + "IdCircuito": "0005D", + "Circuito": "5D - CAPITAL" + }, + { + "IdCircuito": "0005E", + "Circuito": "5E - CAPITAL" + }, + { + "IdCircuito": "0005F", + "Circuito": "5F - CAPITAL" + }, + { + "IdCircuito": "0005G", + "Circuito": "5G - CAPITAL" + }, + { + "IdCircuito": "0005H", + "Circuito": "5H - CAPITAL" + }, + { + "IdCircuito": "0005I", + "Circuito": "5I - CAPITAL" + }, + { + "IdCircuito": "0005J", + "Circuito": "5J - CAPITAL" + }, + { + "IdCircuito": "0005K", + "Circuito": "5K - CAPITAL" + }, + { + "IdCircuito": "0005L", + "Circuito": "5L - CAPITAL" + }, + { + "IdCircuito": "0005M", + "Circuito": "5M - CAPITAL" + }, + { + "IdCircuito": "0005N", + "Circuito": "5N - CAPITAL" + }, + { + "IdCircuito": "0005O", + "Circuito": "5O - CAPITAL" + }, + { + "IdCircuito": "0006A", + "Circuito": "6A - CAPITAL" + }, + { + "IdCircuito": "0007A", + "Circuito": "7A - CAPITAL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c240", + "IdSeccion": 2, + "Seccion": "LA CALDERA", + "Circuitos": [ + { + "IdCircuito": "0008A", + "Circuito": "8A - LA CALDERA" + }, + { + "IdCircuito": "0008B", + "Circuito": "8B - LOS YACONES" + }, + { + "IdCircuito": "0008C", + "Circuito": "8C - CAMPO ALEGRE" + }, + { + "IdCircuito": "0009A", + "Circuito": "9A - VAQUEROS" + }, + { + "IdCircuito": "0009B", + "Circuito": "9B - LESSER" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c241", + "IdSeccion": 3, + "Seccion": "GENERAL GÜEMES", + "Circuitos": [ + { + "IdCircuito": "0010A", + "Circuito": "10A - EL BORDO" + }, + { + "IdCircuito": "0011A", + "Circuito": "11A - CAMPO SANTO" + }, + { + "IdCircuito": "0011B", + "Circuito": "11B - COBOS" + }, + { + "IdCircuito": "0011C", + "Circuito": "11C - BETANIA" + }, + { + "IdCircuito": "0012A", + "Circuito": "12A - GENERAL GÜEMES" + }, + { + "IdCircuito": "0012B", + "Circuito": "12B - GENERAL GÜEMES" + }, + { + "IdCircuito": "0012C", + "Circuito": "12C - GENERAL GÜEMES" + }, + { + "IdCircuito": "0012D", + "Circuito": "12D - GENERAL GÜEMES" + }, + { + "IdCircuito": "0012E", + "Circuito": "12E - GENERAL GÜEMES" + }, + { + "IdCircuito": "0014A", + "Circuito": "14A - PALOMITAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c242", + "IdSeccion": 4, + "Seccion": "METÁN", + "Circuitos": [ + { + "IdCircuito": "0015A", + "Circuito": "15A - METÁN PUEBLO" + }, + { + "IdCircuito": "0015B", + "Circuito": "15B - METÁN PUEBLO" + }, + { + "IdCircuito": "0015C", + "Circuito": "15C - METÁN PUEBLO" + }, + { + "IdCircuito": "0015D", + "Circuito": "15D - METÁN" + }, + { + "IdCircuito": "0015E", + "Circuito": "15E - METÁN VIEJO" + }, + { + "IdCircuito": "0016A", + "Circuito": "16A - RIO PIEDRAS" + }, + { + "IdCircuito": "0016B", + "Circuito": "16B - LUMBRERAS" + }, + { + "IdCircuito": "0017A", + "Circuito": "17A - EL GALPON" + }, + { + "IdCircuito": "0017B", + "Circuito": "17B - EL TUNAL" + }, + { + "IdCircuito": "0018A", + "Circuito": "18A - S. J. DE ORQUERA" + }, + { + "IdCircuito": "0018B", + "Circuito": "18B - LOS ROSALES" + }, + { + "IdCircuito": "0018C", + "Circuito": "18C - TALAMUYO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c243", + "IdSeccion": 5, + "Seccion": "ANTA", + "Circuitos": [ + { + "IdCircuito": "0020A", + "Circuito": "20A - PASO LA CRUZ" + }, + { + "IdCircuito": "0021A", + "Circuito": "21A - LAS LAJITAS" + }, + { + "IdCircuito": "0021B", + "Circuito": "21B - RIO DEL VALLE" + }, + { + "IdCircuito": "0022A", + "Circuito": "22A - AP. SARAVIA" + }, + { + "IdCircuito": "0022B", + "Circuito": "22B - LAS FLACAS" + }, + { + "IdCircuito": "0022C", + "Circuito": "22C - CNEL. MOLLINEDO" + }, + { + "IdCircuito": "0022D", + "Circuito": "22D - CNEL.LUIS BURELA" + }, + { + "IdCircuito": "0022E", + "Circuito": "22E - GRAL. PIZARRO" + }, + { + "IdCircuito": "0022F", + "Circuito": "22F - PALO A PIQUE" + }, + { + "IdCircuito": "0023A", + "Circuito": "23A - CEIBALITO" + }, + { + "IdCircuito": "0024A", + "Circuito": "24A - J.V. GONZALEZ" + }, + { + "IdCircuito": "0024B", + "Circuito": "24B - LAGUNA BLANCA" + }, + { + "IdCircuito": "0024C", + "Circuito": "24C - CNEL. OLLEROS" + }, + { + "IdCircuito": "0024D", + "Circuito": "24D - EL ALGARROBAL" + }, + { + "IdCircuito": "0024E", + "Circuito": "24E - SANTA ANA" + }, + { + "IdCircuito": "0024F", + "Circuito": "24F - PIQUETE CABADO" + }, + { + "IdCircuito": "0025A", + "Circuito": "25A - EL QUEBRACHAL" + }, + { + "IdCircuito": "0025B", + "Circuito": "25B - MACAPILLO" + }, + { + "IdCircuito": "0025C", + "Circuito": "25C - N.S.DE TALAVERA" + }, + { + "IdCircuito": "0025D", + "Circuito": "25D - GAONA" + }, + { + "IdCircuito": "0025E", + "Circuito": "25E - EL VENCIDO" + }, + { + "IdCircuito": "0025F", + "Circuito": "25F - TOLLOCHE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c244", + "IdSeccion": 6, + "Seccion": "RIVADAVIA", + "Circuitos": [ + { + "IdCircuito": "0026A", + "Circuito": "26A - ALTO VERDE" + }, + { + "IdCircuito": "0026B", + "Circuito": "26B - RIVADAVIA BANDA SUD" + }, + { + "IdCircuito": "0026C", + "Circuito": "26C - EL DESTIERRO" + }, + { + "IdCircuito": "0027A", + "Circuito": "27A - LA UNION" + }, + { + "IdCircuito": "0027B", + "Circuito": "27B - POZO VERDE" + }, + { + "IdCircuito": "0027C", + "Circuito": "27C - FCA. STA.ROSA" + }, + { + "IdCircuito": "0027D", + "Circuito": "27D - EL OCULTAR" + }, + { + "IdCircuito": "0028A", + "Circuito": "28A - RESISTENCIA" + }, + { + "IdCircuito": "0028B", + "Circuito": "28B - CNEL.JUAN SOLA BANDA NORTE" + }, + { + "IdCircuito": "0028C", + "Circuito": "28C - CAP. PAGE" + }, + { + "IdCircuito": "0028D", + "Circuito": "28D - LA ENTRADA" + }, + { + "IdCircuito": "0028E", + "Circuito": "28E - LOS BLANCOS" + }, + { + "IdCircuito": "0028F", + "Circuito": "28F - PLUMA DE PATO" + }, + { + "IdCircuito": "0028G", + "Circuito": "28G - LA PAZ" + }, + { + "IdCircuito": "0028H", + "Circuito": "28H - LA VALLE O LAVALLE" + }, + { + "IdCircuito": "0029A", + "Circuito": "29A - ALTO LA SIERRA S.V.ESTE" + }, + { + "IdCircuito": "0029B", + "Circuito": "29B - LA ESPERANZA" + }, + { + "IdCircuito": "0029C", + "Circuito": "29C - STA.VICTORIA ESTE" + }, + { + "IdCircuito": "0029D", + "Circuito": "29D - EL DESEMBOQUE" + }, + { + "IdCircuito": "0029E", + "Circuito": "29E - HITO 1" + }, + { + "IdCircuito": "0029F", + "Circuito": "29F - MS. LA PAZ" + }, + { + "IdCircuito": "0029G", + "Circuito": "29G - STA. MARIA" + }, + { + "IdCircuito": "0029H", + "Circuito": "29H - MS. LAS VERTIENTES" + }, + { + "IdCircuito": "0029I", + "Circuito": "29I - LA PUNTANA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c245", + "IdSeccion": 7, + "Seccion": "ORÁN", + "Circuitos": [ + { + "IdCircuito": "0030A", + "Circuito": "30A - ABRA GRANDE" + }, + { + "IdCircuito": "0030B", + "Circuito": "30B - AGUAS BLANCAS" + }, + { + "IdCircuito": "0031A", + "Circuito": "31A - ORÁN" + }, + { + "IdCircuito": "0031B", + "Circuito": "31B - ORÁN" + }, + { + "IdCircuito": "0031C", + "Circuito": "31C - MS. ZENTA" + }, + { + "IdCircuito": "0031D", + "Circuito": "31D - LOS NARANJOS" + }, + { + "IdCircuito": "0032A", + "Circuito": "32A - EL TABACAL" + }, + { + "IdCircuito": "0032B", + "Circuito": "32B - HIPOLITO YRIGOYEN" + }, + { + "IdCircuito": "0033A", + "Circuito": "33A - SAN ANDRES" + }, + { + "IdCircuito": "0033B", + "Circuito": "33B - STA.CRUZ" + }, + { + "IdCircuito": "0033C", + "Circuito": "33C - ANGOSTO DE PARANI" + }, + { + "IdCircuito": "0034A", + "Circuito": "34A - COL.STA.ROSA" + }, + { + "IdCircuito": "0034B", + "Circuito": "34B - SAUCELITO" + }, + { + "IdCircuito": "0035A", + "Circuito": "35A - URUNDEL" + }, + { + "IdCircuito": "0036A", + "Circuito": "36A - PICHANAL" + }, + { + "IdCircuito": "0036B", + "Circuito": "36B - PICHANAL PUEBLO Y RURAL" + }, + { + "IdCircuito": "0037A", + "Circuito": "37A - YUCHAN" + }, + { + "IdCircuito": "0038A", + "Circuito": "38A - EL CARMEN" + }, + { + "IdCircuito": "0038B", + "Circuito": "38B - POZO DE LA PIEDRA" + }, + { + "IdCircuito": "0039A", + "Circuito": "39A - LA ESTRELLA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c246", + "IdSeccion": 8, + "Seccion": "GRAL SAN MARTÍN", + "Circuitos": [ + { + "IdCircuito": "0040A", + "Circuito": "40A - EMBARCACION" + }, + { + "IdCircuito": "0040B", + "Circuito": "40B - GRAL. BALLIVIAN" + }, + { + "IdCircuito": "0040C", + "Circuito": "40C - CAMPICHUELO" + }, + { + "IdCircuito": "0041A", + "Circuito": "41A - MS. CHAQUENA" + }, + { + "IdCircuito": "0041B", + "Circuito": "41B - DRAGONES" + }, + { + "IdCircuito": "0041C", + "Circuito": "41C - HICKMANN" + }, + { + "IdCircuito": "0041D", + "Circuito": "41D - EL CORRALITO" + }, + { + "IdCircuito": "0041E", + "Circuito": "41E - PADRE LOZANO" + }, + { + "IdCircuito": "0042A", + "Circuito": "42A - CMPTO. VESPUCIO" + }, + { + "IdCircuito": "0042B", + "Circuito": "42B - CNEL. CORNEJO" + }, + { + "IdCircuito": "0042C", + "Circuito": "42C - GRAL. MOSCONI" + }, + { + "IdCircuito": "0043A", + "Circuito": "43A - TARTAGAL" + }, + { + "IdCircuito": "0043B", + "Circuito": "43B - TARTAGAL V° GUEMES" + }, + { + "IdCircuito": "0043C", + "Circuito": "43C - TARTAGAL V° SAAVEDRA" + }, + { + "IdCircuito": "0043D", + "Circuito": "43D - TONONO" + }, + { + "IdCircuito": "0043E", + "Circuito": "43E - CACIQUE CAMBAY" + }, + { + "IdCircuito": "0043F", + "Circuito": "43F - YACUY" + }, + { + "IdCircuito": "0043G", + "Circuito": "43G - MISION CHERENTA" + }, + { + "IdCircuito": "0044A", + "Circuito": "44A - AGUARAY" + }, + { + "IdCircuito": "0044B", + "Circuito": "44B - CAMPO DURAN" + }, + { + "IdCircuito": "0044C", + "Circuito": "44C - PIQUIRENDA" + }, + { + "IdCircuito": "0044D", + "Circuito": "44D - ACAMBUCO" + }, + { + "IdCircuito": "0044E", + "Circuito": "44E - TUYUNTI" + }, + { + "IdCircuito": "0044F", + "Circuito": "44F - TOBANTIRENDA" + }, + { + "IdCircuito": "0044G", + "Circuito": "44G - CAPIAZZUTTI" + }, + { + "IdCircuito": "0045A", + "Circuito": "45A - SALV. MAZZA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c247", + "IdSeccion": 9, + "Seccion": "IRUYA", + "Circuitos": [ + { + "IdCircuito": "0046A", + "Circuito": "46A - IRUYA" + }, + { + "IdCircuito": "0046B", + "Circuito": "46B - SAN ISIDRO" + }, + { + "IdCircuito": "0046C", + "Circuito": "46C - SAN JUAN" + }, + { + "IdCircuito": "0046D", + "Circuito": "46D - R. COLORADO" + }, + { + "IdCircuito": "0046E", + "Circuito": "46E - VIZCARRA" + }, + { + "IdCircuito": "0046F", + "Circuito": "46F - PIE DE LA CUESTA" + }, + { + "IdCircuito": "0046I", + "Circuito": "46I - CHIYAYOC" + }, + { + "IdCircuito": "0046J", + "Circuito": "46J - PUEBLO VIEJO" + }, + { + "IdCircuito": "0046K", + "Circuito": "46K - RODIO DEL VALLE DELGADO" + }, + { + "IdCircuito": "0047A", + "Circuito": "47A - LAS HIGUERAS" + }, + { + "IdCircuito": "0047B", + "Circuito": "47B - MESADA GRANDE" + }, + { + "IdCircuito": "0047C", + "Circuito": "47C - ALIZAR DEL PORONGAL" + }, + { + "IdCircuito": "0048A", + "Circuito": "48A - MATANCILLAS" + }, + { + "IdCircuito": "0048B", + "Circuito": "48B - VOLCAN HIGUERAS" + }, + { + "IdCircuito": "0048C", + "Circuito": "48C - ISLA DE CANAS" + }, + { + "IdCircuito": "0048D", + "Circuito": "48D - CORTADERAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c248", + "IdSeccion": 10, + "Seccion": "SANTA VICTORIA", + "Circuitos": [ + { + "IdCircuito": "0049A", + "Circuito": "49A - S. VICTORIA" + }, + { + "IdCircuito": "0049B", + "Circuito": "49B - LA SOLEDAD" + }, + { + "IdCircuito": "0049C", + "Circuito": "49C - CAMPO LA PAZ" + }, + { + "IdCircuito": "0049D", + "Circuito": "49D - VIZCACHANI" + }, + { + "IdCircuito": "0049E", + "Circuito": "49E - ACOYTE" + }, + { + "IdCircuito": "0049F", + "Circuito": "49F - LIZOITE" + }, + { + "IdCircuito": "0049G", + "Circuito": "49G - STA. CRUZ" + }, + { + "IdCircuito": "0049H", + "Circuito": "49H - ABRA STA. CRUZ" + }, + { + "IdCircuito": "0049I", + "Circuito": "49I - TRIGO HUAYCO" + }, + { + "IdCircuito": "0049J", + "Circuito": "49J - MECOYITA" + }, + { + "IdCircuito": "0049K", + "Circuito": "49K - PUCARA" + }, + { + "IdCircuito": "0050A", + "Circuito": "50A - LOS TOLDOS" + }, + { + "IdCircuito": "0050B", + "Circuito": "50B - EL CONDADO" + }, + { + "IdCircuito": "0050C", + "Circuito": "50C - LIPEO" + }, + { + "IdCircuito": "0051A", + "Circuito": "51A - NAZARENO" + }, + { + "IdCircuito": "0051B", + "Circuito": "51B - BACOYA" + }, + { + "IdCircuito": "0051C", + "Circuito": "51C - POSCAYA" + }, + { + "IdCircuito": "0051D", + "Circuito": "51D - CUESTA AZUL" + }, + { + "IdCircuito": "0051E", + "Circuito": "51E - MOLINO DE CUESTA AZUL" + }, + { + "IdCircuito": "0051F", + "Circuito": "51F - S. FCO. DE TUCTUCA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c249", + "IdSeccion": 11, + "Seccion": "CERRILLOS", + "Circuitos": [ + { + "IdCircuito": "0052A", + "Circuito": "52A - CERRILLOS 1" + }, + { + "IdCircuito": "0052B", + "Circuito": "52B - CERRILLOS 2" + }, + { + "IdCircuito": "0052C", + "Circuito": "52C - LAS BLANCAS" + }, + { + "IdCircuito": "0052D", + "Circuito": "52D - LA FALDA" + }, + { + "IdCircuito": "0053A", + "Circuito": "53A - LOS ALAMOS" + }, + { + "IdCircuito": "0053B", + "Circuito": "53B - LA ISLA" + }, + { + "IdCircuito": "0053C", + "Circuito": "53C - LOS PINARES" + }, + { + "IdCircuito": "0053D", + "Circuito": "53D - LAS PALMAS" + }, + { + "IdCircuito": "0054A", + "Circuito": "54A - LA MERCED" + }, + { + "IdCircuito": "0054B", + "Circuito": "54B - LAS PIRCAS" + }, + { + "IdCircuito": "0055A", + "Circuito": "55A - SAN AGUSTIN" + }, + { + "IdCircuito": "0055B", + "Circuito": "55B - EL HUAICO" + }, + { + "IdCircuito": "0055C", + "Circuito": "55C - SUMALAO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c24a", + "IdSeccion": 12, + "Seccion": "CHICOANA", + "Circuitos": [ + { + "IdCircuito": "0056A", + "Circuito": "56A - CHICOANA" + }, + { + "IdCircuito": "0056B", + "Circuito": "56B - PULARES" + }, + { + "IdCircuito": "0056C", + "Circuito": "56C - EL SIMBOLAR" + }, + { + "IdCircuito": "0056D", + "Circuito": "56D - LAS MORAS" + }, + { + "IdCircuito": "0056E", + "Circuito": "56E - CHIVILME" + }, + { + "IdCircuito": "0056F", + "Circuito": "56F - EL TIPAL" + }, + { + "IdCircuito": "0056G", + "Circuito": "56G - BELLA VISTA" + }, + { + "IdCircuito": "0057A", + "Circuito": "57A - ESCOIPE" + }, + { + "IdCircuito": "0057B", + "Circuito": "57B - POTRERO DE DIAZ" + }, + { + "IdCircuito": "0058A", + "Circuito": "58A - EL CARRIL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c24b", + "IdSeccion": 13, + "Seccion": "LA VIÑA", + "Circuitos": [ + { + "IdCircuito": "0059A", + "Circuito": "59A - LA VIÑA" + }, + { + "IdCircuito": "0060A", + "Circuito": "60A - TALAPAMPA" + }, + { + "IdCircuito": "0061A", + "Circuito": "61A - CNEL. MOLDES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c24c", + "IdSeccion": 14, + "Seccion": "GUACHIPAS", + "Circuitos": [ + { + "IdCircuito": "0063A", + "Circuito": "63A - GUACHIPAS" + }, + { + "IdCircuito": "0064A", + "Circuito": "64A - LA BODEGUITA" + }, + { + "IdCircuito": "0064B", + "Circuito": "64B - VAQUERIA" + }, + { + "IdCircuito": "0065A", + "Circuito": "65A - ACOSTA" + }, + { + "IdCircuito": "0065B", + "Circuito": "65B - LAS JUNTAS" + }, + { + "IdCircuito": "0066A", + "Circuito": "66A - PAMPA GRANDE" + }, + { + "IdCircuito": "0066B", + "Circuito": "66B - LOS SAUCES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c24d", + "IdSeccion": 15, + "Seccion": "ROSARIO DE LA FRONTERA", + "Circuitos": [ + { + "IdCircuito": "0067A", + "Circuito": "67A - R° FRONTERA" + }, + { + "IdCircuito": "0067B", + "Circuito": "67B - R° FRONTERA" + }, + { + "IdCircuito": "0067C", + "Circuito": "67C - HORCONES" + }, + { + "IdCircuito": "0067D", + "Circuito": "67D - EL NARANJO" + }, + { + "IdCircuito": "0067E", + "Circuito": "67E - EST. LOS BANOS" + }, + { + "IdCircuito": "0067G", + "Circuito": "67G - OJO DE AGUA" + }, + { + "IdCircuito": "0067H", + "Circuito": "67H - SAN FELIPE" + }, + { + "IdCircuito": "0068A", + "Circuito": "68A - EL ARENAL" + }, + { + "IdCircuito": "0068B", + "Circuito": "68B - OVANDO" + }, + { + "IdCircuito": "0070A", + "Circuito": "70A - STA. MARIA" + }, + { + "IdCircuito": "0070B", + "Circuito": "70B - EL BORDO" + }, + { + "IdCircuito": "0071A", + "Circuito": "71A - COPO QUILE" + }, + { + "IdCircuito": "0071B", + "Circuito": "71B - ALMTE. BROWN" + }, + { + "IdCircuito": "0072A", + "Circuito": "72A - EL POTRERO" + }, + { + "IdCircuito": "0072B", + "Circuito": "72B - CANADA DE LA JUNTA" + }, + { + "IdCircuito": "0072C", + "Circuito": "72C - ANTILLAS" + }, + { + "IdCircuito": "0072D", + "Circuito": "72D - SAN LORENZO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c24e", + "IdSeccion": 16, + "Seccion": "LA CANDELARIA", + "Circuitos": [ + { + "IdCircuito": "0073A", + "Circuito": "73A - LA CANDELARIA" + }, + { + "IdCircuito": "0073B", + "Circuito": "73B - EL CEIBAL" + }, + { + "IdCircuito": "0074A", + "Circuito": "74A - EL TALA" + }, + { + "IdCircuito": "0075A", + "Circuito": "75A - EL JARDIN" + }, + { + "IdCircuito": "0075B", + "Circuito": "75B - EL ESPINAL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c24f", + "IdSeccion": 17, + "Seccion": "CAFAYATE", + "Circuitos": [ + { + "IdCircuito": "0076A", + "Circuito": "76A - LAS CONCHAS" + }, + { + "IdCircuito": "0077A", + "Circuito": "77A - CAFAYATE" + }, + { + "IdCircuito": "0077B", + "Circuito": "77B - LA ROSA" + }, + { + "IdCircuito": "0077C", + "Circuito": "77C - LOROHUASI" + }, + { + "IdCircuito": "0077D", + "Circuito": "77D - EL DIVISADERO" + }, + { + "IdCircuito": "0077E", + "Circuito": "77E - YACOCHUYA" + }, + { + "IdCircuito": "0077F", + "Circuito": "77F - CAFAYATE" + }, + { + "IdCircuito": "0078A", + "Circuito": "78A - TOLOMBON" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c250", + "IdSeccion": 18, + "Seccion": "SAN CARLOS", + "Circuitos": [ + { + "IdCircuito": "0079A", + "Circuito": "79A - SAN CARLOS" + }, + { + "IdCircuito": "0079B", + "Circuito": "79B - ANIMANA" + }, + { + "IdCircuito": "0079C", + "Circuito": "79C - EL BARRIAL" + }, + { + "IdCircuito": "0080A", + "Circuito": "80A - PAYOGASTILLA" + }, + { + "IdCircuito": "0081A", + "Circuito": "81A - AMBLAYO" + }, + { + "IdCircuito": "0082A", + "Circuito": "82A - ANGASTACO" + }, + { + "IdCircuito": "0082B", + "Circuito": "82B - LA CABANA" + }, + { + "IdCircuito": "0083A", + "Circuito": "83A - PUCARA" + }, + { + "IdCircuito": "0083B", + "Circuito": "83B - JASIMANA" + }, + { + "IdCircuito": "0083C", + "Circuito": "83C - EL ARREMO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c251", + "IdSeccion": 19, + "Seccion": "MOLINOS", + "Circuitos": [ + { + "IdCircuito": "0084A", + "Circuito": "84A - MOLINOS" + }, + { + "IdCircuito": "0085A", + "Circuito": "85A - SECLANTAS" + }, + { + "IdCircuito": "0085B", + "Circuito": "85B - SECLANTAS ADENTRO" + }, + { + "IdCircuito": "0086A", + "Circuito": "86A - LURACATAO" + }, + { + "IdCircuito": "0087A", + "Circuito": "87A - LA PUERTA" + }, + { + "IdCircuito": "0088A", + "Circuito": "88A - TACUIL" + }, + { + "IdCircuito": "0088B", + "Circuito": "88B - HUALFIN" + }, + { + "IdCircuito": "0088C", + "Circuito": "88C - COLOME" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c252", + "IdSeccion": 20, + "Seccion": "CACHI", + "Circuitos": [ + { + "IdCircuito": "0089A", + "Circuito": "89A - SAN J. DE CACHI" + }, + { + "IdCircuito": "0089B", + "Circuito": "89B - CACHI PUEBLO" + }, + { + "IdCircuito": "0089C", + "Circuito": "89C - CACHI ADENTRO" + }, + { + "IdCircuito": "0089D", + "Circuito": "89D - LA PAYA" + }, + { + "IdCircuito": "0089E", + "Circuito": "89E - LAS TRANCAS" + }, + { + "IdCircuito": "0090A", + "Circuito": "90A - PAYOGASTA" + }, + { + "IdCircuito": "0090B", + "Circuito": "90B - PALERMO OESTE" + }, + { + "IdCircuito": "0090C", + "Circuito": "90C - LAS CORTADERAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c253", + "IdSeccion": 21, + "Seccion": "ROSARIO DE LERMA", + "Circuitos": [ + { + "IdCircuito": "0091A", + "Circuito": "91A - ROSARIO DE LERMA" + }, + { + "IdCircuito": "0091B", + "Circuito": "91B - EL PUCARA" + }, + { + "IdCircuito": "0091C", + "Circuito": "91C - EL TIMBO" + }, + { + "IdCircuito": "0091D", + "Circuito": "91D - LA MERCED DE ARRIBA" + }, + { + "IdCircuito": "0092A", + "Circuito": "92A - CARABAJAL" + }, + { + "IdCircuito": "0093A", + "Circuito": "93A - CAMPO QUIJANO" + }, + { + "IdCircuito": "0093B", + "Circuito": "93B - EL MOLLAR" + }, + { + "IdCircuito": "0094A", + "Circuito": "94A - CAMARA" + }, + { + "IdCircuito": "0095A", + "Circuito": "95A - LA SILLETA" + }, + { + "IdCircuito": "0096B", + "Circuito": "96B - POTRERO DE URIBURU" + }, + { + "IdCircuito": "0097A", + "Circuito": "97A - S. B. DE LAS ZORRAS" + }, + { + "IdCircuito": "0097B", + "Circuito": "97B - STA. ROSA DE TASTIL" + }, + { + "IdCircuito": "0097C", + "Circuito": "97C - GOB. SOLA" + }, + { + "IdCircuito": "0097D", + "Circuito": "97D - LAS CUEVAS" + }, + { + "IdCircuito": "0098A", + "Circuito": "98A - EL TORO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c254", + "IdSeccion": 22, + "Seccion": "LA POMA", + "Circuitos": [ + { + "IdCircuito": "0099A", + "Circuito": "99A - LA POMA" + }, + { + "IdCircuito": "0099B", + "Circuito": "99B - EL RODEO" + }, + { + "IdCircuito": "0099C", + "Circuito": "99C - COBRES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c255", + "IdSeccion": 23, + "Seccion": "LOS ANDES", + "Circuitos": [ + { + "IdCircuito": "0100A", + "Circuito": "100A - S. A. DE LOS COBRES" + }, + { + "IdCircuito": "0101A", + "Circuito": "101A - S. R. PASTOS GRANDES" + }, + { + "IdCircuito": "0102A", + "Circuito": "102A - OLACAPATO" + }, + { + "IdCircuito": "0103A", + "Circuito": "103A - TOLAR GRANDE" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c256", + "IdDistrito": 22, + "Distrito": "SANTIAGO DEL ESTERO", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c257", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c258", + "IdSeccion": 1, + "Seccion": "CAPITAL", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - NORTE" + }, + { + "IdCircuito": 2, + "Circuito": "2 - OESTE" + }, + { + "IdCircuito": 3, + "Circuito": "3 - TRIBUNALES" + }, + { + "IdCircuito": 4, + "Circuito": "4 - GRAL.PAZ" + }, + { + "IdCircuito": 5, + "Circuito": "5 - ESTE" + }, + { + "IdCircuito": 6, + "Circuito": "6 - SUD" + }, + { + "IdCircuito": 7, + "Circuito": "7 - BELGRANO" + }, + { + "IdCircuito": 8, + "Circuito": "8 - SAN MARTIN" + }, + { + "IdCircuito": 9, + "Circuito": "9 - LOS FLORES" + }, + { + "IdCircuito": 10, + "Circuito": "10 - EL DEAN" + }, + { + "IdCircuito": 11, + "Circuito": "11 - REMES" + }, + { + "IdCircuito": 12, + "Circuito": "12 - SOL DE MAYO" + }, + { + "IdCircuito": 13, + "Circuito": "13 - SAN BENITO" + }, + { + "IdCircuito": 14, + "Circuito": "14 - SANTA MARIA" + }, + { + "IdCircuito": 15, + "Circuito": "15 - VUELTA DE LA BARRANCA" + }, + { + "IdCircuito": 16, + "Circuito": "16 - SAN PEDRO" + }, + { + "IdCircuito": 17, + "Circuito": "17 - ZANJON" + }, + { + "IdCircuito": 18, + "Circuito": "18 - MACO" + }, + { + "IdCircuito": "0002A", + "Circuito": "2A - LIBERTAD" + }, + { + "IdCircuito": "0003A", + "Circuito": "3A - CENTENARIO" + }, + { + "IdCircuito": "0004A", + "Circuito": "4A - BORGES" + }, + { + "IdCircuito": "0004B", + "Circuito": "4B - TARAPAYA" + }, + { + "IdCircuito": "0007A", + "Circuito": "7A - INDEPENDECIA" + }, + { + "IdCircuito": "0007B", + "Circuito": "7B - CHUMILLO" + }, + { + "IdCircuito": "0007C", + "Circuito": "7C - CAMPO CONTRERAS" + }, + { + "IdCircuito": "0008A", + "Circuito": "8A - VILLA DEL CARMEN" + }, + { + "IdCircuito": "0008B", + "Circuito": "8B - VINALAR" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c259", + "IdSeccion": 2, + "Seccion": "AVELLANEDA", + "Circuitos": [ + { + "IdCircuito": 19, + "Circuito": "19 - PUNTA POZO" + }, + { + "IdCircuito": 20, + "Circuito": "20 - COLONIA DORA" + }, + { + "IdCircuito": 21, + "Circuito": "21 - HERRERA" + }, + { + "IdCircuito": 22, + "Circuito": "22 - COPO" + }, + { + "IdCircuito": 23, + "Circuito": "23 - ICANO" + }, + { + "IdCircuito": 24, + "Circuito": "24 - LUGONES" + }, + { + "IdCircuito": 25, + "Circuito": "25 - PERCAS" + }, + { + "IdCircuito": 26, + "Circuito": "26 - MAILIN" + }, + { + "IdCircuito": 27, + "Circuito": "27 - REAL SAYANA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c25a", + "IdSeccion": 3, + "Seccion": "AGUIRRE", + "Circuitos": [ + { + "IdCircuito": 28, + "Circuito": "28 - CASARES" + }, + { + "IdCircuito": 29, + "Circuito": "29 - MALBRAN" + }, + { + "IdCircuito": 30, + "Circuito": "30 - ARGENTINA" + }, + { + "IdCircuito": 31, + "Circuito": "31 - PINTO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c25b", + "IdSeccion": 4, + "Seccion": "ALBERDI", + "Circuitos": [ + { + "IdCircuito": 32, + "Circuito": "32 - HUACHANA" + }, + { + "IdCircuito": 33, + "Circuito": "33 - ESTEROS" + }, + { + "IdCircuito": 34, + "Circuito": "34 - CAMPO GALLO" + }, + { + "IdCircuito": 35, + "Circuito": "35 - DONADEU" + }, + { + "IdCircuito": 36, + "Circuito": "36 - SACHAYOJ" + }, + { + "IdCircuito": "0033A", + "Circuito": "33A - POZO LIMPIO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c25c", + "IdSeccion": 5, + "Seccion": "ATAMISQUI", + "Circuitos": [ + { + "IdCircuito": 37, + "Circuito": "37 - ATAMISQUI" + }, + { + "IdCircuito": 38, + "Circuito": "38 - ESTACION ATAMISQUI" + }, + { + "IdCircuito": 39, + "Circuito": "39 - JUANILLO" + }, + { + "IdCircuito": 40, + "Circuito": "40 - HOYON" + }, + { + "IdCircuito": 41, + "Circuito": "41 - CHILCAS" + }, + { + "IdCircuito": 42, + "Circuito": "42 - MEDELLIN" + }, + { + "IdCircuito": "0040A", + "Circuito": "40A - GUANACO SOMBREANA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c25d", + "IdSeccion": 6, + "Seccion": "BANDA", + "Circuitos": [ + { + "IdCircuito": 43, + "Circuito": "43 - OESTE" + }, + { + "IdCircuito": 44, + "Circuito": "44 - ESTE" + }, + { + "IdCircuito": 45, + "Circuito": "45 - EL POLEAR" + }, + { + "IdCircuito": 46, + "Circuito": "46 - EL ALAMBRADO" + }, + { + "IdCircuito": 47, + "Circuito": "47 - LA DARSENA" + }, + { + "IdCircuito": 48, + "Circuito": "48 - LA ISLA" + }, + { + "IdCircuito": 49, + "Circuito": "49 - LA AURORA" + }, + { + "IdCircuito": 50, + "Circuito": "50 - ANTAJE" + }, + { + "IdCircuito": 51, + "Circuito": "51 - EL AIBE" + }, + { + "IdCircuito": 52, + "Circuito": "52 - CLODOMIRA" + }, + { + "IdCircuito": 53, + "Circuito": "53 - BAJO GRANDE" + }, + { + "IdCircuito": 54, + "Circuito": "54 - NEGRA MUERTA" + }, + { + "IdCircuito": 55, + "Circuito": "55 - CHAUPI POZO" + }, + { + "IdCircuito": 56, + "Circuito": "56 - ARDILES" + }, + { + "IdCircuito": 57, + "Circuito": "57 - ABRA GRANDE" + }, + { + "IdCircuito": 58, + "Circuito": "58 - SIMBOLAR" + }, + { + "IdCircuito": 59, + "Circuito": "59 - NUEVO LIBANO" + }, + { + "IdCircuito": 60, + "Circuito": "60 - CUYOJ" + }, + { + "IdCircuito": 61, + "Circuito": "61 - TRAMO 26" + }, + { + "IdCircuito": 62, + "Circuito": "62 - SURI POZO" + }, + { + "IdCircuito": 63, + "Circuito": "63 - TRAMO 20" + }, + { + "IdCircuito": 64, + "Circuito": "64 - CANADA ESCOBAR" + }, + { + "IdCircuito": 65, + "Circuito": "65 - ACOSTA" + }, + { + "IdCircuito": 66, + "Circuito": "66 - LOS QUIROGA" + }, + { + "IdCircuito": "0049A", + "Circuito": "49A - AHI VEREMOS" + }, + { + "IdCircuito": "0053A", + "Circuito": "53A - EL FAVORITO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c25e", + "IdSeccion": 7, + "Seccion": "BELGRANO", + "Circuitos": [ + { + "IdCircuito": 67, + "Circuito": "67 - BANDERA" + }, + { + "IdCircuito": 68, + "Circuito": "68 - FORTIN INCA" + }, + { + "IdCircuito": 69, + "Circuito": "69 - GUARDIA ESCOLTA" + }, + { + "IdCircuito": "0067A", + "Circuito": "67A - CUATRO BOCAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c25f", + "IdSeccion": 8, + "Seccion": "COPO", + "Circuitos": [ + { + "IdCircuito": 70, + "Circuito": "70 - VILLA MATOQUE" + }, + { + "IdCircuito": 71, + "Circuito": "71 - MONTE QUEMADO" + }, + { + "IdCircuito": 72, + "Circuito": "72 - PAMPA DE LOS GUANACOS" + }, + { + "IdCircuito": 73, + "Circuito": "73 - SAN JOSE DEL BOQUERON" + }, + { + "IdCircuito": "0070A", + "Circuito": "70A - AHI VEREMOS" + }, + { + "IdCircuito": "0072A", + "Circuito": "72A - LOS PIRPINTOS" + }, + { + "IdCircuito": "0072B", + "Circuito": "72B - EL CABURE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c260", + "IdSeccion": 9, + "Seccion": "CHOYA", + "Circuitos": [ + { + "IdCircuito": 74, + "Circuito": "74 - VILLA LA PUNTA" + }, + { + "IdCircuito": 75, + "Circuito": "75 - SINCHI CANA" + }, + { + "IdCircuito": 76, + "Circuito": "76 - SOL DE MAYO" + }, + { + "IdCircuito": 77, + "Circuito": "77 - FRIAS" + }, + { + "IdCircuito": 78, + "Circuito": "78 - LAPRIDA" + }, + { + "IdCircuito": 79, + "Circuito": "79 - SHISHI POZO" + }, + { + "IdCircuito": 80, + "Circuito": "80 - EL 55" + }, + { + "IdCircuito": 81, + "Circuito": "81 - VILLA RIVADAVIA" + }, + { + "IdCircuito": 82, + "Circuito": "82 - LAS PENAS" + }, + { + "IdCircuito": 83, + "Circuito": "83 - ANCAJAN" + }, + { + "IdCircuito": 84, + "Circuito": "84 - CERRO RICO" + }, + { + "IdCircuito": 85, + "Circuito": "85 - EL MOJONCITO" + }, + { + "IdCircuito": 86, + "Circuito": "86 - TAPSO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c261", + "IdSeccion": 10, + "Seccion": "FIGUEROA", + "Circuitos": [ + { + "IdCircuito": 87, + "Circuito": "87 - LA CANADA" + }, + { + "IdCircuito": 88, + "Circuito": "88 - LA BREA" + }, + { + "IdCircuito": 89, + "Circuito": "89 - VILLA FIGUEROA" + }, + { + "IdCircuito": 90, + "Circuito": "90 - LA GUARDIA" + }, + { + "IdCircuito": 91, + "Circuito": "91 - MONTE REDONDO" + }, + { + "IdCircuito": 92, + "Circuito": "92 - BANDERA BAJADA" + }, + { + "IdCircuito": 93, + "Circuito": "93 - SAN ANTONIO" + }, + { + "IdCircuito": 94, + "Circuito": "94 - LA INVERNADA" + }, + { + "IdCircuito": 95, + "Circuito": "95 - VACA HUANUNA" + }, + { + "IdCircuito": "0089A", + "Circuito": "89A - COLONIA SAN JUAN" + }, + { + "IdCircuito": "0094A", + "Circuito": "94A - LA INVERNADA NORTE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c262", + "IdSeccion": 11, + "Seccion": "GUASAYÁN", + "Circuitos": [ + { + "IdCircuito": 96, + "Circuito": "96 - VILLA GUASAYÁN" + }, + { + "IdCircuito": 97, + "Circuito": "97 - DONA LUISA" + }, + { + "IdCircuito": 98, + "Circuito": "98 - LAVALLE" + }, + { + "IdCircuito": 99, + "Circuito": "99 - EL VIZCACHERAL" + }, + { + "IdCircuito": 100, + "Circuito": "100 - SAN PEDRO" + }, + { + "IdCircuito": 101, + "Circuito": "101 - GUAMPACHA" + }, + { + "IdCircuito": 102, + "Circuito": "102 - SANTA CATALINA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c263", + "IdSeccion": 12, + "Seccion": "JIMÉNEZ", + "Circuitos": [ + { + "IdCircuito": 103, + "Circuito": "103 - GRAMILLA" + }, + { + "IdCircuito": 104, + "Circuito": "104 - TRES CRUCES" + }, + { + "IdCircuito": 105, + "Circuito": "105 - ELCHARCO" + }, + { + "IdCircuito": 106, + "Circuito": "106 - POZO HONDO" + }, + { + "IdCircuito": 107, + "Circuito": "107 - EL BOBADAL" + }, + { + "IdCircuito": 108, + "Circuito": "108 - EL ARENAL" + }, + { + "IdCircuito": 109, + "Circuito": "109 - CHILE" + }, + { + "IdCircuito": "0105A", + "Circuito": "105A - EL BAGUAL" + }, + { + "IdCircuito": "0107A", + "Circuito": "107A - LA COSTOSA" + }, + { + "IdCircuito": "0107B", + "Circuito": "107B - SAN FELIX" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c264", + "IdSeccion": 13, + "Seccion": "LORETO", + "Circuitos": [ + { + "IdCircuito": 110, + "Circuito": "110 - VILLA SAN MARTIN" + }, + { + "IdCircuito": 111, + "Circuito": "111 - VILLA NUEVA" + }, + { + "IdCircuito": 112, + "Circuito": "112 - VILLA VIEJA" + }, + { + "IdCircuito": 113, + "Circuito": "113 - SAN VICENTE" + }, + { + "IdCircuito": 114, + "Circuito": "114 - PUESTO DE JUANES" + }, + { + "IdCircuito": 115, + "Circuito": "115 - SAN GREGORIO" + }, + { + "IdCircuito": 116, + "Circuito": "116 - LA NORIA" + }, + { + "IdCircuito": 117, + "Circuito": "117 - CANADA RICA" + }, + { + "IdCircuito": 118, + "Circuito": "118 - BELTRAN" + }, + { + "IdCircuito": 119, + "Circuito": "119 - JUMI POZO" + }, + { + "IdCircuito": 120, + "Circuito": "120 - TIO POZO" + }, + { + "IdCircuito": "0110A", + "Circuito": "110A - KM 88" + }, + { + "IdCircuito": "0117A", + "Circuito": "117A - SAUCE SOLO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c265", + "IdSeccion": 14, + "Seccion": "JUAN FELIPE IBARRA", + "Circuitos": [ + { + "IdCircuito": 121, + "Circuito": "121 - SUNCHO CORRAL" + }, + { + "IdCircuito": 122, + "Circuito": "122 - SAN ANTONIO" + }, + { + "IdCircuito": 123, + "Circuito": "123 - MATARA" + }, + { + "IdCircuito": 124, + "Circuito": "124 - VILELAS" + }, + { + "IdCircuito": 125, + "Circuito": "125 - MELERO" + }, + { + "IdCircuito": 126, + "Circuito": "126 - POZO DEL TOBA" + }, + { + "IdCircuito": "0125A", + "Circuito": "125A - LLAJTA MAUCA" + }, + { + "IdCircuito": "0126A", + "Circuito": "126A - EL CUADRADO" + }, + { + "IdCircuito": "0126B", + "Circuito": "126B - EL COLORADO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c266", + "IdSeccion": 15, + "Seccion": "MITRE", + "Circuitos": [ + { + "IdCircuito": 127, + "Circuito": "127 - VILLA UNION" + }, + { + "IdCircuito": 128, + "Circuito": "128 - ABRAS" + }, + { + "IdCircuito": 129, + "Circuito": "129 - LIMACHE" + }, + { + "IdCircuito": 130, + "Circuito": "130 - ALBARDON" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c267", + "IdSeccion": 16, + "Seccion": "MORENO", + "Circuitos": [ + { + "IdCircuito": 131, + "Circuito": "131 - ROVERSI" + }, + { + "IdCircuito": 132, + "Circuito": "132 - GIRARDET" + }, + { + "IdCircuito": 133, + "Circuito": "133 - CAMPO DEL CIELO" + }, + { + "IdCircuito": 134, + "Circuito": "134 - STAYLE" + }, + { + "IdCircuito": 135, + "Circuito": "135 - YUCHAN" + }, + { + "IdCircuito": 136, + "Circuito": "136 - WEISBURD" + }, + { + "IdCircuito": 137, + "Circuito": "137 - AEROLITO" + }, + { + "IdCircuito": 138, + "Circuito": "138 - ALHUAMPA" + }, + { + "IdCircuito": 139, + "Circuito": "139 - TINTINA" + }, + { + "IdCircuito": 140, + "Circuito": "140 - QUIMILI" + }, + { + "IdCircuito": 141, + "Circuito": "141 - VILLA BRANA" + }, + { + "IdCircuito": 142, + "Circuito": "142 - LAS TINAJAS" + }, + { + "IdCircuito": 143, + "Circuito": "143 - OTUMPA" + }, + { + "IdCircuito": 144, + "Circuito": "144 - AMAMA" + }, + { + "IdCircuito": "0139A", + "Circuito": "139A - LILO VIEJO" + }, + { + "IdCircuito": "0139B", + "Circuito": "139B - GRANADERO GATICA" + }, + { + "IdCircuito": "0144A", + "Circuito": "144A - LIBERTAD" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c268", + "IdSeccion": 17, + "Seccion": "OJO DE AGUA", + "Circuitos": [ + { + "IdCircuito": 145, + "Circuito": "145 - OJO DE AGUA" + }, + { + "IdCircuito": 146, + "Circuito": "146 - SANTO DOMINGO" + }, + { + "IdCircuito": 147, + "Circuito": "147 - LA ISLA" + }, + { + "IdCircuito": 148, + "Circuito": "148 - CACHI" + }, + { + "IdCircuito": 149, + "Circuito": "149 - BAEZ" + }, + { + "IdCircuito": 150, + "Circuito": "150 - SOL DE JULIO" + }, + { + "IdCircuito": "0145A", + "Circuito": "145A - LAS CHACRAS" + }, + { + "IdCircuito": "0147A", + "Circuito": "147A - EL 49" + }, + { + "IdCircuito": "0148A", + "Circuito": "148A - AMIMAN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c269", + "IdSeccion": 18, + "Seccion": "PELLEGRINI", + "Circuitos": [ + { + "IdCircuito": 151, + "Circuito": "151 - VILLA MERCEDES" + }, + { + "IdCircuito": 152, + "Circuito": "152 - CAMPO GRANDE" + }, + { + "IdCircuito": 153, + "Circuito": "153 - LAS DELICIAS" + }, + { + "IdCircuito": 154, + "Circuito": "154 - NUEVA ESPERANZA" + }, + { + "IdCircuito": 155, + "Circuito": "155 - EL BALDE" + }, + { + "IdCircuito": 156, + "Circuito": "156 - QUEBRACHO COTO" + }, + { + "IdCircuito": 157, + "Circuito": "157 - EL MOJON" + }, + { + "IdCircuito": 158, + "Circuito": "158 - RAPELLI" + }, + { + "IdCircuito": 159, + "Circuito": "159 - AHI VEREMOS" + }, + { + "IdCircuito": 160, + "Circuito": "160 - SANTO DOMINGO" + }, + { + "IdCircuito": "0154A", + "Circuito": "154A - PUESTO NUEVO" + }, + { + "IdCircuito": "0158A", + "Circuito": "158A - POZO BETBEDER" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c26a", + "IdSeccion": 19, + "Seccion": "QUEBRACHOS", + "Circuitos": [ + { + "IdCircuito": 161, + "Circuito": "161 - VILLA QUEBRACHOS" + }, + { + "IdCircuito": 162, + "Circuito": "162 - SALINAS" + }, + { + "IdCircuito": 163, + "Circuito": "163 - SANTA ANA" + }, + { + "IdCircuito": 164, + "Circuito": "164 - CUCHI CORRAL" + }, + { + "IdCircuito": 165, + "Circuito": "165 - TACO POZO" + }, + { + "IdCircuito": 166, + "Circuito": "166 - SAN FRANCISCO" + }, + { + "IdCircuito": 167, + "Circuito": "167 - SUMAMPA" + }, + { + "IdCircuito": 168, + "Circuito": "168 - RAMA PASO" + }, + { + "IdCircuito": 169, + "Circuito": "169 - RAMIREZ DE VELAZCO" + }, + { + "IdCircuito": "0168A", + "Circuito": "168A - RIO VIEJO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c26b", + "IdSeccion": 20, + "Seccion": "RIVADAVIA", + "Circuitos": [ + { + "IdCircuito": 170, + "Circuito": "170 - SELVA" + }, + { + "IdCircuito": 171, + "Circuito": "171 - COLONIA ALPINA" + }, + { + "IdCircuito": 172, + "Circuito": "172 - PALO NEGRO" + }, + { + "IdCircuito": 173, + "Circuito": "173 - LOS PORONGOS" + }, + { + "IdCircuito": "0171A", + "Circuito": "171A - NUEVA CERES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c26c", + "IdSeccion": 21, + "Seccion": "ROBLES", + "Circuitos": [ + { + "IdCircuito": 174, + "Circuito": "174 - LA FLORIDA" + }, + { + "IdCircuito": 175, + "Circuito": "175 - ROMANOS" + }, + { + "IdCircuito": 176, + "Circuito": "176 - VILMER" + }, + { + "IdCircuito": 177, + "Circuito": "177 - BELTRAN" + }, + { + "IdCircuito": 178, + "Circuito": "178 - FORRES" + }, + { + "IdCircuito": 179, + "Circuito": "179 - VILLA HIPOLITA" + }, + { + "IdCircuito": 180, + "Circuito": "180 - FERNANDEZ" + }, + { + "IdCircuito": 181, + "Circuito": "181 - COLONIA EL SIMBOLAR" + }, + { + "IdCircuito": 182, + "Circuito": "182 - VILLA ROBLES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c26d", + "IdSeccion": 22, + "Seccion": "RÍO HONDO", + "Circuitos": [ + { + "IdCircuito": 183, + "Circuito": "183 - V°RÍO HONDO" + }, + { + "IdCircuito": 184, + "Circuito": "184 - LESCANO" + }, + { + "IdCircuito": 185, + "Circuito": "185 - AMICHA" + }, + { + "IdCircuito": 186, + "Circuito": "186 - EL SAUZAL" + }, + { + "IdCircuito": 187, + "Circuito": "187 - OVEJEROS" + }, + { + "IdCircuito": 188, + "Circuito": "188 - VILLA JIMENEZ" + }, + { + "IdCircuito": 189, + "Circuito": "189 - LOS NUNEZ" + }, + { + "IdCircuito": 190, + "Circuito": "190 - VINARA" + }, + { + "IdCircuito": 191, + "Circuito": "191 - POZUELOS" + }, + { + "IdCircuito": 192, + "Circuito": "192 - SOTELOS" + }, + { + "IdCircuito": 193, + "Circuito": "193 - LAS TERMAS" + }, + { + "IdCircuito": "0183A", + "Circuito": "183A - POZO DEL ARBOLITO" + }, + { + "IdCircuito": "0187A", + "Circuito": "187A - CHANAR POZO DE ABAJO" + }, + { + "IdCircuito": "0190A", + "Circuito": "190A - LAS CEJAS" + }, + { + "IdCircuito": "0193A", + "Circuito": "193A - COLONIA TINCO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c26e", + "IdSeccion": 23, + "Seccion": "SILÍPICA", + "Circuitos": [ + { + "IdCircuito": 194, + "Circuito": "194 - VILLA SILÍPICA" + }, + { + "IdCircuito": 195, + "Circuito": "195 - ARRAGA" + }, + { + "IdCircuito": 196, + "Circuito": "196 - NUEVA FRANCIA" + }, + { + "IdCircuito": 197, + "Circuito": "197 - SUMAMAO" + }, + { + "IdCircuito": "0195A", + "Circuito": "195A - MANOGASTA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c26f", + "IdSeccion": 24, + "Seccion": "SAN MARTÍN", + "Circuitos": [ + { + "IdCircuito": 198, + "Circuito": "198 - TABOADA" + }, + { + "IdCircuito": 199, + "Circuito": "199 - PERCHIL BAJO" + }, + { + "IdCircuito": 200, + "Circuito": "200 - ATOJ POZO" + }, + { + "IdCircuito": 201, + "Circuito": "201 - R. DE ESCALADA" + }, + { + "IdCircuito": 202, + "Circuito": "202 - DIASPA" + }, + { + "IdCircuito": 203, + "Circuito": "203 - SAN JOSE" + }, + { + "IdCircuito": 204, + "Circuito": "204 - PUESTITO" + }, + { + "IdCircuito": 205, + "Circuito": "205 - ESTACION ROBLES" + }, + { + "IdCircuito": 206, + "Circuito": "206 - HIGUERA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c270", + "IdSeccion": 25, + "Seccion": "SALAVINA", + "Circuitos": [ + { + "IdCircuito": 207, + "Circuito": "207 - VILLA SALAVINA" + }, + { + "IdCircuito": 208, + "Circuito": "208 - VACA HUMAN" + }, + { + "IdCircuito": 209, + "Circuito": "209 - LA PALIZA" + }, + { + "IdCircuito": 210, + "Circuito": "210 - NAVARRO" + }, + { + "IdCircuito": 211, + "Circuito": "211 - LOMA BLANCA" + }, + { + "IdCircuito": 212, + "Circuito": "212 - MALOTA" + }, + { + "IdCircuito": 213, + "Circuito": "213 - LOS TELARES" + }, + { + "IdCircuito": 214, + "Circuito": "214 - SABAGASTA" + }, + { + "IdCircuito": 215, + "Circuito": "215 - CHILCA JULIANA" + }, + { + "IdCircuito": "0215A", + "Circuito": "215A - BARRANCA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c271", + "IdSeccion": 26, + "Seccion": "SARMIENTO", + "Circuitos": [ + { + "IdCircuito": 216, + "Circuito": "216 - GUAYPE" + }, + { + "IdCircuito": 217, + "Circuito": "217 - VILLA MATARA" + }, + { + "IdCircuito": 218, + "Circuito": "218 - COLONIA SIEJEL" + }, + { + "IdCircuito": 219, + "Circuito": "219 - GARZA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c272", + "IdSeccion": 27, + "Seccion": "GENERAL TABOADA", + "Circuitos": [ + { + "IdCircuito": 221, + "Circuito": "221 - LOS JURIES" + }, + { + "IdCircuito": 222, + "Circuito": "222 - TOMAS YOUNG" + }, + { + "IdCircuito": 223, + "Circuito": "223 - LA SIMONA" + }, + { + "IdCircuito": 224, + "Circuito": "224 - ANATUYA" + }, + { + "IdCircuito": 225, + "Circuito": "225 - AVERIAS" + }, + { + "IdCircuito": 226, + "Circuito": "226 - TACANITAS" + }, + { + "IdCircuito": "0224A", + "Circuito": "224A - LOS LINARES" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c273", + "IdDistrito": 24, + "Distrito": "TIERRA DEL FUEGO AeIAS", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c274", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c275", + "IdSeccion": 1, + "Seccion": "USHUAIA", + "Circuitos": [ + { + "IdCircuito": 101, + "Circuito": 101 + }, + { + "IdCircuito": 102, + "Circuito": 102 + }, + { + "IdCircuito": 103, + "Circuito": 103 + }, + { + "IdCircuito": 104, + "Circuito": 104 + }, + { + "IdCircuito": 105, + "Circuito": 105 + }, + { + "IdCircuito": 106, + "Circuito": 106 + }, + { + "IdCircuito": 107, + "Circuito": 107 + }, + { + "IdCircuito": 108, + "Circuito": 108 + }, + { + "IdCircuito": 109, + "Circuito": 109 + }, + { + "IdCircuito": 110, + "Circuito": 110 + }, + { + "IdCircuito": 111, + "Circuito": 111 + }, + { + "IdCircuito": 112, + "Circuito": 112 + }, + { + "IdCircuito": 113, + "Circuito": 113 + }, + { + "IdCircuito": 114, + "Circuito": 114 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c276", + "IdSeccion": 2, + "Seccion": "RÍO GRANDE", + "Circuitos": [ + { + "IdCircuito": 201, + "Circuito": 201 + }, + { + "IdCircuito": 203, + "Circuito": 203 + }, + { + "IdCircuito": 204, + "Circuito": 204 + }, + { + "IdCircuito": 205, + "Circuito": 205 + }, + { + "IdCircuito": 206, + "Circuito": 206 + }, + { + "IdCircuito": 207, + "Circuito": 207 + }, + { + "IdCircuito": 208, + "Circuito": 208 + }, + { + "IdCircuito": 209, + "Circuito": 209 + }, + { + "IdCircuito": 210, + "Circuito": 210 + }, + { + "IdCircuito": 211, + "Circuito": 211 + }, + { + "IdCircuito": 212, + "Circuito": 212 + }, + { + "IdCircuito": 214, + "Circuito": 214 + }, + { + "IdCircuito": 215, + "Circuito": 215 + }, + { + "IdCircuito": 216, + "Circuito": 216 + }, + { + "IdCircuito": 217, + "Circuito": 217 + }, + { + "IdCircuito": 218, + "Circuito": 218 + }, + { + "IdCircuito": 219, + "Circuito": 219 + }, + { + "IdCircuito": 220, + "Circuito": 220 + }, + { + "IdCircuito": 227, + "Circuito": 227 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c277", + "IdSeccion": 3, + "Seccion": "ANTÁRTIDA ARGENTINA", + "Circuitos": [ + { + "IdCircuito": 303, + "Circuito": "303 - 24" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c278", + "IdSeccion": 5, + "Seccion": "TOLHUIN", + "Circuitos": [ + { + "IdCircuito": 501, + "Circuito": 501 + } + ] + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c279", + "IdCargo": "3", + "Cargo": "DIPUTADO NACIONAL", + "Distritos": [ + { + "_id": "6a0f9ebbc9a4639a07c8c27a", + "IdDistrito": 1, + "Distrito": "CIUDAD AUTÓNOMA DE BUENOS AIRES", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c27b", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c27c", + "IdSeccion": 1, + "Seccion": "COMUNA 1", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": 1 + }, + { + "IdCircuito": 2, + "Circuito": 2 + }, + { + "IdCircuito": 3, + "Circuito": 3 + }, + { + "IdCircuito": 4, + "Circuito": 4 + }, + { + "IdCircuito": 5, + "Circuito": 5 + }, + { + "IdCircuito": 6, + "Circuito": 6 + }, + { + "IdCircuito": 7, + "Circuito": 7 + }, + { + "IdCircuito": 8, + "Circuito": 8 + }, + { + "IdCircuito": 9, + "Circuito": 9 + }, + { + "IdCircuito": 10, + "Circuito": 10 + }, + { + "IdCircuito": 11, + "Circuito": 11 + }, + { + "IdCircuito": 12, + "Circuito": 12 + }, + { + "IdCircuito": 13, + "Circuito": 13 + }, + { + "IdCircuito": 14, + "Circuito": 14 + }, + { + "IdCircuito": 15, + "Circuito": 15 + }, + { + "IdCircuito": 16, + "Circuito": 16 + }, + { + "IdCircuito": 17, + "Circuito": 17 + }, + { + "IdCircuito": 18, + "Circuito": 18 + }, + { + "IdCircuito": 19, + "Circuito": 19 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c27d", + "IdSeccion": 2, + "Seccion": "COMUNA 2", + "Circuitos": [ + { + "IdCircuito": 20, + "Circuito": 20 + }, + { + "IdCircuito": 21, + "Circuito": 21 + }, + { + "IdCircuito": 22, + "Circuito": 22 + }, + { + "IdCircuito": 23, + "Circuito": 23 + }, + { + "IdCircuito": 24, + "Circuito": 24 + }, + { + "IdCircuito": 25, + "Circuito": 25 + }, + { + "IdCircuito": 26, + "Circuito": 26 + }, + { + "IdCircuito": 27, + "Circuito": 27 + }, + { + "IdCircuito": 28, + "Circuito": 28 + }, + { + "IdCircuito": 29, + "Circuito": 29 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c27e", + "IdSeccion": 3, + "Seccion": "COMUNA 3", + "Circuitos": [ + { + "IdCircuito": 30, + "Circuito": 30 + }, + { + "IdCircuito": 31, + "Circuito": 31 + }, + { + "IdCircuito": 32, + "Circuito": 32 + }, + { + "IdCircuito": 33, + "Circuito": 33 + }, + { + "IdCircuito": 34, + "Circuito": 34 + }, + { + "IdCircuito": 35, + "Circuito": 35 + }, + { + "IdCircuito": 36, + "Circuito": 36 + }, + { + "IdCircuito": 37, + "Circuito": 37 + }, + { + "IdCircuito": 38, + "Circuito": 38 + }, + { + "IdCircuito": 39, + "Circuito": 39 + }, + { + "IdCircuito": 40, + "Circuito": 40 + }, + { + "IdCircuito": 41, + "Circuito": 41 + }, + { + "IdCircuito": 42, + "Circuito": 42 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c27f", + "IdSeccion": 4, + "Seccion": "COMUNA 4", + "Circuitos": [ + { + "IdCircuito": 43, + "Circuito": 43 + }, + { + "IdCircuito": 44, + "Circuito": 44 + }, + { + "IdCircuito": 45, + "Circuito": 45 + }, + { + "IdCircuito": 46, + "Circuito": 46 + }, + { + "IdCircuito": 47, + "Circuito": 47 + }, + { + "IdCircuito": 48, + "Circuito": 48 + }, + { + "IdCircuito": 49, + "Circuito": 49 + }, + { + "IdCircuito": 50, + "Circuito": 50 + }, + { + "IdCircuito": 51, + "Circuito": 51 + }, + { + "IdCircuito": 52, + "Circuito": 52 + }, + { + "IdCircuito": 53, + "Circuito": 53 + }, + { + "IdCircuito": 54, + "Circuito": 54 + }, + { + "IdCircuito": 55, + "Circuito": 55 + }, + { + "IdCircuito": 56, + "Circuito": 56 + }, + { + "IdCircuito": 57, + "Circuito": 57 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c280", + "IdSeccion": 5, + "Seccion": "COMUNA 5", + "Circuitos": [ + { + "IdCircuito": 58, + "Circuito": 58 + }, + { + "IdCircuito": 59, + "Circuito": 59 + }, + { + "IdCircuito": 60, + "Circuito": 60 + }, + { + "IdCircuito": 61, + "Circuito": 61 + }, + { + "IdCircuito": 62, + "Circuito": 62 + }, + { + "IdCircuito": 63, + "Circuito": 63 + }, + { + "IdCircuito": 64, + "Circuito": 64 + }, + { + "IdCircuito": 65, + "Circuito": 65 + }, + { + "IdCircuito": 66, + "Circuito": 66 + }, + { + "IdCircuito": 67, + "Circuito": 67 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c281", + "IdSeccion": 6, + "Seccion": "COMUNA 6", + "Circuitos": [ + { + "IdCircuito": 68, + "Circuito": 68 + }, + { + "IdCircuito": 69, + "Circuito": 69 + }, + { + "IdCircuito": 70, + "Circuito": 70 + }, + { + "IdCircuito": 71, + "Circuito": 71 + }, + { + "IdCircuito": 72, + "Circuito": 72 + }, + { + "IdCircuito": 73, + "Circuito": 73 + }, + { + "IdCircuito": 74, + "Circuito": 74 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c282", + "IdSeccion": 7, + "Seccion": "COMUNA 7", + "Circuitos": [ + { + "IdCircuito": 75, + "Circuito": 75 + }, + { + "IdCircuito": 76, + "Circuito": 76 + }, + { + "IdCircuito": 77, + "Circuito": 77 + }, + { + "IdCircuito": 78, + "Circuito": 78 + }, + { + "IdCircuito": 79, + "Circuito": 79 + }, + { + "IdCircuito": 80, + "Circuito": 80 + }, + { + "IdCircuito": 81, + "Circuito": 81 + }, + { + "IdCircuito": 82, + "Circuito": 82 + }, + { + "IdCircuito": 83, + "Circuito": 83 + }, + { + "IdCircuito": 84, + "Circuito": 84 + }, + { + "IdCircuito": 85, + "Circuito": 85 + }, + { + "IdCircuito": 86, + "Circuito": 86 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c283", + "IdSeccion": 8, + "Seccion": "COMUNA 8", + "Circuitos": [ + { + "IdCircuito": 87, + "Circuito": 87 + }, + { + "IdCircuito": 88, + "Circuito": 88 + }, + { + "IdCircuito": 89, + "Circuito": 89 + }, + { + "IdCircuito": 90, + "Circuito": 90 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c284", + "IdSeccion": 9, + "Seccion": "COMUNA 9", + "Circuitos": [ + { + "IdCircuito": 91, + "Circuito": 91 + }, + { + "IdCircuito": 92, + "Circuito": 92 + }, + { + "IdCircuito": 93, + "Circuito": 93 + }, + { + "IdCircuito": 94, + "Circuito": 94 + }, + { + "IdCircuito": 95, + "Circuito": 95 + }, + { + "IdCircuito": 96, + "Circuito": 96 + }, + { + "IdCircuito": 97, + "Circuito": 97 + }, + { + "IdCircuito": 98, + "Circuito": 98 + }, + { + "IdCircuito": 99, + "Circuito": 99 + }, + { + "IdCircuito": 100, + "Circuito": 100 + }, + { + "IdCircuito": 101, + "Circuito": 101 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c285", + "IdSeccion": 10, + "Seccion": "COMUNA 10", + "Circuitos": [ + { + "IdCircuito": 102, + "Circuito": 102 + }, + { + "IdCircuito": 103, + "Circuito": 103 + }, + { + "IdCircuito": 104, + "Circuito": 104 + }, + { + "IdCircuito": 105, + "Circuito": 105 + }, + { + "IdCircuito": 106, + "Circuito": 106 + }, + { + "IdCircuito": 107, + "Circuito": 107 + }, + { + "IdCircuito": 108, + "Circuito": 108 + }, + { + "IdCircuito": 109, + "Circuito": 109 + }, + { + "IdCircuito": 110, + "Circuito": 110 + }, + { + "IdCircuito": 111, + "Circuito": 111 + }, + { + "IdCircuito": 112, + "Circuito": 112 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c286", + "IdSeccion": 11, + "Seccion": "COMUNA 11", + "Circuitos": [ + { + "IdCircuito": 113, + "Circuito": 113 + }, + { + "IdCircuito": 114, + "Circuito": 114 + }, + { + "IdCircuito": 115, + "Circuito": 115 + }, + { + "IdCircuito": 116, + "Circuito": 116 + }, + { + "IdCircuito": 117, + "Circuito": 117 + }, + { + "IdCircuito": 118, + "Circuito": 118 + }, + { + "IdCircuito": 119, + "Circuito": 119 + }, + { + "IdCircuito": 120, + "Circuito": 120 + }, + { + "IdCircuito": 121, + "Circuito": 121 + }, + { + "IdCircuito": 122, + "Circuito": 122 + }, + { + "IdCircuito": 123, + "Circuito": 123 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c287", + "IdSeccion": 12, + "Seccion": "COMUNA 12", + "Circuitos": [ + { + "IdCircuito": 124, + "Circuito": 124 + }, + { + "IdCircuito": 125, + "Circuito": 125 + }, + { + "IdCircuito": 126, + "Circuito": 126 + }, + { + "IdCircuito": 127, + "Circuito": 127 + }, + { + "IdCircuito": 128, + "Circuito": 128 + }, + { + "IdCircuito": 129, + "Circuito": 129 + }, + { + "IdCircuito": 130, + "Circuito": 130 + }, + { + "IdCircuito": 131, + "Circuito": 131 + }, + { + "IdCircuito": 132, + "Circuito": 132 + }, + { + "IdCircuito": 133, + "Circuito": 133 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c288", + "IdSeccion": 13, + "Seccion": "COMUNA 13", + "Circuitos": [ + { + "IdCircuito": 134, + "Circuito": 134 + }, + { + "IdCircuito": 135, + "Circuito": 135 + }, + { + "IdCircuito": 136, + "Circuito": 136 + }, + { + "IdCircuito": 137, + "Circuito": 137 + }, + { + "IdCircuito": 138, + "Circuito": 138 + }, + { + "IdCircuito": 139, + "Circuito": 139 + }, + { + "IdCircuito": 140, + "Circuito": 140 + }, + { + "IdCircuito": 141, + "Circuito": 141 + }, + { + "IdCircuito": 142, + "Circuito": 142 + }, + { + "IdCircuito": 143, + "Circuito": 143 + }, + { + "IdCircuito": 144, + "Circuito": 144 + }, + { + "IdCircuito": 145, + "Circuito": 145 + }, + { + "IdCircuito": 146, + "Circuito": 146 + }, + { + "IdCircuito": 147, + "Circuito": 147 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c289", + "IdSeccion": 14, + "Seccion": "COMUNA 14", + "Circuitos": [ + { + "IdCircuito": 148, + "Circuito": 148 + }, + { + "IdCircuito": 149, + "Circuito": 149 + }, + { + "IdCircuito": 150, + "Circuito": 150 + }, + { + "IdCircuito": 151, + "Circuito": 151 + }, + { + "IdCircuito": 152, + "Circuito": 152 + }, + { + "IdCircuito": 153, + "Circuito": 153 + }, + { + "IdCircuito": 154, + "Circuito": 154 + }, + { + "IdCircuito": 155, + "Circuito": 155 + }, + { + "IdCircuito": 156, + "Circuito": 156 + }, + { + "IdCircuito": 157, + "Circuito": 157 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c28a", + "IdSeccion": 15, + "Seccion": "COMUNA 15", + "Circuitos": [ + { + "IdCircuito": 158, + "Circuito": 158 + }, + { + "IdCircuito": 159, + "Circuito": 159 + }, + { + "IdCircuito": 160, + "Circuito": 160 + }, + { + "IdCircuito": 161, + "Circuito": 161 + }, + { + "IdCircuito": 162, + "Circuito": 162 + }, + { + "IdCircuito": 163, + "Circuito": 163 + }, + { + "IdCircuito": 164, + "Circuito": 164 + }, + { + "IdCircuito": 165, + "Circuito": 165 + }, + { + "IdCircuito": 166, + "Circuito": 166 + }, + { + "IdCircuito": 167, + "Circuito": 167 + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c28b", + "IdDistrito": 2, + "Distrito": "BUENOS AIRES", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c28c", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c28d", + "IdSeccion": 16, + "Seccion": "CAMPANA", + "Circuitos": [ + { + "IdCircuito": 155, + "Circuito": 155 + }, + { + "IdCircuito": 156, + "Circuito": 156 + }, + { + "IdCircuito": "0155A", + "Circuito": "155A" + }, + { + "IdCircuito": "0156A", + "Circuito": "156A" + }, + { + "IdCircuito": "0156B", + "Circuito": "156B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c28e", + "IdSeccion": 35, + "Seccion": "ESCOBAR", + "Circuitos": [ + { + "IdCircuito": 773, + "Circuito": 773 + }, + { + "IdCircuito": 774, + "Circuito": 774 + }, + { + "IdCircuito": 775, + "Circuito": 775 + }, + { + "IdCircuito": "0773A", + "Circuito": "773A" + }, + { + "IdCircuito": "0773B", + "Circuito": "773B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c28f", + "IdSeccion": 45, + "Seccion": "GENERAL LAS HERAS", + "Circuitos": [ + { + "IdCircuito": 547, + "Circuito": 547 + }, + { + "IdCircuito": 548, + "Circuito": 548 + }, + { + "IdCircuito": "0548A", + "Circuito": "548A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c290", + "IdSeccion": 51, + "Seccion": "GENERAL RODRÍGUEZ", + "Circuitos": [ + { + "IdCircuito": 374, + "Circuito": 374 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c291", + "IdSeccion": 52, + "Seccion": "GENERAL SAN MARTÍN", + "Circuitos": [ + { + "IdCircuito": 376, + "Circuito": 376 + }, + { + "IdCircuito": 377, + "Circuito": 377 + }, + { + "IdCircuito": 378, + "Circuito": 378 + }, + { + "IdCircuito": 379, + "Circuito": 379 + }, + { + "IdCircuito": 380, + "Circuito": 380 + }, + { + "IdCircuito": 381, + "Circuito": 381 + }, + { + "IdCircuito": 382, + "Circuito": 382 + }, + { + "IdCircuito": 384, + "Circuito": 384 + }, + { + "IdCircuito": "0377A", + "Circuito": "377A" + }, + { + "IdCircuito": "0388A", + "Circuito": "388A" + }, + { + "IdCircuito": "0388B", + "Circuito": "388B" + }, + { + "IdCircuito": "0388C", + "Circuito": "388C" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c292", + "IdSeccion": 53, + "Seccion": "SAN MIGUEL", + "Circuitos": [ + { + "IdCircuito": 397, + "Circuito": 397 + }, + { + "IdCircuito": 400, + "Circuito": 400 + }, + { + "IdCircuito": 401, + "Circuito": 401 + }, + { + "IdCircuito": 402, + "Circuito": 402 + }, + { + "IdCircuito": "0397A", + "Circuito": "397A" + }, + { + "IdCircuito": "0397B", + "Circuito": "397B" + }, + { + "IdCircuito": "0397C", + "Circuito": "397C" + }, + { + "IdCircuito": "0401A", + "Circuito": "401A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c293", + "IdSeccion": 71, + "Seccion": "LUJÁN", + "Circuitos": [ + { + "IdCircuito": 596, + "Circuito": 596 + }, + { + "IdCircuito": 597, + "Circuito": 597 + }, + { + "IdCircuito": 598, + "Circuito": 598 + }, + { + "IdCircuito": 599, + "Circuito": 599 + }, + { + "IdCircuito": 600, + "Circuito": 600 + }, + { + "IdCircuito": 601, + "Circuito": 601 + }, + { + "IdCircuito": 602, + "Circuito": 602 + }, + { + "IdCircuito": 603, + "Circuito": 603 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c294", + "IdSeccion": 75, + "Seccion": "MARCOS PAZ", + "Circuitos": [ + { + "IdCircuito": 624, + "Circuito": 624 + }, + { + "IdCircuito": "0624A", + "Circuito": "624A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c295", + "IdSeccion": 76, + "Seccion": "MERCEDES", + "Circuitos": [ + { + "IdCircuito": 638, + "Circuito": 638 + }, + { + "IdCircuito": 639, + "Circuito": 639 + }, + { + "IdCircuito": 640, + "Circuito": 640 + }, + { + "IdCircuito": 641, + "Circuito": 641 + }, + { + "IdCircuito": 642, + "Circuito": 642 + }, + { + "IdCircuito": 643, + "Circuito": 643 + }, + { + "IdCircuito": 644, + "Circuito": 644 + }, + { + "IdCircuito": 645, + "Circuito": 645 + }, + { + "IdCircuito": 646, + "Circuito": 646 + }, + { + "IdCircuito": 647, + "Circuito": 647 + }, + { + "IdCircuito": 648, + "Circuito": 648 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c296", + "IdSeccion": 77, + "Seccion": "MERLO", + "Circuitos": [ + { + "IdCircuito": 652, + "Circuito": 652 + }, + { + "IdCircuito": 653, + "Circuito": 653 + }, + { + "IdCircuito": 654, + "Circuito": 654 + }, + { + "IdCircuito": 655, + "Circuito": 655 + }, + { + "IdCircuito": "0652A", + "Circuito": "652A" + }, + { + "IdCircuito": "0655A", + "Circuito": "655A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c297", + "IdSeccion": 79, + "Seccion": "MORENO", + "Circuitos": [ + { + "IdCircuito": 663, + "Circuito": 663 + }, + { + "IdCircuito": 664, + "Circuito": 664 + }, + { + "IdCircuito": "0663A", + "Circuito": "663A" + }, + { + "IdCircuito": "0663B", + "Circuito": "663B" + }, + { + "IdCircuito": "0663C", + "Circuito": "663C" + }, + { + "IdCircuito": "0663D", + "Circuito": "663D" + }, + { + "IdCircuito": "0664A", + "Circuito": "664A" + }, + { + "IdCircuito": "0664B", + "Circuito": "664B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c298", + "IdSeccion": 80, + "Seccion": "MORÓN", + "Circuitos": [ + { + "IdCircuito": 665, + "Circuito": 665 + }, + { + "IdCircuito": 669, + "Circuito": 669 + }, + { + "IdCircuito": 670, + "Circuito": 670 + }, + { + "IdCircuito": 671, + "Circuito": 671 + }, + { + "IdCircuito": 672, + "Circuito": 672 + }, + { + "IdCircuito": 673, + "Circuito": 673 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c299", + "IdSeccion": 81, + "Seccion": "NAVARRO", + "Circuitos": [ + { + "IdCircuito": 675, + "Circuito": 675 + }, + { + "IdCircuito": 676, + "Circuito": 676 + }, + { + "IdCircuito": 677, + "Circuito": 677 + }, + { + "IdCircuito": 678, + "Circuito": 678 + }, + { + "IdCircuito": 679, + "Circuito": 679 + }, + { + "IdCircuito": 680, + "Circuito": 680 + }, + { + "IdCircuito": 681, + "Circuito": 681 + }, + { + "IdCircuito": 682, + "Circuito": 682 + }, + { + "IdCircuito": 683, + "Circuito": 683 + }, + { + "IdCircuito": "0681A", + "Circuito": "681A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c29a", + "IdSeccion": 89, + "Seccion": "PILAR", + "Circuitos": [ + { + "IdCircuito": 768, + "Circuito": 768 + }, + { + "IdCircuito": 769, + "Circuito": 769 + }, + { + "IdCircuito": 770, + "Circuito": 770 + }, + { + "IdCircuito": 771, + "Circuito": 771 + }, + { + "IdCircuito": 772, + "Circuito": 772 + }, + { + "IdCircuito": "0768A", + "Circuito": "768A" + }, + { + "IdCircuito": "0768B", + "Circuito": "768B" + }, + { + "IdCircuito": "0768C", + "Circuito": "768C" + }, + { + "IdCircuito": "0769A", + "Circuito": "769A" + }, + { + "IdCircuito": "0770A", + "Circuito": "770A" + }, + { + "IdCircuito": "0770B", + "Circuito": "770B" + }, + { + "IdCircuito": "0770C", + "Circuito": "770C" + }, + { + "IdCircuito": "0770D", + "Circuito": "770D" + }, + { + "IdCircuito": "0770E", + "Circuito": "770E" + }, + { + "IdCircuito": "0770F", + "Circuito": "770F" + }, + { + "IdCircuito": "0771A", + "Circuito": "771A" + }, + { + "IdCircuito": "0771B", + "Circuito": "771B" + }, + { + "IdCircuito": "0771C", + "Circuito": "771C" + }, + { + "IdCircuito": "0771D", + "Circuito": "771D" + }, + { + "IdCircuito": "0772A", + "Circuito": "772A" + }, + { + "IdCircuito": "0772B", + "Circuito": "772B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c29b", + "IdSeccion": 105, + "Seccion": "SAN FERNANDO", + "Circuitos": [ + { + "IdCircuito": 872, + "Circuito": 872 + }, + { + "IdCircuito": 873, + "Circuito": 873 + }, + { + "IdCircuito": 874, + "Circuito": 874 + }, + { + "IdCircuito": 875, + "Circuito": 875 + }, + { + "IdCircuito": 876, + "Circuito": 876 + }, + { + "IdCircuito": 877, + "Circuito": 877 + }, + { + "IdCircuito": 878, + "Circuito": 878 + }, + { + "IdCircuito": 879, + "Circuito": 879 + }, + { + "IdCircuito": 880, + "Circuito": 880 + }, + { + "IdCircuito": 882, + "Circuito": 882 + }, + { + "IdCircuito": "0878A", + "Circuito": "878A" + }, + { + "IdCircuito": "0879A", + "Circuito": "879A" + }, + { + "IdCircuito": "0880A", + "Circuito": "880A" + }, + { + "IdCircuito": "0880B", + "Circuito": "880B" + }, + { + "IdCircuito": "0882A", + "Circuito": "882A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c29c", + "IdSeccion": 106, + "Seccion": "SAN ISIDRO", + "Circuitos": [ + { + "IdCircuito": 887, + "Circuito": 887 + }, + { + "IdCircuito": 888, + "Circuito": 888 + }, + { + "IdCircuito": 889, + "Circuito": 889 + }, + { + "IdCircuito": 890, + "Circuito": 890 + }, + { + "IdCircuito": 891, + "Circuito": 891 + }, + { + "IdCircuito": 892, + "Circuito": 892 + }, + { + "IdCircuito": 893, + "Circuito": 893 + }, + { + "IdCircuito": 894, + "Circuito": 894 + }, + { + "IdCircuito": 895, + "Circuito": 895 + }, + { + "IdCircuito": "0892A", + "Circuito": "892A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c29d", + "IdSeccion": 110, + "Seccion": "SUIPACHA", + "Circuitos": [ + { + "IdCircuito": 929, + "Circuito": 929 + }, + { + "IdCircuito": 930, + "Circuito": 930 + }, + { + "IdCircuito": 931, + "Circuito": 931 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c29e", + "IdSeccion": 113, + "Seccion": "TIGRE", + "Circuitos": [ + { + "IdCircuito": 530, + "Circuito": 530 + }, + { + "IdCircuito": 533, + "Circuito": 533 + }, + { + "IdCircuito": 534, + "Circuito": 534 + }, + { + "IdCircuito": 535, + "Circuito": 535 + }, + { + "IdCircuito": 536, + "Circuito": 536 + }, + { + "IdCircuito": "0534A", + "Circuito": "534A" + }, + { + "IdCircuito": "0535A", + "Circuito": "535A" + }, + { + "IdCircuito": "0536A", + "Circuito": "536A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c29f", + "IdSeccion": 118, + "Seccion": "TRES DE FEBRERO", + "Circuitos": [ + { + "IdCircuito": 389, + "Circuito": 389 + }, + { + "IdCircuito": 390, + "Circuito": 390 + }, + { + "IdCircuito": 391, + "Circuito": 391 + }, + { + "IdCircuito": 392, + "Circuito": 392 + }, + { + "IdCircuito": 393, + "Circuito": 393 + }, + { + "IdCircuito": 394, + "Circuito": 394 + }, + { + "IdCircuito": 395, + "Circuito": 395 + }, + { + "IdCircuito": "0394A", + "Circuito": "394A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2a0", + "IdSeccion": 122, + "Seccion": "VICENTE LÓPEZ", + "Circuitos": [ + { + "IdCircuito": 993, + "Circuito": 993 + }, + { + "IdCircuito": 994, + "Circuito": 994 + }, + { + "IdCircuito": 995, + "Circuito": 995 + }, + { + "IdCircuito": 996, + "Circuito": 996 + }, + { + "IdCircuito": 997, + "Circuito": 997 + }, + { + "IdCircuito": 998, + "Circuito": 998 + }, + { + "IdCircuito": 999, + "Circuito": 999 + }, + { + "IdCircuito": 1000, + "Circuito": 1000 + }, + { + "IdCircuito": 1001, + "Circuito": 1001 + }, + { + "IdCircuito": "0993A", + "Circuito": "993A" + }, + { + "IdCircuito": "1000A", + "Circuito": "1000A" + }, + { + "IdCircuito": "1001A", + "Circuito": "1001A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2a1", + "IdSeccion": 129, + "Seccion": "JOSÉ C. PAZ", + "Circuitos": [ + { + "IdCircuito": 398, + "Circuito": 398 + }, + { + "IdCircuito": "0398A", + "Circuito": "398A" + }, + { + "IdCircuito": "0398B", + "Circuito": "398B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2a2", + "IdSeccion": 130, + "Seccion": "MALVINAS ARGENTINAS", + "Circuitos": [ + { + "IdCircuito": 399, + "Circuito": 399 + }, + { + "IdCircuito": "0399A", + "Circuito": "399A" + }, + { + "IdCircuito": "0399B", + "Circuito": "399B" + }, + { + "IdCircuito": "0399C", + "Circuito": "399C" + }, + { + "IdCircuito": "0399D", + "Circuito": "399D" + }, + { + "IdCircuito": "0399E", + "Circuito": "399E" + }, + { + "IdCircuito": "0399F", + "Circuito": "399F" + }, + { + "IdCircuito": "0399G", + "Circuito": "399G" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2a3", + "IdSeccion": 133, + "Seccion": "ITUZAINGÓ", + "Circuitos": [ + { + "IdCircuito": 666, + "Circuito": 666 + }, + { + "IdCircuito": 667, + "Circuito": 667 + }, + { + "IdCircuito": "0666A", + "Circuito": "666A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2a4", + "IdSeccion": 134, + "Seccion": "HURLINGHAM", + "Circuitos": [ + { + "IdCircuito": 668, + "Circuito": 668 + }, + { + "IdCircuito": "0668A", + "Circuito": "668A" + }, + { + "IdCircuito": "0668B", + "Circuito": "668B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2a5", + "IdSeccion": 9, + "Seccion": "BARADERO", + "Circuitos": [ + { + "IdCircuito": 105, + "Circuito": 105 + }, + { + "IdCircuito": 106, + "Circuito": 106 + }, + { + "IdCircuito": 107, + "Circuito": 107 + }, + { + "IdCircuito": 110, + "Circuito": 110 + }, + { + "IdCircuito": 111, + "Circuito": 111 + }, + { + "IdCircuito": 113, + "Circuito": 113 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2a6", + "IdSeccion": 10, + "Seccion": "ARRECIFES", + "Circuitos": [ + { + "IdCircuito": 117, + "Circuito": 117 + }, + { + "IdCircuito": 118, + "Circuito": 118 + }, + { + "IdCircuito": 120, + "Circuito": 120 + }, + { + "IdCircuito": "0117A", + "Circuito": "117A" + }, + { + "IdCircuito": "0117B", + "Circuito": "117B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2a7", + "IdSeccion": 18, + "Seccion": "CAPITÁN SARMIENTO", + "Circuitos": [ + { + "IdCircuito": 121, + "Circuito": 121 + }, + { + "IdCircuito": 122, + "Circuito": 122 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2a8", + "IdSeccion": 21, + "Seccion": "CARMEN DE ARECO", + "Circuitos": [ + { + "IdCircuito": 175, + "Circuito": 175 + }, + { + "IdCircuito": 176, + "Circuito": 176 + }, + { + "IdCircuito": 177, + "Circuito": 177 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2a9", + "IdSeccion": 24, + "Seccion": "COLÓN", + "Circuitos": [ + { + "IdCircuito": 230, + "Circuito": 230 + }, + { + "IdCircuito": 231, + "Circuito": 231 + }, + { + "IdCircuito": "0230A", + "Circuito": "230A" + }, + { + "IdCircuito": "0231A", + "Circuito": "231A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2aa", + "IdSeccion": 37, + "Seccion": "EXALTACIÓN DE LA CRUZ", + "Circuitos": [ + { + "IdCircuito": 292, + "Circuito": 292 + }, + { + "IdCircuito": 293, + "Circuito": 293 + }, + { + "IdCircuito": 294, + "Circuito": 294 + }, + { + "IdCircuito": 295, + "Circuito": 295 + }, + { + "IdCircuito": 297, + "Circuito": 297 + }, + { + "IdCircuito": 298, + "Circuito": 298 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2ab", + "IdSeccion": 87, + "Seccion": "PERGAMINO", + "Circuitos": [ + { + "IdCircuito": 747, + "Circuito": 747 + }, + { + "IdCircuito": 748, + "Circuito": 748 + }, + { + "IdCircuito": 749, + "Circuito": 749 + }, + { + "IdCircuito": 750, + "Circuito": 750 + }, + { + "IdCircuito": 751, + "Circuito": 751 + }, + { + "IdCircuito": 752, + "Circuito": 752 + }, + { + "IdCircuito": 753, + "Circuito": 753 + }, + { + "IdCircuito": 754, + "Circuito": 754 + }, + { + "IdCircuito": 755, + "Circuito": 755 + }, + { + "IdCircuito": 756, + "Circuito": 756 + }, + { + "IdCircuito": 757, + "Circuito": 757 + }, + { + "IdCircuito": 758, + "Circuito": 758 + }, + { + "IdCircuito": 759, + "Circuito": 759 + }, + { + "IdCircuito": "0747A", + "Circuito": "747A" + }, + { + "IdCircuito": "0748A", + "Circuito": "748A" + }, + { + "IdCircuito": "0748B", + "Circuito": "748B" + }, + { + "IdCircuito": "0748C", + "Circuito": "748C" + }, + { + "IdCircuito": "0748D", + "Circuito": "748D" + }, + { + "IdCircuito": "0748E", + "Circuito": "748E" + }, + { + "IdCircuito": "0754A", + "Circuito": "754A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2ac", + "IdSeccion": 93, + "Seccion": "RAMALLO", + "Circuitos": [ + { + "IdCircuito": 797, + "Circuito": 797 + }, + { + "IdCircuito": 798, + "Circuito": 798 + }, + { + "IdCircuito": 800, + "Circuito": 800 + }, + { + "IdCircuito": 801, + "Circuito": 801 + }, + { + "IdCircuito": 803, + "Circuito": 803 + }, + { + "IdCircuito": 804, + "Circuito": 804 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2ad", + "IdSeccion": 96, + "Seccion": "ROJAS", + "Circuitos": [ + { + "IdCircuito": 823, + "Circuito": 823 + }, + { + "IdCircuito": 824, + "Circuito": 824 + }, + { + "IdCircuito": 825, + "Circuito": 825 + }, + { + "IdCircuito": 826, + "Circuito": 826 + }, + { + "IdCircuito": 827, + "Circuito": 827 + }, + { + "IdCircuito": 828, + "Circuito": 828 + }, + { + "IdCircuito": 829, + "Circuito": 829 + }, + { + "IdCircuito": 830, + "Circuito": 830 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2ae", + "IdSeccion": 101, + "Seccion": "SALTO", + "Circuitos": [ + { + "IdCircuito": 854, + "Circuito": 854 + }, + { + "IdCircuito": 855, + "Circuito": 855 + }, + { + "IdCircuito": 856, + "Circuito": 856 + }, + { + "IdCircuito": 857, + "Circuito": 857 + }, + { + "IdCircuito": 858, + "Circuito": 858 + }, + { + "IdCircuito": "0855A", + "Circuito": "855A" + }, + { + "IdCircuito": "0857A", + "Circuito": "857A" + }, + { + "IdCircuito": "0857B", + "Circuito": "857B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2af", + "IdSeccion": 102, + "Seccion": "SAN ANDRÉS DE GILES", + "Circuitos": [ + { + "IdCircuito": 860, + "Circuito": 860 + }, + { + "IdCircuito": 861, + "Circuito": 861 + }, + { + "IdCircuito": 863, + "Circuito": 863 + }, + { + "IdCircuito": 864, + "Circuito": 864 + }, + { + "IdCircuito": "0862A", + "Circuito": "862A" + }, + { + "IdCircuito": "0863A", + "Circuito": "863A" + }, + { + "IdCircuito": "0864A", + "Circuito": "864A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2b0", + "IdSeccion": 103, + "Seccion": "SAN ANTONIO DE ARECO", + "Circuitos": [ + { + "IdCircuito": 866, + "Circuito": 866 + }, + { + "IdCircuito": 867, + "Circuito": 867 + }, + { + "IdCircuito": 869, + "Circuito": 869 + }, + { + "IdCircuito": 870, + "Circuito": 870 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2b1", + "IdSeccion": 107, + "Seccion": "SAN NICOLÁS", + "Circuitos": [ + { + "IdCircuito": 901, + "Circuito": 901 + }, + { + "IdCircuito": 902, + "Circuito": 902 + }, + { + "IdCircuito": 903, + "Circuito": 903 + }, + { + "IdCircuito": 904, + "Circuito": 904 + }, + { + "IdCircuito": 905, + "Circuito": 905 + }, + { + "IdCircuito": 906, + "Circuito": 906 + }, + { + "IdCircuito": 907, + "Circuito": 907 + }, + { + "IdCircuito": 908, + "Circuito": 908 + }, + { + "IdCircuito": 909, + "Circuito": 909 + }, + { + "IdCircuito": 910, + "Circuito": 910 + }, + { + "IdCircuito": 911, + "Circuito": 911 + }, + { + "IdCircuito": "0901A", + "Circuito": "901A" + }, + { + "IdCircuito": "0901B", + "Circuito": "901B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2b2", + "IdSeccion": 108, + "Seccion": "SAN PEDRO", + "Circuitos": [ + { + "IdCircuito": 913, + "Circuito": 913 + }, + { + "IdCircuito": 914, + "Circuito": 914 + }, + { + "IdCircuito": 915, + "Circuito": 915 + }, + { + "IdCircuito": 917, + "Circuito": 917 + }, + { + "IdCircuito": 918, + "Circuito": 918 + }, + { + "IdCircuito": 919, + "Circuito": 919 + }, + { + "IdCircuito": 920, + "Circuito": 920 + }, + { + "IdCircuito": 922, + "Circuito": 922 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2b3", + "IdSeccion": 125, + "Seccion": "ZÁRATE", + "Circuitos": [ + { + "IdCircuito": 1013, + "Circuito": 1013 + }, + { + "IdCircuito": 1014, + "Circuito": 1014 + }, + { + "IdCircuito": 1015, + "Circuito": 1015 + }, + { + "IdCircuito": 1016, + "Circuito": 1016 + }, + { + "IdCircuito": 1017, + "Circuito": 1017 + }, + { + "IdCircuito": 1018, + "Circuito": 1018 + }, + { + "IdCircuito": 1019, + "Circuito": 1019 + }, + { + "IdCircuito": 1020, + "Circuito": 1020 + }, + { + "IdCircuito": 1021, + "Circuito": 1021 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2b4", + "IdSeccion": 3, + "Seccion": "ALMIRANTE BROWN", + "Circuitos": [ + { + "IdCircuito": 17, + "Circuito": 17 + }, + { + "IdCircuito": 18, + "Circuito": 18 + }, + { + "IdCircuito": 19, + "Circuito": 19 + }, + { + "IdCircuito": 20, + "Circuito": 20 + }, + { + "IdCircuito": 21, + "Circuito": 21 + }, + { + "IdCircuito": 22, + "Circuito": 22 + }, + { + "IdCircuito": "0018A", + "Circuito": "18A" + }, + { + "IdCircuito": "0020A", + "Circuito": "20A" + }, + { + "IdCircuito": "0021A", + "Circuito": "21A" + }, + { + "IdCircuito": "0022A", + "Circuito": "22A" + }, + { + "IdCircuito": "0022B", + "Circuito": "22B" + }, + { + "IdCircuito": "0022C", + "Circuito": "22C" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2b5", + "IdSeccion": 4, + "Seccion": "AVELLANEDA", + "Circuitos": [ + { + "IdCircuito": 23, + "Circuito": 23 + }, + { + "IdCircuito": 24, + "Circuito": 24 + }, + { + "IdCircuito": 25, + "Circuito": 25 + }, + { + "IdCircuito": 26, + "Circuito": 26 + }, + { + "IdCircuito": 27, + "Circuito": 27 + }, + { + "IdCircuito": 30, + "Circuito": 30 + }, + { + "IdCircuito": 31, + "Circuito": 31 + }, + { + "IdCircuito": 32, + "Circuito": 32 + }, + { + "IdCircuito": 33, + "Circuito": 33 + }, + { + "IdCircuito": 34, + "Circuito": 34 + }, + { + "IdCircuito": 37, + "Circuito": 37 + }, + { + "IdCircuito": 38, + "Circuito": 38 + }, + { + "IdCircuito": 39, + "Circuito": 39 + }, + { + "IdCircuito": 40, + "Circuito": 40 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2b6", + "IdSeccion": 11, + "Seccion": "BERAZATEGUI", + "Circuitos": [ + { + "IdCircuito": 789, + "Circuito": 789 + }, + { + "IdCircuito": 790, + "Circuito": 790 + }, + { + "IdCircuito": 792, + "Circuito": 792 + }, + { + "IdCircuito": "0789A", + "Circuito": "789A" + }, + { + "IdCircuito": "0789B", + "Circuito": "789B" + }, + { + "IdCircuito": "0789C", + "Circuito": "789C" + }, + { + "IdCircuito": "0789D", + "Circuito": "789D" + }, + { + "IdCircuito": "0789E", + "Circuito": "789E" + }, + { + "IdCircuito": "0789F", + "Circuito": "789F" + }, + { + "IdCircuito": "0790A", + "Circuito": "790A" + }, + { + "IdCircuito": "0792A", + "Circuito": "792A" + }, + { + "IdCircuito": "0792B", + "Circuito": "792B" + }, + { + "IdCircuito": "0792C", + "Circuito": "792C" + }, + { + "IdCircuito": "0792D", + "Circuito": "792D" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2b7", + "IdSeccion": 12, + "Seccion": "BERISSO", + "Circuitos": [ + { + "IdCircuito": 511, + "Circuito": 511 + }, + { + "IdCircuito": 512, + "Circuito": 512 + }, + { + "IdCircuito": 513, + "Circuito": 513 + }, + { + "IdCircuito": "0513A", + "Circuito": "513A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2b8", + "IdSeccion": 15, + "Seccion": "BRANDSEN", + "Circuitos": [ + { + "IdCircuito": 148, + "Circuito": 148 + }, + { + "IdCircuito": 149, + "Circuito": 149 + }, + { + "IdCircuito": 150, + "Circuito": 150 + }, + { + "IdCircuito": 151, + "Circuito": 151 + }, + { + "IdCircuito": 152, + "Circuito": 152 + }, + { + "IdCircuito": 153, + "Circuito": 153 + }, + { + "IdCircuito": "0153A", + "Circuito": "153A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2b9", + "IdSeccion": 17, + "Seccion": "CAÑUELAS", + "Circuitos": [ + { + "IdCircuito": 157, + "Circuito": 157 + }, + { + "IdCircuito": 158, + "Circuito": 158 + }, + { + "IdCircuito": 159, + "Circuito": 159 + }, + { + "IdCircuito": 160, + "Circuito": 160 + }, + { + "IdCircuito": 162, + "Circuito": 162 + }, + { + "IdCircuito": "0158A", + "Circuito": "158A" + }, + { + "IdCircuito": "0158B", + "Circuito": "158B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2ba", + "IdSeccion": 34, + "Seccion": "ENSENADA", + "Circuitos": [ + { + "IdCircuito": 490, + "Circuito": 490 + }, + { + "IdCircuito": 491, + "Circuito": 491 + }, + { + "IdCircuito": 492, + "Circuito": 492 + }, + { + "IdCircuito": "0491A", + "Circuito": "491A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2bb", + "IdSeccion": 36, + "Seccion": "ESTEBAN ECHEVERRÍA", + "Circuitos": [ + { + "IdCircuito": 286, + "Circuito": 286 + }, + { + "IdCircuito": 287, + "Circuito": 287 + }, + { + "IdCircuito": 288, + "Circuito": 288 + }, + { + "IdCircuito": 291, + "Circuito": 291 + }, + { + "IdCircuito": "0286A", + "Circuito": "286A" + }, + { + "IdCircuito": "0287A", + "Circuito": "287A" + }, + { + "IdCircuito": "0287B", + "Circuito": "287B" + }, + { + "IdCircuito": "0287C", + "Circuito": "287C" + }, + { + "IdCircuito": "0287D", + "Circuito": "287D" + }, + { + "IdCircuito": "0288A", + "Circuito": "288A" + }, + { + "IdCircuito": "0288B", + "Circuito": "288B" + }, + { + "IdCircuito": "0291A", + "Circuito": "291A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2bc", + "IdSeccion": 38, + "Seccion": "FLORENCIO VARELA", + "Circuitos": [ + { + "IdCircuito": 302, + "Circuito": 302 + }, + { + "IdCircuito": 303, + "Circuito": 303 + }, + { + "IdCircuito": "0302A", + "Circuito": "302A" + }, + { + "IdCircuito": "0302B", + "Circuito": "302B" + }, + { + "IdCircuito": "0302C", + "Circuito": "302C" + }, + { + "IdCircuito": "0302D", + "Circuito": "302D" + }, + { + "IdCircuito": "0302E", + "Circuito": "302E" + }, + { + "IdCircuito": "0302F", + "Circuito": "302F" + }, + { + "IdCircuito": "0303A", + "Circuito": "303A" + }, + { + "IdCircuito": "0303B", + "Circuito": "303B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2bd", + "IdSeccion": 61, + "Seccion": "LA MATANZA", + "Circuitos": [ + { + "IdCircuito": 626, + "Circuito": 626 + }, + { + "IdCircuito": 627, + "Circuito": 627 + }, + { + "IdCircuito": 628, + "Circuito": 628 + }, + { + "IdCircuito": 629, + "Circuito": 629 + }, + { + "IdCircuito": 630, + "Circuito": 630 + }, + { + "IdCircuito": 631, + "Circuito": 631 + }, + { + "IdCircuito": 632, + "Circuito": 632 + }, + { + "IdCircuito": 633, + "Circuito": 633 + }, + { + "IdCircuito": 634, + "Circuito": 634 + }, + { + "IdCircuito": 635, + "Circuito": 635 + }, + { + "IdCircuito": "0626A", + "Circuito": "626A" + }, + { + "IdCircuito": "0629A", + "Circuito": "629A" + }, + { + "IdCircuito": "0629B", + "Circuito": "629B" + }, + { + "IdCircuito": "0631A", + "Circuito": "631A" + }, + { + "IdCircuito": "0631B", + "Circuito": "631B" + }, + { + "IdCircuito": "0631C", + "Circuito": "631C" + }, + { + "IdCircuito": "0631D", + "Circuito": "631D" + }, + { + "IdCircuito": "0632A", + "Circuito": "632A" + }, + { + "IdCircuito": "0632B", + "Circuito": "632B" + }, + { + "IdCircuito": "0635A", + "Circuito": "635A" + }, + { + "IdCircuito": "0635B", + "Circuito": "635B" + }, + { + "IdCircuito": "0635C", + "Circuito": "635C" + }, + { + "IdCircuito": "0635D", + "Circuito": "635D" + }, + { + "IdCircuito": "0635E", + "Circuito": "635E" + }, + { + "IdCircuito": "0635F", + "Circuito": "635F" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2be", + "IdSeccion": 62, + "Seccion": "LANÚS", + "Circuitos": [ + { + "IdCircuito": 259, + "Circuito": 259 + }, + { + "IdCircuito": 260, + "Circuito": 260 + }, + { + "IdCircuito": 261, + "Circuito": 261 + }, + { + "IdCircuito": 262, + "Circuito": 262 + }, + { + "IdCircuito": 263, + "Circuito": 263 + }, + { + "IdCircuito": 264, + "Circuito": 264 + }, + { + "IdCircuito": 265, + "Circuito": 265 + }, + { + "IdCircuito": 271, + "Circuito": 271 + }, + { + "IdCircuito": 272, + "Circuito": 272 + }, + { + "IdCircuito": 273, + "Circuito": 273 + }, + { + "IdCircuito": 274, + "Circuito": 274 + }, + { + "IdCircuito": 275, + "Circuito": 275 + }, + { + "IdCircuito": 276, + "Circuito": 276 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2bf", + "IdSeccion": 69, + "Seccion": "LOBOS", + "Circuitos": [ + { + "IdCircuito": 574, + "Circuito": 574 + }, + { + "IdCircuito": 575, + "Circuito": 575 + }, + { + "IdCircuito": 576, + "Circuito": 576 + }, + { + "IdCircuito": 577, + "Circuito": 577 + }, + { + "IdCircuito": 578, + "Circuito": 578 + }, + { + "IdCircuito": 579, + "Circuito": 579 + }, + { + "IdCircuito": 580, + "Circuito": 580 + }, + { + "IdCircuito": 581, + "Circuito": 581 + }, + { + "IdCircuito": "0576A", + "Circuito": "576A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2c0", + "IdSeccion": 70, + "Seccion": "LOMAS DE ZAMORA", + "Circuitos": [ + { + "IdCircuito": 583, + "Circuito": 583 + }, + { + "IdCircuito": 584, + "Circuito": 584 + }, + { + "IdCircuito": 585, + "Circuito": 585 + }, + { + "IdCircuito": 586, + "Circuito": 586 + }, + { + "IdCircuito": 587, + "Circuito": 587 + }, + { + "IdCircuito": 588, + "Circuito": 588 + }, + { + "IdCircuito": 589, + "Circuito": 589 + }, + { + "IdCircuito": 590, + "Circuito": 590 + }, + { + "IdCircuito": 591, + "Circuito": 591 + }, + { + "IdCircuito": 592, + "Circuito": 592 + }, + { + "IdCircuito": 593, + "Circuito": 593 + }, + { + "IdCircuito": "0583A", + "Circuito": "583A" + }, + { + "IdCircuito": "0583B", + "Circuito": "583B" + }, + { + "IdCircuito": "0583C", + "Circuito": "583C" + }, + { + "IdCircuito": "0583D", + "Circuito": "583D" + }, + { + "IdCircuito": "0583E", + "Circuito": "583E" + }, + { + "IdCircuito": "0590A", + "Circuito": "590A" + }, + { + "IdCircuito": "0593A", + "Circuito": "593A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2c1", + "IdSeccion": 72, + "Seccion": "MAGDALENA", + "Circuitos": [ + { + "IdCircuito": 604, + "Circuito": 604 + }, + { + "IdCircuito": 605, + "Circuito": 605 + }, + { + "IdCircuito": 606, + "Circuito": 606 + }, + { + "IdCircuito": 607, + "Circuito": 607 + }, + { + "IdCircuito": 608, + "Circuito": 608 + }, + { + "IdCircuito": 609, + "Circuito": 609 + }, + { + "IdCircuito": 610, + "Circuito": 610 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2c2", + "IdSeccion": 92, + "Seccion": "QUILMES", + "Circuitos": [ + { + "IdCircuito": 783, + "Circuito": 783 + }, + { + "IdCircuito": 784, + "Circuito": 784 + }, + { + "IdCircuito": 785, + "Circuito": 785 + }, + { + "IdCircuito": 786, + "Circuito": 786 + }, + { + "IdCircuito": 787, + "Circuito": 787 + }, + { + "IdCircuito": 788, + "Circuito": 788 + }, + { + "IdCircuito": 791, + "Circuito": 791 + }, + { + "IdCircuito": "0783A", + "Circuito": "783A" + }, + { + "IdCircuito": "0785A", + "Circuito": "785A" + }, + { + "IdCircuito": "0785B", + "Circuito": "785B" + }, + { + "IdCircuito": "0786A", + "Circuito": "786A" + }, + { + "IdCircuito": "0787A", + "Circuito": "787A" + }, + { + "IdCircuito": "0788A", + "Circuito": "788A" + }, + { + "IdCircuito": "0788B", + "Circuito": "788B" + }, + { + "IdCircuito": "0788C", + "Circuito": "788C" + }, + { + "IdCircuito": "0791A", + "Circuito": "791A" + }, + { + "IdCircuito": "0791B", + "Circuito": "791B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2c3", + "IdSeccion": 109, + "Seccion": "SAN VICENTE", + "Circuitos": [ + { + "IdCircuito": 924, + "Circuito": 924 + }, + { + "IdCircuito": 925, + "Circuito": 925 + }, + { + "IdCircuito": 926, + "Circuito": 926 + }, + { + "IdCircuito": 927, + "Circuito": 927 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2c4", + "IdSeccion": 128, + "Seccion": "PRESIDENTE PERÓN", + "Circuitos": [ + { + "IdCircuito": 304, + "Circuito": 304 + }, + { + "IdCircuito": "0304A", + "Circuito": "304A" + }, + { + "IdCircuito": "0304B", + "Circuito": "304B" + }, + { + "IdCircuito": "0304C", + "Circuito": "304C" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2c5", + "IdSeccion": 131, + "Seccion": "PUNTA INDIO", + "Circuitos": [ + { + "IdCircuito": 611, + "Circuito": 611 + }, + { + "IdCircuito": 612, + "Circuito": 612 + }, + { + "IdCircuito": 613, + "Circuito": 613 + }, + { + "IdCircuito": "0613A", + "Circuito": "613A" + }, + { + "IdCircuito": "0613B", + "Circuito": "613B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2c6", + "IdSeccion": 132, + "Seccion": "EZEIZA", + "Circuitos": [ + { + "IdCircuito": 289, + "Circuito": 289 + }, + { + "IdCircuito": 290, + "Circuito": 290 + }, + { + "IdCircuito": "0290A", + "Circuito": "290A" + }, + { + "IdCircuito": "0290B", + "Circuito": "290B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2c7", + "IdSeccion": 2, + "Seccion": "ALBERTI", + "Circuitos": [ + { + "IdCircuito": 10, + "Circuito": 10 + }, + { + "IdCircuito": 11, + "Circuito": 11 + }, + { + "IdCircuito": 12, + "Circuito": 12 + }, + { + "IdCircuito": 13, + "Circuito": 13 + }, + { + "IdCircuito": 14, + "Circuito": 14 + }, + { + "IdCircuito": 15, + "Circuito": 15 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2c8", + "IdSeccion": 14, + "Seccion": "BRAGADO", + "Circuitos": [ + { + "IdCircuito": 136, + "Circuito": 136 + }, + { + "IdCircuito": 137, + "Circuito": 137 + }, + { + "IdCircuito": 138, + "Circuito": 138 + }, + { + "IdCircuito": 139, + "Circuito": 139 + }, + { + "IdCircuito": 140, + "Circuito": 140 + }, + { + "IdCircuito": 141, + "Circuito": 141 + }, + { + "IdCircuito": 142, + "Circuito": 142 + }, + { + "IdCircuito": 143, + "Circuito": 143 + }, + { + "IdCircuito": 144, + "Circuito": 144 + }, + { + "IdCircuito": 145, + "Circuito": 145 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2c9", + "IdSeccion": 19, + "Seccion": "CARLOS CASARES", + "Circuitos": [ + { + "IdCircuito": 164, + "Circuito": 164 + }, + { + "IdCircuito": 165, + "Circuito": 165 + }, + { + "IdCircuito": 166, + "Circuito": 166 + }, + { + "IdCircuito": 167, + "Circuito": 167 + }, + { + "IdCircuito": "0164A", + "Circuito": "164A" + }, + { + "IdCircuito": "0165A", + "Circuito": "165A" + }, + { + "IdCircuito": "0165B", + "Circuito": "165B" + }, + { + "IdCircuito": "0166A", + "Circuito": "166A" + }, + { + "IdCircuito": "0167A", + "Circuito": "167A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2ca", + "IdSeccion": 20, + "Seccion": "CARLOS TEJEDOR", + "Circuitos": [ + { + "IdCircuito": 169, + "Circuito": 169 + }, + { + "IdCircuito": 170, + "Circuito": 170 + }, + { + "IdCircuito": 171, + "Circuito": 171 + }, + { + "IdCircuito": 172, + "Circuito": 172 + }, + { + "IdCircuito": 173, + "Circuito": 173 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2cb", + "IdSeccion": 29, + "Seccion": "CHACABUCO", + "Circuitos": [ + { + "IdCircuito": 189, + "Circuito": 189 + }, + { + "IdCircuito": 190, + "Circuito": 190 + }, + { + "IdCircuito": 191, + "Circuito": 191 + }, + { + "IdCircuito": 193, + "Circuito": 193 + }, + { + "IdCircuito": 195, + "Circuito": 195 + }, + { + "IdCircuito": 197, + "Circuito": 197 + }, + { + "IdCircuito": 198, + "Circuito": 198 + }, + { + "IdCircuito": "0196A", + "Circuito": "196A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2cc", + "IdSeccion": 31, + "Seccion": "CHIVILCOY", + "Circuitos": [ + { + "IdCircuito": 211, + "Circuito": 211 + }, + { + "IdCircuito": 212, + "Circuito": 212 + }, + { + "IdCircuito": 215, + "Circuito": 215 + }, + { + "IdCircuito": 216, + "Circuito": 216 + }, + { + "IdCircuito": 218, + "Circuito": 218 + }, + { + "IdCircuito": 219, + "Circuito": 219 + }, + { + "IdCircuito": 220, + "Circuito": 220 + }, + { + "IdCircuito": 221, + "Circuito": 221 + }, + { + "IdCircuito": 222, + "Circuito": 222 + }, + { + "IdCircuito": 224, + "Circuito": 224 + }, + { + "IdCircuito": 226, + "Circuito": 226 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2cd", + "IdSeccion": 41, + "Seccion": "GENERAL ARENALES", + "Circuitos": [ + { + "IdCircuito": 314, + "Circuito": 314 + }, + { + "IdCircuito": 315, + "Circuito": 315 + }, + { + "IdCircuito": 316, + "Circuito": 316 + }, + { + "IdCircuito": 317, + "Circuito": 317 + }, + { + "IdCircuito": 318, + "Circuito": 318 + }, + { + "IdCircuito": "0316A", + "Circuito": "316A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2ce", + "IdSeccion": 49, + "Seccion": "GENERAL PINTO", + "Circuitos": [ + { + "IdCircuito": 354, + "Circuito": 354 + }, + { + "IdCircuito": 357, + "Circuito": 357 + }, + { + "IdCircuito": 358, + "Circuito": 358 + }, + { + "IdCircuito": 359, + "Circuito": 359 + }, + { + "IdCircuito": 360, + "Circuito": 360 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2cf", + "IdSeccion": 54, + "Seccion": "GENERAL VIAMONTE", + "Circuitos": [ + { + "IdCircuito": 404, + "Circuito": 404 + }, + { + "IdCircuito": 405, + "Circuito": 405 + }, + { + "IdCircuito": 406, + "Circuito": 406 + }, + { + "IdCircuito": 407, + "Circuito": 407 + }, + { + "IdCircuito": 408, + "Circuito": 408 + }, + { + "IdCircuito": 409, + "Circuito": 409 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2d0", + "IdSeccion": 55, + "Seccion": "GENERAL VILLEGAS", + "Circuitos": [ + { + "IdCircuito": 411, + "Circuito": 411 + }, + { + "IdCircuito": 412, + "Circuito": 412 + }, + { + "IdCircuito": 413, + "Circuito": 413 + }, + { + "IdCircuito": 414, + "Circuito": 414 + }, + { + "IdCircuito": 415, + "Circuito": 415 + }, + { + "IdCircuito": 416, + "Circuito": 416 + }, + { + "IdCircuito": 417, + "Circuito": 417 + }, + { + "IdCircuito": 418, + "Circuito": 418 + }, + { + "IdCircuito": 419, + "Circuito": 419 + }, + { + "IdCircuito": 420, + "Circuito": 420 + }, + { + "IdCircuito": 421, + "Circuito": 421 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2d1", + "IdSeccion": 58, + "Seccion": "HIPÓLITO YRIGOYEN", + "Circuitos": [ + { + "IdCircuito": 742, + "Circuito": 742 + }, + { + "IdCircuito": "0742B", + "Circuito": "742B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2d2", + "IdSeccion": 60, + "Seccion": "JUNÍN", + "Circuitos": [ + { + "IdCircuito": 444, + "Circuito": 444 + }, + { + "IdCircuito": 445, + "Circuito": 445 + }, + { + "IdCircuito": 446, + "Circuito": 446 + }, + { + "IdCircuito": 447, + "Circuito": 447 + }, + { + "IdCircuito": 449, + "Circuito": 449 + }, + { + "IdCircuito": 450, + "Circuito": 450 + }, + { + "IdCircuito": 451, + "Circuito": 451 + }, + { + "IdCircuito": 452, + "Circuito": 452 + }, + { + "IdCircuito": 453, + "Circuito": 453 + }, + { + "IdCircuito": 454, + "Circuito": 454 + }, + { + "IdCircuito": 456, + "Circuito": 456 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2d3", + "IdSeccion": 66, + "Seccion": "LEANDRO N. ALEM", + "Circuitos": [ + { + "IdCircuito": 549, + "Circuito": 549 + }, + { + "IdCircuito": 550, + "Circuito": 550 + }, + { + "IdCircuito": 551, + "Circuito": 551 + }, + { + "IdCircuito": 552, + "Circuito": 552 + }, + { + "IdCircuito": 553, + "Circuito": 553 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2d4", + "IdSeccion": 67, + "Seccion": "LINCOLN", + "Circuitos": [ + { + "IdCircuito": 554, + "Circuito": 554 + }, + { + "IdCircuito": 556, + "Circuito": 556 + }, + { + "IdCircuito": 557, + "Circuito": 557 + }, + { + "IdCircuito": 558, + "Circuito": 558 + }, + { + "IdCircuito": 559, + "Circuito": 559 + }, + { + "IdCircuito": 561, + "Circuito": 561 + }, + { + "IdCircuito": 562, + "Circuito": 562 + }, + { + "IdCircuito": 563, + "Circuito": 563 + }, + { + "IdCircuito": 564, + "Circuito": 564 + }, + { + "IdCircuito": 565, + "Circuito": 565 + }, + { + "IdCircuito": 566, + "Circuito": 566 + }, + { + "IdCircuito": 567, + "Circuito": 567 + }, + { + "IdCircuito": "0567A", + "Circuito": "567A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2d5", + "IdSeccion": 83, + "Seccion": "NUEVE DE JULIO", + "Circuitos": [ + { + "IdCircuito": 696, + "Circuito": 696 + }, + { + "IdCircuito": 697, + "Circuito": 697 + }, + { + "IdCircuito": 698, + "Circuito": 698 + }, + { + "IdCircuito": 699, + "Circuito": 699 + }, + { + "IdCircuito": 700, + "Circuito": 700 + }, + { + "IdCircuito": 701, + "Circuito": 701 + }, + { + "IdCircuito": 703, + "Circuito": 703 + }, + { + "IdCircuito": 704, + "Circuito": 704 + }, + { + "IdCircuito": 705, + "Circuito": 705 + }, + { + "IdCircuito": 706, + "Circuito": 706 + }, + { + "IdCircuito": 707, + "Circuito": 707 + }, + { + "IdCircuito": 708, + "Circuito": 708 + }, + { + "IdCircuito": 709, + "Circuito": 709 + }, + { + "IdCircuito": "0705A", + "Circuito": "705A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2d6", + "IdSeccion": 85, + "Seccion": "PEHUAJÓ", + "Circuitos": [ + { + "IdCircuito": 734, + "Circuito": 734 + }, + { + "IdCircuito": 735, + "Circuito": 735 + }, + { + "IdCircuito": 736, + "Circuito": 736 + }, + { + "IdCircuito": 738, + "Circuito": 738 + }, + { + "IdCircuito": 739, + "Circuito": 739 + }, + { + "IdCircuito": 740, + "Circuito": 740 + }, + { + "IdCircuito": 741, + "Circuito": 741 + }, + { + "IdCircuito": "0734A", + "Circuito": "734A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2d7", + "IdSeccion": 95, + "Seccion": "RIVADAVIA", + "Circuitos": [ + { + "IdCircuito": 815, + "Circuito": 815 + }, + { + "IdCircuito": 816, + "Circuito": 816 + }, + { + "IdCircuito": 817, + "Circuito": 817 + }, + { + "IdCircuito": 818, + "Circuito": 818 + }, + { + "IdCircuito": 819, + "Circuito": 819 + }, + { + "IdCircuito": 820, + "Circuito": 820 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2d8", + "IdSeccion": 115, + "Seccion": "TRENQUE LAUQUEN", + "Circuitos": [ + { + "IdCircuito": 957, + "Circuito": 957 + }, + { + "IdCircuito": 958, + "Circuito": 958 + }, + { + "IdCircuito": 960, + "Circuito": 960 + }, + { + "IdCircuito": 961, + "Circuito": 961 + }, + { + "IdCircuito": "0961A", + "Circuito": "961A" + }, + { + "IdCircuito": "0961D", + "Circuito": "961D" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2d9", + "IdSeccion": 127, + "Seccion": "FLORENTINO AMEGHINO", + "Circuitos": [ + { + "IdCircuito": 361, + "Circuito": 361 + }, + { + "IdCircuito": 362, + "Circuito": 362 + }, + { + "IdCircuito": "0361A", + "Circuito": "361A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2da", + "IdSeccion": 5, + "Seccion": "AYACUCHO", + "Circuitos": [ + { + "IdCircuito": 46, + "Circuito": 46 + }, + { + "IdCircuito": 50, + "Circuito": 50 + }, + { + "IdCircuito": 52, + "Circuito": 52 + }, + { + "IdCircuito": 54, + "Circuito": 54 + }, + { + "IdCircuito": 55, + "Circuito": 55 + }, + { + "IdCircuito": 57, + "Circuito": 57 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2db", + "IdSeccion": 8, + "Seccion": "BALCARCE", + "Circuitos": [ + { + "IdCircuito": 98, + "Circuito": 98 + }, + { + "IdCircuito": 99, + "Circuito": 99 + }, + { + "IdCircuito": 100, + "Circuito": 100 + }, + { + "IdCircuito": 101, + "Circuito": 101 + }, + { + "IdCircuito": 102, + "Circuito": 102 + }, + { + "IdCircuito": 103, + "Circuito": 103 + }, + { + "IdCircuito": 104, + "Circuito": 104 + }, + { + "IdCircuito": "0103A", + "Circuito": "103A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2dc", + "IdSeccion": 23, + "Seccion": "CASTELLI", + "Circuitos": [ + { + "IdCircuito": 185, + "Circuito": 185 + }, + { + "IdCircuito": 187, + "Circuito": 187 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2dd", + "IdSeccion": 30, + "Seccion": "CHASCOMÚS", + "Circuitos": [ + { + "IdCircuito": 201, + "Circuito": 201 + }, + { + "IdCircuito": 202, + "Circuito": 202 + }, + { + "IdCircuito": 203, + "Circuito": 203 + }, + { + "IdCircuito": 204, + "Circuito": 204 + }, + { + "IdCircuito": 205, + "Circuito": 205 + }, + { + "IdCircuito": 209, + "Circuito": 209 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2de", + "IdSeccion": 33, + "Seccion": "DOLORES", + "Circuitos": [ + { + "IdCircuito": 282, + "Circuito": 282 + }, + { + "IdCircuito": 285, + "Circuito": 285 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2df", + "IdSeccion": 39, + "Seccion": "GENERAL ALVARADO", + "Circuitos": [ + { + "IdCircuito": 305, + "Circuito": 305 + }, + { + "IdCircuito": 306, + "Circuito": 306 + }, + { + "IdCircuito": 307, + "Circuito": 307 + }, + { + "IdCircuito": 308, + "Circuito": 308 + }, + { + "IdCircuito": 309, + "Circuito": 309 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2e0", + "IdSeccion": 42, + "Seccion": "GENERAL BELGRANO", + "Circuitos": [ + { + "IdCircuito": 320, + "Circuito": 320 + }, + { + "IdCircuito": 322, + "Circuito": 322 + }, + { + "IdCircuito": 324, + "Circuito": 324 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2e1", + "IdSeccion": 43, + "Seccion": "GENERAL GUIDO", + "Circuitos": [ + { + "IdCircuito": 326, + "Circuito": 326 + }, + { + "IdCircuito": 327, + "Circuito": 327 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2e2", + "IdSeccion": 46, + "Seccion": "GENERAL LAVALLE", + "Circuitos": [ + { + "IdCircuito": 338, + "Circuito": 338 + }, + { + "IdCircuito": "0338A", + "Circuito": "338A" + }, + { + "IdCircuito": "0338B", + "Circuito": "338B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2e3", + "IdSeccion": 47, + "Seccion": "GENERAL JUAN MADARIAGA", + "Circuitos": [ + { + "IdCircuito": 340, + "Circuito": 340 + }, + { + "IdCircuito": 341, + "Circuito": 341 + }, + { + "IdCircuito": 343, + "Circuito": 343 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2e4", + "IdSeccion": 48, + "Seccion": "GENERAL PAZ", + "Circuitos": [ + { + "IdCircuito": 345, + "Circuito": 345 + }, + { + "IdCircuito": 346, + "Circuito": 346 + }, + { + "IdCircuito": 348, + "Circuito": 348 + }, + { + "IdCircuito": 349, + "Circuito": 349 + }, + { + "IdCircuito": 350, + "Circuito": 350 + }, + { + "IdCircuito": 351, + "Circuito": 351 + }, + { + "IdCircuito": 352, + "Circuito": 352 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2e5", + "IdSeccion": 50, + "Seccion": "GENERAL PUEYRREDÓN", + "Circuitos": [ + { + "IdCircuito": 364, + "Circuito": 364 + }, + { + "IdCircuito": 365, + "Circuito": 365 + }, + { + "IdCircuito": 366, + "Circuito": 366 + }, + { + "IdCircuito": 367, + "Circuito": 367 + }, + { + "IdCircuito": 368, + "Circuito": 368 + }, + { + "IdCircuito": 369, + "Circuito": 369 + }, + { + "IdCircuito": 370, + "Circuito": 370 + }, + { + "IdCircuito": "0364A", + "Circuito": "364A" + }, + { + "IdCircuito": "0364B", + "Circuito": "364B" + }, + { + "IdCircuito": "0364C", + "Circuito": "364C" + }, + { + "IdCircuito": "0364D", + "Circuito": "364D" + }, + { + "IdCircuito": "0364E", + "Circuito": "364E" + }, + { + "IdCircuito": "0365A", + "Circuito": "365A" + }, + { + "IdCircuito": "0365B", + "Circuito": "365B" + }, + { + "IdCircuito": "0365C", + "Circuito": "365C" + }, + { + "IdCircuito": "0365D", + "Circuito": "365D" + }, + { + "IdCircuito": "0365E", + "Circuito": "365E" + }, + { + "IdCircuito": "0365F", + "Circuito": "365F" + }, + { + "IdCircuito": "0366A", + "Circuito": "366A" + }, + { + "IdCircuito": "0368A", + "Circuito": "368A" + }, + { + "IdCircuito": "0368B", + "Circuito": "368B" + }, + { + "IdCircuito": "0368C", + "Circuito": "368C" + }, + { + "IdCircuito": "0370A", + "Circuito": "370A" + }, + { + "IdCircuito": "0370B", + "Circuito": "370B" + }, + { + "IdCircuito": "0370C", + "Circuito": "370C" + }, + { + "IdCircuito": "0370D", + "Circuito": "370D" + }, + { + "IdCircuito": "0370E", + "Circuito": "370E" + }, + { + "IdCircuito": "0370F", + "Circuito": "370F" + }, + { + "IdCircuito": "0370G", + "Circuito": "370G" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2e6", + "IdSeccion": 65, + "Seccion": "LAS FLORES", + "Circuitos": [ + { + "IdCircuito": 538, + "Circuito": 538 + }, + { + "IdCircuito": 539, + "Circuito": 539 + }, + { + "IdCircuito": 540, + "Circuito": 540 + }, + { + "IdCircuito": 541, + "Circuito": 541 + }, + { + "IdCircuito": 542, + "Circuito": 542 + }, + { + "IdCircuito": 543, + "Circuito": 543 + }, + { + "IdCircuito": 544, + "Circuito": 544 + }, + { + "IdCircuito": 545, + "Circuito": 545 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2e7", + "IdSeccion": 68, + "Seccion": "LOBERÍA", + "Circuitos": [ + { + "IdCircuito": 568, + "Circuito": 568 + }, + { + "IdCircuito": 569, + "Circuito": 569 + }, + { + "IdCircuito": 570, + "Circuito": 570 + }, + { + "IdCircuito": 572, + "Circuito": 572 + }, + { + "IdCircuito": "0568A", + "Circuito": "568A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2e8", + "IdSeccion": 73, + "Seccion": "MAIPÚ", + "Circuitos": [ + { + "IdCircuito": 615, + "Circuito": 615 + }, + { + "IdCircuito": 616, + "Circuito": 616 + }, + { + "IdCircuito": 617, + "Circuito": 617 + }, + { + "IdCircuito": "0617A", + "Circuito": "617A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2e9", + "IdSeccion": 74, + "Seccion": "MAR CHIQUITA", + "Circuitos": [ + { + "IdCircuito": 619, + "Circuito": 619 + }, + { + "IdCircuito": 620, + "Circuito": 620 + }, + { + "IdCircuito": 621, + "Circuito": 621 + }, + { + "IdCircuito": 622, + "Circuito": 622 + }, + { + "IdCircuito": "0622A", + "Circuito": "622A" + }, + { + "IdCircuito": "0622B", + "Circuito": "622B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2ea", + "IdSeccion": 78, + "Seccion": "MONTE", + "Circuitos": [ + { + "IdCircuito": 656, + "Circuito": 656 + }, + { + "IdCircuito": 657, + "Circuito": 657 + }, + { + "IdCircuito": 658, + "Circuito": 658 + }, + { + "IdCircuito": 659, + "Circuito": 659 + }, + { + "IdCircuito": 660, + "Circuito": 660 + }, + { + "IdCircuito": 661, + "Circuito": 661 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2eb", + "IdSeccion": 82, + "Seccion": "NECOCHEA", + "Circuitos": [ + { + "IdCircuito": 686, + "Circuito": 686 + }, + { + "IdCircuito": 687, + "Circuito": 687 + }, + { + "IdCircuito": 688, + "Circuito": 688 + }, + { + "IdCircuito": 691, + "Circuito": 691 + }, + { + "IdCircuito": 692, + "Circuito": 692 + }, + { + "IdCircuito": "0686A", + "Circuito": "686A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2ec", + "IdSeccion": 88, + "Seccion": "PILA", + "Circuitos": [ + { + "IdCircuito": 765, + "Circuito": 765 + }, + { + "IdCircuito": 766, + "Circuito": 766 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2ed", + "IdSeccion": 90, + "Seccion": "PINAMAR", + "Circuitos": [ + { + "IdCircuito": 339, + "Circuito": 339 + }, + { + "IdCircuito": "0339A", + "Circuito": "339A" + }, + { + "IdCircuito": "0339B", + "Circuito": "339B" + }, + { + "IdCircuito": "0339C", + "Circuito": "339C" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2ee", + "IdSeccion": 94, + "Seccion": "RAUCH", + "Circuitos": [ + { + "IdCircuito": 806, + "Circuito": 806 + }, + { + "IdCircuito": 807, + "Circuito": 807 + }, + { + "IdCircuito": 808, + "Circuito": 808 + }, + { + "IdCircuito": 810, + "Circuito": 810 + }, + { + "IdCircuito": 811, + "Circuito": 811 + }, + { + "IdCircuito": 812, + "Circuito": 812 + }, + { + "IdCircuito": 813, + "Circuito": 813 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2ef", + "IdSeccion": 104, + "Seccion": "SAN CAYETANO", + "Circuitos": [ + { + "IdCircuito": 871, + "Circuito": 871 + }, + { + "IdCircuito": "0871A", + "Circuito": "871A" + }, + { + "IdCircuito": "0871B", + "Circuito": "871B" + }, + { + "IdCircuito": "0871C", + "Circuito": "871C" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2f0", + "IdSeccion": 111, + "Seccion": "TANDIL", + "Circuitos": [ + { + "IdCircuito": 934, + "Circuito": 934 + }, + { + "IdCircuito": 937, + "Circuito": 937 + }, + { + "IdCircuito": 938, + "Circuito": 938 + }, + { + "IdCircuito": 939, + "Circuito": 939 + }, + { + "IdCircuito": 940, + "Circuito": 940 + }, + { + "IdCircuito": "0933A", + "Circuito": "933A" + }, + { + "IdCircuito": "0933B", + "Circuito": "933B" + }, + { + "IdCircuito": "0933C", + "Circuito": "933C" + }, + { + "IdCircuito": "0933D", + "Circuito": "933D" + }, + { + "IdCircuito": "0933E", + "Circuito": "933E" + }, + { + "IdCircuito": "0933F", + "Circuito": "933F" + }, + { + "IdCircuito": "0933G", + "Circuito": "933G" + }, + { + "IdCircuito": "0933H", + "Circuito": "933H" + }, + { + "IdCircuito": "0933I", + "Circuito": "933I" + }, + { + "IdCircuito": "0933J", + "Circuito": "933J" + }, + { + "IdCircuito": "0933K", + "Circuito": "933K" + }, + { + "IdCircuito": "0933L", + "Circuito": "933L" + }, + { + "IdCircuito": "0933M", + "Circuito": "933M" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2f1", + "IdSeccion": 116, + "Seccion": "TORDILLO", + "Circuitos": [ + { + "IdCircuito": 951, + "Circuito": 951 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2f2", + "IdSeccion": 119, + "Seccion": "LA COSTA", + "Circuitos": [ + { + "IdCircuito": 337, + "Circuito": 337 + }, + { + "IdCircuito": "0337A", + "Circuito": "337A" + }, + { + "IdCircuito": "0337B", + "Circuito": "337B" + }, + { + "IdCircuito": "0337C", + "Circuito": "337C" + }, + { + "IdCircuito": "0337D", + "Circuito": "337D" + }, + { + "IdCircuito": "0337E", + "Circuito": "337E" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2f3", + "IdSeccion": 123, + "Seccion": "VILLA GESELL", + "Circuitos": [ + { + "IdCircuito": 344, + "Circuito": 344 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2f4", + "IdSeccion": 135, + "Seccion": "LEZAMA", + "Circuitos": [ + { + "IdCircuito": "0207L", + "Circuito": "207L" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2f5", + "IdSeccion": 1, + "Seccion": "ADOLFO ALSINA", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": 1 + }, + { + "IdCircuito": 3, + "Circuito": 3 + }, + { + "IdCircuito": 5, + "Circuito": 5 + }, + { + "IdCircuito": 6, + "Circuito": 6 + }, + { + "IdCircuito": 7, + "Circuito": 7 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2f6", + "IdSeccion": 7, + "Seccion": "BAHÍA BLANCA", + "Circuitos": [ + { + "IdCircuito": 72, + "Circuito": 72 + }, + { + "IdCircuito": 73, + "Circuito": 73 + }, + { + "IdCircuito": 74, + "Circuito": 74 + }, + { + "IdCircuito": 75, + "Circuito": 75 + }, + { + "IdCircuito": 76, + "Circuito": 76 + }, + { + "IdCircuito": 77, + "Circuito": 77 + }, + { + "IdCircuito": 78, + "Circuito": 78 + }, + { + "IdCircuito": 79, + "Circuito": 79 + }, + { + "IdCircuito": 80, + "Circuito": 80 + }, + { + "IdCircuito": 83, + "Circuito": 83 + }, + { + "IdCircuito": 84, + "Circuito": 84 + }, + { + "IdCircuito": 85, + "Circuito": 85 + }, + { + "IdCircuito": 86, + "Circuito": 86 + }, + { + "IdCircuito": 87, + "Circuito": 87 + }, + { + "IdCircuito": 88, + "Circuito": 88 + }, + { + "IdCircuito": 89, + "Circuito": 89 + }, + { + "IdCircuito": 90, + "Circuito": 90 + }, + { + "IdCircuito": 91, + "Circuito": 91 + }, + { + "IdCircuito": 92, + "Circuito": 92 + }, + { + "IdCircuito": 93, + "Circuito": 93 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2f7", + "IdSeccion": 22, + "Seccion": "PATAGONES", + "Circuitos": [ + { + "IdCircuito": 729, + "Circuito": 729 + }, + { + "IdCircuito": 730, + "Circuito": 730 + }, + { + "IdCircuito": 731, + "Circuito": 731 + }, + { + "IdCircuito": 732, + "Circuito": 732 + }, + { + "IdCircuito": 733, + "Circuito": 733 + }, + { + "IdCircuito": "0731A", + "Circuito": "731A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2f8", + "IdSeccion": 25, + "Seccion": "CORONEL DORREGO", + "Circuitos": [ + { + "IdCircuito": 232, + "Circuito": 232 + }, + { + "IdCircuito": 233, + "Circuito": 233 + }, + { + "IdCircuito": 234, + "Circuito": 234 + }, + { + "IdCircuito": 235, + "Circuito": 235 + }, + { + "IdCircuito": 236, + "Circuito": 236 + }, + { + "IdCircuito": 237, + "Circuito": 237 + }, + { + "IdCircuito": 238, + "Circuito": 238 + }, + { + "IdCircuito": "0236A", + "Circuito": "236A" + }, + { + "IdCircuito": "0237A", + "Circuito": "237A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2f9", + "IdSeccion": 26, + "Seccion": "CORONEL PRINGLES", + "Circuitos": [ + { + "IdCircuito": 240, + "Circuito": 240 + }, + { + "IdCircuito": 243, + "Circuito": 243 + }, + { + "IdCircuito": 246, + "Circuito": 246 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2fa", + "IdSeccion": 27, + "Seccion": "CORONEL DE MARINA L. ROSALES", + "Circuitos": [ + { + "IdCircuito": 248, + "Circuito": 248 + }, + { + "IdCircuito": 249, + "Circuito": 249 + }, + { + "IdCircuito": "0248A", + "Circuito": "248A" + }, + { + "IdCircuito": "0248B", + "Circuito": "248B" + }, + { + "IdCircuito": "0248C", + "Circuito": "248C" + }, + { + "IdCircuito": "0248D", + "Circuito": "248D" + }, + { + "IdCircuito": "0248E", + "Circuito": "248E" + }, + { + "IdCircuito": "0248F", + "Circuito": "248F" + }, + { + "IdCircuito": "0249A", + "Circuito": "249A" + }, + { + "IdCircuito": "0249B", + "Circuito": "249B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2fb", + "IdSeccion": 28, + "Seccion": "CORONEL SUÁREZ", + "Circuitos": [ + { + "IdCircuito": 252, + "Circuito": 252 + }, + { + "IdCircuito": 253, + "Circuito": 253 + }, + { + "IdCircuito": 254, + "Circuito": 254 + }, + { + "IdCircuito": 255, + "Circuito": 255 + }, + { + "IdCircuito": 258, + "Circuito": 258 + }, + { + "IdCircuito": "0255A", + "Circuito": "255A" + }, + { + "IdCircuito": "0256A", + "Circuito": "256A" + }, + { + "IdCircuito": "0258A", + "Circuito": "258A" + }, + { + "IdCircuito": "0258B", + "Circuito": "258B" + }, + { + "IdCircuito": "0258C", + "Circuito": "258C" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2fc", + "IdSeccion": 32, + "Seccion": "DAIREAUX", + "Circuitos": [ + { + "IdCircuito": 179, + "Circuito": 179 + }, + { + "IdCircuito": 180, + "Circuito": 180 + }, + { + "IdCircuito": 181, + "Circuito": 181 + }, + { + "IdCircuito": 182, + "Circuito": 182 + }, + { + "IdCircuito": 183, + "Circuito": 183 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2fd", + "IdSeccion": 44, + "Seccion": "GENERAL LAMADRID", + "Circuitos": [ + { + "IdCircuito": 330, + "Circuito": 330 + }, + { + "IdCircuito": 332, + "Circuito": 332 + }, + { + "IdCircuito": 334, + "Circuito": 334 + }, + { + "IdCircuito": 335, + "Circuito": 335 + }, + { + "IdCircuito": 336, + "Circuito": 336 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2fe", + "IdSeccion": 56, + "Seccion": "ADOLFO GONZALES CHAVES", + "Circuitos": [ + { + "IdCircuito": 424, + "Circuito": 424 + }, + { + "IdCircuito": 427, + "Circuito": 427 + }, + { + "IdCircuito": 428, + "Circuito": 428 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c2ff", + "IdSeccion": 57, + "Seccion": "GUAMINÍ", + "Circuitos": [ + { + "IdCircuito": 430, + "Circuito": 430 + }, + { + "IdCircuito": 431, + "Circuito": 431 + }, + { + "IdCircuito": 432, + "Circuito": 432 + }, + { + "IdCircuito": 433, + "Circuito": 433 + }, + { + "IdCircuito": 434, + "Circuito": 434 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c300", + "IdSeccion": 59, + "Seccion": "BENITO JUÁREZ", + "Circuitos": [ + { + "IdCircuito": 436, + "Circuito": 436 + }, + { + "IdCircuito": 437, + "Circuito": 437 + }, + { + "IdCircuito": 439, + "Circuito": 439 + }, + { + "IdCircuito": 440, + "Circuito": 440 + }, + { + "IdCircuito": 441, + "Circuito": 441 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c301", + "IdSeccion": 64, + "Seccion": "LAPRIDA", + "Circuitos": [ + { + "IdCircuito": 524, + "Circuito": 524 + }, + { + "IdCircuito": 528, + "Circuito": 528 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c302", + "IdSeccion": 86, + "Seccion": "PELLEGRINI", + "Circuitos": [ + { + "IdCircuito": 743, + "Circuito": 743 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c303", + "IdSeccion": 91, + "Seccion": "PUÁN", + "Circuitos": [ + { + "IdCircuito": 776, + "Circuito": 776 + }, + { + "IdCircuito": 777, + "Circuito": 777 + }, + { + "IdCircuito": 778, + "Circuito": 778 + }, + { + "IdCircuito": 779, + "Circuito": 779 + }, + { + "IdCircuito": 780, + "Circuito": 780 + }, + { + "IdCircuito": 781, + "Circuito": 781 + }, + { + "IdCircuito": 782, + "Circuito": 782 + }, + { + "IdCircuito": "0777A", + "Circuito": "777A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c304", + "IdSeccion": 98, + "Seccion": "SAAVEDRA", + "Circuitos": [ + { + "IdCircuito": 839, + "Circuito": 839 + }, + { + "IdCircuito": 840, + "Circuito": 840 + }, + { + "IdCircuito": 841, + "Circuito": 841 + }, + { + "IdCircuito": 842, + "Circuito": 842 + }, + { + "IdCircuito": 843, + "Circuito": 843 + }, + { + "IdCircuito": 844, + "Circuito": 844 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c305", + "IdSeccion": 100, + "Seccion": "SALLIQUELÓ", + "Circuitos": [ + { + "IdCircuito": 746, + "Circuito": 746 + }, + { + "IdCircuito": "0746A", + "Circuito": "746A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c306", + "IdSeccion": 114, + "Seccion": "TORNQUIST", + "Circuitos": [ + { + "IdCircuito": 953, + "Circuito": 953 + }, + { + "IdCircuito": 954, + "Circuito": 954 + }, + { + "IdCircuito": 955, + "Circuito": 955 + }, + { + "IdCircuito": 956, + "Circuito": 956 + }, + { + "IdCircuito": "0955A", + "Circuito": "955A" + }, + { + "IdCircuito": "0955B", + "Circuito": "955B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c307", + "IdSeccion": 117, + "Seccion": "TRES ARROYOS", + "Circuitos": [ + { + "IdCircuito": 964, + "Circuito": 964 + }, + { + "IdCircuito": 968, + "Circuito": 968 + }, + { + "IdCircuito": 969, + "Circuito": 969 + }, + { + "IdCircuito": 970, + "Circuito": 970 + }, + { + "IdCircuito": 972, + "Circuito": 972 + }, + { + "IdCircuito": 973, + "Circuito": 973 + }, + { + "IdCircuito": 975, + "Circuito": 975 + }, + { + "IdCircuito": "0973A", + "Circuito": "973A" + }, + { + "IdCircuito": "0975A", + "Circuito": "975A" + }, + { + "IdCircuito": "0975B", + "Circuito": "975B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c308", + "IdSeccion": 120, + "Seccion": "MONTE HERMOSO", + "Circuitos": [ + { + "IdCircuito": 239, + "Circuito": 239 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c309", + "IdSeccion": 124, + "Seccion": "VILLARINO", + "Circuitos": [ + { + "IdCircuito": 1007, + "Circuito": 1007 + }, + { + "IdCircuito": 1008, + "Circuito": 1008 + }, + { + "IdCircuito": 1009, + "Circuito": 1009 + }, + { + "IdCircuito": 1010, + "Circuito": 1010 + }, + { + "IdCircuito": 1011, + "Circuito": 1011 + }, + { + "IdCircuito": "1011A", + "Circuito": "1011A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c30a", + "IdSeccion": 126, + "Seccion": "TRES LOMAS", + "Circuitos": [ + { + "IdCircuito": 744, + "Circuito": 744 + }, + { + "IdCircuito": 745, + "Circuito": 745 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c30b", + "IdSeccion": 6, + "Seccion": "AZUL", + "Circuitos": [ + { + "IdCircuito": 60, + "Circuito": 60 + }, + { + "IdCircuito": 61, + "Circuito": 61 + }, + { + "IdCircuito": 62, + "Circuito": 62 + }, + { + "IdCircuito": 63, + "Circuito": 63 + }, + { + "IdCircuito": 65, + "Circuito": 65 + }, + { + "IdCircuito": 66, + "Circuito": 66 + }, + { + "IdCircuito": 67, + "Circuito": 67 + }, + { + "IdCircuito": "0062A", + "Circuito": "62A" + }, + { + "IdCircuito": "0062B", + "Circuito": "62B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c30c", + "IdSeccion": 13, + "Seccion": "BOLÍVAR", + "Circuitos": [ + { + "IdCircuito": 125, + "Circuito": 125 + }, + { + "IdCircuito": 126, + "Circuito": 126 + }, + { + "IdCircuito": 127, + "Circuito": 127 + }, + { + "IdCircuito": 128, + "Circuito": 128 + }, + { + "IdCircuito": 129, + "Circuito": 129 + }, + { + "IdCircuito": 131, + "Circuito": 131 + }, + { + "IdCircuito": 132, + "Circuito": 132 + }, + { + "IdCircuito": 133, + "Circuito": 133 + }, + { + "IdCircuito": "0125A", + "Circuito": "125A" + }, + { + "IdCircuito": "0131A", + "Circuito": "131A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c30d", + "IdSeccion": 40, + "Seccion": "GENERAL ALVEAR", + "Circuitos": [ + { + "IdCircuito": 310, + "Circuito": 310 + }, + { + "IdCircuito": 311, + "Circuito": 311 + }, + { + "IdCircuito": 312, + "Circuito": 312 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c30e", + "IdSeccion": 84, + "Seccion": "OLAVARRÍA", + "Circuitos": [ + { + "IdCircuito": 711, + "Circuito": 711 + }, + { + "IdCircuito": 712, + "Circuito": 712 + }, + { + "IdCircuito": 714, + "Circuito": 714 + }, + { + "IdCircuito": 715, + "Circuito": 715 + }, + { + "IdCircuito": 716, + "Circuito": 716 + }, + { + "IdCircuito": 717, + "Circuito": 717 + }, + { + "IdCircuito": 718, + "Circuito": 718 + }, + { + "IdCircuito": 719, + "Circuito": 719 + }, + { + "IdCircuito": 720, + "Circuito": 720 + }, + { + "IdCircuito": 723, + "Circuito": 723 + }, + { + "IdCircuito": 725, + "Circuito": 725 + }, + { + "IdCircuito": "0711A", + "Circuito": "711A" + }, + { + "IdCircuito": "0711B", + "Circuito": "711B" + }, + { + "IdCircuito": "0711C", + "Circuito": "711C" + }, + { + "IdCircuito": "0711D", + "Circuito": "711D" + }, + { + "IdCircuito": "0711E", + "Circuito": "711E" + }, + { + "IdCircuito": "0718A", + "Circuito": "718A" + }, + { + "IdCircuito": "0723A", + "Circuito": "723A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c30f", + "IdSeccion": 97, + "Seccion": "ROQUE PÉREZ", + "Circuitos": [ + { + "IdCircuito": 832, + "Circuito": 832 + }, + { + "IdCircuito": 833, + "Circuito": 833 + }, + { + "IdCircuito": 834, + "Circuito": 834 + }, + { + "IdCircuito": 835, + "Circuito": 835 + }, + { + "IdCircuito": 836, + "Circuito": 836 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c310", + "IdSeccion": 99, + "Seccion": "SALADILLO", + "Circuitos": [ + { + "IdCircuito": 846, + "Circuito": 846 + }, + { + "IdCircuito": 847, + "Circuito": 847 + }, + { + "IdCircuito": 848, + "Circuito": 848 + }, + { + "IdCircuito": 849, + "Circuito": 849 + }, + { + "IdCircuito": 850, + "Circuito": 850 + }, + { + "IdCircuito": 851, + "Circuito": 851 + }, + { + "IdCircuito": 852, + "Circuito": 852 + }, + { + "IdCircuito": "0846A", + "Circuito": "846A" + }, + { + "IdCircuito": "0849A", + "Circuito": "849A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c311", + "IdSeccion": 112, + "Seccion": "TAPALQUÉ", + "Circuitos": [ + { + "IdCircuito": 944, + "Circuito": 944 + }, + { + "IdCircuito": 945, + "Circuito": 945 + }, + { + "IdCircuito": 946, + "Circuito": 946 + }, + { + "IdCircuito": 947, + "Circuito": 947 + }, + { + "IdCircuito": 948, + "Circuito": 948 + }, + { + "IdCircuito": 949, + "Circuito": 949 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c312", + "IdSeccion": 121, + "Seccion": "VEINTICINCO DE MAYO", + "Circuitos": [ + { + "IdCircuito": 980, + "Circuito": 980 + }, + { + "IdCircuito": 981, + "Circuito": 981 + }, + { + "IdCircuito": 982, + "Circuito": 982 + }, + { + "IdCircuito": 983, + "Circuito": 983 + }, + { + "IdCircuito": 984, + "Circuito": 984 + }, + { + "IdCircuito": 985, + "Circuito": 985 + }, + { + "IdCircuito": 986, + "Circuito": 986 + }, + { + "IdCircuito": 988, + "Circuito": 988 + }, + { + "IdCircuito": 989, + "Circuito": 989 + }, + { + "IdCircuito": 990, + "Circuito": 990 + }, + { + "IdCircuito": 991, + "Circuito": 991 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c313", + "IdSeccion": 63, + "Seccion": "LA PLATA", + "Circuitos": [ + { + "IdCircuito": 460, + "Circuito": 460 + }, + { + "IdCircuito": 461, + "Circuito": 461 + }, + { + "IdCircuito": 462, + "Circuito": 462 + }, + { + "IdCircuito": 463, + "Circuito": 463 + }, + { + "IdCircuito": 464, + "Circuito": 464 + }, + { + "IdCircuito": 465, + "Circuito": 465 + }, + { + "IdCircuito": 466, + "Circuito": 466 + }, + { + "IdCircuito": 467, + "Circuito": 467 + }, + { + "IdCircuito": 468, + "Circuito": 468 + }, + { + "IdCircuito": 469, + "Circuito": 469 + }, + { + "IdCircuito": 471, + "Circuito": 471 + }, + { + "IdCircuito": 472, + "Circuito": 472 + }, + { + "IdCircuito": 473, + "Circuito": 473 + }, + { + "IdCircuito": 474, + "Circuito": 474 + }, + { + "IdCircuito": 475, + "Circuito": 475 + }, + { + "IdCircuito": 476, + "Circuito": 476 + }, + { + "IdCircuito": 477, + "Circuito": 477 + }, + { + "IdCircuito": 480, + "Circuito": 480 + }, + { + "IdCircuito": 481, + "Circuito": 481 + }, + { + "IdCircuito": 482, + "Circuito": 482 + }, + { + "IdCircuito": 483, + "Circuito": 483 + }, + { + "IdCircuito": 484, + "Circuito": 484 + }, + { + "IdCircuito": 485, + "Circuito": 485 + }, + { + "IdCircuito": 486, + "Circuito": 486 + }, + { + "IdCircuito": 487, + "Circuito": 487 + }, + { + "IdCircuito": 488, + "Circuito": 488 + }, + { + "IdCircuito": 493, + "Circuito": 493 + }, + { + "IdCircuito": 495, + "Circuito": 495 + }, + { + "IdCircuito": 496, + "Circuito": 496 + }, + { + "IdCircuito": 497, + "Circuito": 497 + }, + { + "IdCircuito": 498, + "Circuito": 498 + }, + { + "IdCircuito": 501, + "Circuito": 501 + }, + { + "IdCircuito": 502, + "Circuito": 502 + }, + { + "IdCircuito": 503, + "Circuito": 503 + }, + { + "IdCircuito": 504, + "Circuito": 504 + }, + { + "IdCircuito": 505, + "Circuito": 505 + }, + { + "IdCircuito": 508, + "Circuito": 508 + }, + { + "IdCircuito": 509, + "Circuito": 509 + }, + { + "IdCircuito": 516, + "Circuito": 516 + }, + { + "IdCircuito": 517, + "Circuito": 517 + }, + { + "IdCircuito": 518, + "Circuito": 518 + }, + { + "IdCircuito": 519, + "Circuito": 519 + }, + { + "IdCircuito": 520, + "Circuito": 520 + }, + { + "IdCircuito": 521, + "Circuito": 521 + }, + { + "IdCircuito": "0496A", + "Circuito": "496A" + }, + { + "IdCircuito": "0496B", + "Circuito": "496B" + }, + { + "IdCircuito": "0496C", + "Circuito": "496C" + }, + { + "IdCircuito": "0496D", + "Circuito": "496D" + }, + { + "IdCircuito": "0496E", + "Circuito": "496E" + }, + { + "IdCircuito": "0496F", + "Circuito": "496F" + }, + { + "IdCircuito": "0497A", + "Circuito": "497A" + }, + { + "IdCircuito": "0497B", + "Circuito": "497B" + }, + { + "IdCircuito": "0497C", + "Circuito": "497C" + }, + { + "IdCircuito": "0497D", + "Circuito": "497D" + }, + { + "IdCircuito": "0497E", + "Circuito": "497E" + }, + { + "IdCircuito": "0497F", + "Circuito": "497F" + }, + { + "IdCircuito": "0503A", + "Circuito": "503A" + }, + { + "IdCircuito": "0504A", + "Circuito": "504A" + }, + { + "IdCircuito": "0505A", + "Circuito": "505A" + }, + { + "IdCircuito": "0505B", + "Circuito": "505B" + }, + { + "IdCircuito": "0508A", + "Circuito": "508A" + }, + { + "IdCircuito": "0508B", + "Circuito": "508B" + }, + { + "IdCircuito": "0508C", + "Circuito": "508C" + }, + { + "IdCircuito": "0508D", + "Circuito": "508D" + }, + { + "IdCircuito": "0508E", + "Circuito": "508E" + }, + { + "IdCircuito": "0508F", + "Circuito": "508F" + }, + { + "IdCircuito": "0508G", + "Circuito": "508G" + }, + { + "IdCircuito": "0509A", + "Circuito": "509A" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c314", + "IdDistrito": 3, + "Distrito": "CATAMARCA", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c315", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c316", + "IdSeccion": 1, + "Seccion": "CAPITAL", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - CIRCUITO 0001" + }, + { + "IdCircuito": 2, + "Circuito": "2 - CIRCUITO 0002" + }, + { + "IdCircuito": 3, + "Circuito": "3 - CIRCUITO 0003" + }, + { + "IdCircuito": 4, + "Circuito": "4 - CIRCUITO 0004" + }, + { + "IdCircuito": 5, + "Circuito": "5 - CIRCUITO 0005" + }, + { + "IdCircuito": 6, + "Circuito": "6 - CIRCUITO 0006" + }, + { + "IdCircuito": 7, + "Circuito": "7 - CIRCUITO 0007" + }, + { + "IdCircuito": 8, + "Circuito": "8 - CIRCUITO 0008" + }, + { + "IdCircuito": 9, + "Circuito": "9 - CIRCUITO 0009" + }, + { + "IdCircuito": "0003A", + "Circuito": "3A - VALLE CHICO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c317", + "IdSeccion": 2, + "Seccion": "CAPAYÁN", + "Circuitos": [ + { + "IdCircuito": 10, + "Circuito": "10 - CARRANZA" + }, + { + "IdCircuito": 11, + "Circuito": "11 - CONCEPCION" + }, + { + "IdCircuito": 12, + "Circuito": "12 - CONETA" + }, + { + "IdCircuito": 13, + "Circuito": "13 - CHUMBICHA" + }, + { + "IdCircuito": 14, + "Circuito": "14 - HUILLAPIMA" + }, + { + "IdCircuito": 15, + "Circuito": "15 - LOS ANGELES" + }, + { + "IdCircuito": 16, + "Circuito": "16 - MIRAFLORES" + }, + { + "IdCircuito": 17, + "Circuito": "17 - PUNTA DEL RIO" + }, + { + "IdCircuito": 18, + "Circuito": "18 - SAN MARTIN" + }, + { + "IdCircuito": 19, + "Circuito": "19 - SAN PEDRO (CAPAYÁN)" + }, + { + "IdCircuito": 20, + "Circuito": "20 - TELARITOS" + }, + { + "IdCircuito": 21, + "Circuito": "21 - VILLA (CAPAYÁN)" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c318", + "IdSeccion": 3, + "Seccion": "LA PAZ", + "Circuitos": [ + { + "IdCircuito": 22, + "Circuito": "22 - ANJULI" + }, + { + "IdCircuito": 23, + "Circuito": "23 - EL QUIMILO" + }, + { + "IdCircuito": 24, + "Circuito": "24 - ESQUIU" + }, + { + "IdCircuito": 25, + "Circuito": "25 - ICANO" + }, + { + "IdCircuito": 26, + "Circuito": "26 - LA GUARDIA" + }, + { + "IdCircuito": 27, + "Circuito": "27 - LAS PALMITAS" + }, + { + "IdCircuito": 28, + "Circuito": "28 - QUIROS" + }, + { + "IdCircuito": 29, + "Circuito": "29 - RAMBLONES" + }, + { + "IdCircuito": 30, + "Circuito": "30 - RECREO" + }, + { + "IdCircuito": 31, + "Circuito": "31 - RIO DE LA DORADA" + }, + { + "IdCircuito": 32, + "Circuito": "32 - SAN ANTONIO (LA PAZ)" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c319", + "IdSeccion": 4, + "Seccion": "ANCASTI", + "Circuitos": [ + { + "IdCircuito": 33, + "Circuito": "33 - ANQUINCILA" + }, + { + "IdCircuito": 34, + "Circuito": "34 - LA CANDELARIA" + }, + { + "IdCircuito": 35, + "Circuito": "35 - EL CHORRO" + }, + { + "IdCircuito": 36, + "Circuito": "36 - EL TACO" + }, + { + "IdCircuito": 37, + "Circuito": "37 - IPIZCA" + }, + { + "IdCircuito": 38, + "Circuito": "38 - LA MAJADA" + }, + { + "IdCircuito": 39, + "Circuito": "39 - LOS MOGOTES" + }, + { + "IdCircuito": 40, + "Circuito": "40 - QUEBRACHAL" + }, + { + "IdCircuito": 41, + "Circuito": "41 - TACANA" + }, + { + "IdCircuito": 42, + "Circuito": "42 - VILLA (ANCASTI)" + }, + { + "IdCircuito": 43, + "Circuito": "43 - YERBA BUENA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c31a", + "IdSeccion": 5, + "Seccion": "EL ALTO", + "Circuitos": [ + { + "IdCircuito": 44, + "Circuito": "44 - ACHALCO" + }, + { + "IdCircuito": 45, + "Circuito": "45 - CHANAR LAGUNA" + }, + { + "IdCircuito": 46, + "Circuito": "46 - GUAYAMBA" + }, + { + "IdCircuito": 47, + "Circuito": "47 - INFANZON" + }, + { + "IdCircuito": 48, + "Circuito": "48 - LOS MORTEROS" + }, + { + "IdCircuito": 49, + "Circuito": "49 - VILISMAN" + }, + { + "IdCircuito": 50, + "Circuito": "50 - VILLA (EL ALTO)" + }, + { + "IdCircuito": "0044A", + "Circuito": "44A - TAPSO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c31b", + "IdSeccion": 6, + "Seccion": "SANTA ROSA", + "Circuitos": [ + { + "IdCircuito": 51, + "Circuito": "51 - ALIJILAN" + }, + { + "IdCircuito": 52, + "Circuito": "52 - AMPOLLA" + }, + { + "IdCircuito": 53, + "Circuito": "53 - BANADO DE OVANTA" + }, + { + "IdCircuito": 54, + "Circuito": "54 - CORTADERAS" + }, + { + "IdCircuito": 55, + "Circuito": "55 - LA BAJADA" + }, + { + "IdCircuito": 56, + "Circuito": "56 - LAS CANAS" + }, + { + "IdCircuito": 57, + "Circuito": "57 - LAVALLE" + }, + { + "IdCircuito": 58, + "Circuito": "58 - LOS ALTOS" + }, + { + "IdCircuito": 59, + "Circuito": "59 - MANANTIALES" + }, + { + "IdCircuito": 60, + "Circuito": "60 - PTA. GRANDE" + }, + { + "IdCircuito": 61, + "Circuito": "61 - SAN PEDRO (SANTA ROSA)" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c31c", + "IdSeccion": 7, + "Seccion": "PACLÍN", + "Circuitos": [ + { + "IdCircuito": 62, + "Circuito": "62 - AMADORES" + }, + { + "IdCircuito": 63, + "Circuito": "63 - BALCOZNA" + }, + { + "IdCircuito": 64, + "Circuito": "64 - LA HIGUERA" + }, + { + "IdCircuito": 65, + "Circuito": "65 - LA MERCED" + }, + { + "IdCircuito": 66, + "Circuito": "66 - LA VINA" + }, + { + "IdCircuito": 67, + "Circuito": "67 - PALO LABRADO" + }, + { + "IdCircuito": 68, + "Circuito": "68 - SAN ANTONIO (PACLÍN)" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c31d", + "IdSeccion": 8, + "Seccion": "VALLE VIEJO", + "Circuitos": [ + { + "IdCircuito": 69, + "Circuito": "69 - HUAYCAMA" + }, + { + "IdCircuito": 70, + "Circuito": "70 - LAS TEJAS" + }, + { + "IdCircuito": 71, + "Circuito": "71 - EL PORTEZUELO" + }, + { + "IdCircuito": 72, + "Circuito": "72 - SAN ISIDRO" + }, + { + "IdCircuito": 73, + "Circuito": "73 - SANTA CRUZ" + }, + { + "IdCircuito": 74, + "Circuito": "74 - SANTA ROSA (VALLE VIEJO)" + }, + { + "IdCircuito": 75, + "Circuito": "75 - SUMALAO" + }, + { + "IdCircuito": 76, + "Circuito": "76 - VILLA DOLORES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c31e", + "IdSeccion": 9, + "Seccion": "FRAY MAMERTO ESQUIÚ", + "Circuitos": [ + { + "IdCircuito": 77, + "Circuito": "77 - LA CARRERA (F.M.ESQUIU)" + }, + { + "IdCircuito": 78, + "Circuito": "78 - LAS PIRQUITAS (F.M.ESQUIU" + }, + { + "IdCircuito": 79, + "Circuito": "79 - POMANCILLO (F.M.ESQUIU)" + }, + { + "IdCircuito": 80, + "Circuito": "80 - SAN ANTONIO (F.M.ESQUIU)" + }, + { + "IdCircuito": 81, + "Circuito": "81 - SAN JOSE (F.M.ESQUIU)" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c31f", + "IdSeccion": 10, + "Seccion": "AMBATO", + "Circuitos": [ + { + "IdCircuito": 82, + "Circuito": "82 - COLPES (AMBATO)" + }, + { + "IdCircuito": 83, + "Circuito": "83 - EL RODEO" + }, + { + "IdCircuito": 84, + "Circuito": "84 - LA PUERTA" + }, + { + "IdCircuito": 85, + "Circuito": "85 - LAS CHACRITAS" + }, + { + "IdCircuito": 86, + "Circuito": "86 - LAS JUNTAS (AMBATO)" + }, + { + "IdCircuito": 87, + "Circuito": "87 - LOS CASTILLO" + }, + { + "IdCircuito": 88, + "Circuito": "88 - LOS VARELA" + }, + { + "IdCircuito": 89, + "Circuito": "89 - SINGUIL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c320", + "IdSeccion": 11, + "Seccion": "POMAN", + "Circuitos": [ + { + "IdCircuito": 90, + "Circuito": "90 - COLANA" + }, + { + "IdCircuito": 91, + "Circuito": "91 - COLPES (POMAN)" + }, + { + "IdCircuito": 92, + "Circuito": "92 - EL PAJONAL" + }, + { + "IdCircuito": 93, + "Circuito": "93 - MUTQUIN" + }, + { + "IdCircuito": 94, + "Circuito": "94 - RINCON" + }, + { + "IdCircuito": 95, + "Circuito": "95 - SAN MIGUEL" + }, + { + "IdCircuito": 96, + "Circuito": "96 - SAUJIL (POMAN)" + }, + { + "IdCircuito": 97, + "Circuito": "97 - SIJAN" + }, + { + "IdCircuito": 98, + "Circuito": "98 - VILLA (POMAN)" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c321", + "IdSeccion": 12, + "Seccion": "ANDALGALÁ", + "Circuitos": [ + { + "IdCircuito": 99, + "Circuito": "99 - ACONQUIJA" + }, + { + "IdCircuito": 100, + "Circuito": "100 - AGUA DE LAS PALOMAS" + }, + { + "IdCircuito": 101, + "Circuito": "101 - AMANAO" + }, + { + "IdCircuito": 102, + "Circuito": "102 - CIUDAD (ANDALGALÁ)" + }, + { + "IdCircuito": 103, + "Circuito": "103 - CHAQUIAGO" + }, + { + "IdCircuito": 104, + "Circuito": "104 - CHOYA" + }, + { + "IdCircuito": 105, + "Circuito": "105 - EL POTRERO" + }, + { + "IdCircuito": 106, + "Circuito": "106 - LA ALUMBRERA" + }, + { + "IdCircuito": 107, + "Circuito": "107 - MALLI" + }, + { + "IdCircuito": 108, + "Circuito": "108 - MINAS CAPILLITAS" + }, + { + "IdCircuito": 109, + "Circuito": "109 - VILLA VIL (ANDALGALÁ)" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c322", + "IdSeccion": 13, + "Seccion": "BELÉN", + "Circuitos": [ + { + "IdCircuito": 110, + "Circuito": "110 - AMPUJACO" + }, + { + "IdCircuito": 111, + "Circuito": "111 - CORRAL QUEMADO" + }, + { + "IdCircuito": 112, + "Circuito": "112 - CULAMPAJA" + }, + { + "IdCircuito": 113, + "Circuito": "113 - EL DURAZNO" + }, + { + "IdCircuito": 114, + "Circuito": "114 - HUALFIN" + }, + { + "IdCircuito": 115, + "Circuito": "115 - LA CIENAGA" + }, + { + "IdCircuito": 116, + "Circuito": "116 - LAGUNA BLANCA" + }, + { + "IdCircuito": 117, + "Circuito": "117 - LA P. DE S. JOSE" + }, + { + "IdCircuito": 118, + "Circuito": "118 - LAS CUEVAS" + }, + { + "IdCircuito": 119, + "Circuito": "119 - LAS JUNTAS (BELÉN)" + }, + { + "IdCircuito": 120, + "Circuito": "120 - LONDRES" + }, + { + "IdCircuito": 121, + "Circuito": "121 - LOS NACIMIENTOS" + }, + { + "IdCircuito": 122, + "Circuito": "122 - P. DE CORRAL QUEMADO" + }, + { + "IdCircuito": 123, + "Circuito": "123 - SAN FERNANDO" + }, + { + "IdCircuito": 124, + "Circuito": "124 - CIUDAD (BELÉN)" + }, + { + "IdCircuito": 125, + "Circuito": "125 - VILLA VIL (BELÉN)" + }, + { + "IdCircuito": "0113A", + "Circuito": "113A - EL TOLAR" + }, + { + "IdCircuito": "0116A", + "Circuito": "116A - CARACHI" + }, + { + "IdCircuito": "0116B", + "Circuito": "116B - AGUAS CALIENTES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c323", + "IdSeccion": 14, + "Seccion": "ANTOFAGASTA DE LA SIERRA", + "Circuitos": [ + { + "IdCircuito": 126, + "Circuito": "126 - ANTOF. DE LA SIERRA" + }, + { + "IdCircuito": 127, + "Circuito": "127 - EL PENON" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c324", + "IdSeccion": 15, + "Seccion": "TINOGASTA", + "Circuitos": [ + { + "IdCircuito": 128, + "Circuito": "128 - BANDA DE LUCERO" + }, + { + "IdCircuito": 129, + "Circuito": "129 - CERRO NEGRO" + }, + { + "IdCircuito": 130, + "Circuito": "130 - COPACABANA" + }, + { + "IdCircuito": 131, + "Circuito": "131 - EL PUESTO" + }, + { + "IdCircuito": 132, + "Circuito": "132 - FIAMBALA" + }, + { + "IdCircuito": 133, + "Circuito": "133 - LA MESADA" + }, + { + "IdCircuito": 134, + "Circuito": "134 - LA PUNTILLA" + }, + { + "IdCircuito": 135, + "Circuito": "135 - LA RAMADITA" + }, + { + "IdCircuito": 136, + "Circuito": "136 - MEDANITOS" + }, + { + "IdCircuito": 137, + "Circuito": "137 - PALO BLANCO" + }, + { + "IdCircuito": 138, + "Circuito": "138 - SALADO" + }, + { + "IdCircuito": 139, + "Circuito": "139 - SAN JOSE (TINOGASTA)" + }, + { + "IdCircuito": 140, + "Circuito": "140 - SANTA ROSA (TINOGASTA)" + }, + { + "IdCircuito": 141, + "Circuito": "141 - SAUJIL (TINOGASTA)" + }, + { + "IdCircuito": 142, + "Circuito": "142 - TATON" + }, + { + "IdCircuito": 143, + "Circuito": "143 - CIUDAD (TINOGASTA)" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c325", + "IdSeccion": 16, + "Seccion": "SANTA MARÍA", + "Circuitos": [ + { + "IdCircuito": 144, + "Circuito": "144 - AGUA AMARILLA" + }, + { + "IdCircuito": 145, + "Circuito": "145 - ANDALHUALA" + }, + { + "IdCircuito": 146, + "Circuito": "146 - CASA DE PIEDRA" + }, + { + "IdCircuito": 147, + "Circuito": "147 - CHANAR PUNCO" + }, + { + "IdCircuito": 148, + "Circuito": "148 - EL CAJON" + }, + { + "IdCircuito": 149, + "Circuito": "149 - FUERTE QUEMADO" + }, + { + "IdCircuito": 150, + "Circuito": "150 - LA HOYADA" + }, + { + "IdCircuito": 151, + "Circuito": "151 - LORO HUASI" + }, + { + "IdCircuito": 152, + "Circuito": "152 - PUNTA DE BALASTO" + }, + { + "IdCircuito": 153, + "Circuito": "153 - SAN JOSE (SANTA MARÍA)" + }, + { + "IdCircuito": 154, + "Circuito": "154 - CIUDAD (SANTA MARÍA)" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c326", + "IdDistrito": 4, + "Distrito": "CÓRDOBA", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c327", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c328", + "IdSeccion": 1, + "Seccion": "CAPITAL", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - SECCIONAL PRIMERA" + }, + { + "IdCircuito": 2, + "Circuito": "2 - SECCIONAL SEGUNDA" + }, + { + "IdCircuito": 3, + "Circuito": "3 - SECCIONAL TERCERA" + }, + { + "IdCircuito": 4, + "Circuito": "4 - NUEVA CORDOBA" + }, + { + "IdCircuito": 5, + "Circuito": "5 - ALTAMIRA" + }, + { + "IdCircuito": 6, + "Circuito": "6 - ALTO GRAL PAZ" + }, + { + "IdCircuito": 7, + "Circuito": "7 - AEROPUERTO" + }, + { + "IdCircuito": 8, + "Circuito": "8 - LA FLORESTA NORTE" + }, + { + "IdCircuito": 9, + "Circuito": "9 - ESCOBAR" + }, + { + "IdCircuito": 10, + "Circuito": "10 - BELLA VISTA" + }, + { + "IdCircuito": 11, + "Circuito": "11 - AERONAUTICO" + }, + { + "IdCircuito": 12, + "Circuito": "12 - AVELLANEDA" + }, + { + "IdCircuito": 13, + "Circuito": "13 - LEANDRO N. ALEM" + }, + { + "IdCircuito": 14, + "Circuito": "14 - ARGUELLO" + }, + { + "IdCircuito": "0004A", + "Circuito": "4A - PUEBLO LAS FLORES" + }, + { + "IdCircuito": "0004B", + "Circuito": "4B - VILLA REVOL" + }, + { + "IdCircuito": "0004C", + "Circuito": "4C - INAUDI" + }, + { + "IdCircuito": "0004D", + "Circuito": "4D - VILLA EUCARISTICA" + }, + { + "IdCircuito": "0004E", + "Circuito": "4E - NUESTRO HOGAR III" + }, + { + "IdCircuito": "0004F", + "Circuito": "4F - CIUDAD OBISPO ANGELELLI" + }, + { + "IdCircuito": "0005A", + "Circuito": "5A - COLONIA LOLA" + }, + { + "IdCircuito": "0005B", + "Circuito": "5B - DEAN FUNES" + }, + { + "IdCircuito": "0005C", + "Circuito": "5C - EMPALME" + }, + { + "IdCircuito": "0005D", + "Circuito": "5D - MALDONADO" + }, + { + "IdCircuito": "0005E", + "Circuito": "5E - VILLA BUSTOS" + }, + { + "IdCircuito": "0005F", + "Circuito": "5F - RENACIMIENTO" + }, + { + "IdCircuito": "0005G", + "Circuito": "5G - SAN VICENTE" + }, + { + "IdCircuito": "0005H", + "Circuito": "5H - VILLA BOEDO" + }, + { + "IdCircuito": "0005I", + "Circuito": "5I - COLINAS DEL SUR" + }, + { + "IdCircuito": "0006A", + "Circuito": "6A - BAJADA DE PIEDRA" + }, + { + "IdCircuito": "0006B", + "Circuito": "6B - CHACRA DE LA MERCED" + }, + { + "IdCircuito": "0006C", + "Circuito": "6C - GRAL PAZ" + }, + { + "IdCircuito": "0006D", + "Circuito": "6D - JUNIORS" + }, + { + "IdCircuito": "0006E", + "Circuito": "6E - LA FLORESTA SUD" + }, + { + "IdCircuito": "0006F", + "Circuito": "6F - YAPEYU" + }, + { + "IdCircuito": "0007A", + "Circuito": "7A - GUINAZU" + }, + { + "IdCircuito": "0007B", + "Circuito": "7B - ALTA CORDOBA" + }, + { + "IdCircuito": "0007C", + "Circuito": "7C - CNO. A PAJAS BLANCAS" + }, + { + "IdCircuito": "0007D", + "Circuito": "7D - COFICO" + }, + { + "IdCircuito": "0007E", + "Circuito": "7E - MARQUES DE SOBREMONTE" + }, + { + "IdCircuito": "0007F", + "Circuito": "7F - JORGE NEWBERY" + }, + { + "IdCircuito": "0007G", + "Circuito": "7G - PANAMERICANO" + }, + { + "IdCircuito": "0008A", + "Circuito": "8A - PALMAR" + }, + { + "IdCircuito": "0008B", + "Circuito": "8B - PUEYRREDON" + }, + { + "IdCircuito": "0008C", + "Circuito": "8C - VILLA LOS PINOS" + }, + { + "IdCircuito": "0009A", + "Circuito": "9A - LA FRANCE" + }, + { + "IdCircuito": "0009B", + "Circuito": "9B - LAS MARGARITAS" + }, + { + "IdCircuito": "0009C", + "Circuito": "9C - LOS PARAISOS" + }, + { + "IdCircuito": "0009D", + "Circuito": "9D - POETA LUGONES" + }, + { + "IdCircuito": "0009E", + "Circuito": "9E - PROVIDENCIA" + }, + { + "IdCircuito": "0009F", + "Circuito": "9F - SAN MARTIN" + }, + { + "IdCircuito": "0009G", + "Circuito": "9G - VILLA CABRERA" + }, + { + "IdCircuito": "0010A", + "Circuito": "10A - CABILDO" + }, + { + "IdCircuito": "0010B", + "Circuito": "10B - CIUDADELA" + }, + { + "IdCircuito": "0010C", + "Circuito": "10C - COMERCIAL" + }, + { + "IdCircuito": "0010D", + "Circuito": "10D - CONGRESO" + }, + { + "IdCircuito": "0010E", + "Circuito": "10E - ESTACION FLORES" + }, + { + "IdCircuito": "0010F", + "Circuito": "10F - MATIENZO" + }, + { + "IdCircuito": "0010G", + "Circuito": "10G - OBSERVATORIO" + }, + { + "IdCircuito": "0010H", + "Circuito": "10H - PARQUE CAPITAL" + }, + { + "IdCircuito": "0010I", + "Circuito": "10I - PARQUE HORIZONTE" + }, + { + "IdCircuito": "0010J", + "Circuito": "10J - SANTA ISABEL" + }, + { + "IdCircuito": "0010K", + "Circuito": "10K - VICOR" + }, + { + "IdCircuito": "0010L", + "Circuito": "10L - VILLA EL LIBERTADOR" + }, + { + "IdCircuito": "0010M", + "Circuito": "10M - AMPLIACION CABILDO" + }, + { + "IdCircuito": "0011A", + "Circuito": "11A - ALTO ALBERDI" + }, + { + "IdCircuito": "0011B", + "Circuito": "11B - DON BOSCO" + }, + { + "IdCircuito": "0011C", + "Circuito": "11C - LAS PALMAS" + }, + { + "IdCircuito": "0011D", + "Circuito": "11D - LOS NARANJOS" + }, + { + "IdCircuito": "0011E", + "Circuito": "11E - LOS PLATANOS" + }, + { + "IdCircuito": "0011F", + "Circuito": "11F - LOS ROBLES" + }, + { + "IdCircuito": "0011G", + "Circuito": "11G - PARQUE REPUBLICA" + }, + { + "IdCircuito": "0011H", + "Circuito": "11H - QUEBRADA LAS ROSAS" + }, + { + "IdCircuito": "0011I", + "Circuito": "11I - RESIDENCIAL SAN ROQUE" + }, + { + "IdCircuito": "0011J", + "Circuito": "11J - SANTA ANA" + }, + { + "IdCircuito": "0011K", + "Circuito": "11K - VILLA GRAL URQUIZA" + }, + { + "IdCircuito": "0011L", + "Circuito": "11L - COUNTRYS DEL OESTE" + }, + { + "IdCircuito": "0011M", + "Circuito": "11M - VALLE ESCONDIDO" + }, + { + "IdCircuito": "0012A", + "Circuito": "12A - CARCANO" + }, + { + "IdCircuito": "0012B", + "Circuito": "12B - COLON" + }, + { + "IdCircuito": "0012C", + "Circuito": "12C - CORONEL OLMEDO" + }, + { + "IdCircuito": "0012D", + "Circuito": "12D - JOSE IGNACIO DIAZ" + }, + { + "IdCircuito": "0012E", + "Circuito": "12E - FERREYRA" + }, + { + "IdCircuito": "0012F", + "Circuito": "12F - JOSE HERNANDEZ" + }, + { + "IdCircuito": "0012G", + "Circuito": "12G - ITUZAINGO" + }, + { + "IdCircuito": "0012H", + "Circuito": "12H - LOS CERVECEROS" + }, + { + "IdCircuito": "0012I", + "Circuito": "12I - CIUDAD DE MIS SUENOS" + }, + { + "IdCircuito": "0013A", + "Circuito": "13A - AYACUCHO" + }, + { + "IdCircuito": "0013B", + "Circuito": "13B - EL GATEADO" + }, + { + "IdCircuito": "0013C", + "Circuito": "13C - GENERAL BUSTOS" + }, + { + "IdCircuito": "0013D", + "Circuito": "13D - JARDIN ARENALES" + }, + { + "IdCircuito": "0013E", + "Circuito": "13E - LA DOROTEA" + }, + { + "IdCircuito": "0013F", + "Circuito": "13F - NUEVA ITALIA" + }, + { + "IdCircuito": "0013G", + "Circuito": "13G - PARQUE LICEO" + }, + { + "IdCircuito": "0013H", + "Circuito": "13H - PATRICIOS" + }, + { + "IdCircuito": "0013I", + "Circuito": "13I - SAN JORGE" + }, + { + "IdCircuito": "0013J", + "Circuito": "13J - VILLA AZALAIS" + }, + { + "IdCircuito": "0013K", + "Circuito": "13K - VILLA ESQUIU" + }, + { + "IdCircuito": "0013L", + "Circuito": "13L - VILLA GRAN PARQUE" + }, + { + "IdCircuito": "0013M", + "Circuito": "13M - CAMINO A COLONIA TIROLESA" + }, + { + "IdCircuito": "0013N", + "Circuito": "13N - YOFRE" + }, + { + "IdCircuito": "0013O", + "Circuito": "13O - CHACHAPOYAS" + }, + { + "IdCircuito": "0014A", + "Circuito": "14A - ARGUELLO NORTE" + }, + { + "IdCircuito": "0014B", + "Circuito": "14B - ARGUELLO PRIMERO" + }, + { + "IdCircuito": "0014C", + "Circuito": "14C - ARGUELLO SEGUNDO" + }, + { + "IdCircuito": "0014D", + "Circuito": "14D - CERRO DE LAS ROSAS" + }, + { + "IdCircuito": "0014E", + "Circuito": "14E - CERRO NORTE" + }, + { + "IdCircuito": "0014F", + "Circuito": "14F - GRANJA DE FUNES" + }, + { + "IdCircuito": "0014G", + "Circuito": "14G - LOS BOULEVARES" + }, + { + "IdCircuito": "0014H", + "Circuito": "14H - MERCANTIL" + }, + { + "IdCircuito": "0014I", + "Circuito": "14I - SANTA CECILIA" + }, + { + "IdCircuito": "0014J", + "Circuito": "14J - URCA" + }, + { + "IdCircuito": "0014K", + "Circuito": "14K - VILLA ALLENDE PARQUE" + }, + { + "IdCircuito": "0014L", + "Circuito": "14L - VILLA BELGRANO" + }, + { + "IdCircuito": "0014M", + "Circuito": "14M - VILLA CENTENARIO" + }, + { + "IdCircuito": "0014N", + "Circuito": "14N - VILLA CORNU" + }, + { + "IdCircuito": "0014O", + "Circuito": "14O - VILLA 9 DE JULIO" + }, + { + "IdCircuito": "0014P", + "Circuito": "14P - VILLA RIVERA INDARTE" + }, + { + "IdCircuito": "0014Q", + "Circuito": "14Q - VILLA WARCALDE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c329", + "IdSeccion": 2, + "Seccion": "CALAMUCHITA", + "Circuitos": [ + { + "IdCircuito": 15, + "Circuito": "15 - AMBOY" + }, + { + "IdCircuito": 16, + "Circuito": "16 - ATHOS PAMPA" + }, + { + "IdCircuito": 17, + "Circuito": "17 - EMBALSE" + }, + { + "IdCircuito": 18, + "Circuito": "18 - LA CRUZ" + }, + { + "IdCircuito": 19, + "Circuito": "19 - LOS CONDORES" + }, + { + "IdCircuito": 20, + "Circuito": "20 - LOS REARTES" + }, + { + "IdCircuito": 21, + "Circuito": "21 - LAS BAJADAS" + }, + { + "IdCircuito": 22, + "Circuito": "22 - RIO DE LOS SAUCES" + }, + { + "IdCircuito": 23, + "Circuito": "23 - VILLA YACANTO" + }, + { + "IdCircuito": 24, + "Circuito": "24 - RUMIPAL" + }, + { + "IdCircuito": 25, + "Circuito": "25 - SAN AGUSTIN" + }, + { + "IdCircuito": 26, + "Circuito": "26 - SANTA ROSA" + }, + { + "IdCircuito": "0015A", + "Circuito": "15A - VILLA AMANCAY" + }, + { + "IdCircuito": "0016A", + "Circuito": "16A - VILLA LA MERCED" + }, + { + "IdCircuito": "0016B", + "Circuito": "16B - CHAMPAQUI" + }, + { + "IdCircuito": "0016C", + "Circuito": "16C - VILLA BERNA" + }, + { + "IdCircuito": "0018A", + "Circuito": "18A - LUTTI" + }, + { + "IdCircuito": "0018B", + "Circuito": "18B - CALERAS DE CALAMUCHITA" + }, + { + "IdCircuito": "0018C", + "Circuito": "18C - VILLA CANADA DEL SAUCE" + }, + { + "IdCircuito": "0018D", + "Circuito": "18D - VILLA QUILLINZO" + }, + { + "IdCircuito": "0020A", + "Circuito": "20A - VILLA GENERAL BELGRANO" + }, + { + "IdCircuito": "0020B", + "Circuito": "20B - VI.CIUD.PQUE.LOS REARTES" + }, + { + "IdCircuito": "0024A", + "Circuito": "24A - VILLA DEL DIQUE" + }, + { + "IdCircuito": "0025A", + "Circuito": "25A - CALMAYO" + }, + { + "IdCircuito": "0025B", + "Circuito": "25B - LOS MOLINOS" + }, + { + "IdCircuito": "0026A", + "Circuito": "26A - SEGUNDA USINA" + }, + { + "IdCircuito": "0026B", + "Circuito": "26B - SAN IGNACIO" + }, + { + "IdCircuito": "0328A", + "Circuito": "328A - LA CUMBRECITA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c32a", + "IdSeccion": 3, + "Seccion": "COLÓN", + "Circuitos": [ + { + "IdCircuito": 27, + "Circuito": "27 - ASCOCHINGA" + }, + { + "IdCircuito": 28, + "Circuito": "28 - CALERA" + }, + { + "IdCircuito": 29, + "Circuito": "29 - COLÓNIA CAROYA" + }, + { + "IdCircuito": 30, + "Circuito": "30 - COLÓNIA TIROLESA" + }, + { + "IdCircuito": 31, + "Circuito": "31 - EL MANZANO" + }, + { + "IdCircuito": 32, + "Circuito": "32 - GENERAL PAZ" + }, + { + "IdCircuito": 33, + "Circuito": "33 - JESUS MARIA" + }, + { + "IdCircuito": 34, + "Circuito": "34 - JUAREZ CELMAN" + }, + { + "IdCircuito": 35, + "Circuito": "35 - MALVINAS ARGENTINAS" + }, + { + "IdCircuito": 36, + "Circuito": "36 - LA PUERTA" + }, + { + "IdCircuito": 37, + "Circuito": "37 - RIO CEBALLOS" + }, + { + "IdCircuito": 38, + "Circuito": "38 - SALSIPUEDES" + }, + { + "IdCircuito": 39, + "Circuito": "39 - SANTA TERESA" + }, + { + "IdCircuito": 40, + "Circuito": "40 - UNQUILLO" + }, + { + "IdCircuito": 41, + "Circuito": "41 - VILLA ALLENDE" + }, + { + "IdCircuito": "0028A", + "Circuito": "28A - CALERA CENTRAL" + }, + { + "IdCircuito": "0029A", + "Circuito": "29A - TINOCO" + }, + { + "IdCircuito": "0031A", + "Circuito": "31A - AGUA DE ORO" + }, + { + "IdCircuito": "0031B", + "Circuito": "31B - VILLA CERRO AZUL" + }, + { + "IdCircuito": "0033A", + "Circuito": "33A - COLÓNIA VICENTE AGUERO" + }, + { + "IdCircuito": "0035A", + "Circuito": "35A - MI GRANJA" + }, + { + "IdCircuito": "0040A", + "Circuito": "40A - MENDIOLAZA" + }, + { + "IdCircuito": "0041A", + "Circuito": "41A - SALDAN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c32b", + "IdSeccion": 4, + "Seccion": "CRUZ DEL EJE", + "Circuitos": [ + { + "IdCircuito": 42, + "Circuito": "42 - BANADO DE SOTO" + }, + { + "IdCircuito": 43, + "Circuito": "43 - CANDELARIA" + }, + { + "IdCircuito": 44, + "Circuito": "44 - CRUZ DEL EJE" + }, + { + "IdCircuito": 45, + "Circuito": "45 - EL BRETE" + }, + { + "IdCircuito": 46, + "Circuito": "46 - GUANACO MUERTO" + }, + { + "IdCircuito": 47, + "Circuito": "47 - IGLESIA VIEJA" + }, + { + "IdCircuito": 48, + "Circuito": "48 - LA HIGUERA" + }, + { + "IdCircuito": 49, + "Circuito": "49 - LOS SAUCES" + }, + { + "IdCircuito": 50, + "Circuito": "50 - MEDIA NARANJA" + }, + { + "IdCircuito": 51, + "Circuito": "51 - PASO VIEJO" + }, + { + "IdCircuito": 52, + "Circuito": "52 - PICHANAS" + }, + { + "IdCircuito": 53, + "Circuito": "53 - SAN ANTONIO" + }, + { + "IdCircuito": 54, + "Circuito": "54 - SAN MARCOS SIERRAS" + }, + { + "IdCircuito": 55, + "Circuito": "55 - SERREZUELA" + }, + { + "IdCircuito": 56, + "Circuito": "56 - SOTO" + }, + { + "IdCircuito": 57, + "Circuito": "57 - TUCLAME" + }, + { + "IdCircuito": "0043A", + "Circuito": "43A - LAS CANADAS" + }, + { + "IdCircuito": "0043B", + "Circuito": "43B - CRUZ DE CANA" + }, + { + "IdCircuito": "0043C", + "Circuito": "43C - CIENAGA DE BRITOS" + }, + { + "IdCircuito": "0044A", + "Circuito": "44A - LAS PLAYAS" + }, + { + "IdCircuito": "0046B", + "Circuito": "46B - ALTO DE LOS QUEBRACHOS" + }, + { + "IdCircuito": "0050A", + "Circuito": "50A - LOS CHANARITOS" + }, + { + "IdCircuito": "0051A", + "Circuito": "51A - SANTA ANA" + }, + { + "IdCircuito": "0053A", + "Circuito": "53A - LOS LEONES" + }, + { + "IdCircuito": "0053B", + "Circuito": "53B - EL ABRA" + }, + { + "IdCircuito": "0054A", + "Circuito": "54A - CANTERAS QUILPO" + }, + { + "IdCircuito": "0055A", + "Circuito": "55A - LA BATEA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c32c", + "IdSeccion": 5, + "Seccion": "GENERAL ROCA", + "Circuitos": [ + { + "IdCircuito": 58, + "Circuito": "58 - BRUZONE" + }, + { + "IdCircuito": 59, + "Circuito": "59 - BUCHARDO" + }, + { + "IdCircuito": 60, + "Circuito": "60 - DEL CAMPILLO" + }, + { + "IdCircuito": 61, + "Circuito": "61 - HUINCA RENANCO" + }, + { + "IdCircuito": 62, + "Circuito": "62 - ITALO" + }, + { + "IdCircuito": 63, + "Circuito": "63 - JOVITA" + }, + { + "IdCircuito": 65, + "Circuito": "65 - LECUEDER" + }, + { + "IdCircuito": 66, + "Circuito": "66 - MATTALDI" + }, + { + "IdCircuito": 67, + "Circuito": "67 - ONAGOITY" + }, + { + "IdCircuito": 68, + "Circuito": "68 - PINCEN" + }, + { + "IdCircuito": 69, + "Circuito": "69 - RANQUELES" + }, + { + "IdCircuito": 70, + "Circuito": "70 - VILLA HUIDOBRO" + }, + { + "IdCircuito": 71, + "Circuito": "71 - VILLA SARMIENTO" + }, + { + "IdCircuito": 72, + "Circuito": "72 - VILLA VALERIA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c32d", + "IdSeccion": 6, + "Seccion": "GENERAL SAN MARTÍN", + "Circuitos": [ + { + "IdCircuito": 73, + "Circuito": "73 - ARROYO ALGODON" + }, + { + "IdCircuito": 74, + "Circuito": "74 - ARROYO CABRAL" + }, + { + "IdCircuito": 75, + "Circuito": "75 - AUSONIA" + }, + { + "IdCircuito": 76, + "Circuito": "76 - CHAZON" + }, + { + "IdCircuito": 77, + "Circuito": "77 - ETRURIA" + }, + { + "IdCircuito": 78, + "Circuito": "78 - LA LAGUNA" + }, + { + "IdCircuito": 79, + "Circuito": "79 - LA PLAYOSA" + }, + { + "IdCircuito": 80, + "Circuito": "80 - LUCA" + }, + { + "IdCircuito": 81, + "Circuito": "81 - MOJARRAS" + }, + { + "IdCircuito": 82, + "Circuito": "82 - PALESTINA" + }, + { + "IdCircuito": 83, + "Circuito": "83 - PASCO" + }, + { + "IdCircuito": 84, + "Circuito": "84 - SANABRIA" + }, + { + "IdCircuito": 86, + "Circuito": "86 - SILVIO PELLICO" + }, + { + "IdCircuito": 87, + "Circuito": "87 - TICINO" + }, + { + "IdCircuito": 88, + "Circuito": "88 - TIO PUJIO" + }, + { + "IdCircuito": 89, + "Circuito": "89 - VILLA MARIA" + }, + { + "IdCircuito": 90, + "Circuito": "90 - VILLA NUEVA" + }, + { + "IdCircuito": "0088A", + "Circuito": "88A - SANTA RITA" + }, + { + "IdCircuito": "0088B", + "Circuito": "88B - SAN ANTONIO DE YUCAT" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c32e", + "IdSeccion": 7, + "Seccion": "ISCHILÍN", + "Circuitos": [ + { + "IdCircuito": 91, + "Circuito": "91 - AVELLANEDA" + }, + { + "IdCircuito": 92, + "Circuito": "92 - CANADA DE RIO PINTO" + }, + { + "IdCircuito": 93, + "Circuito": "93 - COPACABANA" + }, + { + "IdCircuito": 94, + "Circuito": "94 - CHUNA" + }, + { + "IdCircuito": 95, + "Circuito": "95 - DEAN FUNES" + }, + { + "IdCircuito": 97, + "Circuito": "97 - ISCHILÍN" + }, + { + "IdCircuito": 98, + "Circuito": "98 - JAIME PETER" + }, + { + "IdCircuito": 99, + "Circuito": "99 - QUILINO ESTACION" + }, + { + "IdCircuito": 100, + "Circuito": "100 - QUILINO VILLA" + }, + { + "IdCircuito": 101, + "Circuito": "101 - TOYOS" + }, + { + "IdCircuito": "0091A", + "Circuito": "91A - CANTERAS" + }, + { + "IdCircuito": "0091B", + "Circuito": "91B - LOS POZOS" + }, + { + "IdCircuito": "0091C", + "Circuito": "91C - VILLA GUTIERREZ" + }, + { + "IdCircuito": "0096A", + "Circuito": "96A - OLIVARES SAN NICOLAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c32f", + "IdSeccion": 8, + "Seccion": "JUÁREZ CELMAN", + "Circuitos": [ + { + "IdCircuito": 102, + "Circuito": "102 - ALEJANDRO" + }, + { + "IdCircuito": 103, + "Circuito": "103 - ASSUNTA" + }, + { + "IdCircuito": 105, + "Circuito": "105 - BENGOLEA" + }, + { + "IdCircuito": 106, + "Circuito": "106 - CABRERA" + }, + { + "IdCircuito": 107, + "Circuito": "107 - CARNERILLO" + }, + { + "IdCircuito": 108, + "Circuito": "108 - CHARRAS" + }, + { + "IdCircuito": 109, + "Circuito": "109 - DEHEZA" + }, + { + "IdCircuito": 110, + "Circuito": "110 - EL RASTREADOR" + }, + { + "IdCircuito": 111, + "Circuito": "111 - HUANCHILLA" + }, + { + "IdCircuito": 112, + "Circuito": "112 - LA CARLOTA" + }, + { + "IdCircuito": 113, + "Circuito": "113 - LOS CISNES" + }, + { + "IdCircuito": 114, + "Circuito": "114 - OLAETA" + }, + { + "IdCircuito": 116, + "Circuito": "116 - REDUCCION" + }, + { + "IdCircuito": 117, + "Circuito": "117 - SANTA EUFEMIA" + }, + { + "IdCircuito": 118, + "Circuito": "118 - UCACHA" + }, + { + "IdCircuito": "0110A", + "Circuito": "110A - PACHECO DE MELO" + }, + { + "IdCircuito": "0116A", + "Circuito": "116A - PASO DEL DURAZNO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c330", + "IdSeccion": 9, + "Seccion": "MARCOS JUÁREZ", + "Circuitos": [ + { + "IdCircuito": 119, + "Circuito": "119 - ALEJO LEDESMA" + }, + { + "IdCircuito": 120, + "Circuito": "120 - ARIAS" + }, + { + "IdCircuito": 121, + "Circuito": "121 - BALDISSERA" + }, + { + "IdCircuito": 122, + "Circuito": "122 - BARGE" + }, + { + "IdCircuito": 123, + "Circuito": "123 - CAMILO ALDAO" + }, + { + "IdCircuito": 124, + "Circuito": "124 - CAVANAGH" + }, + { + "IdCircuito": 125, + "Circuito": "125 - CORRAL DE BUSTOS" + }, + { + "IdCircuito": 126, + "Circuito": "126 - CRUZ ALTA" + }, + { + "IdCircuito": 127, + "Circuito": "127 - GUATIMOZIN" + }, + { + "IdCircuito": 128, + "Circuito": "128 - INRIVILLE" + }, + { + "IdCircuito": 129, + "Circuito": "129 - ISLA VERDE" + }, + { + "IdCircuito": 130, + "Circuito": "130 - LA ITALIANA" + }, + { + "IdCircuito": 131, + "Circuito": "131 - LEONES" + }, + { + "IdCircuito": 132, + "Circuito": "132 - LOS SURGENTES" + }, + { + "IdCircuito": 133, + "Circuito": "133 - MARCOS JUÁREZ" + }, + { + "IdCircuito": 134, + "Circuito": "134 - MONTE BUEY" + }, + { + "IdCircuito": 135, + "Circuito": "135 - CAP.B.O HIGGINS" + }, + { + "IdCircuito": 136, + "Circuito": "136 - ROCA" + }, + { + "IdCircuito": 137, + "Circuito": "137 - SAIRA" + }, + { + "IdCircuito": "0128A", + "Circuito": "128A - SALADILLO" + }, + { + "IdCircuito": "0131A", + "Circuito": "131A - VILLA ELISA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c331", + "IdSeccion": 10, + "Seccion": "MINAS", + "Circuitos": [ + { + "IdCircuito": 138, + "Circuito": "138 - CIENAGA DEL CORO" + }, + { + "IdCircuito": 139, + "Circuito": "139 - GUASAPAMPA" + }, + { + "IdCircuito": 140, + "Circuito": "140 - LA ARGENTINA" + }, + { + "IdCircuito": 141, + "Circuito": "141 - PIEDRITA BLANCA" + }, + { + "IdCircuito": 142, + "Circuito": "142 - SAN CARLOS" + }, + { + "IdCircuito": "0138A", + "Circuito": "138A - RUMIACO" + }, + { + "IdCircuito": "0138B", + "Circuito": "138B - RUMIHUASI" + }, + { + "IdCircuito": "0138C", + "Circuito": "138C - ESTANCIA DE GUADALUPE" + }, + { + "IdCircuito": "0138D", + "Circuito": "138D - TOSNO" + }, + { + "IdCircuito": "0139A", + "Circuito": "139A - AGUA DE RAMON" + }, + { + "IdCircuito": "0139B", + "Circuito": "139B - LA PLAYA" + }, + { + "IdCircuito": "0140A", + "Circuito": "140A - OJO DE AGUA DE TOTOX" + }, + { + "IdCircuito": "0141A", + "Circuito": "141A - EL CHACHO" + }, + { + "IdCircuito": "0142A", + "Circuito": "142A - TALAINI" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c332", + "IdSeccion": 11, + "Seccion": "POCHO", + "Circuitos": [ + { + "IdCircuito": 144, + "Circuito": "144 - CHANCANI" + }, + { + "IdCircuito": 145, + "Circuito": "145 - POCHO" + }, + { + "IdCircuito": 146, + "Circuito": "146 - SALSACATE" + }, + { + "IdCircuito": "0144A", + "Circuito": "144A - LAS JARILLAS" + }, + { + "IdCircuito": "0144B", + "Circuito": "144B - EL MEDANITO" + }, + { + "IdCircuito": "0145A", + "Circuito": "145A - LAS PALMAS" + }, + { + "IdCircuito": "0146A", + "Circuito": "146A - TALA CANADA" + }, + { + "IdCircuito": "0146B", + "Circuito": "146B - SAN JERONIMO" + }, + { + "IdCircuito": "0146C", + "Circuito": "146C - LOS TALARES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c333", + "IdSeccion": 12, + "Seccion": "PUNILLA", + "Circuitos": [ + { + "IdCircuito": 147, + "Circuito": "147 - BIALET MASSE" + }, + { + "IdCircuito": 148, + "Circuito": "148 - CAPILLA DEL MONTE" + }, + { + "IdCircuito": 149, + "Circuito": "149 - CASA GRANDE" + }, + { + "IdCircuito": 150, + "Circuito": "150 - COSQUIN" + }, + { + "IdCircuito": 151, + "Circuito": "151 - CHARBONIER" + }, + { + "IdCircuito": 152, + "Circuito": "152 - HUERTA GRANDE" + }, + { + "IdCircuito": 153, + "Circuito": "153 - LA CUMBRE" + }, + { + "IdCircuito": 154, + "Circuito": "154 - LA FALDA" + }, + { + "IdCircuito": 155, + "Circuito": "155 - SAN ESTEBAN" + }, + { + "IdCircuito": 156, + "Circuito": "156 - VILLA CARLOS PAZ" + }, + { + "IdCircuito": 157, + "Circuito": "157 - SANTA MARIA" + }, + { + "IdCircuito": 158, + "Circuito": "158 - TANTI" + }, + { + "IdCircuito": 159, + "Circuito": "159 - VALLE HERMOSO" + }, + { + "IdCircuito": "0147A", + "Circuito": "147A - SAN ROQUE" + }, + { + "IdCircuito": "0147B", + "Circuito": "147B - VILLA PARQUE SIQUIMAN" + }, + { + "IdCircuito": "0152A", + "Circuito": "152A - VILLA GIARDINO" + }, + { + "IdCircuito": "0155A", + "Circuito": "155A - LOS COCOS" + }, + { + "IdCircuito": "0156A", + "Circuito": "156A - YCHO CRUZ" + }, + { + "IdCircuito": "0156B", + "Circuito": "156B - CUESTA BLANCA" + }, + { + "IdCircuito": "0156C", + "Circuito": "156C - MAYU SUMAJ" + }, + { + "IdCircuito": "0156D", + "Circuito": "156D - SAN ANTONIO DE ARREDONDO" + }, + { + "IdCircuito": "0156E", + "Circuito": "156E - TALA HUASI" + }, + { + "IdCircuito": "0158A", + "Circuito": "158A - CABALANGO" + }, + { + "IdCircuito": "0158B", + "Circuito": "158B - ESTANCIA VIEJA" + }, + { + "IdCircuito": "0158C", + "Circuito": "158C - VILLA SANTA CRUZ DEL LAGO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c334", + "IdSeccion": 13, + "Seccion": "RÍO CUARTO", + "Circuitos": [ + { + "IdCircuito": 160, + "Circuito": "160 - ACHIRAS" + }, + { + "IdCircuito": 161, + "Circuito": "161 - ADELIA MARIA" + }, + { + "IdCircuito": 162, + "Circuito": "162 - ALCIRA" + }, + { + "IdCircuito": 163, + "Circuito": "163 - ALPA CORRAL" + }, + { + "IdCircuito": 164, + "Circuito": "164 - BAIGORRIA" + }, + { + "IdCircuito": 165, + "Circuito": "165 - BANDA NORTE" + }, + { + "IdCircuito": 166, + "Circuito": "166 - BERROTARAN" + }, + { + "IdCircuito": 167, + "Circuito": "167 - BULNES" + }, + { + "IdCircuito": 168, + "Circuito": "168 - CHAJAN" + }, + { + "IdCircuito": 169, + "Circuito": "169 - CHUCUL" + }, + { + "IdCircuito": 170, + "Circuito": "170 - ELENA" + }, + { + "IdCircuito": 171, + "Circuito": "171 - ESPINILLO" + }, + { + "IdCircuito": 172, + "Circuito": "172 - HOLMBERG" + }, + { + "IdCircuito": 173, + "Circuito": "173 - LA ARGENTINA" + }, + { + "IdCircuito": 174, + "Circuito": "174 - LA CAUTIVA" + }, + { + "IdCircuito": 175, + "Circuito": "175 - LA GILDA" + }, + { + "IdCircuito": 176, + "Circuito": "176 - LA INVERNADA" + }, + { + "IdCircuito": 177, + "Circuito": "177 - LAS ACEQUIAS" + }, + { + "IdCircuito": 178, + "Circuito": "178 - LAS CANITAS" + }, + { + "IdCircuito": 179, + "Circuito": "179 - LAS HIGUERAS" + }, + { + "IdCircuito": 180, + "Circuito": "180 - LAS PENAS" + }, + { + "IdCircuito": 181, + "Circuito": "181 - LOS CUATRO VIENTOS" + }, + { + "IdCircuito": 182, + "Circuito": "182 - LAS VERTIENTES" + }, + { + "IdCircuito": 183, + "Circuito": "183 - VICUNA MACKENNA" + }, + { + "IdCircuito": 184, + "Circuito": "184 - MOLDES" + }, + { + "IdCircuito": 185, + "Circuito": "185 - PAUNERO" + }, + { + "IdCircuito": 186, + "Circuito": "186 - PUEBLO ALBERDI" + }, + { + "IdCircuito": 187, + "Circuito": "187 - PUEYRREDON" + }, + { + "IdCircuito": 188, + "Circuito": "188 - RÍO CUARTO" + }, + { + "IdCircuito": 189, + "Circuito": "189 - SAMPACHO" + }, + { + "IdCircuito": 190, + "Circuito": "190 - SAN AMBROSIO" + }, + { + "IdCircuito": 191, + "Circuito": "191 - SAN BASILIO" + }, + { + "IdCircuito": 192, + "Circuito": "192 - SUCO" + }, + { + "IdCircuito": 193, + "Circuito": "193 - TOSQUITA" + }, + { + "IdCircuito": 194, + "Circuito": "194 - WASHINGTON" + }, + { + "IdCircuito": "0160A", + "Circuito": "160A - LA CAROLINA" + }, + { + "IdCircuito": "0178A", + "Circuito": "178A - LAS ALBAHACAS" + }, + { + "IdCircuito": "0178B", + "Circuito": "178B - VILLA EL CHACAY" + }, + { + "IdCircuito": "0184A", + "Circuito": "184A - MONTE DE LOS GAUCHOS" + }, + { + "IdCircuito": "0191A", + "Circuito": "191A - MALENA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c335", + "IdSeccion": 14, + "Seccion": "RÍO PRIMERO", + "Circuitos": [ + { + "IdCircuito": 195, + "Circuito": "195 - ATAHONA" + }, + { + "IdCircuito": 196, + "Circuito": "196 - CANADA DE MACHADO" + }, + { + "IdCircuito": 197, + "Circuito": "197 - LA POSTA" + }, + { + "IdCircuito": 198, + "Circuito": "198 - CAPILLA DE REMEDIOS" + }, + { + "IdCircuito": 199, + "Circuito": "199 - CHALACEA" + }, + { + "IdCircuito": 200, + "Circuito": "200 - DIEGO DE ROJAS" + }, + { + "IdCircuito": 201, + "Circuito": "201 - COLONIA LAS CUATRO ESQUINAS" + }, + { + "IdCircuito": 202, + "Circuito": "202 - ESQUINA" + }, + { + "IdCircuito": 203, + "Circuito": "203 - PEDRO E.VIVAS" + }, + { + "IdCircuito": 204, + "Circuito": "204 - LA PARA" + }, + { + "IdCircuito": 205, + "Circuito": "205 - LA PUERTA" + }, + { + "IdCircuito": 206, + "Circuito": "206 - LAS HERAS" + }, + { + "IdCircuito": 207, + "Circuito": "207 - LAS SALADAS" + }, + { + "IdCircuito": 208, + "Circuito": "208 - COMECHINGONES" + }, + { + "IdCircuito": 209, + "Circuito": "209 - MAQUINISTA GALLINI" + }, + { + "IdCircuito": 210, + "Circuito": "210 - BLAS DE ROSALES" + }, + { + "IdCircuito": 211, + "Circuito": "211 - MONTE CRISTO" + }, + { + "IdCircuito": 212, + "Circuito": "212 - MONTE DEL ROSARIO" + }, + { + "IdCircuito": 213, + "Circuito": "213 - OBISPO TREJO" + }, + { + "IdCircuito": 214, + "Circuito": "214 - PIQUILLIN" + }, + { + "IdCircuito": 215, + "Circuito": "215 - PLAZA DE MERCEDES" + }, + { + "IdCircuito": 216, + "Circuito": "216 - PUNTA DEL AGUA" + }, + { + "IdCircuito": 217, + "Circuito": "217 - QUEBRACHO" + }, + { + "IdCircuito": 218, + "Circuito": "218 - RÍO PRIMERO" + }, + { + "IdCircuito": 219, + "Circuito": "219 - SAGRADA FAMILIA" + }, + { + "IdCircuito": 220, + "Circuito": "220 - VILLA SANTA ROSA" + }, + { + "IdCircuito": 221, + "Circuito": "221 - EL ALCALDE" + }, + { + "IdCircuito": 222, + "Circuito": "222 - VILLA FONTANA" + }, + { + "IdCircuito": "0201A", + "Circuito": "201A - LAS GRAMILLAS" + }, + { + "IdCircuito": "0212B", + "Circuito": "212B - EL CRISPIN" + }, + { + "IdCircuito": "0215A", + "Circuito": "215A - LA QUINTA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c336", + "IdSeccion": 15, + "Seccion": "RÍO SECO", + "Circuitos": [ + { + "IdCircuito": 223, + "Circuito": "223 - CANDELARIA NORTE" + }, + { + "IdCircuito": 224, + "Circuito": "224 - ENCRUCIJADA" + }, + { + "IdCircuito": 225, + "Circuito": "225 - GUTEMBERG" + }, + { + "IdCircuito": 226, + "Circuito": "226 - LOS HOYOS" + }, + { + "IdCircuito": 227, + "Circuito": "227 - RAYO CORTADO" + }, + { + "IdCircuito": 228, + "Circuito": "228 - SEBASTIAN ELCANO" + }, + { + "IdCircuito": 229, + "Circuito": "229 - VILLA DE MARIA" + }, + { + "IdCircuito": "0225A", + "Circuito": "225A - LA CANADA" + }, + { + "IdCircuito": "0226A", + "Circuito": "226A - PUESTO DE CASTRO" + }, + { + "IdCircuito": "0227A", + "Circuito": "227A - RINCONADA" + }, + { + "IdCircuito": "0227B", + "Circuito": "227B - CERRO COLORADO" + }, + { + "IdCircuito": "0227C", + "Circuito": "227C - CHANAR VIEJO" + }, + { + "IdCircuito": "0227D", + "Circuito": "227D - SANTA ELENA" + }, + { + "IdCircuito": "0229A", + "Circuito": "229A - EUFRASIO LOZA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c337", + "IdSeccion": 16, + "Seccion": "RÍO SEGUNDO", + "Circuitos": [ + { + "IdCircuito": 230, + "Circuito": "230 - CALCHIN" + }, + { + "IdCircuito": 231, + "Circuito": "231 - CAPILLA DEL CARMEN" + }, + { + "IdCircuito": 232, + "Circuito": "232 - CARRILOBO" + }, + { + "IdCircuito": 233, + "Circuito": "233 - COLAZO" + }, + { + "IdCircuito": 234, + "Circuito": "234 - COSTA SACATE" + }, + { + "IdCircuito": 235, + "Circuito": "235 - LAGUNA LARGA" + }, + { + "IdCircuito": 236, + "Circuito": "236 - LAS JUNTURAS" + }, + { + "IdCircuito": 237, + "Circuito": "237 - LUQUE" + }, + { + "IdCircuito": 238, + "Circuito": "238 - MATORRALES" + }, + { + "IdCircuito": 239, + "Circuito": "239 - ONCATIVO" + }, + { + "IdCircuito": 240, + "Circuito": "240 - PILAR" + }, + { + "IdCircuito": 241, + "Circuito": "241 - POZO DEL MOLLE" + }, + { + "IdCircuito": 242, + "Circuito": "242 - RINCON" + }, + { + "IdCircuito": 243, + "Circuito": "243 - RÍO SEGUNDO" + }, + { + "IdCircuito": 244, + "Circuito": "244 - SANTIAGO TEMPLE" + }, + { + "IdCircuito": 245, + "Circuito": "245 - VILLA DEL ROSARIO" + }, + { + "IdCircuito": "0230A", + "Circuito": "230A - CALCHIN OESTE" + }, + { + "IdCircuito": "0236A", + "Circuito": "236A - COLONIA VIDELA" + }, + { + "IdCircuito": "0237A", + "Circuito": "237A - MANFREDI" + }, + { + "IdCircuito": "0237B", + "Circuito": "237B - PUEBLO LUDUENA" + }, + { + "IdCircuito": "0242A", + "Circuito": "242A - CANADA DE MACHADO SUD" + }, + { + "IdCircuito": "0244A", + "Circuito": "244A - LOS CHANARITOS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c338", + "IdSeccion": 17, + "Seccion": "ROQUE SÁENZ PEÑA", + "Circuitos": [ + { + "IdCircuito": 248, + "Circuito": "248 - LABOULAYE" + }, + { + "IdCircuito": 249, + "Circuito": "249 - LA CESIRA" + }, + { + "IdCircuito": 251, + "Circuito": "251 - LEGUIZAMON" + }, + { + "IdCircuito": 252, + "Circuito": "252 - LEVALLE" + }, + { + "IdCircuito": 253, + "Circuito": "253 - MELO" + }, + { + "IdCircuito": 254, + "Circuito": "254 - RIO BAMBA" + }, + { + "IdCircuito": 255, + "Circuito": "255 - ROSALES" + }, + { + "IdCircuito": 256, + "Circuito": "256 - SAN JOAQUIN" + }, + { + "IdCircuito": 257, + "Circuito": "257 - SERRANO" + }, + { + "IdCircuito": 258, + "Circuito": "258 - VILLA ROSSI" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c339", + "IdSeccion": 18, + "Seccion": "SAN ALBERTO", + "Circuitos": [ + { + "IdCircuito": 259, + "Circuito": "259 - ALTAUTINA" + }, + { + "IdCircuito": 260, + "Circuito": "260 - AMBUL" + }, + { + "IdCircuito": 261, + "Circuito": "261 - BROCHERO" + }, + { + "IdCircuito": 262, + "Circuito": "262 - MINA CLAVERO" + }, + { + "IdCircuito": 263, + "Circuito": "263 - NONO" + }, + { + "IdCircuito": 264, + "Circuito": "264 - PANAHOLMA" + }, + { + "IdCircuito": 265, + "Circuito": "265 - SAN PEDRO" + }, + { + "IdCircuito": 266, + "Circuito": "266 - SAN VICENTE" + }, + { + "IdCircuito": "0260A", + "Circuito": "260A - EL VOLCAN" + }, + { + "IdCircuito": "0261A", + "Circuito": "261A - SAN LORENZO" + }, + { + "IdCircuito": "0261B", + "Circuito": "261B - VILLA BENEGAS" + }, + { + "IdCircuito": "0263A", + "Circuito": "263A - PAMPA DE ACHALA" + }, + { + "IdCircuito": "0263B", + "Circuito": "263B - LOS CERROS" + }, + { + "IdCircuito": "0263C", + "Circuito": "263C - ARROYO DE LOS PATOS" + }, + { + "IdCircuito": "0263D", + "Circuito": "263D - LAS CALLES" + }, + { + "IdCircuito": "0263E", + "Circuito": "263E - LAS RABONAS" + }, + { + "IdCircuito": "0264A", + "Circuito": "264A - LOS ESPINILLOS" + }, + { + "IdCircuito": "0265A", + "Circuito": "265A - VILLA SARMIENTO" + }, + { + "IdCircuito": "0265B", + "Circuito": "265B - LA CORTADERA" + }, + { + "IdCircuito": "0265C", + "Circuito": "265C - SAUCE ARRIBA" + }, + { + "IdCircuito": "0266A", + "Circuito": "266A - SAN RAFAEL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c33a", + "IdSeccion": 19, + "Seccion": "SAN JAVIER", + "Circuitos": [ + { + "IdCircuito": 267, + "Circuito": "267 - CONLARA" + }, + { + "IdCircuito": 268, + "Circuito": "268 - DOLORES" + }, + { + "IdCircuito": 269, + "Circuito": "269 - LA PAZ" + }, + { + "IdCircuito": 270, + "Circuito": "270 - LAS ROSAS" + }, + { + "IdCircuito": 271, + "Circuito": "271 - LAS TAPIAS" + }, + { + "IdCircuito": 272, + "Circuito": "272 - LOS HORNILLOS" + }, + { + "IdCircuito": 273, + "Circuito": "273 - LUYABA" + }, + { + "IdCircuito": 274, + "Circuito": "274 - SAN JAVIER" + }, + { + "IdCircuito": 275, + "Circuito": "275 - SAN JOSE" + }, + { + "IdCircuito": 276, + "Circuito": "276 - YACANTO" + }, + { + "IdCircuito": "0269A", + "Circuito": "269A - QUEBRACHO LADEADO" + }, + { + "IdCircuito": "0269B", + "Circuito": "269B - EL MANANTIAL" + }, + { + "IdCircuito": "0274A", + "Circuito": "274A - LA POBLACION" + }, + { + "IdCircuito": "0275A", + "Circuito": "275A - LOS CERRILLOS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c33b", + "IdSeccion": 20, + "Seccion": "SAN JUSTO", + "Circuitos": [ + { + "IdCircuito": 277, + "Circuito": "277 - ALICIA" + }, + { + "IdCircuito": 278, + "Circuito": "278 - ALTOS DE CHIPION" + }, + { + "IdCircuito": 279, + "Circuito": "279 - ARROYITO" + }, + { + "IdCircuito": 280, + "Circuito": "280 - BALNEARIA" + }, + { + "IdCircuito": 281, + "Circuito": "281 - BEIRO" + }, + { + "IdCircuito": 282, + "Circuito": "282 - BRINKMANN" + }, + { + "IdCircuito": 283, + "Circuito": "283 - CONCEPCION" + }, + { + "IdCircuito": 285, + "Circuito": "285 - DEVOTO" + }, + { + "IdCircuito": 286, + "Circuito": "286 - DIEZ DE JULIO" + }, + { + "IdCircuito": 287, + "Circuito": "287 - DOS HERMANOS" + }, + { + "IdCircuito": 288, + "Circuito": "288 - EL ARANADO" + }, + { + "IdCircuito": 289, + "Circuito": "289 - EL FORTIN" + }, + { + "IdCircuito": 290, + "Circuito": "290 - EL TIO" + }, + { + "IdCircuito": 291, + "Circuito": "291 - FREYRE" + }, + { + "IdCircuito": 292, + "Circuito": "292 - ITURRASPE" + }, + { + "IdCircuito": 293, + "Circuito": "293 - LA FRANCIA" + }, + { + "IdCircuito": 294, + "Circuito": "294 - LA PAQUITA" + }, + { + "IdCircuito": 295, + "Circuito": "295 - LA TORDILLA" + }, + { + "IdCircuito": 296, + "Circuito": "296 - LASPIUR" + }, + { + "IdCircuito": 297, + "Circuito": "297 - LAS VARAS" + }, + { + "IdCircuito": 298, + "Circuito": "298 - LAS VARILLAS" + }, + { + "IdCircuito": 299, + "Circuito": "299 - LUXARDO" + }, + { + "IdCircuito": 300, + "Circuito": "300 - MARINA" + }, + { + "IdCircuito": 301, + "Circuito": "301 - MARULL" + }, + { + "IdCircuito": 302, + "Circuito": "302 - MAUNIER" + }, + { + "IdCircuito": 303, + "Circuito": "303 - MIRAMAR" + }, + { + "IdCircuito": 304, + "Circuito": "304 - MORTEROS" + }, + { + "IdCircuito": 305, + "Circuito": "305 - PORTENA" + }, + { + "IdCircuito": 306, + "Circuito": "306 - PROSPERIDAD" + }, + { + "IdCircuito": 307, + "Circuito": "307 - QUEBRACHO HERRADO" + }, + { + "IdCircuito": 308, + "Circuito": "308 - SACANTA" + }, + { + "IdCircuito": 309, + "Circuito": "309 - SAN BARTOLOME" + }, + { + "IdCircuito": 310, + "Circuito": "310 - SAN FRANCISCO SECC. SUR" + }, + { + "IdCircuito": 311, + "Circuito": "311 - SAN PEDRO" + }, + { + "IdCircuito": 312, + "Circuito": "312 - SAUZE" + }, + { + "IdCircuito": 313, + "Circuito": "313 - SEEBER" + }, + { + "IdCircuito": 314, + "Circuito": "314 - TRANSITO" + }, + { + "IdCircuito": 315, + "Circuito": "315 - VIGNAUD" + }, + { + "IdCircuito": "0279A", + "Circuito": "279A - EL FUERTECITO" + }, + { + "IdCircuito": "0283A", + "Circuito": "283A - COLONIA PICHANAS" + }, + { + "IdCircuito": "0288A", + "Circuito": "288A - VILLA SAN ESTEBAN" + }, + { + "IdCircuito": "0291A", + "Circuito": "291A - COLONIA ANITA" + }, + { + "IdCircuito": "0294A", + "Circuito": "294A - COLONIA VALTELINA" + }, + { + "IdCircuito": "0295A", + "Circuito": "295A - TORO PUJIO" + }, + { + "IdCircuito": "0310A", + "Circuito": "310A - SAN FRANCISCO SECC. NORTE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c33c", + "IdSeccion": 21, + "Seccion": "SANTA MARÍA", + "Circuitos": [ + { + "IdCircuito": 316, + "Circuito": "316 - ALTA GRACIA" + }, + { + "IdCircuito": 317, + "Circuito": "317 - BAJO CHICO" + }, + { + "IdCircuito": 318, + "Circuito": "318 - RAFAEL GARCIA" + }, + { + "IdCircuito": 319, + "Circuito": "319 - BOUWER" + }, + { + "IdCircuito": 320, + "Circuito": "320 - BUENA VISTA" + }, + { + "IdCircuito": 322, + "Circuito": "322 - COSME" + }, + { + "IdCircuito": 323, + "Circuito": "323 - DESPENADEROS" + }, + { + "IdCircuito": 324, + "Circuito": "324 - FALDA DEL CARMEN" + }, + { + "IdCircuito": 325, + "Circuito": "325 - LOZADA" + }, + { + "IdCircuito": 326, + "Circuito": "326 - MALAGUENO" + }, + { + "IdCircuito": 327, + "Circuito": "327 - MONTE RALO" + }, + { + "IdCircuito": 328, + "Circuito": "328 - POTRERO DE GARAY" + }, + { + "IdCircuito": 329, + "Circuito": "329 - SAN CLEMENTE" + }, + { + "IdCircuito": 330, + "Circuito": "330 - SAN ISIDRO" + }, + { + "IdCircuito": 331, + "Circuito": "331 - TOLEDO" + }, + { + "IdCircuito": "0316A", + "Circuito": "316A - ANIZACATE" + }, + { + "IdCircuito": "0316B", + "Circuito": "316B - LA PAISANITA" + }, + { + "IdCircuito": "0316C", + "Circuito": "316C - LA RANCHERITA" + }, + { + "IdCircuito": "0316D", + "Circuito": "316D - LA SERRANITA" + }, + { + "IdCircuito": "0316E", + "Circuito": "316E - LOS CEDROS" + }, + { + "IdCircuito": "0316F", + "Circuito": "316F - VALLE DE ANIZACATE" + }, + { + "IdCircuito": "0316G", + "Circuito": "316G - VILLA EL PRADO" + }, + { + "IdCircuito": "0316H", + "Circuito": "316H - VILLA LA BOLSA" + }, + { + "IdCircuito": "0316I", + "Circuito": "316I - VILLA LOS AROMOS" + }, + { + "IdCircuito": "0316J", + "Circuito": "316J - VILLA PARQUE SANTA ANA" + }, + { + "IdCircuito": "0326A", + "Circuito": "326A - YOCSINA" + }, + { + "IdCircuito": "0326B", + "Circuito": "326B - BARRIO PRIMERO DE MAYO" + }, + { + "IdCircuito": "0326C", + "Circuito": "326C - SAN NICOLAS" + }, + { + "IdCircuito": "0328B", + "Circuito": "328B - VILLA CIUDAD DE AMERICA" + }, + { + "IdCircuito": "0330A", + "Circuito": "330A - JOSE DE LA QUINTANA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c33d", + "IdSeccion": 22, + "Seccion": "SOBREMONTE", + "Circuitos": [ + { + "IdCircuito": 332, + "Circuito": "332 - POZO NUEVO" + }, + { + "IdCircuito": 333, + "Circuito": "333 - CAMINIAGA" + }, + { + "IdCircuito": 334, + "Circuito": "334 - CHUNAHUASI" + }, + { + "IdCircuito": 335, + "Circuito": "335 - CHANAR" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c33e", + "IdSeccion": 23, + "Seccion": "TERCERO ARRIBA", + "Circuitos": [ + { + "IdCircuito": 336, + "Circuito": "336 - ALMAFUERTE" + }, + { + "IdCircuito": 337, + "Circuito": "337 - ASCASUBI" + }, + { + "IdCircuito": 338, + "Circuito": "338 - CORRALITO" + }, + { + "IdCircuito": 339, + "Circuito": "339 - DALMACIO VELEZ" + }, + { + "IdCircuito": 340, + "Circuito": "340 - HERNANDO" + }, + { + "IdCircuito": 341, + "Circuito": "341 - JAMES CRAIK" + }, + { + "IdCircuito": 342, + "Circuito": "342 - LAS PERDICES" + }, + { + "IdCircuito": 343, + "Circuito": "343 - LOS ZORROS" + }, + { + "IdCircuito": 344, + "Circuito": "344 - OLIVA" + }, + { + "IdCircuito": 345, + "Circuito": "345 - PAMPAYASTA NORTE" + }, + { + "IdCircuito": 346, + "Circuito": "346 - PAMPAYASTA SUD" + }, + { + "IdCircuito": 347, + "Circuito": "347 - PUNTA DEL AGUA" + }, + { + "IdCircuito": 348, + "Circuito": "348 - RIO TERCERO" + }, + { + "IdCircuito": 349, + "Circuito": "349 - TANCACHA" + }, + { + "IdCircuito": "0337A", + "Circuito": "337A - CNIA ALMADA" + }, + { + "IdCircuito": "0347A", + "Circuito": "347A - LAS ISLETILLAS" + }, + { + "IdCircuito": "0349A", + "Circuito": "349A - GENERAL FOTHERINGHAM" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c33f", + "IdSeccion": 24, + "Seccion": "TOTORAL", + "Circuitos": [ + { + "IdCircuito": 350, + "Circuito": "350 - CANDELARIA" + }, + { + "IdCircuito": 351, + "Circuito": "351 - CANADA DE LUQUE" + }, + { + "IdCircuito": 352, + "Circuito": "352 - LAS PENAS" + }, + { + "IdCircuito": 353, + "Circuito": "353 - MACHA" + }, + { + "IdCircuito": 354, + "Circuito": "354 - SANTA CATALINA" + }, + { + "IdCircuito": 355, + "Circuito": "355 - SARMIENTO" + }, + { + "IdCircuito": 356, + "Circuito": "356 - SIMBOLAR" + }, + { + "IdCircuito": 357, + "Circuito": "357 - SINSACATE" + }, + { + "IdCircuito": 358, + "Circuito": "358 - SITON" + }, + { + "IdCircuito": 359, + "Circuito": "359 - VILLA DEL TOTORAL" + }, + { + "IdCircuito": "0351A", + "Circuito": "351A - LA PAMPA" + }, + { + "IdCircuito": "0352A", + "Circuito": "352A - LOS MISTOLES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c340", + "IdSeccion": 25, + "Seccion": "TULUMBA", + "Circuitos": [ + { + "IdCircuito": 360, + "Circuito": "360 - CHURQUI CANADA" + }, + { + "IdCircuito": 361, + "Circuito": "361 - LAS ARRIAS" + }, + { + "IdCircuito": 362, + "Circuito": "362 - EL BANADO" + }, + { + "IdCircuito": 363, + "Circuito": "363 - ISLA DE SAN ANTONIO" + }, + { + "IdCircuito": 364, + "Circuito": "364 - LA DORMIDA" + }, + { + "IdCircuito": 365, + "Circuito": "365 - LAS MASITAS" + }, + { + "IdCircuito": 366, + "Circuito": "366 - LUCIO V MANSILLA" + }, + { + "IdCircuito": 367, + "Circuito": "367 - ROSARIO DEL SALADILLO" + }, + { + "IdCircuito": 368, + "Circuito": "368 - SAN JOSE DE LAS SALINAS" + }, + { + "IdCircuito": 369, + "Circuito": "369 - SAN PEDRO NORTE" + }, + { + "IdCircuito": 370, + "Circuito": "370 - SANTA CRUZ" + }, + { + "IdCircuito": 371, + "Circuito": "371 - TULUMBA" + }, + { + "IdCircuito": "0360A", + "Circuito": "360A - EL RODEO" + }, + { + "IdCircuito": "0360B", + "Circuito": "360B - LA TOMA" + }, + { + "IdCircuito": "0370A", + "Circuito": "370A - LA CANADA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c341", + "IdSeccion": 26, + "Seccion": "UNIÓN", + "Circuitos": [ + { + "IdCircuito": 372, + "Circuito": "372 - ALTO ALEGRE" + }, + { + "IdCircuito": 373, + "Circuito": "373 - BALLESTEROS" + }, + { + "IdCircuito": 374, + "Circuito": "374 - BALLESTEROS SUD" + }, + { + "IdCircuito": 375, + "Circuito": "375 - BELL VILLE" + }, + { + "IdCircuito": 376, + "Circuito": "376 - BISMARCK" + }, + { + "IdCircuito": 377, + "Circuito": "377 - BREMEN" + }, + { + "IdCircuito": 378, + "Circuito": "378 - CANALS" + }, + { + "IdCircuito": 379, + "Circuito": "379 - CARCANO" + }, + { + "IdCircuito": 381, + "Circuito": "381 - CINTRA" + }, + { + "IdCircuito": 382, + "Circuito": "382 - CHILIBROSTE" + }, + { + "IdCircuito": 384, + "Circuito": "384 - PUEBLO ITALIANO" + }, + { + "IdCircuito": 385, + "Circuito": "385 - ESCALANTE" + }, + { + "IdCircuito": 386, + "Circuito": "386 - GOULD" + }, + { + "IdCircuito": 387, + "Circuito": "387 - IDIAZABAL" + }, + { + "IdCircuito": 389, + "Circuito": "389 - LABORDE" + }, + { + "IdCircuito": 390, + "Circuito": "390 - MONTE LENA" + }, + { + "IdCircuito": 391, + "Circuito": "391 - MONTE MAIZ" + }, + { + "IdCircuito": 392, + "Circuito": "392 - MORRISON" + }, + { + "IdCircuito": 393, + "Circuito": "393 - NOETINGER" + }, + { + "IdCircuito": 394, + "Circuito": "394 - ORDONEZ" + }, + { + "IdCircuito": 395, + "Circuito": "395 - PASCANAS" + }, + { + "IdCircuito": 396, + "Circuito": "396 - POSSE" + }, + { + "IdCircuito": 397, + "Circuito": "397 - SAN ANTONIO" + }, + { + "IdCircuito": 400, + "Circuito": "400 - SAN MARCOS SUD" + }, + { + "IdCircuito": 401, + "Circuito": "401 - SANTA MARIA" + }, + { + "IdCircuito": 402, + "Circuito": "402 - VIAMONTE" + }, + { + "IdCircuito": "0372A", + "Circuito": "372A - ANA ZUMARAN" + }, + { + "IdCircuito": "0396A", + "Circuito": "396A - VILLA LOS PATOS" + }, + { + "IdCircuito": "0397A", + "Circuito": "397A - CORRAL DEL BAJO" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c342", + "IdDistrito": 5, + "Distrito": "CORRIENTES", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c343", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c344", + "IdSeccion": 1, + "Seccion": "CAPITAL", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - CAPITAL" + }, + { + "IdCircuito": 2, + "Circuito": "2 - CAPITAL" + }, + { + "IdCircuito": 3, + "Circuito": "3 - ZONA LA ROSADA" + }, + { + "IdCircuito": 4, + "Circuito": "4 - CAPITAL" + }, + { + "IdCircuito": 5, + "Circuito": "5 - CAPITAL" + }, + { + "IdCircuito": 6, + "Circuito": "6 - ZONA ALDANA" + }, + { + "IdCircuito": 7, + "Circuito": "7 - ZONA VILLA GARCIA" + }, + { + "IdCircuito": 8, + "Circuito": "8 - CAPITAL" + }, + { + "IdCircuito": 9, + "Circuito": "9 - ZONA LAGUNA BRAVA" + }, + { + "IdCircuito": 10, + "Circuito": "10 - SANTA CATALINA" + }, + { + "IdCircuito": 11, + "Circuito": "11 - RIACHUELO" + }, + { + "IdCircuito": "0002A", + "Circuito": "2A - ZONA JUAN DE VERA" + }, + { + "IdCircuito": "0005A", + "Circuito": "5A - ZONA SANTA TERESITA" + }, + { + "IdCircuito": "0005B", + "Circuito": "5B - ZONA EX AERO CLUB" + }, + { + "IdCircuito": "0005C", + "Circuito": "5C - CAPITAL" + }, + { + "IdCircuito": "0005D", + "Circuito": "5D - ZONA ISLAS MALVINAS" + }, + { + "IdCircuito": "0005E", + "Circuito": "5E - ZONA 17 DE AGOSTO" + }, + { + "IdCircuito": "0005F", + "Circuito": "5F - ZONA CIUDADES CORRENTINAS" + }, + { + "IdCircuito": "0007A", + "Circuito": "7A - CAPITAL" + }, + { + "IdCircuito": "0007B", + "Circuito": "7B - CAPITAL" + }, + { + "IdCircuito": "0009A", + "Circuito": "9A - ZONA PASO MARTINEZ" + }, + { + "IdCircuito": "0011A", + "Circuito": "11A - SAN CAYETANO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c345", + "IdSeccion": 2, + "Seccion": "GOYA", + "Circuitos": [ + { + "IdCircuito": 12, + "Circuito": "12 - GOYA CIUDAD" + }, + { + "IdCircuito": 13, + "Circuito": "13 - 1A.SECCION MARUCHAS" + }, + { + "IdCircuito": 14, + "Circuito": "14 - 2A.SECCION COLONIA PORVENIR" + }, + { + "IdCircuito": 15, + "Circuito": "15 - 3A.SECCION BUENA VISTA" + }, + { + "IdCircuito": 16, + "Circuito": "16 - 4A.SECCION SAN MARTIN" + }, + { + "IdCircuito": "0012A", + "Circuito": "12A - GOYA CIUDAD" + }, + { + "IdCircuito": "0012B", + "Circuito": "12B - GOYA CIUDAD" + }, + { + "IdCircuito": "0012C", + "Circuito": "12C - GOYA CIUDAD" + }, + { + "IdCircuito": "0013A", + "Circuito": "13A - 1A.SECCION CNIA.CAROLINA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c346", + "IdSeccion": 3, + "Seccion": "CURUZÚ CUATIÁ", + "Circuitos": [ + { + "IdCircuito": 17, + "Circuito": "17 - CURUZÚ CUATIÁ CIUDAD" + }, + { + "IdCircuito": 18, + "Circuito": "18 - 1A.SECCION CHACRAS" + }, + { + "IdCircuito": 19, + "Circuito": "19 - 2A.SECCION PAGO LARGO" + }, + { + "IdCircuito": 20, + "Circuito": "20 - 3A.SECCION PARAISO" + }, + { + "IdCircuito": 21, + "Circuito": "21 - 4A.SECCION AVALOS" + }, + { + "IdCircuito": 22, + "Circuito": "22 - 5A.SECCION PERUGORRIA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c347", + "IdSeccion": 4, + "Seccion": "MERCEDES", + "Circuitos": [ + { + "IdCircuito": 23, + "Circuito": "23 - MERCEDES CIUDAD" + }, + { + "IdCircuito": 24, + "Circuito": "24 - 1A.SECCION TIRO FEDERAL" + }, + { + "IdCircuito": 25, + "Circuito": "25 - 2A.SECC CNIA.MARIANO I.LOZA" + }, + { + "IdCircuito": 26, + "Circuito": "26 - 3A.SECC CTO.1 EST.F.YOFRE" + }, + { + "IdCircuito": 27, + "Circuito": "27 - 3A.SECC CTE.2 ITA CORA" + }, + { + "IdCircuito": 28, + "Circuito": "28 - 4A.SECCION UGUAY" + }, + { + "IdCircuito": 29, + "Circuito": "29 - 5A.SECCION CALLEJON" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c348", + "IdSeccion": 5, + "Seccion": "ESQUINA", + "Circuitos": [ + { + "IdCircuito": 30, + "Circuito": "30 - ESQUINA CIUDAD" + }, + { + "IdCircuito": 31, + "Circuito": "31 - 1A.SECCION CAMPAÑA" + }, + { + "IdCircuito": 32, + "Circuito": "32 - 2A.SECCION PUEBLO LIBERTADOR" + }, + { + "IdCircuito": 33, + "Circuito": "33 - 3A.SECCION EL CARMEN" + }, + { + "IdCircuito": 34, + "Circuito": "34 - 4A.SECCION MALVINAS" + }, + { + "IdCircuito": 35, + "Circuito": "35 - 5A.SECCION LAS CUCHILLAS" + }, + { + "IdCircuito": "0032A", + "Circuito": "32A - 2A.SECCION GUAYQUIRARO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c349", + "IdSeccion": 6, + "Seccion": "LAVALLE", + "Circuitos": [ + { + "IdCircuito": 36, + "Circuito": "36 - SANTA LUCIA CIUDAD" + }, + { + "IdCircuito": 37, + "Circuito": "37 - 1A.SECCION PUERTO LAVALLE" + }, + { + "IdCircuito": 38, + "Circuito": "38 - 2A.SECCION GDOR.MARTINEZ" + }, + { + "IdCircuito": 39, + "Circuito": "39 - 3A.SECCION YATAI TY CALLE" + }, + { + "IdCircuito": "0037A", + "Circuito": "37A - 1A.SECC CNIA.C.ECHEVERRIA" + }, + { + "IdCircuito": "0037B", + "Circuito": "37B - 1A.SECC CRUZ D.L.MILAGROS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c34a", + "IdSeccion": 7, + "Seccion": "SANTO TOMÉ", + "Circuitos": [ + { + "IdCircuito": 40, + "Circuito": "40 - SANTO TOMÉ CIUDAD" + }, + { + "IdCircuito": 41, + "Circuito": "41 - 1A.SECCION CHACRAS" + }, + { + "IdCircuito": 42, + "Circuito": "42 - 2A.SECCION CASA PAVA" + }, + { + "IdCircuito": 43, + "Circuito": "43 - 3A.SECCION CNIA.JOSE R. GOMEZ" + }, + { + "IdCircuito": 44, + "Circuito": "44 - GARRUCHOS" + }, + { + "IdCircuito": 45, + "Circuito": "45 - 4A.SECCION ING. V. VIRASORO" + }, + { + "IdCircuito": 46, + "Circuito": "46 - 5A.SECCION GOMEZ CUE" + }, + { + "IdCircuito": 47, + "Circuito": "47 - 6A.SECCION ISLA SAN MATEO" + }, + { + "IdCircuito": 48, + "Circuito": "48 - 7A.SECCION PASO GALARZA CUE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c34b", + "IdSeccion": 8, + "Seccion": "PASO DE LOS LIBRES", + "Circuitos": [ + { + "IdCircuito": 49, + "Circuito": "49 - PASO DE LOS LIBRES CIUDAD" + }, + { + "IdCircuito": 50, + "Circuito": "50 - 1A.SECCION TAPEBICUA" + }, + { + "IdCircuito": 51, + "Circuito": "51 - 2A.SECCION SAN ROQUITO" + }, + { + "IdCircuito": 52, + "Circuito": "52 - 3A.SECC E.CABRED P.PUCHETA" + }, + { + "IdCircuito": 53, + "Circuito": "53 - 4A.SECCION EST.BONPLAND" + }, + { + "IdCircuito": 54, + "Circuito": "54 - 5A.SECCION PALMAR Y OMBUCITO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c34c", + "IdSeccion": 9, + "Seccion": "MONTE CASEROS", + "Circuitos": [ + { + "IdCircuito": 55, + "Circuito": "55 - MONTE CASEROS CIUDAD" + }, + { + "IdCircuito": 56, + "Circuito": "56 - 1A.SECCION EST.LABOUGLE" + }, + { + "IdCircuito": 57, + "Circuito": "57 - 2A.SECCION CNIA.LIBERTAD" + }, + { + "IdCircuito": 58, + "Circuito": "58 - 3A.SECCION PARADA ACUÑA" + }, + { + "IdCircuito": 59, + "Circuito": "59 - 4A.SECCION EST.JUAN PUJOL" + }, + { + "IdCircuito": "0059A", + "Circuito": "59A - 4A.SECCION CNIA.MOCORETA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c34d", + "IdSeccion": 10, + "Seccion": "SAN LUIS DEL PALMAR", + "Circuitos": [ + { + "IdCircuito": 60, + "Circuito": "60 - S.LUIS DEL PALMAR PUEBLO" + }, + { + "IdCircuito": 61, + "Circuito": "61 - 1A.SECC LAGUNITA CAVIA CUE" + }, + { + "IdCircuito": 62, + "Circuito": "62 - 2A.SECCION PONTON RALERAS" + }, + { + "IdCircuito": 63, + "Circuito": "63 - 3A.SECC HERLITZKA V.S.ISIDRO" + }, + { + "IdCircuito": 64, + "Circuito": "64 - 4A.SECCION EMPEDRADO LIMPIO" + }, + { + "IdCircuito": 65, + "Circuito": "65 - 5A.SECC LOMAS D. GALARZA KM.89" + }, + { + "IdCircuito": 66, + "Circuito": "66 - 6A.SECCION CAMPO GRANDE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c34e", + "IdSeccion": 11, + "Seccion": "BELLA VISTA", + "Circuitos": [ + { + "IdCircuito": 67, + "Circuito": "67 - BELLA VISTA CIUDAD" + }, + { + "IdCircuito": 68, + "Circuito": "68 - 1A.SECCION LOMAS" + }, + { + "IdCircuito": 69, + "Circuito": "69 - 2A.SECCION JUAN DIAZ" + }, + { + "IdCircuito": 70, + "Circuito": "70 - 3A.SECCION CNIA.3 DE ABRIL" + }, + { + "IdCircuito": 71, + "Circuito": "71 - 4A.SECCION CNIA.PROGRESO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c34f", + "IdSeccion": 12, + "Seccion": "EMPEDRADO", + "Circuitos": [ + { + "IdCircuito": 72, + "Circuito": "72 - EMPEDRADO PUEBLO" + }, + { + "IdCircuito": 73, + "Circuito": "73 - 1A.SECCION EST. DERQUI" + }, + { + "IdCircuito": 74, + "Circuito": "74 - 2A.SECCION CAMPO GRANDE" + }, + { + "IdCircuito": 75, + "Circuito": "75 - 3A.SECC COSTA SAN LORENZO" + }, + { + "IdCircuito": 76, + "Circuito": "76 - 4A.SECCION LOMAS" + }, + { + "IdCircuito": "0073A", + "Circuito": "73A - 1A.SECCION EL SOMBRERO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c350", + "IdSeccion": 13, + "Seccion": "SAN ROQUE", + "Circuitos": [ + { + "IdCircuito": 77, + "Circuito": "77 - SAN ROQUE PUEBLO" + }, + { + "IdCircuito": 78, + "Circuito": "78 - 1A.SECC CTO.1 P.R.FERNANDEZ" + }, + { + "IdCircuito": 79, + "Circuito": "79 - 1A.SECC CTO.2 9 DE JULIO" + }, + { + "IdCircuito": 80, + "Circuito": "80 - 2A.SECC CNIA.PANDO R.GRANDE" + }, + { + "IdCircuito": 81, + "Circuito": "81 - 3A.SECCION SANTO DOMINGO" + }, + { + "IdCircuito": 82, + "Circuito": "82 - 4A.SECCION CHAVARRIA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c351", + "IdSeccion": 14, + "Seccion": "GENERAL PAZ", + "Circuitos": [ + { + "IdCircuito": 83, + "Circuito": "83 - GRAL.PAZ CIUDAD" + }, + { + "IdCircuito": 84, + "Circuito": "84 - 1A.SECC CAPILLITA CNIA.S.MARTIN" + }, + { + "IdCircuito": 85, + "Circuito": "85 - 2A.SECCION L.DE VALLEJOS" + }, + { + "IdCircuito": 86, + "Circuito": "86 - 3A.SECCION TACUARAL" + }, + { + "IdCircuito": 87, + "Circuito": "87 - 4A.SECCION CNIA. JUAN PUJOL" + }, + { + "IdCircuito": 88, + "Circuito": "88 - 5A.SECCION PALMAR GRANDE" + }, + { + "IdCircuito": 89, + "Circuito": "89 - 6A.SECCION ARERUNGUA C.ROMERO" + }, + { + "IdCircuito": 90, + "Circuito": "90 - ITA IBATE" + }, + { + "IdCircuito": "0087A", + "Circuito": "87A - 4A.SECCION LOS VENCES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c352", + "IdSeccion": 15, + "Seccion": "SALADAS", + "Circuitos": [ + { + "IdCircuito": 91, + "Circuito": "91 - SALADAS PUEBLO" + }, + { + "IdCircuito": 92, + "Circuito": "92 - 1A.SECCION CNIA.J.B.CABRAL" + }, + { + "IdCircuito": 93, + "Circuito": "93 - 2A.SECC PAGO D.LOS DESEOS" + }, + { + "IdCircuito": 94, + "Circuito": "94 - 3A.SECCION SAN LORENZO" + }, + { + "IdCircuito": 95, + "Circuito": "95 - 4A.SECCION ANGUA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c353", + "IdSeccion": 16, + "Seccion": "SAN MARTÍN", + "Circuitos": [ + { + "IdCircuito": 96, + "Circuito": "96 - LA CRUZ" + }, + { + "IdCircuito": 97, + "Circuito": "97 - LA CRUZ 1A.SECCION IZOQUI" + }, + { + "IdCircuito": 98, + "Circuito": "98 - LA CRUZ 2A.SECC C.PELLEGRINI" + }, + { + "IdCircuito": 99, + "Circuito": "99 - LA CRUZ 3A.SECC SAN GABRIEL" + }, + { + "IdCircuito": 100, + "Circuito": "100 - YAPEYU" + }, + { + "IdCircuito": "0100A", + "Circuito": "100A - GUAVIRAVI" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c354", + "IdSeccion": 17, + "Seccion": "CONCEPCIÓN", + "Circuitos": [ + { + "IdCircuito": 101, + "Circuito": "101 - CONCEPCIÓN PUEBLO" + }, + { + "IdCircuito": 102, + "Circuito": "102 - 1A.SECCION CARAMBOLA" + }, + { + "IdCircuito": 103, + "Circuito": "103 - 2A.SECCION PASO LUCERO" + }, + { + "IdCircuito": 104, + "Circuito": "104 - 3A.SECC ELCARMEN S.AGUSTIN" + }, + { + "IdCircuito": 105, + "Circuito": "105 - 4A.SECCION CTO.1 TABAY" + }, + { + "IdCircuito": 106, + "Circuito": "106 - 4A.SECCION CTO.2 STA.ROSA" + }, + { + "IdCircuito": 107, + "Circuito": "107 - 5A.SECCION LOMA ALTA" + }, + { + "IdCircuito": "0105A", + "Circuito": "105A - 4A.SECC CTO.1 CNIA.TATACUA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c355", + "IdSeccion": 18, + "Seccion": "MBURUCUYÁ", + "Circuitos": [ + { + "IdCircuito": 108, + "Circuito": "108 - MBURUCUYÁ PUEBLO" + }, + { + "IdCircuito": 109, + "Circuito": "109 - 1A.SECC. ELPAGO LOMA ALTA" + }, + { + "IdCircuito": 110, + "Circuito": "110 - 2A.SECCION MANANTIALES" + }, + { + "IdCircuito": 111, + "Circuito": "111 - 3A.SECCION PUNTA GRANDE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c356", + "IdSeccion": 19, + "Seccion": "ITUZAINGÓ", + "Circuitos": [ + { + "IdCircuito": 112, + "Circuito": "112 - ITUZAINGÓ PUEBLO" + }, + { + "IdCircuito": 113, + "Circuito": "113 - 1A.SECCION APIPE CHICO" + }, + { + "IdCircuito": 114, + "Circuito": "114 - 2A.SECCION VILLA OLIVARI" + }, + { + "IdCircuito": 115, + "Circuito": "115 - 3A.SECC LIBERTAD PUERTO VALLE" + }, + { + "IdCircuito": 116, + "Circuito": "116 - 4A.SECCION CAA CARAI" + }, + { + "IdCircuito": 117, + "Circuito": "117 - 5A.SECCION APIPE GRANDE" + }, + { + "IdCircuito": 118, + "Circuito": "118 - SAN CARLOS" + }, + { + "IdCircuito": 119, + "Circuito": "119 - S.CARLOS 1A.SECC CNIA.LIEBIGS" + }, + { + "IdCircuito": 120, + "Circuito": "120 - S.CARLOS 2A.SECC S.JUAN C.TABAY" + }, + { + "IdCircuito": "0117A", + "Circuito": "117A - 5A.SECCION COLONIA URIBURU" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c357", + "IdSeccion": 20, + "Seccion": "SAUCE", + "Circuitos": [ + { + "IdCircuito": 121, + "Circuito": "121 - SAUCE PUEBLO" + }, + { + "IdCircuito": 122, + "Circuito": "122 - 1A.SECCION CAMPAÑA" + }, + { + "IdCircuito": 123, + "Circuito": "123 - 2A.SECCION CAÑADITAS" + }, + { + "IdCircuito": 124, + "Circuito": "124 - 3A.SECC RINCON D.L.ANIMAS" + }, + { + "IdCircuito": 125, + "Circuito": "125 - 4A.SECCION BARRANCAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c358", + "IdSeccion": 21, + "Seccion": "SAN COSME", + "Circuitos": [ + { + "IdCircuito": 126, + "Circuito": "126 - SAN COSME PUEBLO" + }, + { + "IdCircuito": 127, + "Circuito": "127 - 1A.SECCION ENSENADITA" + }, + { + "IdCircuito": 128, + "Circuito": "128 - 2A.SECCION SANTA ANA" + }, + { + "IdCircuito": 129, + "Circuito": "129 - 3A.SECC DESAGUADERO VECINDAD" + }, + { + "IdCircuito": 130, + "Circuito": "130 - 4A.SECCION ENSENADA GRANDE" + }, + { + "IdCircuito": 131, + "Circuito": "131 - 5A.SECCION P.DE LA PATRIA" + }, + { + "IdCircuito": "0128A", + "Circuito": "128A - 2A.SECC ING.1ER.CORRENTINO" + }, + { + "IdCircuito": "0130A", + "Circuito": "130A - 4A.SECCION PUERTO GONZALEZ" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c359", + "IdSeccion": 22, + "Seccion": "GENERAL ALVEAR", + "Circuitos": [ + { + "IdCircuito": 132, + "Circuito": "132 - GRAL.ALVEAR PUEBLO" + }, + { + "IdCircuito": 133, + "Circuito": "133 - 1A.SECCION PANCHO CUE" + }, + { + "IdCircuito": 134, + "Circuito": "134 - 2A.SECCION PALMITAS" + }, + { + "IdCircuito": 135, + "Circuito": "135 - 3A.SECC. ESTACION TORRENT" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c35a", + "IdSeccion": 23, + "Seccion": "SAN MIGUEL", + "Circuitos": [ + { + "IdCircuito": 136, + "Circuito": "136 - SAN MIGUEL PUEBLO" + }, + { + "IdCircuito": 137, + "Circuito": "137 - 1A.SECC TACUARALITO MONTAÑA" + }, + { + "IdCircuito": 138, + "Circuito": "138 - 2A.SECC CNIA.MADARIAGA SANTA" + }, + { + "IdCircuito": 139, + "Circuito": "139 - 3A.SECCION CURUPAYTI" + }, + { + "IdCircuito": 140, + "Circuito": "140 - 4A.SECCION LORETO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c35b", + "IdSeccion": 24, + "Seccion": "ITATI", + "Circuitos": [ + { + "IdCircuito": 141, + "Circuito": "141 - ITATI PUEBLO" + }, + { + "IdCircuito": 142, + "Circuito": "142 - 1A.SECCION IBIRAY" + }, + { + "IdCircuito": 143, + "Circuito": "143 - 2A.SECCION RAMADA PASO" + }, + { + "IdCircuito": 144, + "Circuito": "144 - 3A.SECCION YACAREY" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c35c", + "IdSeccion": 25, + "Seccion": "BERÓN DE ASTRADA", + "Circuitos": [ + { + "IdCircuito": 145, + "Circuito": "145 - BERÓN DE ASTRADA PUEBLO" + }, + { + "IdCircuito": 146, + "Circuito": "146 - 1A.SECCION TORO PICHAY" + }, + { + "IdCircuito": 147, + "Circuito": "147 - 2A.SECCION YAHAPE" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c35d", + "IdDistrito": 6, + "Distrito": "CHACO", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c35e", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c35f", + "IdSeccion": 1, + "Seccion": "SAN FERNANDO", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": 1 + }, + { + "IdCircuito": 2, + "Circuito": 2 + }, + { + "IdCircuito": 3, + "Circuito": 3 + }, + { + "IdCircuito": 4, + "Circuito": 4 + }, + { + "IdCircuito": 6, + "Circuito": 6 + }, + { + "IdCircuito": 9, + "Circuito": 9 + }, + { + "IdCircuito": 10, + "Circuito": 10 + }, + { + "IdCircuito": 12, + "Circuito": 12 + }, + { + "IdCircuito": 14, + "Circuito": 14 + }, + { + "IdCircuito": 15, + "Circuito": 15 + }, + { + "IdCircuito": 17, + "Circuito": 17 + }, + { + "IdCircuito": 18, + "Circuito": 18 + }, + { + "IdCircuito": 20, + "Circuito": 20 + }, + { + "IdCircuito": 21, + "Circuito": 21 + }, + { + "IdCircuito": 23, + "Circuito": 23 + }, + { + "IdCircuito": 24, + "Circuito": 24 + }, + { + "IdCircuito": 25, + "Circuito": 25 + }, + { + "IdCircuito": 26, + "Circuito": 26 + }, + { + "IdCircuito": 27, + "Circuito": 27 + }, + { + "IdCircuito": "0005A", + "Circuito": "5A" + }, + { + "IdCircuito": "0005B", + "Circuito": "5B" + }, + { + "IdCircuito": "0007A", + "Circuito": "7A" + }, + { + "IdCircuito": "0007B", + "Circuito": "7B" + }, + { + "IdCircuito": "0008A", + "Circuito": "8A" + }, + { + "IdCircuito": "0008B", + "Circuito": "8B" + }, + { + "IdCircuito": "0011A", + "Circuito": "11A" + }, + { + "IdCircuito": "0011B", + "Circuito": "11B" + }, + { + "IdCircuito": "0013A", + "Circuito": "13A" + }, + { + "IdCircuito": "0013B", + "Circuito": "13B" + }, + { + "IdCircuito": "0016A", + "Circuito": "16A" + }, + { + "IdCircuito": "0016B", + "Circuito": "16B" + }, + { + "IdCircuito": "0016C", + "Circuito": "16C" + }, + { + "IdCircuito": "0019A", + "Circuito": "19A" + }, + { + "IdCircuito": "0019B", + "Circuito": "19B" + }, + { + "IdCircuito": "0022A", + "Circuito": "22A" + }, + { + "IdCircuito": "0022B", + "Circuito": "22B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c360", + "IdSeccion": 2, + "Seccion": "PRIMERO DE MAYO", + "Circuitos": [ + { + "IdCircuito": 28, + "Circuito": 28 + }, + { + "IdCircuito": 29, + "Circuito": 29 + }, + { + "IdCircuito": 30, + "Circuito": 30 + }, + { + "IdCircuito": 31, + "Circuito": 31 + }, + { + "IdCircuito": "0028A", + "Circuito": "28A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c361", + "IdSeccion": 3, + "Seccion": "LIBERTAD", + "Circuitos": [ + { + "IdCircuito": 32, + "Circuito": 32 + }, + { + "IdCircuito": 33, + "Circuito": 33 + }, + { + "IdCircuito": 34, + "Circuito": 34 + }, + { + "IdCircuito": 35, + "Circuito": 35 + }, + { + "IdCircuito": 36, + "Circuito": 36 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c362", + "IdSeccion": 4, + "Seccion": "GENERAL DONOVAN", + "Circuitos": [ + { + "IdCircuito": 37, + "Circuito": 37 + }, + { + "IdCircuito": 38, + "Circuito": 38 + }, + { + "IdCircuito": 39, + "Circuito": 39 + }, + { + "IdCircuito": 40, + "Circuito": 40 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c363", + "IdSeccion": 5, + "Seccion": "SARGENTO CABRAL", + "Circuitos": [ + { + "IdCircuito": 41, + "Circuito": 41 + }, + { + "IdCircuito": 42, + "Circuito": 42 + }, + { + "IdCircuito": 43, + "Circuito": 43 + }, + { + "IdCircuito": 44, + "Circuito": 44 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c364", + "IdSeccion": 6, + "Seccion": "PCIA. DE LA PLAZA", + "Circuitos": [ + { + "IdCircuito": 45, + "Circuito": 45 + }, + { + "IdCircuito": 46, + "Circuito": 46 + }, + { + "IdCircuito": 47, + "Circuito": 47 + }, + { + "IdCircuito": 48, + "Circuito": 48 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c365", + "IdSeccion": 7, + "Seccion": "BERMEJO", + "Circuitos": [ + { + "IdCircuito": 49, + "Circuito": 49 + }, + { + "IdCircuito": 50, + "Circuito": 50 + }, + { + "IdCircuito": 51, + "Circuito": 51 + }, + { + "IdCircuito": 52, + "Circuito": 52 + }, + { + "IdCircuito": 53, + "Circuito": 53 + }, + { + "IdCircuito": 54, + "Circuito": 54 + }, + { + "IdCircuito": 56, + "Circuito": 56 + }, + { + "IdCircuito": 57, + "Circuito": 57 + }, + { + "IdCircuito": "0055A", + "Circuito": "55A" + }, + { + "IdCircuito": "0055B", + "Circuito": "55B" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c366", + "IdSeccion": 8, + "Seccion": "LIB. GRAL. SAN MARTÍN", + "Circuitos": [ + { + "IdCircuito": 58, + "Circuito": 58 + }, + { + "IdCircuito": 59, + "Circuito": 59 + }, + { + "IdCircuito": 60, + "Circuito": 60 + }, + { + "IdCircuito": 61, + "Circuito": 61 + }, + { + "IdCircuito": 62, + "Circuito": 62 + }, + { + "IdCircuito": 63, + "Circuito": 63 + }, + { + "IdCircuito": 64, + "Circuito": 64 + }, + { + "IdCircuito": 65, + "Circuito": 65 + }, + { + "IdCircuito": 66, + "Circuito": 66 + }, + { + "IdCircuito": 67, + "Circuito": 67 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c367", + "IdSeccion": 9, + "Seccion": "TAPENAGÁ", + "Circuitos": [ + { + "IdCircuito": 68, + "Circuito": 68 + }, + { + "IdCircuito": 69, + "Circuito": 69 + }, + { + "IdCircuito": 70, + "Circuito": 70 + }, + { + "IdCircuito": 71, + "Circuito": 71 + }, + { + "IdCircuito": 72, + "Circuito": 72 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c368", + "IdSeccion": 10, + "Seccion": "SAN LORENZO", + "Circuitos": [ + { + "IdCircuito": 73, + "Circuito": 73 + }, + { + "IdCircuito": 74, + "Circuito": 74 + }, + { + "IdCircuito": 75, + "Circuito": 75 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c369", + "IdSeccion": 11, + "Seccion": "MAYOR L.J.FONTANA", + "Circuitos": [ + { + "IdCircuito": 76, + "Circuito": 76 + }, + { + "IdCircuito": 77, + "Circuito": 77 + }, + { + "IdCircuito": 78, + "Circuito": 78 + }, + { + "IdCircuito": 79, + "Circuito": 79 + }, + { + "IdCircuito": 80, + "Circuito": 80 + }, + { + "IdCircuito": 81, + "Circuito": 81 + }, + { + "IdCircuito": 82, + "Circuito": 82 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c36a", + "IdSeccion": 12, + "Seccion": "O'HIGGINS", + "Circuitos": [ + { + "IdCircuito": 83, + "Circuito": 83 + }, + { + "IdCircuito": 84, + "Circuito": 84 + }, + { + "IdCircuito": 85, + "Circuito": 85 + }, + { + "IdCircuito": 86, + "Circuito": 86 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c36b", + "IdSeccion": 13, + "Seccion": "CMDTE. FERNÁNDEZ", + "Circuitos": [ + { + "IdCircuito": 87, + "Circuito": 87 + }, + { + "IdCircuito": 88, + "Circuito": 88 + }, + { + "IdCircuito": 89, + "Circuito": 89 + }, + { + "IdCircuito": 90, + "Circuito": 90 + }, + { + "IdCircuito": 91, + "Circuito": 91 + }, + { + "IdCircuito": 92, + "Circuito": 92 + }, + { + "IdCircuito": 93, + "Circuito": 93 + }, + { + "IdCircuito": 94, + "Circuito": 94 + }, + { + "IdCircuito": 95, + "Circuito": 95 + }, + { + "IdCircuito": 96, + "Circuito": 96 + }, + { + "IdCircuito": 97, + "Circuito": 97 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c36c", + "IdSeccion": 14, + "Seccion": "QUITILIPI", + "Circuitos": [ + { + "IdCircuito": 98, + "Circuito": 98 + }, + { + "IdCircuito": 99, + "Circuito": 99 + }, + { + "IdCircuito": 100, + "Circuito": 100 + }, + { + "IdCircuito": 101, + "Circuito": 101 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c36d", + "IdSeccion": 15, + "Seccion": "25 DE MAYO", + "Circuitos": [ + { + "IdCircuito": 102, + "Circuito": 102 + }, + { + "IdCircuito": 103, + "Circuito": 103 + }, + { + "IdCircuito": 104, + "Circuito": 104 + }, + { + "IdCircuito": 105, + "Circuito": 105 + }, + { + "IdCircuito": 106, + "Circuito": 106 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c36e", + "IdSeccion": 16, + "Seccion": "MAIPÚ", + "Circuitos": [ + { + "IdCircuito": 107, + "Circuito": 107 + }, + { + "IdCircuito": 108, + "Circuito": 108 + }, + { + "IdCircuito": 109, + "Circuito": 109 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c36f", + "IdSeccion": 17, + "Seccion": "INDEPENDENCIA", + "Circuitos": [ + { + "IdCircuito": 110, + "Circuito": 110 + }, + { + "IdCircuito": 111, + "Circuito": 111 + }, + { + "IdCircuito": 112, + "Circuito": 112 + }, + { + "IdCircuito": 113, + "Circuito": 113 + }, + { + "IdCircuito": 114, + "Circuito": 114 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c370", + "IdSeccion": 18, + "Seccion": "GENERAL BELGRANO", + "Circuitos": [ + { + "IdCircuito": 115, + "Circuito": 115 + }, + { + "IdCircuito": 116, + "Circuito": 116 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c371", + "IdSeccion": 19, + "Seccion": "9 DE JULIO", + "Circuitos": [ + { + "IdCircuito": 117, + "Circuito": 117 + }, + { + "IdCircuito": 118, + "Circuito": 118 + }, + { + "IdCircuito": "0117A", + "Circuito": "117A" + }, + { + "IdCircuito": "0118A", + "Circuito": "118A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c372", + "IdSeccion": 20, + "Seccion": "CHACABUCO", + "Circuitos": [ + { + "IdCircuito": 119, + "Circuito": 119 + }, + { + "IdCircuito": 120, + "Circuito": 120 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c373", + "IdSeccion": 21, + "Seccion": "12 DE OCTUBRE", + "Circuitos": [ + { + "IdCircuito": 121, + "Circuito": 121 + }, + { + "IdCircuito": 122, + "Circuito": 122 + }, + { + "IdCircuito": 123, + "Circuito": 123 + }, + { + "IdCircuito": 124, + "Circuito": 124 + }, + { + "IdCircuito": 125, + "Circuito": 125 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c374", + "IdSeccion": 22, + "Seccion": "2 DE ABRIL", + "Circuitos": [ + { + "IdCircuito": 126, + "Circuito": 126 + }, + { + "IdCircuito": 127, + "Circuito": 127 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c375", + "IdSeccion": 23, + "Seccion": "FRAY J.S.M.DE ORO", + "Circuitos": [ + { + "IdCircuito": 128, + "Circuito": 128 + }, + { + "IdCircuito": 129, + "Circuito": 129 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c376", + "IdSeccion": 24, + "Seccion": "ALMIRANTE BROWN", + "Circuitos": [ + { + "IdCircuito": 130, + "Circuito": 130 + }, + { + "IdCircuito": 131, + "Circuito": 131 + }, + { + "IdCircuito": 132, + "Circuito": 132 + }, + { + "IdCircuito": 133, + "Circuito": 133 + }, + { + "IdCircuito": "0132A", + "Circuito": "132A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c377", + "IdSeccion": 25, + "Seccion": "GENERAL GÜEMES", + "Circuitos": [ + { + "IdCircuito": 136, + "Circuito": 136 + }, + { + "IdCircuito": 137, + "Circuito": 137 + }, + { + "IdCircuito": 139, + "Circuito": 139 + }, + { + "IdCircuito": "0134A", + "Circuito": "134A" + }, + { + "IdCircuito": "0134B", + "Circuito": "134B" + }, + { + "IdCircuito": "0134C", + "Circuito": "134C" + }, + { + "IdCircuito": "0134D", + "Circuito": "134D" + }, + { + "IdCircuito": "0135A", + "Circuito": "135A" + }, + { + "IdCircuito": "0135B", + "Circuito": "135B" + }, + { + "IdCircuito": "0135C", + "Circuito": "135C" + }, + { + "IdCircuito": "0138A", + "Circuito": "138A" + }, + { + "IdCircuito": "0138B", + "Circuito": "138B" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c378", + "IdDistrito": 7, + "Distrito": "CHUBUT", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c379", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c37a", + "IdSeccion": 1, + "Seccion": "RAWSON", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - RAWSON CENTRO" + }, + { + "IdCircuito": 2, + "Circuito": "2 - RAWSON OESTE" + }, + { + "IdCircuito": 3, + "Circuito": "3 - RAWSON ESTE" + }, + { + "IdCircuito": 4, + "Circuito": "4 - RAWSON SUR" + }, + { + "IdCircuito": 5, + "Circuito": "5 - PLAYA UNION" + }, + { + "IdCircuito": 6, + "Circuito": "6 - TRELEW CONSTITUCION" + }, + { + "IdCircuito": 7, + "Circuito": "7 - TRELEW OESTE" + }, + { + "IdCircuito": 8, + "Circuito": "8 - TRELEW NORTE" + }, + { + "IdCircuito": 9, + "Circuito": "9 - TRELEW DON BOSCO" + }, + { + "IdCircuito": 10, + "Circuito": "10 - TRELEW CORRADI" + }, + { + "IdCircuito": 11, + "Circuito": "11 - TRELEW PROGRESO" + }, + { + "IdCircuito": 12, + "Circuito": "12 - TRELEW CENTRO II" + }, + { + "IdCircuito": 13, + "Circuito": "13 - TRELEW CENTRO I" + }, + { + "IdCircuito": 14, + "Circuito": "14 - TRELEW LA LAGUNA" + }, + { + "IdCircuito": 15, + "Circuito": "15 - TRELEW SARMIENTO" + }, + { + "IdCircuito": 16, + "Circuito": "16 - TRELEW SUR" + }, + { + "IdCircuito": 17, + "Circuito": "17 - TRELEW SAN DAVID" + }, + { + "IdCircuito": 18, + "Circuito": "18 - TRELEW PADRE JUAN MUZIO" + }, + { + "IdCircuito": 19, + "Circuito": "19 - TRELEW BARRIO COMERCIO" + }, + { + "IdCircuito": 20, + "Circuito": "20 - TRELEW JUAN MANUEL DE ROSAS" + }, + { + "IdCircuito": 21, + "Circuito": "21 - TRELEW VILLA ITALIA" + }, + { + "IdCircuito": 22, + "Circuito": "22 - TRELEW ESCUELA 3" + }, + { + "IdCircuito": 23, + "Circuito": "23 - TRELEW B INTA" + }, + { + "IdCircuito": 24, + "Circuito": "24 - TRELEW ESCUELA 66" + }, + { + "IdCircuito": 25, + "Circuito": "25 - TRELEW B. ETCHEPARE" + }, + { + "IdCircuito": "0009A", + "Circuito": "9A - TRELEW DON BOSCO II" + }, + { + "IdCircuito": "0018A", + "Circuito": "18A - TRELEW PADRE J MUZIO II" + }, + { + "IdCircuito": "0021A", + "Circuito": "21A - TRELEW VILLA ITALIA II" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c37b", + "IdSeccion": 2, + "Seccion": "BIEDMA", + "Circuitos": [ + { + "IdCircuito": 26, + "Circuito": "26 - PUERTO MADRYN SUR" + }, + { + "IdCircuito": 27, + "Circuito": "27 - PUERTO MADRYN ESTE" + }, + { + "IdCircuito": 28, + "Circuito": "28 - PUERTO MADRYN OESTE" + }, + { + "IdCircuito": 29, + "Circuito": "29 - PUERTO MADRYN CENTRO" + }, + { + "IdCircuito": 30, + "Circuito": "30 - PUERTO MADRYN ACCESOS" + }, + { + "IdCircuito": 31, + "Circuito": "31 - PUERTO MADRYN NORTE" + }, + { + "IdCircuito": 32, + "Circuito": "32 - PUERTO PIRAMIDES" + }, + { + "IdCircuito": "0028A", + "Circuito": "28A - PUERTO MADRYN OESTE II" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c37c", + "IdSeccion": 3, + "Seccion": "TELSEN", + "Circuitos": [ + { + "IdCircuito": 33, + "Circuito": "33 - TELSEN" + }, + { + "IdCircuito": 34, + "Circuito": "34 - GAN GAN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c37d", + "IdSeccion": 4, + "Seccion": "GASTRE", + "Circuitos": [ + { + "IdCircuito": 35, + "Circuito": "35 - GASTRE" + }, + { + "IdCircuito": "0036A", + "Circuito": "36A - LAGUNITA SALADA" + }, + { + "IdCircuito": "0036B", + "Circuito": "36B - EL ESCORIAL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c37e", + "IdSeccion": 5, + "Seccion": "CUSHAMEN", + "Circuitos": [ + { + "IdCircuito": 37, + "Circuito": "37 - CUSHAMEN" + }, + { + "IdCircuito": 39, + "Circuito": "39 - EL MAITEN" + }, + { + "IdCircuito": 40, + "Circuito": "40 - GUALJAINA" + }, + { + "IdCircuito": 41, + "Circuito": "41 - CHOLILA" + }, + { + "IdCircuito": 42, + "Circuito": "42 - EPUYEN" + }, + { + "IdCircuito": 43, + "Circuito": "43 - EL HOYO" + }, + { + "IdCircuito": "0044A", + "Circuito": "44A - LAGO PUELO" + }, + { + "IdCircuito": "0044B", + "Circuito": "44B - LAS GOLONDRINAS" + }, + { + "IdCircuito": "0044C", + "Circuito": "44C - EL TURBIO" + }, + { + "IdCircuito": "0044D", + "Circuito": "44D - CERRO RADAL" + }, + { + "IdCircuito": "0044E", + "Circuito": "44E - PARAJE ENTRE RIOS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c37f", + "IdSeccion": 6, + "Seccion": "FUTALEUFÚ", + "Circuitos": [ + { + "IdCircuito": 45, + "Circuito": "45 - EL BOQUETE" + }, + { + "IdCircuito": 46, + "Circuito": "46 - ESQUEL NORTE" + }, + { + "IdCircuito": 47, + "Circuito": "47 - ESQUEL ESTE" + }, + { + "IdCircuito": 48, + "Circuito": "48 - ESQUEL OESTE" + }, + { + "IdCircuito": 49, + "Circuito": "49 - PQUE. NAC. LOS ALERCES" + }, + { + "IdCircuito": 51, + "Circuito": "51 - TREVELIN ESTE" + }, + { + "IdCircuito": 52, + "Circuito": "52 - LOS CIPRESES" + }, + { + "IdCircuito": 53, + "Circuito": "53 - LAGO ROSARIO" + }, + { + "IdCircuito": "0048A", + "Circuito": "48A - RIO PERCY" + }, + { + "IdCircuito": "0050A", + "Circuito": "50A - TREVELIN OESTE" + }, + { + "IdCircuito": "0050B", + "Circuito": "50B - ALDEA ESCOLAR" + }, + { + "IdCircuito": "0054A", + "Circuito": "54A - CORCOVADO" + }, + { + "IdCircuito": "0054B", + "Circuito": "54B - CERRO CENTINELA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c380", + "IdSeccion": 7, + "Seccion": "LANGUIÑEO", + "Circuitos": [ + { + "IdCircuito": 55, + "Circuito": "55 - CARRENLEUFU" + }, + { + "IdCircuito": 56, + "Circuito": "56 - TECKA" + }, + { + "IdCircuito": 57, + "Circuito": "57 - PASO DEL SAPO" + }, + { + "IdCircuito": 58, + "Circuito": "58 - COLAN CONHUE" + }, + { + "IdCircuito": "0058A", + "Circuito": "58A - ALDEA EPULEF" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c381", + "IdSeccion": 8, + "Seccion": "TEHUELCHES", + "Circuitos": [ + { + "IdCircuito": 59, + "Circuito": "59 - COMUNA RURAL ATILIO VIGLIONE" + }, + { + "IdCircuito": 60, + "Circuito": "60 - RIO PICO" + }, + { + "IdCircuito": 61, + "Circuito": "61 - GOBERNADOR COSTA" + }, + { + "IdCircuito": 62, + "Circuito": "62 - JOSE DE SAN MARTIN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c382", + "IdSeccion": 9, + "Seccion": "PASO DE INDIOS", + "Circuitos": [ + { + "IdCircuito": 63, + "Circuito": "63 - PASO DE INDIOS" + }, + { + "IdCircuito": "0063A", + "Circuito": "63A - LOS ALTARES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c383", + "IdSeccion": 10, + "Seccion": "MÁRTIRES", + "Circuitos": [ + { + "IdCircuito": 65, + "Circuito": "65 - EL MIRASOL" + }, + { + "IdCircuito": 66, + "Circuito": "66 - LAS PLUMAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c384", + "IdSeccion": 11, + "Seccion": "FLORENTINO AMEGHINO", + "Circuitos": [ + { + "IdCircuito": 67, + "Circuito": "67 - CAMARONES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c385", + "IdSeccion": 12, + "Seccion": "GAIMAN", + "Circuitos": [ + { + "IdCircuito": 68, + "Circuito": "68 - GAIMAN NORTE" + }, + { + "IdCircuito": 69, + "Circuito": "69 - GAIMAN SUR" + }, + { + "IdCircuito": 70, + "Circuito": "70 - DOLAVON RURAL" + }, + { + "IdCircuito": 71, + "Circuito": "71 - DOLAVON" + }, + { + "IdCircuito": 72, + "Circuito": "72 - 28 DE JULIO" + }, + { + "IdCircuito": 73, + "Circuito": "73 - DIQUE FLORENTINO AMEGHINO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c386", + "IdSeccion": 13, + "Seccion": "RIO SENGUER", + "Circuitos": [ + { + "IdCircuito": 74, + "Circuito": "74 - ALDEA APELEG" + }, + { + "IdCircuito": 75, + "Circuito": "75 - RIO SENGUER" + }, + { + "IdCircuito": 77, + "Circuito": "77 - FACUNDO" + }, + { + "IdCircuito": 78, + "Circuito": "78 - RIO MAYO" + }, + { + "IdCircuito": 79, + "Circuito": "79 - DR. RICARDO ROJAS" + }, + { + "IdCircuito": 80, + "Circuito": "80 - ALDEA BELEIRO" + }, + { + "IdCircuito": 81, + "Circuito": "81 - LAGO BLANCO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c387", + "IdSeccion": 14, + "Seccion": "SARMIENTO", + "Circuitos": [ + { + "IdCircuito": 82, + "Circuito": "82 - BUEN PASTO" + }, + { + "IdCircuito": 83, + "Circuito": "83 - SARMIENTO OESTE" + }, + { + "IdCircuito": 84, + "Circuito": "84 - SARMIENTO ESTE" + }, + { + "IdCircuito": "0083A", + "Circuito": "83A - SARMIENTO OESTE II" + }, + { + "IdCircuito": "0084A", + "Circuito": "84A - SARMIENTO ESTE II" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c388", + "IdSeccion": 15, + "Seccion": "ESCALANTE", + "Circuitos": [ + { + "IdCircuito": 86, + "Circuito": "86 - RADA TILLY" + }, + { + "IdCircuito": 87, + "Circuito": "87 - DIADEMA ARGENTINA" + }, + { + "IdCircuito": 88, + "Circuito": "88 - ASTRA" + }, + { + "IdCircuito": 89, + "Circuito": "89 - CALETA CORDOVA" + }, + { + "IdCircuito": 90, + "Circuito": "90 - KM 11" + }, + { + "IdCircuito": 91, + "Circuito": "91 - BARRIO PROSPERO PALAZO" + }, + { + "IdCircuito": 92, + "Circuito": "92 - B.CIUDADELA Y GASODUCTO" + }, + { + "IdCircuito": 93, + "Circuito": "93 - BARRIO LAPRIDA" + }, + { + "IdCircuito": 94, + "Circuito": "94 - BARRIO M. ROSALES" + }, + { + "IdCircuito": 95, + "Circuito": "95 - BARRIO DON BOSCO KM 8" + }, + { + "IdCircuito": 96, + "Circuito": "96 - BARRIO P. ORTIZ" + }, + { + "IdCircuito": 97, + "Circuito": "97 - GENERAL MOSCONI" + }, + { + "IdCircuito": 98, + "Circuito": "98 - COMODORO RIVADAVIA SUR CENTRO" + }, + { + "IdCircuito": 99, + "Circuito": "99 - COMODORO RIVADAVIA NORTE" + }, + { + "IdCircuito": 100, + "Circuito": "100 - COMODORO RIVADAVIA CENTRO OESTE" + }, + { + "IdCircuito": 101, + "Circuito": "101 - COMODORO RIVADAVIA B PIETROBELLI Y C" + }, + { + "IdCircuito": 102, + "Circuito": "102 - COMODORO RIVADAVIA B 13 DE DICIEMBRE" + }, + { + "IdCircuito": 103, + "Circuito": "103 - COMODORO RIVADAVIA B NEWBERY LAS FLORES" + }, + { + "IdCircuito": 104, + "Circuito": "104 - COMODORO RIVADAVIA B CEF NAMUNCURA" + }, + { + "IdCircuito": 105, + "Circuito": "105 - COMODORO RIVADAVIA B Q COSTA Y JUAN XXII" + }, + { + "IdCircuito": 106, + "Circuito": "106 - COMODORO RIVADAVIA B JULIO A ROCA" + }, + { + "IdCircuito": 107, + "Circuito": "107 - COMODORO RIVADAVIA B PUEYRREDON" + }, + { + "IdCircuito": 108, + "Circuito": "108 - COMODORO RIVADAVIA B INDUSTRIAL" + }, + { + "IdCircuito": 109, + "Circuito": "109 - COMODORO RIVADAVIA B SAN MARTIN" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c389", + "IdDistrito": 8, + "Distrito": "ENTRE RÍOS", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c38a", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c38b", + "IdSeccion": 1, + "Seccion": "PARANÁ", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - CENTRO 1" + }, + { + "IdCircuito": 2, + "Circuito": "2 - CENTRO 2" + }, + { + "IdCircuito": 3, + "Circuito": "3 - CENTRO 3" + }, + { + "IdCircuito": 4, + "Circuito": "4 - CENTRO 4" + }, + { + "IdCircuito": 5, + "Circuito": "5 - PUERTO NUEVO" + }, + { + "IdCircuito": 6, + "Circuito": "6 - BAJADA GRANDE" + }, + { + "IdCircuito": 7, + "Circuito": "7 - PUERTO VIEJO" + }, + { + "IdCircuito": 8, + "Circuito": "8 - PARACAO" + }, + { + "IdCircuito": 9, + "Circuito": "9 - ANACLETO MEDINA" + }, + { + "IdCircuito": 10, + "Circuito": "10 - SAN AGUSTIN" + }, + { + "IdCircuito": 11, + "Circuito": "11 - LA FLORESTA" + }, + { + "IdCircuito": 12, + "Circuito": "12 - SANTA TERESITA" + }, + { + "IdCircuito": 13, + "Circuito": "13 - LOMAS DEL MIRADOR" + }, + { + "IdCircuito": 14, + "Circuito": "14 - BRETE" + }, + { + "IdCircuito": 15, + "Circuito": "15 - BARRIO PARQUE" + }, + { + "IdCircuito": 16, + "Circuito": "16 - SANTA ANA" + }, + { + "IdCircuito": 17, + "Circuito": "17 - QUINTAS AL ESTE" + }, + { + "IdCircuito": 18, + "Circuito": "18 - KILOMETRO 5 1/2" + }, + { + "IdCircuito": 19, + "Circuito": "19 - SAN BENITO" + }, + { + "IdCircuito": 20, + "Circuito": "20 - TEZANOS PINTO" + }, + { + "IdCircuito": 21, + "Circuito": "21 - ORO VERDE" + }, + { + "IdCircuito": 22, + "Circuito": "22 - SAUCE PINTO" + }, + { + "IdCircuito": 23, + "Circuito": "23 - COLONIA AVELLANEDA" + }, + { + "IdCircuito": 24, + "Circuito": "24 - VILLA URQUIZA" + }, + { + "IdCircuito": 25, + "Circuito": "25 - COLONIA CELINA" + }, + { + "IdCircuito": 26, + "Circuito": "26 - COLONIA CRESPO" + }, + { + "IdCircuito": 27, + "Circuito": "27 - COL NVA VA URQUIZA" + }, + { + "IdCircuito": 29, + "Circuito": "29 - COLONIA RIVADAVIA" + }, + { + "IdCircuito": 30, + "Circuito": "30 - PASO DE LAS PIEDRAS" + }, + { + "IdCircuito": 31, + "Circuito": "31 - COLONIA CERRITO" + }, + { + "IdCircuito": 32, + "Circuito": "32 - CERRITO" + }, + { + "IdCircuito": 33, + "Circuito": "33 - ALDEA SANTA MARIA" + }, + { + "IdCircuito": 34, + "Circuito": "34 - PUERTO CURTIEMBRE" + }, + { + "IdCircuito": 35, + "Circuito": "35 - MARIA GRANDE 1" + }, + { + "IdCircuito": 36, + "Circuito": "36 - LAS TUNAS" + }, + { + "IdCircuito": 37, + "Circuito": "37 - VILLA MARIA GRANDE" + }, + { + "IdCircuito": 38, + "Circuito": "38 - EL PINGO" + }, + { + "IdCircuito": 39, + "Circuito": "39 - ESTACION SOSA" + }, + { + "IdCircuito": 40, + "Circuito": "40 - TABOSSI" + }, + { + "IdCircuito": 41, + "Circuito": "41 - PUEBLO BRUGO" + }, + { + "IdCircuito": 42, + "Circuito": "42 - ANTONIO TOMAS" + }, + { + "IdCircuito": 43, + "Circuito": "43 - HERNANDARIAS" + }, + { + "IdCircuito": 44, + "Circuito": "44 - LAS GARZAS" + }, + { + "IdCircuito": 45, + "Circuito": "45 - MARIA GRANDE 2" + }, + { + "IdCircuito": 46, + "Circuito": "46 - HASENKAMP" + }, + { + "IdCircuito": 47, + "Circuito": "47 - COL OF 4 BURGOS" + }, + { + "IdCircuito": 48, + "Circuito": "48 - CRESPO" + }, + { + "IdCircuito": 49, + "Circuito": "49 - ESPINILLO" + }, + { + "IdCircuito": 50, + "Circuito": "50 - SAN RAFAEL" + }, + { + "IdCircuito": 51, + "Circuito": "51 - LA PICADA" + }, + { + "IdCircuito": 52, + "Circuito": "52 - ESPINILLO NORTE" + }, + { + "IdCircuito": 53, + "Circuito": "53 - MARIA LUISA" + }, + { + "IdCircuito": 54, + "Circuito": "54 - VA GDOR ETCHEVEHERE" + }, + { + "IdCircuito": 55, + "Circuito": "55 - VILLA FONTANA" + }, + { + "IdCircuito": 56, + "Circuito": "56 - QUEBRACHO" + }, + { + "IdCircuito": 57, + "Circuito": "57 - VIALE" + }, + { + "IdCircuito": 58, + "Circuito": "58 - SEGUI" + }, + { + "IdCircuito": "0023A", + "Circuito": "23A - SAUCE MONTRULL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c38c", + "IdSeccion": 3, + "Seccion": "LA PAZ", + "Circuitos": [ + { + "IdCircuito": 59, + "Circuito": "59 - LA PAZ" + }, + { + "IdCircuito": 60, + "Circuito": "60 - EJIDO LA PAZ" + }, + { + "IdCircuito": 61, + "Circuito": "61 - SANTA ELENA" + }, + { + "IdCircuito": 62, + "Circuito": "62 - DISTRITO FELICIANO" + }, + { + "IdCircuito": 63, + "Circuito": "63 - ALCARAZ 1" + }, + { + "IdCircuito": 64, + "Circuito": "64 - SAN CARLOS" + }, + { + "IdCircuito": 65, + "Circuito": "65 - BOVRIL" + }, + { + "IdCircuito": 66, + "Circuito": "66 - KM 160 SIR LEONARD" + }, + { + "IdCircuito": 67, + "Circuito": "67 - CARRASCO" + }, + { + "IdCircuito": 68, + "Circuito": "68 - ALCARAZ 2" + }, + { + "IdCircuito": 69, + "Circuito": "69 - PUEBLO ALCARAZ" + }, + { + "IdCircuito": 70, + "Circuito": "70 - PUERTO ALGARROBO" + }, + { + "IdCircuito": 71, + "Circuito": "71 - PIEDRAS BLANCAS" + }, + { + "IdCircuito": 72, + "Circuito": "72 - YESO" + }, + { + "IdCircuito": 73, + "Circuito": "73 - ESTACAS" + }, + { + "IdCircuito": 74, + "Circuito": "74 - SAN GUSTAVO" + }, + { + "IdCircuito": 75, + "Circuito": "75 - TACUARAS" + }, + { + "IdCircuito": 76, + "Circuito": "76 - OMBU" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c38d", + "IdSeccion": 4, + "Seccion": "DIAMANTE", + "Circuitos": [ + { + "IdCircuito": 77, + "Circuito": "77 - DIAMANTE" + }, + { + "IdCircuito": 78, + "Circuito": "78 - PUERTO DIAMANTE" + }, + { + "IdCircuito": 79, + "Circuito": "79 - EJIDO DIAMANTE" + }, + { + "IdCircuito": 80, + "Circuito": "80 - STROBEL" + }, + { + "IdCircuito": 81, + "Circuito": "81 - P ALVEAR SPATZENKUTTER" + }, + { + "IdCircuito": 82, + "Circuito": "82 - ALDEA BRASILERA" + }, + { + "IdCircuito": 83, + "Circuito": "83 - PUEBLO NUEVO" + }, + { + "IdCircuito": 84, + "Circuito": "84 - VALLE MARIA" + }, + { + "IdCircuito": 85, + "Circuito": "85 - GRAPSCHENTAL" + }, + { + "IdCircuito": 86, + "Circuito": "86 - ALDEA SALTO" + }, + { + "IdCircuito": 87, + "Circuito": "87 - COLONIA ENSAYO" + }, + { + "IdCircuito": 88, + "Circuito": "88 - ALDEA PROTESTANTE" + }, + { + "IdCircuito": 89, + "Circuito": "89 - COSTA GRANDE" + }, + { + "IdCircuito": 90, + "Circuito": "90 - DOLL" + }, + { + "IdCircuito": 91, + "Circuito": "91 - LAS CUEVAS" + }, + { + "IdCircuito": 92, + "Circuito": "92 - LIBERTADOR SAN MARTIN" + }, + { + "IdCircuito": 93, + "Circuito": "93 - RACEDO" + }, + { + "IdCircuito": 94, + "Circuito": "94 - CAMPS" + }, + { + "IdCircuito": 96, + "Circuito": "96 - RAMIREZ" + }, + { + "IdCircuito": 97, + "Circuito": "97 - ISLETAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c38e", + "IdSeccion": 5, + "Seccion": "VICTORIA", + "Circuitos": [ + { + "IdCircuito": 98, + "Circuito": "98 - VICTORIA ESTE" + }, + { + "IdCircuito": 99, + "Circuito": "99 - VICTORIA OESTE" + }, + { + "IdCircuito": 100, + "Circuito": "100 - CORRALES" + }, + { + "IdCircuito": 101, + "Circuito": "101 - ANTELO" + }, + { + "IdCircuito": 102, + "Circuito": "102 - PAJONAL" + }, + { + "IdCircuito": 103, + "Circuito": "103 - CHILCAS" + }, + { + "IdCircuito": 104, + "Circuito": "104 - SECCION ISLAS" + }, + { + "IdCircuito": 105, + "Circuito": "105 - RINCON DE NOGOYA" + }, + { + "IdCircuito": 106, + "Circuito": "106 - RINCON DEL DOLL" + }, + { + "IdCircuito": 107, + "Circuito": "107 - LAGUNA DEL PESCADO" + }, + { + "IdCircuito": 108, + "Circuito": "108 - QUEBRACHITOS" + }, + { + "IdCircuito": 109, + "Circuito": "109 - HINOJAL" + }, + { + "IdCircuito": 110, + "Circuito": "110 - MONTOYA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c38f", + "IdSeccion": 6, + "Seccion": "NOGOYÁ", + "Circuitos": [ + { + "IdCircuito": 111, + "Circuito": "111 - NOGOYÁ" + }, + { + "IdCircuito": 112, + "Circuito": "112 - EJIDO NOGOYÁ" + }, + { + "IdCircuito": 113, + "Circuito": "113 - DON CRISTOBAL 1A SECC" + }, + { + "IdCircuito": 114, + "Circuito": "114 - DON CRISTOBAL 2A SECC" + }, + { + "IdCircuito": 115, + "Circuito": "115 - ALGARROBITOS" + }, + { + "IdCircuito": 116, + "Circuito": "116 - ALDEA SAN MIGUEL" + }, + { + "IdCircuito": 117, + "Circuito": "117 - HERNANDEZ" + }, + { + "IdCircuito": 118, + "Circuito": "118 - ARANGUREN" + }, + { + "IdCircuito": 119, + "Circuito": "119 - BETBEDER" + }, + { + "IdCircuito": 120, + "Circuito": "120 - CRUCESITAS 3A SECCION" + }, + { + "IdCircuito": 121, + "Circuito": "121 - CRUCESITAS 7A SECCION" + }, + { + "IdCircuito": 122, + "Circuito": "122 - CRUCESITAS 8A SECCION" + }, + { + "IdCircuito": 123, + "Circuito": "123 - MONTOYA" + }, + { + "IdCircuito": 124, + "Circuito": "124 - LUCAS GONZALEZ" + }, + { + "IdCircuito": 125, + "Circuito": "125 - SAUCE" + }, + { + "IdCircuito": 126, + "Circuito": "126 - XX DE SEPTIEMBRE" + }, + { + "IdCircuito": 127, + "Circuito": "127 - CHIQUEROS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c390", + "IdSeccion": 7, + "Seccion": "GUALEGUAY", + "Circuitos": [ + { + "IdCircuito": 128, + "Circuito": "128 - GUALEGUAY" + }, + { + "IdCircuito": 129, + "Circuito": "129 - 1A SECCION CHACRAS" + }, + { + "IdCircuito": 130, + "Circuito": "130 - 2A SECCION CHACRAS" + }, + { + "IdCircuito": 131, + "Circuito": "131 - PUERTO RUIZ" + }, + { + "IdCircuito": 132, + "Circuito": "132 - 1 DISTRITO CUCHILLA" + }, + { + "IdCircuito": 133, + "Circuito": "133 - 2 DISTRITO VIZCACHA" + }, + { + "IdCircuito": 134, + "Circuito": "134 - 3 DISTRITO JACINTA" + }, + { + "IdCircuito": 135, + "Circuito": "135 - GALARZA" + }, + { + "IdCircuito": 136, + "Circuito": "136 - 4 DTO CLE" + }, + { + "IdCircuito": 137, + "Circuito": "137 - 5 DTO SAUCE" + }, + { + "IdCircuito": 138, + "Circuito": "138 - 6 DTO COSTA DE NOGOYA" + }, + { + "IdCircuito": 139, + "Circuito": "139 - 7 DTO MEDANOS" + }, + { + "IdCircuito": 140, + "Circuito": "140 - 8° DTO ALBARDON" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c391", + "IdSeccion": 8, + "Seccion": "TALA", + "Circuitos": [ + { + "IdCircuito": 141, + "Circuito": "141 - ROSARIO DEL TALA" + }, + { + "IdCircuito": 142, + "Circuito": "142 - EJIDO 1 ROSARIO DEL TALA" + }, + { + "IdCircuito": 143, + "Circuito": "143 - EJIDO 2 ROSARIO DEL TALA" + }, + { + "IdCircuito": 144, + "Circuito": "144 - DISTRITO PUEBLO" + }, + { + "IdCircuito": 145, + "Circuito": "145 - PUEBLO PRIMERO" + }, + { + "IdCircuito": 146, + "Circuito": "146 - ESTACION SOLA" + }, + { + "IdCircuito": 147, + "Circuito": "147 - ESTACION ECHAGE" + }, + { + "IdCircuito": 148, + "Circuito": "148 - SAUCE NORTE" + }, + { + "IdCircuito": 149, + "Circuito": "149 - SAUCE SUD" + }, + { + "IdCircuito": 150, + "Circuito": "150 - DISTRITO CLE" + }, + { + "IdCircuito": 151, + "Circuito": "151 - ESTACION MANSILLA" + }, + { + "IdCircuito": 152, + "Circuito": "152 - ALTAMIRANO NORTE" + }, + { + "IdCircuito": 153, + "Circuito": "153 - DURAZNO NORTE" + }, + { + "IdCircuito": 154, + "Circuito": "154 - ALTAMIRANO SUD" + }, + { + "IdCircuito": 155, + "Circuito": "155 - DURAZNO SUD" + }, + { + "IdCircuito": 156, + "Circuito": "156 - MACIA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c392", + "IdSeccion": 9, + "Seccion": "URUGUAY", + "Circuitos": [ + { + "IdCircuito": 157, + "Circuito": "157 - URUGUAY NORTE" + }, + { + "IdCircuito": 158, + "Circuito": "158 - URUGUAY SUD" + }, + { + "IdCircuito": 159, + "Circuito": "159 - SUBURBIO SUD URUGUAY" + }, + { + "IdCircuito": 160, + "Circuito": "160 - COLONIA PERFECCION" + }, + { + "IdCircuito": 161, + "Circuito": "161 - SANTA CANDIDA" + }, + { + "IdCircuito": 162, + "Circuito": "162 - SUBURBIO NORTE URUGUAY" + }, + { + "IdCircuito": 163, + "Circuito": "163 - TALA" + }, + { + "IdCircuito": 164, + "Circuito": "164 - COLONIA ELIA" + }, + { + "IdCircuito": 165, + "Circuito": "165 - POTRERO" + }, + { + "IdCircuito": 166, + "Circuito": "166 - 1° DE MAYO" + }, + { + "IdCircuito": 167, + "Circuito": "167 - SAN CIPRIANO" + }, + { + "IdCircuito": 168, + "Circuito": "168 - PRONUNCIAMIENTO" + }, + { + "IdCircuito": 169, + "Circuito": "169 - CASEROS" + }, + { + "IdCircuito": 170, + "Circuito": "170 - SAN JUSTO" + }, + { + "IdCircuito": 171, + "Circuito": "171 - VILLA MANTERO" + }, + { + "IdCircuito": 172, + "Circuito": "172 - GENACITO SUR ESTE" + }, + { + "IdCircuito": 173, + "Circuito": "173 - LIBAROS" + }, + { + "IdCircuito": 174, + "Circuito": "174 - SANTA ANITA" + }, + { + "IdCircuito": 175, + "Circuito": "175 - BASAVILBASO" + }, + { + "IdCircuito": 176, + "Circuito": "176 - COLONIA LUCIENVILLE" + }, + { + "IdCircuito": 178, + "Circuito": "178 - HERRERA" + }, + { + "IdCircuito": 179, + "Circuito": "179 - LAS MOSCAS" + }, + { + "IdCircuito": 180, + "Circuito": "180 - URQUIZA" + }, + { + "IdCircuito": 181, + "Circuito": "181 - ROCAMORA" + }, + { + "IdCircuito": "0166A", + "Circuito": "166A - COLONIA SANTA TERESITA" + }, + { + "IdCircuito": "0174A", + "Circuito": "174A - COLONIA SAN MARTIN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c393", + "IdSeccion": 10, + "Seccion": "GUALEGUAYCHÚ", + "Circuitos": [ + { + "IdCircuito": 182, + "Circuito": "182 - GUALEGUAYCHÚ NORTE" + }, + { + "IdCircuito": 183, + "Circuito": "183 - GUALEGUAYCHÚ SUD" + }, + { + "IdCircuito": 184, + "Circuito": "184 - SUBURBIO NORTE GUALEGUAYCHÚ" + }, + { + "IdCircuito": 185, + "Circuito": "185 - SUBURBIO SUD GUALEGUAYCHÚ" + }, + { + "IdCircuito": 186, + "Circuito": "186 - COSTA URUGUAY SUR" + }, + { + "IdCircuito": 187, + "Circuito": "187 - COSTA URUGUAY NORTE" + }, + { + "IdCircuito": 188, + "Circuito": "188 - EJIDO ESTE GUALEGUAYCHÚ" + }, + { + "IdCircuito": 189, + "Circuito": "189 - PBLO GRAL BELGRANO" + }, + { + "IdCircuito": 190, + "Circuito": "190 - PERDICES" + }, + { + "IdCircuito": 191, + "Circuito": "191 - PEHUAJO SUR" + }, + { + "IdCircuito": 192, + "Circuito": "192 - VILLA LARROQUE" + }, + { + "IdCircuito": 193, + "Circuito": "193 - IRAZUSTA" + }, + { + "IdCircuito": 194, + "Circuito": "194 - DOS HERMANAS" + }, + { + "IdCircuito": 196, + "Circuito": "196 - CUCHILLA REDONDA" + }, + { + "IdCircuito": 197, + "Circuito": "197 - CEIBAS" + }, + { + "IdCircuito": 198, + "Circuito": "198 - URDINARRAIN" + }, + { + "IdCircuito": 199, + "Circuito": "199 - COL FLORIDA DEL OESTE" + }, + { + "IdCircuito": 200, + "Circuito": "200 - ALDEA SAN ANTONIO" + }, + { + "IdCircuito": 201, + "Circuito": "201 - ALDEA SAN JUAN" + }, + { + "IdCircuito": 202, + "Circuito": "202 - GILBERT" + }, + { + "IdCircuito": 203, + "Circuito": "203 - PEHUAJO NORTE" + }, + { + "IdCircuito": 204, + "Circuito": "204 - RINCON DEL GATO" + }, + { + "IdCircuito": 205, + "Circuito": "205 - BRITOS" + }, + { + "IdCircuito": 206, + "Circuito": "206 - TALITAS" + }, + { + "IdCircuito": 207, + "Circuito": "207 - COSTA SAN ANTONIO" + }, + { + "IdCircuito": "0195A", + "Circuito": "195A - ENRIQUE CARBO" + }, + { + "IdCircuito": "0202A", + "Circuito": "202A - ESCRINA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c394", + "IdSeccion": 11, + "Seccion": "ISLAS DEL IBICUY", + "Circuitos": [ + { + "IdCircuito": 208, + "Circuito": "208 - IBICUY" + }, + { + "IdCircuito": 209, + "Circuito": "209 - MAZARUCA" + }, + { + "IdCircuito": 210, + "Circuito": "210 - SECCION ISLAS" + }, + { + "IdCircuito": 211, + "Circuito": "211 - VILLA PARANACITO" + }, + { + "IdCircuito": 212, + "Circuito": "212 - MEDANOS" + }, + { + "IdCircuito": 213, + "Circuito": "213 - PUEBLO CEIBAS" + }, + { + "IdCircuito": "0213A", + "Circuito": "213A - NANCAY" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c395", + "IdSeccion": 12, + "Seccion": "VILLAGUAY", + "Circuitos": [ + { + "IdCircuito": 214, + "Circuito": "214 - VILLAGUAY" + }, + { + "IdCircuito": 215, + "Circuito": "215 - EJIDO NORTE VILLAGUAY" + }, + { + "IdCircuito": 216, + "Circuito": "216 - DOMINGUEZ" + }, + { + "IdCircuito": 217, + "Circuito": "217 - SAN GREGORIO" + }, + { + "IdCircuito": 218, + "Circuito": "218 - INGENIERO SAJAROFF" + }, + { + "IdCircuito": 219, + "Circuito": "219 - VILLA CLARA" + }, + { + "IdCircuito": 220, + "Circuito": "220 - SAN JORGE" + }, + { + "IdCircuito": 221, + "Circuito": "221 - JUBILEO" + }, + { + "IdCircuito": 222, + "Circuito": "222 - RAICES ESTE" + }, + { + "IdCircuito": 223, + "Circuito": "223 - RAICES OESTE" + }, + { + "IdCircuito": 224, + "Circuito": "224 - MOJONES SUD" + }, + { + "IdCircuito": 225, + "Circuito": "225 - MOJONES NORTE" + }, + { + "IdCircuito": 226, + "Circuito": "226 - COLONIA ADIVINOS" + }, + { + "IdCircuito": 227, + "Circuito": "227 - LUCAS SUD 1°" + }, + { + "IdCircuito": 228, + "Circuito": "228 - LUCAS SUD 2°" + }, + { + "IdCircuito": 229, + "Circuito": "229 - LUCAS NORTE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c396", + "IdSeccion": 13, + "Seccion": "CONCORDIA", + "Circuitos": [ + { + "IdCircuito": 230, + "Circuito": "230 - CONCORDIA OESTE SUR" + }, + { + "IdCircuito": 231, + "Circuito": "231 - CONCORDIA OESTE NORTE" + }, + { + "IdCircuito": 232, + "Circuito": "232 - CONCORDIA ESTE SUR" + }, + { + "IdCircuito": 233, + "Circuito": "233 - CONCORDIA ESTE NORTE" + }, + { + "IdCircuito": 234, + "Circuito": "234 - VILLA ZORRAQUIN" + }, + { + "IdCircuito": 235, + "Circuito": "235 - EJIDO CONCORDIA" + }, + { + "IdCircuito": 236, + "Circuito": "236 - LA BIANCA" + }, + { + "IdCircuito": 237, + "Circuito": "237 - FRIGORIFICO YUQUERI" + }, + { + "IdCircuito": 238, + "Circuito": "238 - LOS CHARRUAS" + }, + { + "IdCircuito": 239, + "Circuito": "239 - LOMA NEGRA" + }, + { + "IdCircuito": 240, + "Circuito": "240 - COLONIA AYUI" + }, + { + "IdCircuito": 241, + "Circuito": "241 - COLONIA ROCA" + }, + { + "IdCircuito": 242, + "Circuito": "242 - LA CRIOLLA" + }, + { + "IdCircuito": 243, + "Circuito": "243 - MAGNASCO" + }, + { + "IdCircuito": 244, + "Circuito": "244 - MOREYRA" + }, + { + "IdCircuito": 245, + "Circuito": "245 - COLONIA YERUA" + }, + { + "IdCircuito": 246, + "Circuito": "246 - ESTANCIA GRANDE" + }, + { + "IdCircuito": 247, + "Circuito": "247 - ESTACION YERUA" + }, + { + "IdCircuito": 248, + "Circuito": "248 - CLODOMIRO LEDESMA" + }, + { + "IdCircuito": 249, + "Circuito": "249 - PUERTO YERUA" + }, + { + "IdCircuito": 250, + "Circuito": "250 - NUEVA ESCOCIA" + }, + { + "IdCircuito": 251, + "Circuito": "251 - PEDERNAL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c397", + "IdSeccion": 14, + "Seccion": "FEDERAL", + "Circuitos": [ + { + "IdCircuito": 252, + "Circuito": "252 - FEDERAL" + }, + { + "IdCircuito": 253, + "Circuito": "253 - COLONIA FEDERAL" + }, + { + "IdCircuito": 254, + "Circuito": "254 - NUEVA VIZCAYA" + }, + { + "IdCircuito": 255, + "Circuito": "255 - CARPINCHORI" + }, + { + "IdCircuito": 256, + "Circuito": "256 - EL GATO" + }, + { + "IdCircuito": 257, + "Circuito": "257 - BANDERAS" + }, + { + "IdCircuito": 258, + "Circuito": "258 - CONSCRIPTO BERNARDI" + }, + { + "IdCircuito": 259, + "Circuito": "259 - EL CIMARRON" + }, + { + "IdCircuito": 260, + "Circuito": "260 - COLONIA LA MARTA" + }, + { + "IdCircuito": 261, + "Circuito": "261 - COLONIA SAN LORENZO" + }, + { + "IdCircuito": 262, + "Circuito": "262 - CHANAR" + }, + { + "IdCircuito": 263, + "Circuito": "263 - SAUCE DE LUNA" + }, + { + "IdCircuito": 264, + "Circuito": "264 - ENCIERRA" + }, + { + "IdCircuito": 265, + "Circuito": "265 - LAS ACHIRAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c398", + "IdSeccion": 15, + "Seccion": "COLÓN", + "Circuitos": [ + { + "IdCircuito": 266, + "Circuito": "266 - COLÓN" + }, + { + "IdCircuito": 267, + "Circuito": "267 - EJIDO COLÓN" + }, + { + "IdCircuito": 268, + "Circuito": "268 - SAN JOSE" + }, + { + "IdCircuito": 269, + "Circuito": "269 - EL BRILLANTE" + }, + { + "IdCircuito": 270, + "Circuito": "270 - PRIMER DISTRITO" + }, + { + "IdCircuito": 271, + "Circuito": "271 - COLÓNIA NUEVA SUR" + }, + { + "IdCircuito": 272, + "Circuito": "272 - COLÓNIA 1° DE MAYO" + }, + { + "IdCircuito": 273, + "Circuito": "273 - COLÓNIA NUEVA NORTE" + }, + { + "IdCircuito": 274, + "Circuito": "274 - VILLA ELISA" + }, + { + "IdCircuito": 275, + "Circuito": "275 - SEGUNDO DISTRITO" + }, + { + "IdCircuito": 276, + "Circuito": "276 - LA CLARITA" + }, + { + "IdCircuito": 277, + "Circuito": "277 - TERCER DISTRITO" + }, + { + "IdCircuito": 278, + "Circuito": "278 - COLÓNIA EL CARMEN" + }, + { + "IdCircuito": 279, + "Circuito": "279 - PUENTE GUALEGUAYCHU" + }, + { + "IdCircuito": 280, + "Circuito": "280 - SAN ANTONIO" + }, + { + "IdCircuito": 281, + "Circuito": "281 - SANTA ROSA" + }, + { + "IdCircuito": 282, + "Circuito": "282 - FABRICA" + }, + { + "IdCircuito": 283, + "Circuito": "283 - CUARTO DISTRITO" + }, + { + "IdCircuito": 285, + "Circuito": "285 - QUINTO DISTRITO" + }, + { + "IdCircuito": 286, + "Circuito": "286 - SEXTO DISTRITO" + }, + { + "IdCircuito": 287, + "Circuito": "287 - UBAJAY" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c399", + "IdSeccion": 16, + "Seccion": "FELICIANO", + "Circuitos": [ + { + "IdCircuito": 288, + "Circuito": "288 - FELICIANO" + }, + { + "IdCircuito": 289, + "Circuito": "289 - EJIDO FELICIANO" + }, + { + "IdCircuito": 290, + "Circuito": "290 - DISTRITO FELICIANO" + }, + { + "IdCircuito": 291, + "Circuito": "291 - BASUALDO" + }, + { + "IdCircuito": 292, + "Circuito": "292 - CHANAR" + }, + { + "IdCircuito": 293, + "Circuito": "293 - ATENCIO" + }, + { + "IdCircuito": 294, + "Circuito": "294 - MANANTIALES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c39a", + "IdSeccion": 17, + "Seccion": "FEDERACIÓN", + "Circuitos": [ + { + "IdCircuito": 295, + "Circuito": "295 - VIEJA FEDERACIÓN" + }, + { + "IdCircuito": 296, + "Circuito": "296 - NUEVA FEDERACIÓN" + }, + { + "IdCircuito": 297, + "Circuito": "297 - EJIDO FEDERACIÓN" + }, + { + "IdCircuito": 298, + "Circuito": "298 - MANDISOVI" + }, + { + "IdCircuito": 299, + "Circuito": "299 - COLONIA FREITAS" + }, + { + "IdCircuito": 300, + "Circuito": "300 - GUALEGUAYCITO" + }, + { + "IdCircuito": 302, + "Circuito": "302 - SAN JAIME DE LA FRONTERA" + }, + { + "IdCircuito": 303, + "Circuito": "303 - COLONIA SANTA MARIA" + }, + { + "IdCircuito": 304, + "Circuito": "304 - ATENCIO AL ESTE" + }, + { + "IdCircuito": 305, + "Circuito": "305 - CHAJARI" + }, + { + "IdCircuito": 306, + "Circuito": "306 - VILLA DEL ROSARIO" + }, + { + "IdCircuito": 307, + "Circuito": "307 - SAN ROQUE" + }, + { + "IdCircuito": 308, + "Circuito": "308 - SANTA ANA" + }, + { + "IdCircuito": 309, + "Circuito": "309 - CANADA DEL CERRO" + }, + { + "IdCircuito": "0304A", + "Circuito": "304A - LOS CONQUISTADORES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c39b", + "IdSeccion": 18, + "Seccion": "SAN SALVADOR", + "Circuitos": [ + { + "IdCircuito": 310, + "Circuito": "310 - SAN SALVADOR" + }, + { + "IdCircuito": 311, + "Circuito": "311 - GENERAL CAMPOS" + }, + { + "IdCircuito": 312, + "Circuito": "312 - WALTER MOSS" + }, + { + "IdCircuito": 313, + "Circuito": "313 - COLONIA OFICIAL N° 5" + }, + { + "IdCircuito": 314, + "Circuito": "314 - LAS COLONIAS" + }, + { + "IdCircuito": 315, + "Circuito": "315 - ARROYO GRANDE" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c39c", + "IdDistrito": 9, + "Distrito": "FORMOSA", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c39d", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c39e", + "IdSeccion": 1, + "Seccion": "FORMOSA", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - CIUDAD DE FORMOSA" + }, + { + "IdCircuito": 2, + "Circuito": "2 - CIUDAD DE FORMOSA" + }, + { + "IdCircuito": 3, + "Circuito": "3 - CIUDAD DE FORMOSA" + }, + { + "IdCircuito": 4, + "Circuito": "4 - CIUDAD DE FORMOSA" + }, + { + "IdCircuito": 5, + "Circuito": "5 - CIUDAD DE FORMOSA" + }, + { + "IdCircuito": 6, + "Circuito": "6 - CIUDAD DE FORMOSA" + }, + { + "IdCircuito": 7, + "Circuito": "7 - CIUDAD DE FORMOSA" + }, + { + "IdCircuito": 8, + "Circuito": "8 - CIUDAD DE FORMOSA" + }, + { + "IdCircuito": 9, + "Circuito": "9 - CIUDAD DE FORMOSA" + }, + { + "IdCircuito": 11, + "Circuito": "11 - PUENTE SAN HILARIO" + }, + { + "IdCircuito": 14, + "Circuito": "14 - TRES MARIAS" + }, + { + "IdCircuito": 15, + "Circuito": "15 - EL ANGELITO" + }, + { + "IdCircuito": 16, + "Circuito": "16 - MARIANO BOEDO" + }, + { + "IdCircuito": 17, + "Circuito": "17 - SAN HILARIO" + }, + { + "IdCircuito": 18, + "Circuito": "18 - GRAN GUARDIA" + }, + { + "IdCircuito": 19, + "Circuito": "19 - PASTORIL" + }, + { + "IdCircuito": 20, + "Circuito": "20 - COLONIA DALMACIA" + }, + { + "IdCircuito": 21, + "Circuito": "21 - MOJON DE FIERRO" + }, + { + "IdCircuito": "0005A", + "Circuito": "5A - CIUDAD DE FORMOSA" + }, + { + "IdCircuito": "0008A", + "Circuito": "8A - CIUDAD DE FORMOSA" + }, + { + "IdCircuito": "0008B", + "Circuito": "8B - CIUDAD DE FORMOSA" + }, + { + "IdCircuito": "0017A", + "Circuito": "17A - COLONIA PTE. IRIGOYEN" + }, + { + "IdCircuito": "0017B", + "Circuito": "17B - COLONIA ITUZAINGO" + }, + { + "IdCircuito": "0018A", + "Circuito": "18A - GRAN GUARDIA COLONIAS" + }, + { + "IdCircuito": "0021A", + "Circuito": "21A - BOCA RIACHO PILAGAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c39f", + "IdSeccion": 2, + "Seccion": "LAISHI", + "Circuitos": [ + { + "IdCircuito": 22, + "Circuito": "22 - HERRADURA" + }, + { + "IdCircuito": 23, + "Circuito": "23 - VILLA ESCOLAR" + }, + { + "IdCircuito": 24, + "Circuito": "24 - MISION LAISHI" + }, + { + "IdCircuito": "0022A", + "Circuito": "22A - TATANE" + }, + { + "IdCircuito": "0022B", + "Circuito": "22B - BANCO PAYAGUA" + }, + { + "IdCircuito": "0022C", + "Circuito": "22C - HERRADURA COLONIA" + }, + { + "IdCircuito": "0023A", + "Circuito": "23A - KM 100 NRB" + }, + { + "IdCircuito": "0023B", + "Circuito": "23B - KM 128 NRB" + }, + { + "IdCircuito": "0023C", + "Circuito": "23C - GRAL. LUCIO V. MANSILLA" + }, + { + "IdCircuito": "0024A", + "Circuito": "24A - RIACHO LINDO" + }, + { + "IdCircuito": "0024B", + "Circuito": "24B - MISION LAISHI COLONIA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3a0", + "IdSeccion": 3, + "Seccion": "PILCOMAYO", + "Circuitos": [ + { + "IdCircuito": 25, + "Circuito": "25 - BUEY MUERTO" + }, + { + "IdCircuito": 26, + "Circuito": "26 - RIACHO HE HE" + }, + { + "IdCircuito": 27, + "Circuito": "27 - VIRASOL" + }, + { + "IdCircuito": 28, + "Circuito": "28 - SIETE PALMAS" + }, + { + "IdCircuito": 29, + "Circuito": "29 - LAGUNA BLANCA" + }, + { + "IdCircuito": 30, + "Circuito": "30 - LAGUNA NAICK NECK" + }, + { + "IdCircuito": 31, + "Circuito": "31 - SAN JUAN" + }, + { + "IdCircuito": 32, + "Circuito": "32 - CLORINDA" + }, + { + "IdCircuito": "0026A", + "Circuito": "26A - LA FRONTERA" + }, + { + "IdCircuito": "0026B", + "Circuito": "26B - LOMA HERMOSA" + }, + { + "IdCircuito": "0028A", + "Circuito": "28A - EL RECODO" + }, + { + "IdCircuito": "0028B", + "Circuito": "28B - COLONIA LA PRIMAVERA" + }, + { + "IdCircuito": "0029A", + "Circuito": "29A - COLONIA J M PAZ" + }, + { + "IdCircuito": "0030A", + "Circuito": "30A - LUCERO CUE" + }, + { + "IdCircuito": "0031A", + "Circuito": "31A - PALMA SOLA" + }, + { + "IdCircuito": "0031B", + "Circuito": "31B - EL PARAISO" + }, + { + "IdCircuito": "0032A", + "Circuito": "32A - ISLA APANDO" + }, + { + "IdCircuito": "0032B", + "Circuito": "32B - RIACHO NEGRO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3a1", + "IdSeccion": 4, + "Seccion": "PIRANÉ", + "Circuitos": [ + { + "IdCircuito": 34, + "Circuito": "34 - PIRANÉ" + }, + { + "IdCircuito": 35, + "Circuito": "35 - LOMA SENES" + }, + { + "IdCircuito": 36, + "Circuito": "36 - MAYOR VILLAFANE" + }, + { + "IdCircuito": 37, + "Circuito": "37 - EL BANADERO" + }, + { + "IdCircuito": 38, + "Circuito": "38 - EL COATI" + }, + { + "IdCircuito": 39, + "Circuito": "39 - PALO SANTO" + }, + { + "IdCircuito": 40, + "Circuito": "40 - LOS MATACOS" + }, + { + "IdCircuito": 41, + "Circuito": "41 - PILAGA TERCERO" + }, + { + "IdCircuito": 42, + "Circuito": "42 - LOMA DEL QUEBRANTO" + }, + { + "IdCircuito": "0034A", + "Circuito": "34A - PIRANÉ" + }, + { + "IdCircuito": "0034B", + "Circuito": "34B - ESTERO GRANDE" + }, + { + "IdCircuito": "0035A", + "Circuito": "35A - LA DISCIPLINA" + }, + { + "IdCircuito": "0035B", + "Circuito": "35B - LOMA SENES COLONIA" + }, + { + "IdCircuito": "0036A", + "Circuito": "36A - COLONIA EL OLVIDO" + }, + { + "IdCircuito": "0036B", + "Circuito": "36B - GRAL VICTORICA" + }, + { + "IdCircuito": "0036C", + "Circuito": "36C - COLONIA EL RINCON" + }, + { + "IdCircuito": "0037A", + "Circuito": "37A - VILLA DOS TRECE COLONIA A" + }, + { + "IdCircuito": "0037B", + "Circuito": "37B - VILLA DOS TRECE" + }, + { + "IdCircuito": "0037C", + "Circuito": "37C - EL COLORADO" + }, + { + "IdCircuito": "0037D", + "Circuito": "37D - COLONIA EL ALBA" + }, + { + "IdCircuito": "0037E", + "Circuito": "37E - EL COLORADO COLONIA E" + }, + { + "IdCircuito": "0037F", + "Circuito": "37F - VILLA DOS TRECE COLONIA F" + }, + { + "IdCircuito": "0037G", + "Circuito": "37G - KM 142 NRB" + }, + { + "IdCircuito": "0038A", + "Circuito": "38A - POTRERO NORTE" + }, + { + "IdCircuito": "0039A", + "Circuito": "39A - PALO SANTO COLONIAS" + }, + { + "IdCircuito": "0041A", + "Circuito": "41A - COLONIA LA LOMA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3a2", + "IdSeccion": 5, + "Seccion": "PILAGÁS", + "Circuitos": [ + { + "IdCircuito": 43, + "Circuito": "43 - EL ESPINILLO" + }, + { + "IdCircuito": 44, + "Circuito": "44 - TRES LAGUNAS" + }, + { + "IdCircuito": 45, + "Circuito": "45 - LAGUNA GALLO" + }, + { + "IdCircuito": "0043A", + "Circuito": "43A - BUENA VISTA" + }, + { + "IdCircuito": "0043B", + "Circuito": "43B - BUENA VISTA COLONIA" + }, + { + "IdCircuito": "0043C", + "Circuito": "43C - MISION TACAAGLE" + }, + { + "IdCircuito": "0043D", + "Circuito": "43D - EL ESPINILLO COLONIA D" + }, + { + "IdCircuito": "0043E", + "Circuito": "43E - EL ESPINILLO COLONIA E" + }, + { + "IdCircuito": "0043F", + "Circuito": "43F - MISION TACAAGLE COLONIA" + }, + { + "IdCircuito": "0044A", + "Circuito": "44A - TRES LAGUNAS COLONIA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3a3", + "IdSeccion": 6, + "Seccion": "PATIÑO", + "Circuitos": [ + { + "IdCircuito": 47, + "Circuito": "47 - COLONIA ALTO ALEGRE" + }, + { + "IdCircuito": 48, + "Circuito": "48 - RINCON FLORIDO" + }, + { + "IdCircuito": 49, + "Circuito": "49 - BARTOLOME DE LAS CASAS" + }, + { + "IdCircuito": 50, + "Circuito": "50 - CMTE FONTANA" + }, + { + "IdCircuito": 51, + "Circuito": "51 - EL RECREO" + }, + { + "IdCircuito": 52, + "Circuito": "52 - EL COGOIK" + }, + { + "IdCircuito": 53, + "Circuito": "53 - FORTIN LEYES" + }, + { + "IdCircuito": 54, + "Circuito": "54 - GRAL GUEMES" + }, + { + "IdCircuito": 55, + "Circuito": "55 - COLONIA LAS CHOYAS" + }, + { + "IdCircuito": 56, + "Circuito": "56 - IBARRETA" + }, + { + "IdCircuito": 57, + "Circuito": "57 - COLONIA LOS INMIGRANTES" + }, + { + "IdCircuito": 58, + "Circuito": "58 - SOLD SALVATIERRA" + }, + { + "IdCircuito": 59, + "Circuito": "59 - POZO DEL TIGRE COLONIA" + }, + { + "IdCircuito": 60, + "Circuito": "60 - POZO DEL TIGRE" + }, + { + "IdCircuito": 61, + "Circuito": "61 - TTE BROWN" + }, + { + "IdCircuito": 62, + "Circuito": "62 - VILLA GRAL URQUIZA" + }, + { + "IdCircuito": 63, + "Circuito": "63 - PASO NAITE" + }, + { + "IdCircuito": 64, + "Circuito": "64 - FORTIN LUGONES" + }, + { + "IdCircuito": 65, + "Circuito": "65 - POSTA CAMBIO ZALAZAR" + }, + { + "IdCircuito": 66, + "Circuito": "66 - CAMPO DEL CIELO" + }, + { + "IdCircuito": 67, + "Circuito": "67 - LAS LOMITAS" + }, + { + "IdCircuito": 68, + "Circuito": "68 - JUAN G BAZAN" + }, + { + "IdCircuito": 69, + "Circuito": "69 - KM 503 NRB" + }, + { + "IdCircuito": 70, + "Circuito": "70 - SUBTTE PERIN" + }, + { + "IdCircuito": 71, + "Circuito": "71 - ESTANISLAO DEL CAMPO" + }, + { + "IdCircuito": "0047A", + "Circuito": "47A - SAN CARLOS" + }, + { + "IdCircuito": "0050A", + "Circuito": "50A - CMTE FONTANA COLONIA" + }, + { + "IdCircuito": "0050B", + "Circuito": "50B - COL. AB. BARTOLOME DE LAS CASAS" + }, + { + "IdCircuito": "0051A", + "Circuito": "51A - GRAL BELGRANO" + }, + { + "IdCircuito": "0051B", + "Circuito": "51B - GRAL BELGRANO COLONIA" + }, + { + "IdCircuito": "0054A", + "Circuito": "54A - GRAL GUEMES COLONIA" + }, + { + "IdCircuito": "0056A", + "Circuito": "56A - IBARRETA COLONIA" + }, + { + "IdCircuito": "0058A", + "Circuito": "58A - TRES POZOS" + }, + { + "IdCircuito": "0059A", + "Circuito": "59A - CAMPO ALEGRE" + }, + { + "IdCircuito": "0060A", + "Circuito": "60A - POZO DEL TIGRE COLONIA A" + }, + { + "IdCircuito": "0063A", + "Circuito": "63A - POSTA SAN MARTIN I" + }, + { + "IdCircuito": "0064A", + "Circuito": "64A - POSTA SAN MARTIN II" + }, + { + "IdCircuito": "0064B", + "Circuito": "64B - FORTIN LUGONES COLONIA" + }, + { + "IdCircuito": "0065A", + "Circuito": "65A - POSTA SANTA FE" + }, + { + "IdCircuito": "0065B", + "Circuito": "65B - FORTIN LUGONES COLONIA B" + }, + { + "IdCircuito": "0066A", + "Circuito": "66A - PUNTA DEL AGUA" + }, + { + "IdCircuito": "0066B", + "Circuito": "66B - POSTA CAMBIO ZALAZAR COLONIA" + }, + { + "IdCircuito": "0067A", + "Circuito": "67A - LAS LOMITAS COLONIA" + }, + { + "IdCircuito": "0070A", + "Circuito": "70A - SUBTTE PERIN COLONIA" + }, + { + "IdCircuito": "0071A", + "Circuito": "71A - ESTANISLAO DEL CAMPO COLONIA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3a4", + "IdSeccion": 7, + "Seccion": "BERMEJO", + "Circuitos": [ + { + "IdCircuito": 72, + "Circuito": "72 - FORTIN SOLEDAD" + }, + { + "IdCircuito": 73, + "Circuito": "73 - POZO DEL MORTERO" + }, + { + "IdCircuito": 74, + "Circuito": "74 - SUMAYEN" + }, + { + "IdCircuito": 75, + "Circuito": "75 - LAGUNA YEMA" + }, + { + "IdCircuito": 76, + "Circuito": "76 - LAMADRID" + }, + { + "IdCircuito": 77, + "Circuito": "77 - GUADALCAZAR" + }, + { + "IdCircuito": 78, + "Circuito": "78 - RIO MUERTO" + }, + { + "IdCircuito": 79, + "Circuito": "79 - PESCADO NEGRO" + }, + { + "IdCircuito": 80, + "Circuito": "80 - POZO DE MAZA" + }, + { + "IdCircuito": 81, + "Circuito": "81 - LOS CHIRIGUANOS" + }, + { + "IdCircuito": "0072A", + "Circuito": "72A - BAJO HONDO" + }, + { + "IdCircuito": "0072B", + "Circuito": "72B - LA LIBERTAD" + }, + { + "IdCircuito": "0076A", + "Circuito": "76A - FORTIN PILCOMAYO NUEVO" + }, + { + "IdCircuito": "0080A", + "Circuito": "80A - SOMBRERO NEGRO" + }, + { + "IdCircuito": "0080B", + "Circuito": "80B - POZO DE MAZA COLONIA" + }, + { + "IdCircuito": "0081A", + "Circuito": "81A - LOS CHIRIGUANOS COLONIA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3a5", + "IdSeccion": 8, + "Seccion": "MATACOS", + "Circuitos": [ + { + "IdCircuito": 82, + "Circuito": "82 - INGENIERO JUAREZ" + }, + { + "IdCircuito": "0082A", + "Circuito": "82A - BOLSA DEL PALOMO" + }, + { + "IdCircuito": "0082B", + "Circuito": "82B - INGENIERO JUAREZ COLONIA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3a6", + "IdSeccion": 9, + "Seccion": "RAMON LISTA", + "Circuitos": [ + { + "IdCircuito": 83, + "Circuito": "83 - GRAL MOSCONI" + }, + { + "IdCircuito": 84, + "Circuito": "84 - LOTE 8" + }, + { + "IdCircuito": "0083A", + "Circuito": "83A - EL POTRILLO" + }, + { + "IdCircuito": "0083B", + "Circuito": "83B - EL QUEBRACHO" + }, + { + "IdCircuito": "0083C", + "Circuito": "83C - GRAL MOSCONI COLONIA" + }, + { + "IdCircuito": "0084A", + "Circuito": "84A - SANTA TERESA" + }, + { + "IdCircuito": "0084B", + "Circuito": "84B - MARIA CRISTINA" + }, + { + "IdCircuito": "0084C", + "Circuito": "84C - TUCUMANCITO" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3a7", + "IdDistrito": 10, + "Distrito": "JUJUY", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c3a8", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c3a9", + "IdSeccion": 1, + "Seccion": "DR. MANUEL BELGRANO", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - CIUDAD EXTREMO ESTE (1 600)" + }, + { + "IdCircuito": 2, + "Circuito": "2 - CIUDAD CENTRO (601 1000)" + }, + { + "IdCircuito": 3, + "Circuito": "3 - CIUDAD EXTREMO OESTE" + }, + { + "IdCircuito": 4, + "Circuito": "4 - B° BELGRANO Y SAN MARTIN" + }, + { + "IdCircuito": 5, + "Circuito": "5 - B° 25 DE MAYO LOS HUAICOS" + }, + { + "IdCircuito": 6, + "Circuito": "6 - B° CIUDAD DE NIEVA" + }, + { + "IdCircuito": 7, + "Circuito": "7 - B° CUYAYA Y MORENO" + }, + { + "IdCircuito": 8, + "Circuito": "8 - B° GORRITI CORONEL ARIAS" + }, + { + "IdCircuito": 9, + "Circuito": "9 - B° ALMIRANTE BROWN" + }, + { + "IdCircuito": 11, + "Circuito": "11 - REYES" + }, + { + "IdCircuito": 12, + "Circuito": "12 - GUERRERO Y T. DE REYES" + }, + { + "IdCircuito": 13, + "Circuito": "13 - LA ALMONA" + }, + { + "IdCircuito": 14, + "Circuito": "14 - LA VINA" + }, + { + "IdCircuito": 15, + "Circuito": "15 - LAS CAPILLAS" + }, + { + "IdCircuito": 16, + "Circuito": "16 - OCLOYAS" + }, + { + "IdCircuito": 17, + "Circuito": "17 - TILQUIZA" + }, + { + "IdCircuito": 18, + "Circuito": "18 - LOS PERALES" + }, + { + "IdCircuito": 19, + "Circuito": "19 - LEON" + }, + { + "IdCircuito": 20, + "Circuito": "20 - EL CHANI" + }, + { + "IdCircuito": 21, + "Circuito": "21 - YALA" + }, + { + "IdCircuito": "0010A", + "Circuito": "10A - B° SAN PEDRITO" + }, + { + "IdCircuito": "0010B", + "Circuito": "10B - B° ALTO COMEDERO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3aa", + "IdSeccion": 2, + "Seccion": "PALPALÁ", + "Circuitos": [ + { + "IdCircuito": 22, + "Circuito": "22 - PALPALÁ (CIUDAD)" + }, + { + "IdCircuito": 23, + "Circuito": "23 - ZAPLA CARAHUNCO" + }, + { + "IdCircuito": 24, + "Circuito": "24 - EL BRETE C.FORESTAL CUCHO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3ab", + "IdSeccion": 3, + "Seccion": "SAN ANTONIO", + "Circuitos": [ + { + "IdCircuito": 26, + "Circuito": "26 - LA CABANA" + }, + { + "IdCircuito": 27, + "Circuito": "27 - LA TOMA" + }, + { + "IdCircuito": "0025A", + "Circuito": "25A - SAN ANTONIO (PUEBLO)" + }, + { + "IdCircuito": "0025B", + "Circuito": "25B - LOS ALISOS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3ac", + "IdSeccion": 4, + "Seccion": "EL CARMEN", + "Circuitos": [ + { + "IdCircuito": 28, + "Circuito": "28 - EL CARMEN (CIUDAD)" + }, + { + "IdCircuito": 29, + "Circuito": "29 - DIQUE LA CIENAGA" + }, + { + "IdCircuito": 30, + "Circuito": "30 - CHAMICAL" + }, + { + "IdCircuito": 31, + "Circuito": "31 - CIUDAD PERICO" + }, + { + "IdCircuito": 32, + "Circuito": "32 - MONTERRICO" + }, + { + "IdCircuito": 34, + "Circuito": "34 - PAMPA BLANCA" + }, + { + "IdCircuito": 35, + "Circuito": "35 - AGUAS CALIENTES" + }, + { + "IdCircuito": "0033A", + "Circuito": "33A - PUESTO VIEJO" + }, + { + "IdCircuito": "0033B", + "Circuito": "33B - LOS LAPACHOS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3ad", + "IdSeccion": 5, + "Seccion": "SAN PEDRO", + "Circuitos": [ + { + "IdCircuito": 36, + "Circuito": "36 - SAN PEDRO (CIUDAD)" + }, + { + "IdCircuito": 37, + "Circuito": "37 - LA ESPERANZA" + }, + { + "IdCircuito": 38, + "Circuito": "38 - MIRAFLORES" + }, + { + "IdCircuito": 39, + "Circuito": "39 - SAN ANTONIO" + }, + { + "IdCircuito": 40, + "Circuito": "40 - CHAGUARAL RODEITO" + }, + { + "IdCircuito": 41, + "Circuito": "41 - SAN LUCAS" + }, + { + "IdCircuito": 43, + "Circuito": "43 - ARRAYANAL" + }, + { + "IdCircuito": 45, + "Circuito": "45 - LA MENDIETA" + }, + { + "IdCircuito": 46, + "Circuito": "46 - BARRO NEGRO" + }, + { + "IdCircuito": "0042A", + "Circuito": "42A - SAN JUAN DE DIOS" + }, + { + "IdCircuito": "0042B", + "Circuito": "42B - ARROYO COLORADO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3ae", + "IdSeccion": 6, + "Seccion": "SANTA BÁRBARA", + "Circuitos": [ + { + "IdCircuito": 48, + "Circuito": "48 - SANTA CLARA" + }, + { + "IdCircuito": 49, + "Circuito": "49 - EL FUERTE" + }, + { + "IdCircuito": 50, + "Circuito": "50 - EL PIQUETE" + }, + { + "IdCircuito": 52, + "Circuito": "52 - PALMA SOLA" + }, + { + "IdCircuito": "0051A", + "Circuito": "51A - VINALITO" + }, + { + "IdCircuito": "0051B", + "Circuito": "51B - EL TALAR" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3af", + "IdSeccion": 7, + "Seccion": "LEDESMA", + "Circuitos": [ + { + "IdCircuito": 53, + "Circuito": "53 - LIB. GRAL. SAN MARTIN" + }, + { + "IdCircuito": 54, + "Circuito": "54 - PUEBLO LEDESMA" + }, + { + "IdCircuito": 57, + "Circuito": "57 - LA CANDELARIA" + }, + { + "IdCircuito": 60, + "Circuito": "60 - MAIZ NEGRO" + }, + { + "IdCircuito": 61, + "Circuito": "61 - LOTE PAULINA" + }, + { + "IdCircuito": 64, + "Circuito": "64 - CALILEGUA" + }, + { + "IdCircuito": 66, + "Circuito": "66 - FRAILE PINTADO" + }, + { + "IdCircuito": 67, + "Circuito": "67 - CHALICAN" + }, + { + "IdCircuito": 69, + "Circuito": "69 - YUTO" + }, + { + "IdCircuito": 70, + "Circuito": "70 - CAIMANCITO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3b0", + "IdSeccion": 8, + "Seccion": "VALLE GRANDE", + "Circuitos": [ + { + "IdCircuito": 72, + "Circuito": "72 - SAN LUCAS" + }, + { + "IdCircuito": 75, + "Circuito": "75 - CASPALA" + }, + { + "IdCircuito": "0071A", + "Circuito": "71A - PAMPICHUELA" + }, + { + "IdCircuito": "0071B", + "Circuito": "71B - SAN FRANCISCO" + }, + { + "IdCircuito": "0073A", + "Circuito": "73A - VALLE GRANDE (PUEBLO)" + }, + { + "IdCircuito": "0073B", + "Circuito": "73B - ALTO CALILEGUA" + }, + { + "IdCircuito": "0074A", + "Circuito": "74A - SANTA ANA" + }, + { + "IdCircuito": "0074B", + "Circuito": "74B - VALLE COLORADO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3b1", + "IdSeccion": 9, + "Seccion": "TUMBAYA", + "Circuitos": [ + { + "IdCircuito": 76, + "Circuito": "76 - TUMBAYA (PUEBLO)" + }, + { + "IdCircuito": 77, + "Circuito": "77 - SAN BERNARDO" + }, + { + "IdCircuito": 78, + "Circuito": "78 - VOLCAN" + }, + { + "IdCircuito": 79, + "Circuito": "79 - PURMAMARCA" + }, + { + "IdCircuito": 80, + "Circuito": "80 - LA CIENAGA" + }, + { + "IdCircuito": 81, + "Circuito": "81 - COLORADOS" + }, + { + "IdCircuito": 82, + "Circuito": "82 - EL MORENO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3b2", + "IdSeccion": 10, + "Seccion": "TILCARA", + "Circuitos": [ + { + "IdCircuito": 83, + "Circuito": "83 - TILCARA (PUEBLO)" + }, + { + "IdCircuito": 85, + "Circuito": "85 - ABRA MAYO" + }, + { + "IdCircuito": 86, + "Circuito": "86 - JUELLA" + }, + { + "IdCircuito": 87, + "Circuito": "87 - MAIMARA" + }, + { + "IdCircuito": 89, + "Circuito": "89 - YALA DE MONTE CARMELO" + }, + { + "IdCircuito": "0084A", + "Circuito": "84A - MOLULO" + }, + { + "IdCircuito": "0084B", + "Circuito": "84B - EL DURAZNO" + }, + { + "IdCircuito": "0085B", + "Circuito": "85B - YAQUISPAMPA" + }, + { + "IdCircuito": "0088A", + "Circuito": "88A - HUACALERA" + }, + { + "IdCircuito": "0088B", + "Circuito": "88B - YACORAITE Y SAN JOSE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3b3", + "IdSeccion": 11, + "Seccion": "HUMAHUACA", + "Circuitos": [ + { + "IdCircuito": 91, + "Circuito": "91 - COCTACA" + }, + { + "IdCircuito": 93, + "Circuito": "93 - RODERO" + }, + { + "IdCircuito": 94, + "Circuito": "94 - NEGRA MUERTA" + }, + { + "IdCircuito": 95, + "Circuito": "95 - TRES CRUCES" + }, + { + "IdCircuito": 97, + "Circuito": "97 - EL AGUILAR" + }, + { + "IdCircuito": 98, + "Circuito": "98 - PALCA DE APARZO" + }, + { + "IdCircuito": "0090A", + "Circuito": "90A - HUMAHUACA (CIUDAD)" + }, + { + "IdCircuito": "0090B", + "Circuito": "90B - HORNADITAS" + }, + { + "IdCircuito": "0090C", + "Circuito": "90C - CORAYA Y OVARA" + }, + { + "IdCircuito": "0092A", + "Circuito": "92A - UQUIA" + }, + { + "IdCircuito": "0092B", + "Circuito": "92B - CALETE" + }, + { + "IdCircuito": "0092C", + "Circuito": "92C - OCUMAZO" + }, + { + "IdCircuito": "0096A", + "Circuito": "96A - PUEBLO VIEJO" + }, + { + "IdCircuito": "0096B", + "Circuito": "96B - MIYUYOC" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3b4", + "IdSeccion": 12, + "Seccion": "COCHINOCA", + "Circuitos": [ + { + "IdCircuito": 101, + "Circuito": "101 - COCHINOCA (PUEBLO)" + }, + { + "IdCircuito": 103, + "Circuito": "103 - MIRAFLORES DE CANDELARIA" + }, + { + "IdCircuito": 104, + "Circuito": "104 - CASABINDO" + }, + { + "IdCircuito": 105, + "Circuito": "105 - TUSAQUILLAS" + }, + { + "IdCircuito": 107, + "Circuito": "107 - ABRALAITE" + }, + { + "IdCircuito": "0099A", + "Circuito": "99A - ABRA PAMPA" + }, + { + "IdCircuito": "0099B", + "Circuito": "99B - AGUA CHICA" + }, + { + "IdCircuito": "0100A", + "Circuito": "100A - PUESTO DEL MARQUES" + }, + { + "IdCircuito": "0100B", + "Circuito": "100B - ARBOLITO NUEVO" + }, + { + "IdCircuito": "0102A", + "Circuito": "102A - AGUA CALIENTE DONCELLAS" + }, + { + "IdCircuito": "0102B", + "Circuito": "102B - MUNAYOC" + }, + { + "IdCircuito": "0106A", + "Circuito": "106A - BARRANCAS" + }, + { + "IdCircuito": "0106B", + "Circuito": "106B - RINCONADILLAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3b5", + "IdSeccion": 13, + "Seccion": "RINCONADA", + "Circuitos": [ + { + "IdCircuito": 108, + "Circuito": "108 - RINCONADA" + }, + { + "IdCircuito": 109, + "Circuito": "109 - MINA PIRQUITAS" + }, + { + "IdCircuito": 110, + "Circuito": "110 - OROSMAYO" + }, + { + "IdCircuito": "0109A", + "Circuito": "109A - LAGUNILLAS DEL FARALLON" + }, + { + "IdCircuito": "0111A", + "Circuito": "111A - CIENEGO GRANDE" + }, + { + "IdCircuito": "0111B", + "Circuito": "111B - CARAHUASI" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3b6", + "IdSeccion": 14, + "Seccion": "SANTA CATALINA", + "Circuitos": [ + { + "IdCircuito": 113, + "Circuito": "113 - PUESTO GRANDE" + }, + { + "IdCircuito": 114, + "Circuito": "114 - CIENEGUILLAS" + }, + { + "IdCircuito": 117, + "Circuito": "117 - YOSCABA" + }, + { + "IdCircuito": "0112A", + "Circuito": "112A - SANTA CATALINA (PUEBLO)" + }, + { + "IdCircuito": "0112B", + "Circuito": "112B - EL ANGOSTO" + }, + { + "IdCircuito": "0114A", + "Circuito": "114A - CASIRA" + }, + { + "IdCircuito": "0115A", + "Circuito": "115A - ORATORIO" + }, + { + "IdCircuito": "0115B", + "Circuito": "115B - LA CIENAGA" + }, + { + "IdCircuito": "0116A", + "Circuito": "116A - OROS" + }, + { + "IdCircuito": "0116B", + "Circuito": "116B - PAICONES" + }, + { + "IdCircuito": "0116C", + "Circuito": "116C - CUSI CUSI" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3b7", + "IdSeccion": 15, + "Seccion": "YAVI", + "Circuitos": [ + { + "IdCircuito": 118, + "Circuito": "118 - LA QUIACA" + }, + { + "IdCircuito": 119, + "Circuito": "119 - YAVI (PUEBLO)" + }, + { + "IdCircuito": 120, + "Circuito": "120 - PUMAHUASI" + }, + { + "IdCircuito": 121, + "Circuito": "121 - CERRILLOS ABRA COLORADA" + }, + { + "IdCircuito": 122, + "Circuito": "122 - BARRIOS" + }, + { + "IdCircuito": 123, + "Circuito": "123 - EL CONDOR" + }, + { + "IdCircuito": 124, + "Circuito": "124 - CANGREJILLOS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3b8", + "IdSeccion": 16, + "Seccion": "SUSQUES", + "Circuitos": [ + { + "IdCircuito": "0125A", + "Circuito": "125A - EL HUANCAR" + }, + { + "IdCircuito": "0125B", + "Circuito": "125B - OLAROZ CHICO" + }, + { + "IdCircuito": "0125C", + "Circuito": "125C - JAMA MESA REMOTA" + }, + { + "IdCircuito": "0126A", + "Circuito": "126A - CORANZULI" + }, + { + "IdCircuito": "0126B", + "Circuito": "126B - SUSQUES (PUEBLO)" + }, + { + "IdCircuito": "0126C", + "Circuito": "126C - EL TORO" + }, + { + "IdCircuito": "0127A", + "Circuito": "127A - SEY" + }, + { + "IdCircuito": "0127B", + "Circuito": "127B - CATUA" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3b9", + "IdDistrito": 11, + "Distrito": "LA PAMPA", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c3ba", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c3bb", + "IdSeccion": 1, + "Seccion": "ATREUCÓ", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - DOBLAS" + }, + { + "IdCircuito": 2, + "Circuito": "2 - MACACHIN" + }, + { + "IdCircuito": 3, + "Circuito": "3 - RIGLOS" + }, + { + "IdCircuito": 4, + "Circuito": "4 - ROLON" + }, + { + "IdCircuito": 5, + "Circuito": "5 - ANCHORENA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3bc", + "IdSeccion": 2, + "Seccion": "CAPITAL", + "Circuitos": [ + { + "IdCircuito": 6, + "Circuito": "6 - ANGUIL" + }, + { + "IdCircuito": 9, + "Circuito": "9 - SANTA ROSA" + }, + { + "IdCircuito": 10, + "Circuito": "10 - SANTA ROSA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3bd", + "IdSeccion": 3, + "Seccion": "CALEU CALEU", + "Circuitos": [ + { + "IdCircuito": 11, + "Circuito": "11 - LA ADELA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3be", + "IdSeccion": 4, + "Seccion": "CATRILÓ", + "Circuitos": [ + { + "IdCircuito": 13, + "Circuito": "13 - CATRILÓ" + }, + { + "IdCircuito": 14, + "Circuito": "14 - LA GLORIA" + }, + { + "IdCircuito": 15, + "Circuito": "15 - LONQUIMAY" + }, + { + "IdCircuito": 16, + "Circuito": "16 - URIBURU" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3bf", + "IdSeccion": 5, + "Seccion": "CHALILEO", + "Circuitos": [ + { + "IdCircuito": 17, + "Circuito": "17 - EMILIO MITRE" + }, + { + "IdCircuito": 18, + "Circuito": "18 - SANTAISABEL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3c0", + "IdSeccion": 6, + "Seccion": "CHAPALEUFÚ", + "Circuitos": [ + { + "IdCircuito": 19, + "Circuito": "19 - BERNARDO LARROUDE" + }, + { + "IdCircuito": 20, + "Circuito": "20 - CEBALLOS" + }, + { + "IdCircuito": 21, + "Circuito": "21 - CNEL. HILARIO LAGOS" + }, + { + "IdCircuito": 22, + "Circuito": "22 - INTENDENTE ALVEAR" + }, + { + "IdCircuito": 23, + "Circuito": "23 - VERTIZ" + }, + { + "IdCircuito": "0019A", + "Circuito": "19A - SARAH" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3c1", + "IdSeccion": 7, + "Seccion": "CHICAL CO", + "Circuitos": [ + { + "IdCircuito": 24, + "Circuito": "24 - ALG. DEL AGUILA" + }, + { + "IdCircuito": 25, + "Circuito": "25 - LA HUMADA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3c2", + "IdSeccion": 8, + "Seccion": "CONHELO", + "Circuitos": [ + { + "IdCircuito": 26, + "Circuito": "26 - CONELLO" + }, + { + "IdCircuito": 27, + "Circuito": "27 - EDUARDO CASTEX" + }, + { + "IdCircuito": 28, + "Circuito": "28 - MAURICIO MAYER" + }, + { + "IdCircuito": 29, + "Circuito": "29 - MONTE NIEVAS" + }, + { + "IdCircuito": 30, + "Circuito": "30 - RUCANELO" + }, + { + "IdCircuito": 31, + "Circuito": "31 - WINIFREDA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3c3", + "IdSeccion": 9, + "Seccion": "CURACÓ", + "Circuitos": [ + { + "IdCircuito": 32, + "Circuito": "32 - GOBERNADOR DUVAL" + }, + { + "IdCircuito": 33, + "Circuito": "33 - PUELCHES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3c4", + "IdSeccion": 10, + "Seccion": "GUATRACHÉ", + "Circuitos": [ + { + "IdCircuito": 34, + "Circuito": "34 - ALPACHIRI" + }, + { + "IdCircuito": 35, + "Circuito": "35 - GRAL. CAMPOS" + }, + { + "IdCircuito": 36, + "Circuito": "36 - GUATRACHÉ" + }, + { + "IdCircuito": 37, + "Circuito": "37 - PERU" + }, + { + "IdCircuito": 38, + "Circuito": "38 - SANTA TERESA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3c5", + "IdSeccion": 11, + "Seccion": "HUCAL", + "Circuitos": [ + { + "IdCircuito": 39, + "Circuito": "39 - BERNASCONI" + }, + { + "IdCircuito": 40, + "Circuito": "40 - GRAL. SAN MARTIN" + }, + { + "IdCircuito": 42, + "Circuito": "42 - JACINTO ARAUZ" + }, + { + "IdCircuito": "0039A", + "Circuito": "39A - ABRAMO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3c6", + "IdSeccion": 12, + "Seccion": "LOVENTUÉ", + "Circuitos": [ + { + "IdCircuito": 43, + "Circuito": "43 - CARRO QUEMADO" + }, + { + "IdCircuito": 45, + "Circuito": "45 - LOVENTUÉ" + }, + { + "IdCircuito": 46, + "Circuito": "46 - LUAN TORO" + }, + { + "IdCircuito": 47, + "Circuito": "47 - TELEN" + }, + { + "IdCircuito": 48, + "Circuito": "48 - VICTORICA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3c7", + "IdSeccion": 13, + "Seccion": "LIHUEL CALEL", + "Circuitos": [ + { + "IdCircuito": 49, + "Circuito": "49 - CUCHILLO CO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3c8", + "IdSeccion": 14, + "Seccion": "LIMAY MAHUIDA", + "Circuitos": [ + { + "IdCircuito": 53, + "Circuito": "53 - LA REFORMA" + }, + { + "IdCircuito": 54, + "Circuito": "54 - LIMAY MAHUIDA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3c9", + "IdSeccion": 15, + "Seccion": "MARACÓ", + "Circuitos": [ + { + "IdCircuito": 55, + "Circuito": "55 - AGUSTONI" + }, + { + "IdCircuito": 56, + "Circuito": "56 - DORILA" + }, + { + "IdCircuito": 57, + "Circuito": "57 - GRAL. PICO" + }, + { + "IdCircuito": 58, + "Circuito": "58 - GRAL. PICO" + }, + { + "IdCircuito": 59, + "Circuito": "59 - SPELUZZI" + }, + { + "IdCircuito": 60, + "Circuito": "60 - TREBOLARES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3ca", + "IdSeccion": 16, + "Seccion": "PUELÉN", + "Circuitos": [ + { + "IdCircuito": 61, + "Circuito": "61 - 25 DE MAYO" + }, + { + "IdCircuito": 62, + "Circuito": "62 - PUELÉN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3cb", + "IdSeccion": 17, + "Seccion": "QUEMÚ QUEMÚ", + "Circuitos": [ + { + "IdCircuito": 63, + "Circuito": "63 - COLONIA BARON" + }, + { + "IdCircuito": 64, + "Circuito": "64 - MIGUEL CANE" + }, + { + "IdCircuito": 65, + "Circuito": "65 - QUEMÚ QUEMÚ QUEMÚ QUEMÚ" + }, + { + "IdCircuito": 66, + "Circuito": "66 - RELMO" + }, + { + "IdCircuito": 67, + "Circuito": "67 - COLONIA SAN JOSE" + }, + { + "IdCircuito": 68, + "Circuito": "68 - VILLA MIRASOL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3cc", + "IdSeccion": 18, + "Seccion": "RANCUL", + "Circuitos": [ + { + "IdCircuito": 69, + "Circuito": "69 - CALEUFU" + }, + { + "IdCircuito": 70, + "Circuito": "70 - CHAMAICO" + }, + { + "IdCircuito": 71, + "Circuito": "71 - LA MARUJA" + }, + { + "IdCircuito": 72, + "Circuito": "72 - PARERA" + }, + { + "IdCircuito": 73, + "Circuito": "73 - PICHI HUINCA" + }, + { + "IdCircuito": 74, + "Circuito": "74 - QUETREQUEN" + }, + { + "IdCircuito": 75, + "Circuito": "75 - RANCUL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3cd", + "IdSeccion": 19, + "Seccion": "REALICÓ", + "Circuitos": [ + { + "IdCircuito": 76, + "Circuito": "76 - ADOLFO VAN PRAET" + }, + { + "IdCircuito": 77, + "Circuito": "77 - ALTA ITALIA" + }, + { + "IdCircuito": 78, + "Circuito": "78 - MAISONNAVE" + }, + { + "IdCircuito": 79, + "Circuito": "79 - EMB.MARTINI" + }, + { + "IdCircuito": 80, + "Circuito": "80 - FALUCHO" + }, + { + "IdCircuito": 81, + "Circuito": "81 - ING. LUIGGI" + }, + { + "IdCircuito": 82, + "Circuito": "82 - REALICÓ" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3ce", + "IdSeccion": 20, + "Seccion": "TOAY", + "Circuitos": [ + { + "IdCircuito": 83, + "Circuito": "83 - SAN JOSE" + }, + { + "IdCircuito": 84, + "Circuito": "84 - NAICO" + }, + { + "IdCircuito": 85, + "Circuito": "85 - OF. ENRIQUE SEGURA" + }, + { + "IdCircuito": 86, + "Circuito": "86 - TOAY" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3cf", + "IdSeccion": 21, + "Seccion": "TRENEL", + "Circuitos": [ + { + "IdCircuito": 87, + "Circuito": "87 - ARATA" + }, + { + "IdCircuito": 88, + "Circuito": "88 - METILEO" + }, + { + "IdCircuito": 89, + "Circuito": "89 - TRENEL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3d0", + "IdSeccion": 22, + "Seccion": "UTRACÁN", + "Circuitos": [ + { + "IdCircuito": 90, + "Circuito": "90 - ATALIVA ROCA" + }, + { + "IdCircuito": 91, + "Circuito": "91 - COLONIA STA. MARIA" + }, + { + "IdCircuito": 92, + "Circuito": "92 - CHACHARRAMENDI" + }, + { + "IdCircuito": 93, + "Circuito": "93 - GRAL.ACHA" + }, + { + "IdCircuito": 94, + "Circuito": "94 - QUEHUE" + }, + { + "IdCircuito": 95, + "Circuito": "95 - UNANUE" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3d1", + "IdDistrito": 12, + "Distrito": "LA RIOJA", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c3d2", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c3d3", + "IdSeccion": 1, + "Seccion": "CAPITAL", + "Circuitos": [ + { + "IdCircuito": "0001A", + "Circuito": "1A - MICROCENTRO" + }, + { + "IdCircuito": "0001B", + "Circuito": "1B - CENTRO ESTE" + }, + { + "IdCircuito": "0001C", + "Circuito": "1C - SAN MARTIN" + }, + { + "IdCircuito": "0001D", + "Circuito": "1D - SAN VICENTE" + }, + { + "IdCircuito": "0001E", + "Circuito": "1E - SAN ROMAN" + }, + { + "IdCircuito": "0001F", + "Circuito": "1F - CENTRO OESTE" + }, + { + "IdCircuito": "0001G", + "Circuito": "1G - CENTRO SUR" + }, + { + "IdCircuito": "0001H", + "Circuito": "1H - HOSPITAL" + }, + { + "IdCircuito": "0001I", + "Circuito": "1I - MATADERO" + }, + { + "IdCircuito": "0001J", + "Circuito": "1J - FERROVIARIO" + }, + { + "IdCircuito": "0001K", + "Circuito": "1K - SHINCAL" + }, + { + "IdCircuito": "0001L", + "Circuito": "1L - EVITA" + }, + { + "IdCircuito": "0001M", + "Circuito": "1M - VARGAS" + }, + { + "IdCircuito": "0001N", + "Circuito": "1N - ANT. ARGENTINA" + }, + { + "IdCircuito": "0001O", + "Circuito": "1O - FACUNDO QUIROGA" + }, + { + "IdCircuito": "0001P", + "Circuito": "1P - F. DEL VELAZCO SUR" + }, + { + "IdCircuito": "0001Q", + "Circuito": "1Q - TALAMUYUNA" + }, + { + "IdCircuito": "0001R", + "Circuito": "1R - CEBOLLAR" + }, + { + "IdCircuito": "0001S", + "Circuito": "1S - SAN PEDRO" + }, + { + "IdCircuito": "0001T", + "Circuito": "1T - EL BARRIAL" + }, + { + "IdCircuito": "0001U", + "Circuito": "1U - LAS CATAS" + }, + { + "IdCircuito": "0001V", + "Circuito": "1V - LA RAMADITA" + }, + { + "IdCircuito": "0001W", + "Circuito": "1W - LA LATA" + }, + { + "IdCircuito": "0001X", + "Circuito": "1X - EL CANTADERO" + }, + { + "IdCircuito": "0002A", + "Circuito": "2A - 4 DE JUNIO" + }, + { + "IdCircuito": "0002B", + "Circuito": "2B - LA QUEBRADA" + }, + { + "IdCircuito": "0002C", + "Circuito": "2C - COCHANGASTA" + }, + { + "IdCircuito": "0002D", + "Circuito": "2D - VIAL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3d4", + "IdSeccion": 2, + "Seccion": "SANAGASTA", + "Circuitos": [ + { + "IdCircuito": 3, + "Circuito": "3 - SANAGASTA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3d5", + "IdSeccion": 3, + "Seccion": "CASTRO BARROS", + "Circuitos": [ + { + "IdCircuito": 4, + "Circuito": "4 - AMINGA" + }, + { + "IdCircuito": 7, + "Circuito": "7 - CHUQUIS" + }, + { + "IdCircuito": "0005A", + "Circuito": "5A - ANILLACO" + }, + { + "IdCircuito": "0005B", + "Circuito": "5B - LOS MOLINOS" + }, + { + "IdCircuito": "0006A", + "Circuito": "6A - PINCHAS" + }, + { + "IdCircuito": "0006B", + "Circuito": "6B - LAS PENAS" + }, + { + "IdCircuito": "0008A", + "Circuito": "8A - ANJULLON" + }, + { + "IdCircuito": "0008B", + "Circuito": "8B - SANTA VERA CRUZ" + }, + { + "IdCircuito": "0008C", + "Circuito": "8C - SAN PEDRO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3d6", + "IdSeccion": 4, + "Seccion": "ARAUCO", + "Circuitos": [ + { + "IdCircuito": 10, + "Circuito": "10 - MACHIGASTA" + }, + { + "IdCircuito": "0009A", + "Circuito": "9A - AIMOGASTA" + }, + { + "IdCircuito": "0009B", + "Circuito": "9B - B. DE LOS PANTANOS" + }, + { + "IdCircuito": "0011A", + "Circuito": "11A - ARAUCO" + }, + { + "IdCircuito": "0011B", + "Circuito": "11B - UDPINANGO" + }, + { + "IdCircuito": "0012A", + "Circuito": "12A - EST. MAZAN" + }, + { + "IdCircuito": "0012B", + "Circuito": "12B - VILLA MAZAN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3d7", + "IdSeccion": 5, + "Seccion": "SAN BLAS DE LOS SAUCES", + "Circuitos": [ + { + "IdCircuito": 13, + "Circuito": "13 - SALICAS" + }, + { + "IdCircuito": 15, + "Circuito": "15 - SAN BLAS" + }, + { + "IdCircuito": 17, + "Circuito": "17 - SURIYACO" + }, + { + "IdCircuito": "0014A", + "Circuito": "14A - ALPASINCHE" + }, + { + "IdCircuito": "0014B", + "Circuito": "14B - CHAUPIHUASI" + }, + { + "IdCircuito": "0016A", + "Circuito": "16A - SCHAQUI" + }, + { + "IdCircuito": "0016B", + "Circuito": "16B - CUIPAN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3d8", + "IdSeccion": 6, + "Seccion": "CHILECITO", + "Circuitos": [ + { + "IdCircuito": 19, + "Circuito": "19 - SAN MIGUEL" + }, + { + "IdCircuito": 20, + "Circuito": "20 - LOS SARMIENTOS" + }, + { + "IdCircuito": 21, + "Circuito": "21 - ANGUINAN" + }, + { + "IdCircuito": 24, + "Circuito": "24 - VICHIGASTA" + }, + { + "IdCircuito": 25, + "Circuito": "25 - NONOGASTA" + }, + { + "IdCircuito": "0018A", + "Circuito": "18A - CHILECITO" + }, + { + "IdCircuito": "0018B", + "Circuito": "18B - SANTA FLORENTINA" + }, + { + "IdCircuito": "0022A", + "Circuito": "22A - MALLIGASTA" + }, + { + "IdCircuito": "0022B", + "Circuito": "22B - TILIMUQUI" + }, + { + "IdCircuito": "0023A", + "Circuito": "23A - SANOGASTA" + }, + { + "IdCircuito": "0023B", + "Circuito": "23B - MIRANDA" + }, + { + "IdCircuito": "0023C", + "Circuito": "23C - GUANCHIN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3d9", + "IdSeccion": 7, + "Seccion": "FAMATINA", + "Circuitos": [ + { + "IdCircuito": 26, + "Circuito": "26 - FAMATINA" + }, + { + "IdCircuito": 27, + "Circuito": "27 - ALTO CARRIZAL" + }, + { + "IdCircuito": "0028A", + "Circuito": "28A - CAMPANAS" + }, + { + "IdCircuito": "0028B", + "Circuito": "28B - SANTA CRUZ" + }, + { + "IdCircuito": "0028C", + "Circuito": "28C - ANGULOS" + }, + { + "IdCircuito": "0028D", + "Circuito": "28D - CHANARMUYO" + }, + { + "IdCircuito": "0029A", + "Circuito": "29A - PITUIL" + }, + { + "IdCircuito": "0029B", + "Circuito": "29B - ANTINACO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3da", + "IdSeccion": 8, + "Seccion": "CNEL. FELIPE VARELA", + "Circuitos": [ + { + "IdCircuito": 32, + "Circuito": "32 - GUANDACOL" + }, + { + "IdCircuito": "0030A", + "Circuito": "30A - VILLA UNION" + }, + { + "IdCircuito": "0030B", + "Circuito": "30B - BANDA FLORIDA" + }, + { + "IdCircuito": "0030C", + "Circuito": "30C - LOS PALACIOS" + }, + { + "IdCircuito": "0031A", + "Circuito": "31A - PAGANCILLO" + }, + { + "IdCircuito": "0031B", + "Circuito": "31B - AICUNA" + }, + { + "IdCircuito": "0031C", + "Circuito": "31C - LOS TAMBILLOS" + }, + { + "IdCircuito": "0031D", + "Circuito": "31D - EL CARDON" + }, + { + "IdCircuito": "0031E", + "Circuito": "31E - LOS PATILLOS" + }, + { + "IdCircuito": "0032A", + "Circuito": "32A - SANTA CLARA" + }, + { + "IdCircuito": "0032B", + "Circuito": "32B - EL ZAPALLAR" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3db", + "IdSeccion": 9, + "Seccion": "GRAL. LAMADRID", + "Circuitos": [ + { + "IdCircuito": 33, + "Circuito": "33 - V. CASTELLI" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3dc", + "IdSeccion": 10, + "Seccion": "VINCHINA", + "Circuitos": [ + { + "IdCircuito": "0034A", + "Circuito": "34A - VINCHINA" + }, + { + "IdCircuito": "0034B", + "Circuito": "34B - VALLE HERMOSO" + }, + { + "IdCircuito": "0035A", + "Circuito": "35A - JAGUE" + }, + { + "IdCircuito": "0035B", + "Circuito": "35B - POTRERO GRANDE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3dd", + "IdSeccion": 11, + "Seccion": "INDEPENDENCIA", + "Circuitos": [ + { + "IdCircuito": 36, + "Circuito": "36 - PATQUIA" + }, + { + "IdCircuito": "0037A", + "Circuito": "37A - AMANA" + }, + { + "IdCircuito": "0037B", + "Circuito": "37B - LA TORRE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3de", + "IdSeccion": 12, + "Seccion": "CHAMICAL", + "Circuitos": [ + { + "IdCircuito": 39, + "Circuito": "39 - BELLA VISTA" + }, + { + "IdCircuito": "0038A", + "Circuito": "38A - CHAMICAL" + }, + { + "IdCircuito": "0038B", + "Circuito": "38B - EL RETAMO" + }, + { + "IdCircuito": "0040A", + "Circuito": "40A - SANTA R. DE LA ZANJA" + }, + { + "IdCircuito": "0040B", + "Circuito": "40B - ESQ.DEL NORTE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3df", + "IdSeccion": 13, + "Seccion": "ÁNGEL VICENTE PEÑALOZA", + "Circuitos": [ + { + "IdCircuito": "0041A", + "Circuito": "41A - TAMA" + }, + { + "IdCircuito": "0041B", + "Circuito": "41B - PUNTA DE LOS LLANOS" + }, + { + "IdCircuito": "0041C", + "Circuito": "41C - ALCAZAR" + }, + { + "IdCircuito": "0041D", + "Circuito": "41D - TUIZON" + }, + { + "IdCircuito": "0041E", + "Circuito": "41E - CARRIZAL" + }, + { + "IdCircuito": "0041F", + "Circuito": "41F - SAN RAMON" + }, + { + "IdCircuito": "0041G", + "Circuito": "41G - S DE LOS QUINTEROS" + }, + { + "IdCircuito": "0041H", + "Circuito": "41H - CHILA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3e0", + "IdSeccion": 14, + "Seccion": "GRAL. BELGRANO", + "Circuitos": [ + { + "IdCircuito": 42, + "Circuito": "42 - OLTA" + }, + { + "IdCircuito": 43, + "Circuito": "43 - TALVA" + }, + { + "IdCircuito": 44, + "Circuito": "44 - CORTADERAS" + }, + { + "IdCircuito": 46, + "Circuito": "46 - CASTRO BARROS" + }, + { + "IdCircuito": "0045A", + "Circuito": "45A - CHANAR" + }, + { + "IdCircuito": "0045B", + "Circuito": "45B - EL SIMBOLAR" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3e1", + "IdSeccion": 15, + "Seccion": "JUAN F. QUIROGA", + "Circuitos": [ + { + "IdCircuito": 50, + "Circuito": "50 - SAN ANTONIO" + }, + { + "IdCircuito": "0047A", + "Circuito": "47A - MALANZAN" + }, + { + "IdCircuito": "0047B", + "Circuito": "47B - TUANI" + }, + { + "IdCircuito": "0048A", + "Circuito": "48A - SOLCA" + }, + { + "IdCircuito": "0048B", + "Circuito": "48B - NACATE" + }, + { + "IdCircuito": "0049A", + "Circuito": "49A - EL POTRERO" + }, + { + "IdCircuito": "0049B", + "Circuito": "49B - EL RETAMAL" + }, + { + "IdCircuito": "0049C", + "Circuito": "49C - SALANA" + }, + { + "IdCircuito": "0049D", + "Circuito": "49D - PORTEZUELO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3e2", + "IdSeccion": 16, + "Seccion": "GRAL. ORTIZ DE OCAMPO", + "Circuitos": [ + { + "IdCircuito": 53, + "Circuito": "53 - AMBIL" + }, + { + "IdCircuito": "0051A", + "Circuito": "51A - STA. RITA DE CATUNA" + }, + { + "IdCircuito": "0051B", + "Circuito": "51B - EL QUEMADO" + }, + { + "IdCircuito": "0052A", + "Circuito": "52A - MILAGRO" + }, + { + "IdCircuito": "0052B", + "Circuito": "52B - LA ISLA" + }, + { + "IdCircuito": "0054A", + "Circuito": "54A - OLPAS" + }, + { + "IdCircuito": "0054B", + "Circuito": "54B - LOS AGUIRRES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3e3", + "IdSeccion": 17, + "Seccion": "ROSARIO VERA PEÑALOZA", + "Circuitos": [ + { + "IdCircuito": 59, + "Circuito": "59 - VILLA CASANA" + }, + { + "IdCircuito": "0055A", + "Circuito": "55A - CHEPES" + }, + { + "IdCircuito": "0055B", + "Circuito": "55B - MASCASIN" + }, + { + "IdCircuito": "0055C", + "Circuito": "55C - NOQUEVES" + }, + { + "IdCircuito": "0055D", + "Circuito": "55D - LA LAGUNA" + }, + { + "IdCircuito": "0055E", + "Circuito": "55E - V.HERMOSO" + }, + { + "IdCircuito": "0056A", + "Circuito": "56A - SAN ISIDRO" + }, + { + "IdCircuito": "0056B", + "Circuito": "56B - EL TOTORAL" + }, + { + "IdCircuito": "0056C", + "Circuito": "56C - EL DIVISADERO" + }, + { + "IdCircuito": "0057A", + "Circuito": "57A - DESIDERIO TELLO" + }, + { + "IdCircuito": "0057B", + "Circuito": "57B - CHELCOS" + }, + { + "IdCircuito": "0058A", + "Circuito": "58A - EL TALA" + }, + { + "IdCircuito": "0058B", + "Circuito": "58B - LA JARILLA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3e4", + "IdSeccion": 18, + "Seccion": "GRAL. SAN MARTÍN", + "Circuitos": [ + { + "IdCircuito": 60, + "Circuito": "60 - ULAPES" + }, + { + "IdCircuito": "0061A", + "Circuito": "61A - BAJO HONDO" + }, + { + "IdCircuito": "0061B", + "Circuito": "61B - AGUAYO" + }, + { + "IdCircuito": "0061C", + "Circuito": "61C - SAN SOLANO" + }, + { + "IdCircuito": "0061D", + "Circuito": "61D - CUATRO ESQUINAS" + }, + { + "IdCircuito": "0062A", + "Circuito": "62A - CORRAL DE ISAAC" + }, + { + "IdCircuito": "0062B", + "Circuito": "62B - SAN RAFAEL" + }, + { + "IdCircuito": "0062C", + "Circuito": "62C - PUESTO DICHOSO" + }, + { + "IdCircuito": "0062D", + "Circuito": "62D - EL BALDE" + }, + { + "IdCircuito": "0062E", + "Circuito": "62E - VILLA NIDIA" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3e5", + "IdDistrito": 13, + "Distrito": "MENDOZA", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c3e6", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c3e7", + "IdSeccion": 1, + "Seccion": "CAPITAL", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 2, + "Circuito": "2 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 3, + "Circuito": "3 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 4, + "Circuito": "4 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 5, + "Circuito": "5 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 6, + "Circuito": "6 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 7, + "Circuito": "7 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 8, + "Circuito": "8 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 9, + "Circuito": "9 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 10, + "Circuito": "10 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 11, + "Circuito": "11 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 12, + "Circuito": "12 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 13, + "Circuito": "13 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 14, + "Circuito": "14 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 15, + "Circuito": "15 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 16, + "Circuito": "16 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 17, + "Circuito": "17 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 18, + "Circuito": "18 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 19, + "Circuito": "19 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 20, + "Circuito": "20 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 21, + "Circuito": "21 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 22, + "Circuito": "22 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 23, + "Circuito": "23 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": 24, + "Circuito": "24 - CIUDAD DE MENDOZA" + }, + { + "IdCircuito": "0018A", + "Circuito": "18A - BARRIO SAN MARTIN" + }, + { + "IdCircuito": "0018B", + "Circuito": "18B - BO SANIDAD" + }, + { + "IdCircuito": "0022A", + "Circuito": "22A - LA FAVORITA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3e8", + "IdSeccion": 3, + "Seccion": "GUAYMALLÉN", + "Circuitos": [ + { + "IdCircuito": 29, + "Circuito": "29 - SAN JOSE" + }, + { + "IdCircuito": 30, + "Circuito": "30 - NUEVA CIUDAD" + }, + { + "IdCircuito": 31, + "Circuito": "31 - EL BERMEJO" + }, + { + "IdCircuito": 32, + "Circuito": "32 - RODEO DE LA CRUZ" + }, + { + "IdCircuito": 33, + "Circuito": "33 - LOS CORRALITOS" + }, + { + "IdCircuito": "0029A", + "Circuito": "29A - DORREGO" + }, + { + "IdCircuito": "0030A", + "Circuito": "30A - AVELLANEDA OESTE" + }, + { + "IdCircuito": "0030B", + "Circuito": "30B - AVELLANEDA ESTE" + }, + { + "IdCircuito": "0030C", + "Circuito": "30C - CAPILLA DEL ROSARIO" + }, + { + "IdCircuito": "0030D", + "Circuito": "30D - HIGUERITA" + }, + { + "IdCircuito": "0030E", + "Circuito": "30E - LA CANADITA" + }, + { + "IdCircuito": "0031A", + "Circuito": "31A - EL SAUCE" + }, + { + "IdCircuito": "0031B", + "Circuito": "31B - COLONIA SEGOVIA" + }, + { + "IdCircuito": "0032A", + "Circuito": "32A - KILOMETRO 8" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3e9", + "IdSeccion": 4, + "Seccion": "LAS HERAS", + "Circuitos": [ + { + "IdCircuito": 34, + "Circuito": "34 - CIUDAD DE LAS HERAS" + }, + { + "IdCircuito": 35, + "Circuito": "35 - PANQUEHUA" + }, + { + "IdCircuito": 36, + "Circuito": "36 - EL RESGUARDO" + }, + { + "IdCircuito": 37, + "Circuito": "37 - EL PLUMERILLO" + }, + { + "IdCircuito": 38, + "Circuito": "38 - EL ALGARROBAL" + }, + { + "IdCircuito": 39, + "Circuito": "39 - EL BORBOLLON EL PA" + }, + { + "IdCircuito": 40, + "Circuito": "40 - USPALLATA" + }, + { + "IdCircuito": "0034A", + "Circuito": "34A - CHALLAO" + }, + { + "IdCircuito": "0034B", + "Circuito": "34B - BARRIO INFANTA" + }, + { + "IdCircuito": "0034C", + "Circuito": "34C - LA CIENEGUITA" + }, + { + "IdCircuito": "0034D", + "Circuito": "34D - BARRIO MUNICIPAL" + }, + { + "IdCircuito": "0034E", + "Circuito": "34E - BARRIO MARIANO MORENO" + }, + { + "IdCircuito": "0037A", + "Circuito": "37A - EL ZAPALLAR" + }, + { + "IdCircuito": "0040A", + "Circuito": "40A - PUNTA DE VACAS" + }, + { + "IdCircuito": "0040B", + "Circuito": "40B - POLVAREDAS" + }, + { + "IdCircuito": "0040C", + "Circuito": "40C - PUENTE DEL INCA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3ea", + "IdSeccion": 5, + "Seccion": "LAVALLE", + "Circuitos": [ + { + "IdCircuito": 41, + "Circuito": "41 - CIUDAD DE LAVALLE" + }, + { + "IdCircuito": 42, + "Circuito": "42 - JOCOLI" + }, + { + "IdCircuito": 43, + "Circuito": "43 - COSTA DE ARAUJO" + }, + { + "IdCircuito": 44, + "Circuito": "44 - EL ROSARIO" + }, + { + "IdCircuito": 45, + "Circuito": "45 - ASUNCION" + }, + { + "IdCircuito": 46, + "Circuito": "46 - SAN MIGUEL" + }, + { + "IdCircuito": "0043A", + "Circuito": "43A - INGENIERO GUSTAVO ANDRE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3eb", + "IdSeccion": 6, + "Seccion": "MAIPÚ", + "Circuitos": [ + { + "IdCircuito": 47, + "Circuito": "47 - GENERAL GUTIERREZ" + }, + { + "IdCircuito": 48, + "Circuito": "48 - CIUDAD DE MAIPÚ" + }, + { + "IdCircuito": 49, + "Circuito": "49 - RUSSELL" + }, + { + "IdCircuito": 50, + "Circuito": "50 - PEDREGAL" + }, + { + "IdCircuito": 51, + "Circuito": "51 - COQUIMBITO" + }, + { + "IdCircuito": 52, + "Circuito": "52 - GENERAL ORTEGA" + }, + { + "IdCircuito": 53, + "Circuito": "53 - RODEO DEL MEDIO" + }, + { + "IdCircuito": 54, + "Circuito": "54 - FRAY LUIS BELTRAN" + }, + { + "IdCircuito": 55, + "Circuito": "55 - LAS ISLAS" + }, + { + "IdCircuito": 56, + "Circuito": "56 - LAS BARRANCAS" + }, + { + "IdCircuito": "0047A", + "Circuito": "47A - LUZURIAGA" + }, + { + "IdCircuito": "0049A", + "Circuito": "49A - CRUZ DE PIEDRA" + }, + { + "IdCircuito": "0049B", + "Circuito": "49B - LUNLUNTA" + }, + { + "IdCircuito": "0054A", + "Circuito": "54A - SAN ROQUE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3ec", + "IdSeccion": 9, + "Seccion": "SAN MARTÍN", + "Circuitos": [ + { + "IdCircuito": 69, + "Circuito": "69 - CIUDAD DE SAN MARTÍN" + }, + { + "IdCircuito": 70, + "Circuito": "70 - PALMIRA" + }, + { + "IdCircuito": 71, + "Circuito": "71 - MONTECASEROS" + }, + { + "IdCircuito": 72, + "Circuito": "72 - BUEN ORDEN" + }, + { + "IdCircuito": 73, + "Circuito": "73 - ALTO VERDE" + }, + { + "IdCircuito": 74, + "Circuito": "74 - ALTO SALVADOR" + }, + { + "IdCircuito": 75, + "Circuito": "75 - CHAPANAY" + }, + { + "IdCircuito": 76, + "Circuito": "76 - TRES PORTENAS" + }, + { + "IdCircuito": "0076A", + "Circuito": "76A - NUEVA CALIFORNIA" + }, + { + "IdCircuito": "0076B", + "Circuito": "76B - EL CENTRAL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3ed", + "IdSeccion": 10, + "Seccion": "JUNÍN", + "Circuitos": [ + { + "IdCircuito": 77, + "Circuito": "77 - CIUDAD DE JUNÍN" + }, + { + "IdCircuito": 78, + "Circuito": "78 - MEDRANO" + }, + { + "IdCircuito": 79, + "Circuito": "79 - RODRIGUEZ PENA" + }, + { + "IdCircuito": 80, + "Circuito": "80 - BARRIALES" + }, + { + "IdCircuito": 81, + "Circuito": "81 - LA COLONIA" + }, + { + "IdCircuito": 82, + "Circuito": "82 - MUNDO NUEVO" + }, + { + "IdCircuito": 83, + "Circuito": "83 - PHILLIPS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3ee", + "IdSeccion": 11, + "Seccion": "RIVADAVIA", + "Circuitos": [ + { + "IdCircuito": 84, + "Circuito": "84 - CIUDAD DE RIVADAVIA" + }, + { + "IdCircuito": 85, + "Circuito": "85 - SANTA MARIA DE ORO" + }, + { + "IdCircuito": 86, + "Circuito": "86 - LOS ARBOLES" + }, + { + "IdCircuito": 87, + "Circuito": "87 - LA LIBERTAD" + }, + { + "IdCircuito": 88, + "Circuito": "88 - REDUCCION" + }, + { + "IdCircuito": 89, + "Circuito": "89 - LOS CAMPAMENTOS" + }, + { + "IdCircuito": 90, + "Circuito": "90 - EL MIRADOR" + }, + { + "IdCircuito": "0086A", + "Circuito": "86A - MEDRANO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3ef", + "IdSeccion": 14, + "Seccion": "SANTA ROSA", + "Circuitos": [ + { + "IdCircuito": 100, + "Circuito": "100 - VILLA DE SANTA ROSA" + }, + { + "IdCircuito": 101, + "Circuito": "101 - LAS CATITAS" + }, + { + "IdCircuito": 102, + "Circuito": "102 - LA DORMIDA" + }, + { + "IdCircuito": "0100A", + "Circuito": "100A - NACUNAN" + }, + { + "IdCircuito": "0100B", + "Circuito": "100B - EL MARCADO" + }, + { + "IdCircuito": "0100C", + "Circuito": "100C - 12 DE OCTUBRE" + }, + { + "IdCircuito": "0101A", + "Circuito": "101A - LA CIENEGUITA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3f0", + "IdSeccion": 15, + "Seccion": "LA PAZ", + "Circuitos": [ + { + "IdCircuito": 103, + "Circuito": "103 - VILLA NUEVA" + }, + { + "IdCircuito": 104, + "Circuito": "104 - VILLA ANTIGUA" + }, + { + "IdCircuito": 105, + "Circuito": "105 - ARROYITO" + }, + { + "IdCircuito": 106, + "Circuito": "106 - DESAGUADERO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3f1", + "IdSeccion": 2, + "Seccion": "GODOY CRUZ", + "Circuitos": [ + { + "IdCircuito": 25, + "Circuito": "25 - CIUDAD DE GODOY CRUZ" + }, + { + "IdCircuito": 26, + "Circuito": "26 - VILLA HIPODROMO" + }, + { + "IdCircuito": 27, + "Circuito": "27 - TRAPICHE" + }, + { + "IdCircuito": 28, + "Circuito": "28 - SAN FRANCISCO DEL MONTE" + }, + { + "IdCircuito": "0025A", + "Circuito": "25A - CIUDAD DE GODOY CRUZ" + }, + { + "IdCircuito": "0025B", + "Circuito": "25B - VILLA MARINI" + }, + { + "IdCircuito": "0026A", + "Circuito": "26A - VILLA DEL PARQUE" + }, + { + "IdCircuito": "0027A", + "Circuito": "27A - GOBERNADOR BENEGAS" + }, + { + "IdCircuito": "0027B", + "Circuito": "27B - LAS TORTUGAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3f2", + "IdSeccion": 7, + "Seccion": "LUJÁN DE CUYO", + "Circuitos": [ + { + "IdCircuito": 57, + "Circuito": "57 - CIUDAD DE LUJÁN DE CUYO" + }, + { + "IdCircuito": 58, + "Circuito": "58 - MAYOR DRUMMOND" + }, + { + "IdCircuito": 59, + "Circuito": "59 - CARRODILLA" + }, + { + "IdCircuito": 60, + "Circuito": "60 - CH.DE CORIA" + }, + { + "IdCircuito": 61, + "Circuito": "61 - VISTALBA" + }, + { + "IdCircuito": 62, + "Circuito": "62 - CACHEUTA" + }, + { + "IdCircuito": 63, + "Circuito": "63 - PERDRIEL" + }, + { + "IdCircuito": 64, + "Circuito": "64 - AGRELO" + }, + { + "IdCircuito": 65, + "Circuito": "65 - EL CARRIZAL" + }, + { + "IdCircuito": "0060A", + "Circuito": "60A - LA PUNTILLA" + }, + { + "IdCircuito": "0062A", + "Circuito": "62A - POTRERILLOS" + }, + { + "IdCircuito": "0065A", + "Circuito": "65A - EL CARRIZAL DE ABAJO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3f3", + "IdSeccion": 8, + "Seccion": "TUPUNGATO", + "Circuitos": [ + { + "IdCircuito": 66, + "Circuito": "66 - CIUDAD DE TUPUNGATO" + }, + { + "IdCircuito": 67, + "Circuito": "67 - EL PERAL" + }, + { + "IdCircuito": 68, + "Circuito": "68 - LA CARRERA" + }, + { + "IdCircuito": "0066A", + "Circuito": "66A - CORDON DEL PLATA" + }, + { + "IdCircuito": "0066B", + "Circuito": "66B - EL ZAMPAL" + }, + { + "IdCircuito": "0067A", + "Circuito": "67A - SAN JOSE" + }, + { + "IdCircuito": "0068A", + "Circuito": "68A - ANCON" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3f4", + "IdSeccion": 12, + "Seccion": "TUNUYÁN", + "Circuitos": [ + { + "IdCircuito": 91, + "Circuito": "91 - CIUDAD DE TUNUYÁN" + }, + { + "IdCircuito": 92, + "Circuito": "92 - LAS ROSAS" + }, + { + "IdCircuito": 93, + "Circuito": "93 - VISTA FLORES" + }, + { + "IdCircuito": 94, + "Circuito": "94 - VILLA SECA" + }, + { + "IdCircuito": 95, + "Circuito": "95 - LOS SAUCES" + }, + { + "IdCircuito": 96, + "Circuito": "96 - CAMPO DE LOS ANDES" + }, + { + "IdCircuito": "0093A", + "Circuito": "93A - EL MANZANO HISTORICO" + }, + { + "IdCircuito": "0094A", + "Circuito": "94A - LOS ARBOLES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3f5", + "IdSeccion": 13, + "Seccion": "SAN CARLOS", + "Circuitos": [ + { + "IdCircuito": 97, + "Circuito": "97 - VILLA DE SAN CARLOS" + }, + { + "IdCircuito": 98, + "Circuito": "98 - CHILECITO" + }, + { + "IdCircuito": 99, + "Circuito": "99 - LA CONSULTA" + }, + { + "IdCircuito": "0097A", + "Circuito": "97A - CAPIZ" + }, + { + "IdCircuito": "0098A", + "Circuito": "98A - PAREDITAS" + }, + { + "IdCircuito": "0099A", + "Circuito": "99A - EUGENIO BUSTOS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3f6", + "IdSeccion": 16, + "Seccion": "SAN RAFAEL", + "Circuitos": [ + { + "IdCircuito": 107, + "Circuito": "107 - CIUDAD IRIGOYEN AL NORTE" + }, + { + "IdCircuito": 108, + "Circuito": "108 - CUADRO NACIONAL" + }, + { + "IdCircuito": 109, + "Circuito": "109 - EL CERRITO" + }, + { + "IdCircuito": 110, + "Circuito": "110 - LAS PAREDES" + }, + { + "IdCircuito": 111, + "Circuito": "111 - RAMA CAIDA" + }, + { + "IdCircuito": 112, + "Circuito": "112 - CANADA SECA" + }, + { + "IdCircuito": 113, + "Circuito": "113 - MONTE COMAN" + }, + { + "IdCircuito": 114, + "Circuito": "114 - LA LLAVE" + }, + { + "IdCircuito": 115, + "Circuito": "115 - GOUDGE" + }, + { + "IdCircuito": 116, + "Circuito": "116 - 25 DE MAYO" + }, + { + "IdCircuito": 117, + "Circuito": "117 - CUADRO BENEGAS" + }, + { + "IdCircuito": 118, + "Circuito": "118 - LAS MALVINAS" + }, + { + "IdCircuito": 119, + "Circuito": "119 - PUNTA DEL AGUA" + }, + { + "IdCircuito": 120, + "Circuito": "120 - VILLA ATUEL" + }, + { + "IdCircuito": 121, + "Circuito": "121 - REAL DEL PADRE" + }, + { + "IdCircuito": 122, + "Circuito": "122 - JAIME PRATS" + }, + { + "IdCircuito": 123, + "Circuito": "123 - LA GUEVARINA" + }, + { + "IdCircuito": 124, + "Circuito": "124 - EL SOSNEADO" + }, + { + "IdCircuito": "0107A", + "Circuito": "107A - CIUDAD MITRE AL NORTE" + }, + { + "IdCircuito": "0107B", + "Circuito": "107B - CIUDAD MITRE AL SUR" + }, + { + "IdCircuito": "0107C", + "Circuito": "107C - CIUDAD IRIGOYEN AL SUR" + }, + { + "IdCircuito": "0117A", + "Circuito": "117A - EL NIHUIL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3f7", + "IdSeccion": 17, + "Seccion": "MALARGÜE", + "Circuitos": [ + { + "IdCircuito": 125, + "Circuito": "125 - CIUDAD DE MALARGUE" + }, + { + "IdCircuito": 126, + "Circuito": "126 - AGUA ESCONDIDA" + }, + { + "IdCircuito": 127, + "Circuito": "127 - EL MANZANO" + }, + { + "IdCircuito": 128, + "Circuito": "128 - RIO BARRANCAS" + }, + { + "IdCircuito": 129, + "Circuito": "129 - AGUA DEL TORO" + }, + { + "IdCircuito": "0127A", + "Circuito": "127A - BARDAS BLANCAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3f8", + "IdSeccion": 18, + "Seccion": "GRAL.ALVEAR", + "Circuitos": [ + { + "IdCircuito": 130, + "Circuito": "130 - CIUDAD DE GRAL.ALVEAR" + }, + { + "IdCircuito": 131, + "Circuito": "131 - BOWEN" + }, + { + "IdCircuito": 132, + "Circuito": "132 - ALVEAR OESTE" + }, + { + "IdCircuito": 133, + "Circuito": "133 - LA MARZOLINA" + }, + { + "IdCircuito": 134, + "Circuito": "134 - SAN PEDRO DEL ATUEL" + }, + { + "IdCircuito": 135, + "Circuito": "135 - CANALEJAS" + }, + { + "IdCircuito": 136, + "Circuito": "136 - CORRAL DE LORCA" + }, + { + "IdCircuito": "0134A", + "Circuito": "134A - COCHICO" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3f9", + "IdDistrito": 14, + "Distrito": "MISIONES", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c3fa", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c3fb", + "IdSeccion": 1, + "Seccion": "CAPITAL", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - POSADAS" + }, + { + "IdCircuito": 2, + "Circuito": "2 - POSADAS" + }, + { + "IdCircuito": 3, + "Circuito": "3 - POSADAS" + }, + { + "IdCircuito": 4, + "Circuito": "4 - POSADAS" + }, + { + "IdCircuito": 5, + "Circuito": "5 - POSADAS" + }, + { + "IdCircuito": 6, + "Circuito": "6 - POSADAS" + }, + { + "IdCircuito": 7, + "Circuito": "7 - POSADAS" + }, + { + "IdCircuito": 8, + "Circuito": "8 - GARUPA" + }, + { + "IdCircuito": 9, + "Circuito": "9 - FACHINAL" + }, + { + "IdCircuito": "0003A", + "Circuito": "3A - POSADAS" + }, + { + "IdCircuito": "0004A", + "Circuito": "4A - POSADAS" + }, + { + "IdCircuito": "0004B", + "Circuito": "4B - POSADAS" + }, + { + "IdCircuito": "0007A", + "Circuito": "7A - POSADAS" + }, + { + "IdCircuito": "0007B", + "Circuito": "7B - POSADAS" + }, + { + "IdCircuito": "0007C", + "Circuito": "7C - POSADAS" + }, + { + "IdCircuito": "0008A", + "Circuito": "8A - SANTA INES" + }, + { + "IdCircuito": "0008B", + "Circuito": "8B - DON SANTIAGO" + }, + { + "IdCircuito": "0008C", + "Circuito": "8C - GARUPA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3fc", + "IdSeccion": 2, + "Seccion": "APÓSTOLES", + "Circuitos": [ + { + "IdCircuito": 10, + "Circuito": "10 - APÓSTOLES" + }, + { + "IdCircuito": 11, + "Circuito": "11 - SAN JOSE" + }, + { + "IdCircuito": 12, + "Circuito": "12 - AZARA" + }, + { + "IdCircuito": 13, + "Circuito": "13 - TRES CAPONES" + }, + { + "IdCircuito": "0010A", + "Circuito": "10A - BO. ESTACION" + }, + { + "IdCircuito": "0012A", + "Circuito": "12A - PUERTO AZARA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3fd", + "IdSeccion": 3, + "Seccion": "CANDELARIA", + "Circuitos": [ + { + "IdCircuito": 14, + "Circuito": "14 - SANTA ANA" + }, + { + "IdCircuito": 15, + "Circuito": "15 - CANDELARIA" + }, + { + "IdCircuito": 16, + "Circuito": "16 - PROFUNDIDAD" + }, + { + "IdCircuito": 17, + "Circuito": "17 - CERRO CORA" + }, + { + "IdCircuito": 18, + "Circuito": "18 - BONPLAND" + }, + { + "IdCircuito": 19, + "Circuito": "19 - MARTIRES" + }, + { + "IdCircuito": 20, + "Circuito": "20 - LORETO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3fe", + "IdSeccion": 4, + "Seccion": "L.N.ALEM", + "Circuitos": [ + { + "IdCircuito": 21, + "Circuito": "21 - L.N.ALEM" + }, + { + "IdCircuito": 22, + "Circuito": "22 - O.V.ANDRADE" + }, + { + "IdCircuito": 23, + "Circuito": "23 - CERRO AZUL" + }, + { + "IdCircuito": 24, + "Circuito": "24 - A.DEL MEDIO" + }, + { + "IdCircuito": 25, + "Circuito": "25 - DOS ARROYOS" + }, + { + "IdCircuito": 26, + "Circuito": "26 - GDOR LOPEZ" + }, + { + "IdCircuito": 27, + "Circuito": "27 - CAA YARI" + }, + { + "IdCircuito": 28, + "Circuito": "28 - ALMAFUERTE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c3ff", + "IdSeccion": 5, + "Seccion": "CONCEPCIÓN DE LA SIERRA", + "Circuitos": [ + { + "IdCircuito": 29, + "Circuito": "29 - CONCEPCIÓN DE LA SIERRA" + }, + { + "IdCircuito": 30, + "Circuito": "30 - B. CONCEPCION" + }, + { + "IdCircuito": 31, + "Circuito": "31 - SANTA MARIA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c400", + "IdSeccion": 6, + "Seccion": "SAN JAVIER", + "Circuitos": [ + { + "IdCircuito": 32, + "Circuito": "32 - SAN JAVIER" + }, + { + "IdCircuito": 33, + "Circuito": "33 - ITACARUARE" + }, + { + "IdCircuito": 34, + "Circuito": "34 - MOJON GRANDE" + }, + { + "IdCircuito": 35, + "Circuito": "35 - F. AMEGHINO" + }, + { + "IdCircuito": "0035A", + "Circuito": "35A - PTO ROSARIO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c401", + "IdSeccion": 7, + "Seccion": "SAN IGNACIO", + "Circuitos": [ + { + "IdCircuito": 36, + "Circuito": "36 - SAN IGNACIO" + }, + { + "IdCircuito": 37, + "Circuito": "37 - CORPUS" + }, + { + "IdCircuito": 38, + "Circuito": "38 - GDOR. ROCA" + }, + { + "IdCircuito": 39, + "Circuito": "39 - SANTO PIPO" + }, + { + "IdCircuito": 40, + "Circuito": "40 - H. YRIGOYEN" + }, + { + "IdCircuito": 41, + "Circuito": "41 - GRAL URQUIZA" + }, + { + "IdCircuito": 42, + "Circuito": "42 - COLONIA POLANA" + }, + { + "IdCircuito": 43, + "Circuito": "43 - JARDIN AMERICA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c402", + "IdSeccion": 8, + "Seccion": "OBERA", + "Circuitos": [ + { + "IdCircuito": 44, + "Circuito": "44 - OBERA" + }, + { + "IdCircuito": 45, + "Circuito": "45 - GRAL ALVEAR" + }, + { + "IdCircuito": 46, + "Circuito": "46 - CNIA ALBERDI" + }, + { + "IdCircuito": 47, + "Circuito": "47 - CAMPO VIERA" + }, + { + "IdCircuito": 48, + "Circuito": "48 - CAMPO RAMON" + }, + { + "IdCircuito": 49, + "Circuito": "49 - PANAMBI" + }, + { + "IdCircuito": 50, + "Circuito": "50 - LOS HELECHOS" + }, + { + "IdCircuito": 51, + "Circuito": "51 - GUARANI" + }, + { + "IdCircuito": 52, + "Circuito": "52 - SAN MARTIN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c403", + "IdSeccion": 9, + "Seccion": "LIB. GRAL. SAN MARTÍN", + "Circuitos": [ + { + "IdCircuito": 53, + "Circuito": "53 - PTO RICO" + }, + { + "IdCircuito": 54, + "Circuito": "54 - PUERTO LEONI" + }, + { + "IdCircuito": 55, + "Circuito": "55 - CAPIOVI" + }, + { + "IdCircuito": 56, + "Circuito": "56 - R. DE MONTOYA" + }, + { + "IdCircuito": 57, + "Circuito": "57 - GARUHAPE" + }, + { + "IdCircuito": 58, + "Circuito": "58 - EL ALCAZAR" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c404", + "IdSeccion": 10, + "Seccion": "CAINGUÁS", + "Circuitos": [ + { + "IdCircuito": 59, + "Circuito": "59 - DOS DE MAYO" + }, + { + "IdCircuito": 60, + "Circuito": "60 - CAMPO GRANDE" + }, + { + "IdCircuito": 61, + "Circuito": "61 - A. DEL VALLE" + }, + { + "IdCircuito": "0059B", + "Circuito": "59B - PTO ILLIA" + }, + { + "IdCircuito": "0061A", + "Circuito": "61A - VILLA S. ENCANTADO" + }, + { + "IdCircuito": "0061B", + "Circuito": "61B - ARISTOBULO COLONIA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c405", + "IdSeccion": 11, + "Seccion": "25 DE MAYO", + "Circuitos": [ + { + "IdCircuito": 62, + "Circuito": "62 - ALBA POSSE" + }, + { + "IdCircuito": 63, + "Circuito": "63 - 25 DE MAYO" + }, + { + "IdCircuito": 64, + "Circuito": "64 - CNIA AURORA" + }, + { + "IdCircuito": "0064A", + "Circuito": "64A - CNIA ALICIA" + }, + { + "IdCircuito": "0064B", + "Circuito": "64B - CNIA APARECIDA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c406", + "IdSeccion": 12, + "Seccion": "MONTECARLO", + "Circuitos": [ + { + "IdCircuito": 65, + "Circuito": "65 - MONTECARLO" + }, + { + "IdCircuito": 66, + "Circuito": "66 - CARAGUATAY" + }, + { + "IdCircuito": 67, + "Circuito": "67 - PTO PIRAY" + }, + { + "IdCircuito": "0066A", + "Circuito": "66A - TARUMA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c407", + "IdSeccion": 13, + "Seccion": "GUARANÍ", + "Circuitos": [ + { + "IdCircuito": 68, + "Circuito": "68 - EL SOBERBIO" + }, + { + "IdCircuito": "0059A", + "Circuito": "59A - SAN VICENTE" + }, + { + "IdCircuito": "0068B", + "Circuito": "68B - CNIA MONTEAGUDO" + }, + { + "IdCircuito": "0068C", + "Circuito": "68C - CNIA LA FLOR" + }, + { + "IdCircuito": "0068D", + "Circuito": "68D - CNIA MANDARINA" + }, + { + "IdCircuito": "0068E", + "Circuito": "68E - FRACRAN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c408", + "IdSeccion": 14, + "Seccion": "ELDORADO", + "Circuitos": [ + { + "IdCircuito": 69, + "Circuito": "69 - ELDORADO" + }, + { + "IdCircuito": 70, + "Circuito": "70 - ELDORADO CENTRO" + }, + { + "IdCircuito": 71, + "Circuito": "71 - 9 DE JULIO" + }, + { + "IdCircuito": 72, + "Circuito": "72 - SGO. DE LINIERS" + }, + { + "IdCircuito": 73, + "Circuito": "73 - CNIA VICTORIA" + }, + { + "IdCircuito": 74, + "Circuito": "74 - CNIA DELICIA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c409", + "IdSeccion": 15, + "Seccion": "SAN PEDRO", + "Circuitos": [ + { + "IdCircuito": 75, + "Circuito": "75 - SAN PEDRO" + }, + { + "IdCircuito": 76, + "Circuito": "76 - TOBUNAS" + }, + { + "IdCircuito": "0075A", + "Circuito": "75A - PARAISO" + }, + { + "IdCircuito": "0076A", + "Circuito": "76A - POZO AZUL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c40a", + "IdSeccion": 16, + "Seccion": "IGUAZÚ", + "Circuitos": [ + { + "IdCircuito": 77, + "Circuito": "77 - PTO ESPERANZA" + }, + { + "IdCircuito": 78, + "Circuito": "78 - WANDA" + }, + { + "IdCircuito": 79, + "Circuito": "79 - PTO LIBERTAD" + }, + { + "IdCircuito": 80, + "Circuito": "80 - PTO. IGUAZÚ" + }, + { + "IdCircuito": "0080A", + "Circuito": "80A - PTO. IGUAZÚ" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c40b", + "IdSeccion": 17, + "Seccion": "GRAL. M BELGRANO", + "Circuitos": [ + { + "IdCircuito": 81, + "Circuito": "81 - B DE IRIGOYEN" + }, + { + "IdCircuito": 82, + "Circuito": "82 - SAN ANTONIO" + }, + { + "IdCircuito": "0082A", + "Circuito": "82A - CMTE. ANDRESITO" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c40c", + "IdDistrito": 15, + "Distrito": "NEUQUÉN", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c40d", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c40e", + "IdSeccion": 1, + "Seccion": "CONFLUENCIA", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 8, + "Circuito": "8 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 11, + "Circuito": "11 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 15, + "Circuito": "15 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 16, + "Circuito": "16 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 18, + "Circuito": "18 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 21, + "Circuito": "21 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 25, + "Circuito": "25 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 28, + "Circuito": "28 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 30, + "Circuito": "30 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 32, + "Circuito": "32 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 34, + "Circuito": "34 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 40, + "Circuito": "40 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 42, + "Circuito": "42 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 46, + "Circuito": "46 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 50, + "Circuito": "50 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 54, + "Circuito": "54 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 57, + "Circuito": "57 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 60, + "Circuito": "60 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 63, + "Circuito": "63 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 65, + "Circuito": "65 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 69, + "Circuito": "69 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 74, + "Circuito": "74 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 79, + "Circuito": "79 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 89, + "Circuito": "89 - NEUQUEN CAPITAL" + }, + { + "IdCircuito": 100, + "Circuito": "100 - CUTRAL CO ESTE" + }, + { + "IdCircuito": 103, + "Circuito": "103 - CUTRAL CO OESTE" + }, + { + "IdCircuito": 105, + "Circuito": "105 - CUTRAL CO NORTE FILI DEI" + }, + { + "IdCircuito": 108, + "Circuito": "108 - CUTRAL CO SUR" + }, + { + "IdCircuito": 110, + "Circuito": "110 - PLAZA HUINCUL NORTE" + }, + { + "IdCircuito": 115, + "Circuito": "115 - PLAZA HUINCUL SUR" + }, + { + "IdCircuito": 120, + "Circuito": "120 - CHALLACO" + }, + { + "IdCircuito": 130, + "Circuito": "130 - SAUZAL BONITO" + }, + { + "IdCircuito": 140, + "Circuito": "140 - VILLA EL CHOCON" + }, + { + "IdCircuito": 150, + "Circuito": "150 - SENILLOSA" + }, + { + "IdCircuito": 155, + "Circuito": "155 - SENILLOSA SUR ARROYITO" + }, + { + "IdCircuito": 160, + "Circuito": "160 - PLOTTER ESTE" + }, + { + "IdCircuito": 163, + "Circuito": "163 - PLOTTER NORTE" + }, + { + "IdCircuito": 166, + "Circuito": "166 - PLOTTIER SUR" + }, + { + "IdCircuito": 169, + "Circuito": "169 - PLOTTIER OESTE" + }, + { + "IdCircuito": 170, + "Circuito": "170 - PLANICIE BANDERITA" + }, + { + "IdCircuito": 180, + "Circuito": "180 - CENTENARIO CASCO VIEJO" + }, + { + "IdCircuito": 183, + "Circuito": "183 - CENTENARIO ALTO" + }, + { + "IdCircuito": 185, + "Circuito": "185 - CENTENARIO SUR" + }, + { + "IdCircuito": 187, + "Circuito": "187 - CENTENARIO NORTE" + }, + { + "IdCircuito": 190, + "Circuito": "190 - VISTA ALEGRE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c40f", + "IdSeccion": 2, + "Seccion": "ZAPALA", + "Circuitos": [ + { + "IdCircuito": 200, + "Circuito": "200 - ZAPALA" + }, + { + "IdCircuito": 205, + "Circuito": "205 - ZAPALA" + }, + { + "IdCircuito": 210, + "Circuito": "210 - ZAPALA" + }, + { + "IdCircuito": 215, + "Circuito": "215 - ZAPALA" + }, + { + "IdCircuito": 220, + "Circuito": "220 - MARIANO MORENO" + }, + { + "IdCircuito": 225, + "Circuito": "225 - MARIANO MORENO" + }, + { + "IdCircuito": 230, + "Circuito": "230 - LOS CATUTOS" + }, + { + "IdCircuito": 240, + "Circuito": "240 - COVUNCO ABAJO" + }, + { + "IdCircuito": 250, + "Circuito": "250 - RAMON CASTRO" + }, + { + "IdCircuito": 260, + "Circuito": "260 - BARDA NEGRA" + }, + { + "IdCircuito": 270, + "Circuito": "270 - VILLA DEL PUENTE PICUN LEUFU NORTE" + }, + { + "IdCircuito": 290, + "Circuito": "290 - LAGUNA BLANCA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c410", + "IdSeccion": 3, + "Seccion": "AÑELO", + "Circuitos": [ + { + "IdCircuito": 300, + "Circuito": "300 - SAN PATRICIO DEL CHANAR" + }, + { + "IdCircuito": 310, + "Circuito": "310 - AÑELO" + }, + { + "IdCircuito": 320, + "Circuito": "320 - AÑELO FUERA DE RADIO" + }, + { + "IdCircuito": 330, + "Circuito": "330 - AGUADA SAN ROQUE" + }, + { + "IdCircuito": 340, + "Circuito": "340 - LOS CHIHUIDOS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c411", + "IdSeccion": 4, + "Seccion": "PEHUENCHES", + "Circuitos": [ + { + "IdCircuito": 400, + "Circuito": "400 - RINCON DE LOS SAUCES" + }, + { + "IdCircuito": 410, + "Circuito": "410 - OCTAVIO PICO" + }, + { + "IdCircuito": 420, + "Circuito": "420 - HUANTRAICO" + }, + { + "IdCircuito": 430, + "Circuito": "430 - BUTA RANQUIL SUR" + }, + { + "IdCircuito": 440, + "Circuito": "440 - BUTA RANQUIL NORTE" + }, + { + "IdCircuito": 450, + "Circuito": "450 - BARRANCAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c412", + "IdSeccion": 5, + "Seccion": "CHOS MALAL", + "Circuitos": [ + { + "IdCircuito": 500, + "Circuito": "500 - CHOS MALAL" + }, + { + "IdCircuito": 510, + "Circuito": "510 - CHOS MALAL FUERA DE RADIO" + }, + { + "IdCircuito": 520, + "Circuito": "520 - VILLA CURI LEUVU SUR" + }, + { + "IdCircuito": 530, + "Circuito": "530 - VILLA CURI LEUVU NORTE" + }, + { + "IdCircuito": 540, + "Circuito": "540 - TRICAO MALAL" + }, + { + "IdCircuito": 550, + "Circuito": "550 - CHAPUA" + }, + { + "IdCircuito": 560, + "Circuito": "560 - CAJON DEL CURILEUVU" + }, + { + "IdCircuito": 570, + "Circuito": "570 - COYUCO" + }, + { + "IdCircuito": 580, + "Circuito": "580 - COCHICO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c413", + "IdSeccion": 6, + "Seccion": "MINAS", + "Circuitos": [ + { + "IdCircuito": 600, + "Circuito": "600 - ANDACOLLO" + }, + { + "IdCircuito": 620, + "Circuito": "620 - GUANACOS" + }, + { + "IdCircuito": 630, + "Circuito": "630 - LOS MICHES" + }, + { + "IdCircuito": 640, + "Circuito": "640 - VILLA DEL NAHUEVE" + }, + { + "IdCircuito": 650, + "Circuito": "650 - HUINGANCO" + }, + { + "IdCircuito": 660, + "Circuito": "660 - BUTALON NORTE HUINGANCO NORTE" + }, + { + "IdCircuito": 670, + "Circuito": "670 - LAS OVEJAS" + }, + { + "IdCircuito": 680, + "Circuito": "680 - VARVARCO INVERNADA VIEJA" + }, + { + "IdCircuito": 690, + "Circuito": "690 - MANZANO AMARGO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c414", + "IdSeccion": 7, + "Seccion": "ÑORQUÍN", + "Circuitos": [ + { + "IdCircuito": 700, + "Circuito": "700 - EL HUECU" + }, + { + "IdCircuito": 720, + "Circuito": "720 - EL CHOLAR" + }, + { + "IdCircuito": 740, + "Circuito": "740 - CAVIAHUE COPAHUE" + }, + { + "IdCircuito": 750, + "Circuito": "750 - TAQUIMILAN" + }, + { + "IdCircuito": 760, + "Circuito": "760 - TAQUIMILAN ARRIBA" + }, + { + "IdCircuito": 770, + "Circuito": "770 - TRES CHORROS" + }, + { + "IdCircuito": 780, + "Circuito": "780 - NAUNAUCO" + }, + { + "IdCircuito": 785, + "Circuito": "785 - TRALAITUE" + }, + { + "IdCircuito": 790, + "Circuito": "790 - COLIPILLI" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c415", + "IdSeccion": 8, + "Seccion": "LONCOPUÉ", + "Circuitos": [ + { + "IdCircuito": 800, + "Circuito": "800 - LONCOPUÉ" + }, + { + "IdCircuito": 810, + "Circuito": "810 - LONCOPUÉ FUERA DE RADIO" + }, + { + "IdCircuito": 820, + "Circuito": "820 - CAJON DE ALMAZA" + }, + { + "IdCircuito": 830, + "Circuito": "830 - HUNCAL" + }, + { + "IdCircuito": 840, + "Circuito": "840 - CHORRIACA" + }, + { + "IdCircuito": 850, + "Circuito": "850 - QUINTUCO" + }, + { + "IdCircuito": 860, + "Circuito": "860 - HUARENCHENQUE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c416", + "IdSeccion": 9, + "Seccion": "PICUNCHES", + "Circuitos": [ + { + "IdCircuito": 900, + "Circuito": "900 - LAS LAJAS" + }, + { + "IdCircuito": 905, + "Circuito": "905 - LAS LAJAS" + }, + { + "IdCircuito": 920, + "Circuito": "920 - BAJADA DEL AGRIO" + }, + { + "IdCircuito": 930, + "Circuito": "930 - QUILI MALAL" + }, + { + "IdCircuito": 940, + "Circuito": "940 - MALLIN DE LOS CABALLOS" + }, + { + "IdCircuito": 950, + "Circuito": "950 - LOS ALAZANES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c417", + "IdSeccion": 10, + "Seccion": "ALUMINÉ", + "Circuitos": [ + { + "IdCircuito": 1000, + "Circuito": "1000 - ALUMINÉ" + }, + { + "IdCircuito": 1010, + "Circuito": "1010 - ALUMINÉ FUERA DE RADIO" + }, + { + "IdCircuito": 1020, + "Circuito": "1020 - QUILLEN" + }, + { + "IdCircuito": 1030, + "Circuito": "1030 - RUCA CHOROY" + }, + { + "IdCircuito": 1040, + "Circuito": "1040 - PULMARI" + }, + { + "IdCircuito": 1050, + "Circuito": "1050 - NORQUINCO" + }, + { + "IdCircuito": 1060, + "Circuito": "1060 - VILLA PEHUENIA" + }, + { + "IdCircuito": 1070, + "Circuito": "1070 - VILLA MOQUEHUE" + }, + { + "IdCircuito": 1080, + "Circuito": "1080 - LONCO LUAN" + }, + { + "IdCircuito": 1090, + "Circuito": "1090 - KILCA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c418", + "IdSeccion": 11, + "Seccion": "CATÁN LIL", + "Circuitos": [ + { + "IdCircuito": 1100, + "Circuito": "1100 - LAS COLORADAS" + }, + { + "IdCircuito": 1120, + "Circuito": "1120 - EL SALITRAL" + }, + { + "IdCircuito": 1130, + "Circuito": "1130 - CAICHIHUE" + }, + { + "IdCircuito": 1140, + "Circuito": "1140 - LA PICAZA" + }, + { + "IdCircuito": 1150, + "Circuito": "1150 - LAS CORTADERAS" + }, + { + "IdCircuito": 1160, + "Circuito": "1160 - MEDIA LUNA" + }, + { + "IdCircuito": 1170, + "Circuito": "1170 - CHACAICO SUR" + }, + { + "IdCircuito": 1180, + "Circuito": "1180 - PILO LIL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c419", + "IdSeccion": 12, + "Seccion": "PICÚN LEUFÚ", + "Circuitos": [ + { + "IdCircuito": 1200, + "Circuito": "1200 - PICÚN LEUFÚ" + }, + { + "IdCircuito": 1210, + "Circuito": "1210 - EL SAUCE" + }, + { + "IdCircuito": 1220, + "Circuito": "1220 - PASO AGUERRE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c41a", + "IdSeccion": 13, + "Seccion": "COLLÓN CURÁ", + "Circuitos": [ + { + "IdCircuito": 1300, + "Circuito": "1300 - PIEDRA DEL AGUILA" + }, + { + "IdCircuito": 1320, + "Circuito": "1320 - SANTO TOMAS" + }, + { + "IdCircuito": 1330, + "Circuito": "1330 - CARRAN CURA" + }, + { + "IdCircuito": 1340, + "Circuito": "1340 - SANI CO" + }, + { + "IdCircuito": 1350, + "Circuito": "1350 - SAN IGNACIO" + }, + { + "IdCircuito": 1360, + "Circuito": "1360 - ZAINA YEGUA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c41b", + "IdSeccion": 14, + "Seccion": "HUILICHES", + "Circuitos": [ + { + "IdCircuito": 1400, + "Circuito": "1400 - JUNIN DE LOS ANDES" + }, + { + "IdCircuito": 1410, + "Circuito": "1410 - HUECHULAFQUEN" + }, + { + "IdCircuito": 1420, + "Circuito": "1420 - CHIUQUILIHUIN" + }, + { + "IdCircuito": 1430, + "Circuito": "1430 - AUCAPAN" + }, + { + "IdCircuito": 1440, + "Circuito": "1440 - ATREUCO" + }, + { + "IdCircuito": 1450, + "Circuito": "1450 - PAMPA DEL MALLEO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c41c", + "IdSeccion": 15, + "Seccion": "LÁCAR", + "Circuitos": [ + { + "IdCircuito": 1500, + "Circuito": "1500 - SAN MARTIN DE LOS ANDES" + }, + { + "IdCircuito": 1505, + "Circuito": "1505 - VEGA MAIPU SAN MARTIN DE LOS ANDES ESTE" + }, + { + "IdCircuito": 1510, + "Circuito": "1510 - LAGO LOLOG SAN MARTIN DE LOS ANDES OESTE" + }, + { + "IdCircuito": 1520, + "Circuito": "1520 - TROMPUL" + }, + { + "IdCircuito": 1530, + "Circuito": "1530 - HUA HUM" + }, + { + "IdCircuito": 1540, + "Circuito": "1540 - QUILA QUINA" + }, + { + "IdCircuito": 1550, + "Circuito": "1550 - PIL PIL" + }, + { + "IdCircuito": 1560, + "Circuito": "1560 - LAGO HERMOSO" + }, + { + "IdCircuito": 1570, + "Circuito": "1570 - LAGO MELIQUINA" + }, + { + "IdCircuito": 1580, + "Circuito": "1580 - CHAPELCO GRANDE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c41d", + "IdSeccion": 16, + "Seccion": "LOS LAGOS", + "Circuitos": [ + { + "IdCircuito": 1600, + "Circuito": "1600 - VILLA LA ANGOSTURA" + }, + { + "IdCircuito": 1610, + "Circuito": "1610 - VILLA LA ANGOSTURA FUERA DE RADIO" + }, + { + "IdCircuito": 1620, + "Circuito": "1620 - VILLA TRAFUL" + }, + { + "IdCircuito": 1640, + "Circuito": "1640 - LA LIPELA" + }, + { + "IdCircuito": 1650, + "Circuito": "1650 - PASO COIHUE" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c41e", + "IdDistrito": 16, + "Distrito": "RÍO NEGRO", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c41f", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c420", + "IdSeccion": 1, + "Seccion": "ADOLFO ALSINA", + "Circuitos": [ + { + "IdCircuito": 2, + "Circuito": "2 - SAN JAVIER" + }, + { + "IdCircuito": 3, + "Circuito": "3 - CUBANEA" + }, + { + "IdCircuito": 4, + "Circuito": "4 - GUARDIA MITRE" + }, + { + "IdCircuito": 101, + "Circuito": "101 - DON BOSCO. 14 DE MARZO. PIEDRA" + }, + { + "IdCircuito": 102, + "Circuito": "102 - BARRIO GUIDO. INALAUQUEN" + }, + { + "IdCircuito": 103, + "Circuito": "103 - LOS FRESNOS Y CURRU LEUVU" + }, + { + "IdCircuito": 104, + "Circuito": "104 - SANTA CLARA" + }, + { + "IdCircuito": 105, + "Circuito": "105 - LAVALLE" + }, + { + "IdCircuito": 106, + "Circuito": "106 - MI BANDERA" + }, + { + "IdCircuito": 107, + "Circuito": "107 - SAN MARTIN. JARDIN. BARRIO NOR" + }, + { + "IdCircuito": 108, + "Circuito": "108 - BELGRANO ESTE" + }, + { + "IdCircuito": 109, + "Circuito": "109 - AMERICA Y 20 DE JUNIO" + }, + { + "IdCircuito": 110, + "Circuito": "110 - COSTANERA Y CENTRO" + }, + { + "IdCircuito": 111, + "Circuito": "111 - CEFERINO" + }, + { + "IdCircuito": 112, + "Circuito": "112 - DON ZATTI" + }, + { + "IdCircuito": 113, + "Circuito": "113 - FATIMA" + }, + { + "IdCircuito": 114, + "Circuito": "114 - LAS FLORES.INDEPENDENCIA.GOB.C" + }, + { + "IdCircuito": 115, + "Circuito": "115 - MITRE" + }, + { + "IdCircuito": 116, + "Circuito": "116 - BELGRANO OESTE" + }, + { + "IdCircuito": 117, + "Circuito": "117 - SARGENTO CABRAL Y ALMIRANTE BR" + }, + { + "IdCircuito": 118, + "Circuito": "118 - 30 DE MARZO" + }, + { + "IdCircuito": 119, + "Circuito": "119 - ALVAREZ GUERRERO" + }, + { + "IdCircuito": 120, + "Circuito": "120 - JARDIN" + }, + { + "IdCircuito": 121, + "Circuito": "121 - EL JUNCAL" + }, + { + "IdCircuito": 122, + "Circuito": "122 - EL CONDOR" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c421", + "IdSeccion": 2, + "Seccion": "GENERAL CONESA", + "Circuitos": [ + { + "IdCircuito": 7, + "Circuito": "7 - GENERAL CONESA" + }, + { + "IdCircuito": 8, + "Circuito": "8 - GENERAL E.FRIAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c422", + "IdSeccion": 3, + "Seccion": "SAN ANTONIO OESTE", + "Circuitos": [ + { + "IdCircuito": 9, + "Circuito": "9 - SAN ANTONIO OESTE" + }, + { + "IdCircuito": 11, + "Circuito": "11 - SIERRA GRANDE" + }, + { + "IdCircuito": "0009A", + "Circuito": "9A - LAS GRUTAS" + }, + { + "IdCircuito": "0009B", + "Circuito": "9B - PTO S ANTONIO ESTE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c423", + "IdSeccion": 4, + "Seccion": "VALCHETA", + "Circuitos": [ + { + "IdCircuito": 12, + "Circuito": "12 - VALCHETA" + }, + { + "IdCircuito": 13, + "Circuito": "13 - NAHUEL NIYEU" + }, + { + "IdCircuito": 15, + "Circuito": "15 - SIERRA PAILEMAN" + }, + { + "IdCircuito": 16, + "Circuito": "16 - ARROYO LOS BERROS" + }, + { + "IdCircuito": 17, + "Circuito": "17 - CHIPAUQUIL" + }, + { + "IdCircuito": 18, + "Circuito": "18 - ARROYO VENTANA" + }, + { + "IdCircuito": "0012B", + "Circuito": "12B - AGUADA CECILIO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c424", + "IdSeccion": 5, + "Seccion": "9 DE JULIO", + "Circuitos": [ + { + "IdCircuito": 19, + "Circuito": "19 - SIERRA COLORADA" + }, + { + "IdCircuito": 20, + "Circuito": "20 - MRO RAMOS MEXIA" + }, + { + "IdCircuito": 21, + "Circuito": "21 - TRENETA" + }, + { + "IdCircuito": 22, + "Circuito": "22 - CONA NIYEU" + }, + { + "IdCircuito": "0020A", + "Circuito": "20A - MTRO R MEXIA RURAL" + }, + { + "IdCircuito": "0022A", + "Circuito": "22A - PRAGUANIYEU" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c425", + "IdSeccion": 6, + "Seccion": "25 DE MAYO", + "Circuitos": [ + { + "IdCircuito": 23, + "Circuito": "23 - LOS MENUCOS" + }, + { + "IdCircuito": 24, + "Circuito": "24 - MAQUINCHAO" + }, + { + "IdCircuito": 25, + "Circuito": "25 - EL CAIN" + }, + { + "IdCircuito": 27, + "Circuito": "27 - QUETREQUILE" + }, + { + "IdCircuito": 28, + "Circuito": "28 - INGENIERO JACOBACCI" + }, + { + "IdCircuito": 29, + "Circuito": "29 - CLEMENTE ONELLI" + }, + { + "IdCircuito": 30, + "Circuito": "30 - LAGUNA BLANCA" + }, + { + "IdCircuito": "0024A", + "Circuito": "24A - MAQUINCHAO RURAL COLAN COHUE" + }, + { + "IdCircuito": "0024B", + "Circuito": "24B - AGUADA DE GUERRA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c426", + "IdSeccion": 7, + "Seccion": "ÑORQUINCO", + "Circuitos": [ + { + "IdCircuito": 31, + "Circuito": "31 - ÑORQUINCO" + }, + { + "IdCircuito": 32, + "Circuito": "32 - LAS BAYAS" + }, + { + "IdCircuito": 33, + "Circuito": "33 - CHACAY HUARRUCA" + }, + { + "IdCircuito": 34, + "Circuito": "34 - RIO CHICO" + }, + { + "IdCircuito": 35, + "Circuito": "35 - MAMUEL CHOIQUE" + }, + { + "IdCircuito": "0031B", + "Circuito": "31B - ARROYO LAS MINAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c427", + "IdSeccion": 8, + "Seccion": "PILCANIYEU", + "Circuitos": [ + { + "IdCircuito": 36, + "Circuito": "36 - PILCANIYEU" + }, + { + "IdCircuito": 37, + "Circuito": "37 - COMALLO" + }, + { + "IdCircuito": "0036B", + "Circuito": "36B - DINA HUAPI" + }, + { + "IdCircuito": "0036C", + "Circuito": "36C - CORRALITO" + }, + { + "IdCircuito": "0038A", + "Circuito": "38A - PILQUINIYEU DEL LIMAY" + }, + { + "IdCircuito": "0040A", + "Circuito": "40A - VILLA LLANQUIN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c428", + "IdSeccion": 9, + "Seccion": "BARILOCHE", + "Circuitos": [ + { + "IdCircuito": 42, + "Circuito": "42 - EL FOYEL" + }, + { + "IdCircuito": 4101, + "Circuito": "4101 - CNIA SUIZA" + }, + { + "IdCircuito": 4102, + "Circuito": "4102 - KM 20" + }, + { + "IdCircuito": 4103, + "Circuito": "4103 - KM 10" + }, + { + "IdCircuito": 4104, + "Circuito": "4104 - CRUCE CATEDRAL" + }, + { + "IdCircuito": 4105, + "Circuito": "4105 - TELESFERICO" + }, + { + "IdCircuito": 4106, + "Circuito": "4106 - MELIPAL" + }, + { + "IdCircuito": 4107, + "Circuito": "4107 - LOS COIHUES" + }, + { + "IdCircuito": 4108, + "Circuito": "4108 - EL PILAR" + }, + { + "IdCircuito": 4109, + "Circuito": "4109 - NAHUEL HUE" + }, + { + "IdCircuito": 4110, + "Circuito": "4110 - EL FRUTILLAR" + }, + { + "IdCircuito": 4111, + "Circuito": "4111 - 2 DE ABRIL" + }, + { + "IdCircuito": 4112, + "Circuito": "4112 - QUIMEY HUE" + }, + { + "IdCircuito": 4113, + "Circuito": "4113 - ESCUELA 16" + }, + { + "IdCircuito": 4114, + "Circuito": "4114 - NACIONAL" + }, + { + "IdCircuito": 4115, + "Circuito": "4115 - FASTA" + }, + { + "IdCircuito": 4116, + "Circuito": "4116 - EL MALLIN" + }, + { + "IdCircuito": 4117, + "Circuito": "4117 - CENTRO CIVICO" + }, + { + "IdCircuito": 4118, + "Circuito": "4118 - COMERCIAL" + }, + { + "IdCircuito": 4119, + "Circuito": "4119 - LERA" + }, + { + "IdCircuito": 4120, + "Circuito": "4120 - UNIVERSIDAD DEL COMAHUE" + }, + { + "IdCircuito": 4121, + "Circuito": "4121 - DIAG GUTIERREZ" + }, + { + "IdCircuito": 4122, + "Circuito": "4122 - TIRO FEDERAL" + }, + { + "IdCircuito": 4123, + "Circuito": "4123 - LAS QUINTAS" + }, + { + "IdCircuito": 4124, + "Circuito": "4124 - FOUROUS" + }, + { + "IdCircuito": 4125, + "Circuito": "4125 - B ELFLEIN" + }, + { + "IdCircuito": 4126, + "Circuito": "4126 - B LEVALLE" + }, + { + "IdCircuito": 4127, + "Circuito": "4127 - LA LLAVE" + }, + { + "IdCircuito": 4128, + "Circuito": "4128 - VURILOCHE" + }, + { + "IdCircuito": 4129, + "Circuito": "4129 - SAN FRANCISCO" + }, + { + "IdCircuito": 4130, + "Circuito": "4130 - INDUSTRIAL" + }, + { + "IdCircuito": 4131, + "Circuito": "4131 - VILLA MASCARDI" + }, + { + "IdCircuito": 4301, + "Circuito": "4301 - VENZANO PROGRESO ABEDULES" + }, + { + "IdCircuito": 4302, + "Circuito": "4302 - V ANDEN COST SUR LAS QUINTAS NORTE" + }, + { + "IdCircuito": 4303, + "Circuito": "4303 - VILLA TURISMO ESPERANZA BUENA VISTA" + }, + { + "IdCircuito": 4304, + "Circuito": "4304 - IRIGOYEN INDUSTRIAL V NUEVO ALAMOS MUTISIAS" + }, + { + "IdCircuito": 4305, + "Circuito": "4305 - HORNOS COSTANERA N Y C TERMINAL" + }, + { + "IdCircuito": 4306, + "Circuito": "4306 - LAS CHACRAS ARRAYANES SAN JOSE OBRERO" + }, + { + "IdCircuito": 4307, + "Circuito": "4307 - LOMA DEL MEDIO USINA PRIMAVERA" + }, + { + "IdCircuito": 4308, + "Circuito": "4308 - LOS REPOLLOS C DEL TERNERO RIO NAHUELPAN" + }, + { + "IdCircuito": 4309, + "Circuito": "4309 - MALLIN AHOGADO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c429", + "IdSeccion": 10, + "Seccion": "PICHI MAHUIDA", + "Circuitos": [ + { + "IdCircuito": 44, + "Circuito": "44 - RIO COLORADO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c42a", + "IdSeccion": 11, + "Seccion": "AVELLANEDA", + "Circuitos": [ + { + "IdCircuito": 47, + "Circuito": "47 - CHOELE CHOEL" + }, + { + "IdCircuito": 48, + "Circuito": "48 - LUIS BELTRAN" + }, + { + "IdCircuito": 49, + "Circuito": "49 - LAMARQUE" + }, + { + "IdCircuito": 50, + "Circuito": "50 - POMONA" + }, + { + "IdCircuito": 52, + "Circuito": "52 - DARWIN" + }, + { + "IdCircuito": 53, + "Circuito": "53 - CORONEL BELISLE" + }, + { + "IdCircuito": 54, + "Circuito": "54 - CHIMPAY" + }, + { + "IdCircuito": 55, + "Circuito": "55 - CHELFORO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c42b", + "IdSeccion": 12, + "Seccion": "GENERAL ROCA", + "Circuitos": [ + { + "IdCircuito": 57, + "Circuito": "57 - CHICHINALES" + }, + { + "IdCircuito": 58, + "Circuito": "58 - VILLA REGINA" + }, + { + "IdCircuito": 59, + "Circuito": "59 - GRAL ENRIQUE GODOY" + }, + { + "IdCircuito": 60, + "Circuito": "60 - INGENIERO HUERGO" + }, + { + "IdCircuito": 61, + "Circuito": "61 - MAINQUE" + }, + { + "IdCircuito": 62, + "Circuito": "62 - CERVANTES" + }, + { + "IdCircuito": 64, + "Circuito": "64 - ALLEN" + }, + { + "IdCircuito": 66, + "Circuito": "66 - CINCO SALTOS" + }, + { + "IdCircuito": 67, + "Circuito": "67 - CLTE CORDERO" + }, + { + "IdCircuito": 68, + "Circuito": "68 - CAMPO GRANDE" + }, + { + "IdCircuito": 69, + "Circuito": "69 - CATRIEL" + }, + { + "IdCircuito": 70, + "Circuito": "70 - GRAL FERNANDEZ ORO" + }, + { + "IdCircuito": 6301, + "Circuito": "6301 - PASO CORDOVA" + }, + { + "IdCircuito": 6302, + "Circuito": "6302 - MOSCONI. LA RIVERA Y LA COSTA" + }, + { + "IdCircuito": 6303, + "Circuito": "6303 - STEFENELLI" + }, + { + "IdCircuito": 6304, + "Circuito": "6304 - PROGRESO Y MALVINAS" + }, + { + "IdCircuito": 6305, + "Circuito": "6305 - B SAN CAYETANO Y OTROS" + }, + { + "IdCircuito": 6306, + "Circuito": "6306 - B UNIVERSITARIO Y OTROS" + }, + { + "IdCircuito": 6307, + "Circuito": "6307 - CENTRO" + }, + { + "IdCircuito": 6308, + "Circuito": "6308 - QUINTU PANAL Y OTROS" + }, + { + "IdCircuito": 6309, + "Circuito": "6309 - VILLA OBRERA Y OTROS" + }, + { + "IdCircuito": 6310, + "Circuito": "6310 - B BAGLIANI Y OTROS" + }, + { + "IdCircuito": 6311, + "Circuito": "6311 - B LA BARDA Y OTROS" + }, + { + "IdCircuito": 6312, + "Circuito": "6312 - B NUEVO" + }, + { + "IdCircuito": 6313, + "Circuito": "6313 - BELGRANO Y OTROS" + }, + { + "IdCircuito": 6314, + "Circuito": "6314 - CHACRA MONTE Y SECCION CHACRAS" + }, + { + "IdCircuito": 6315, + "Circuito": "6315 - ROMAGNOLI Y SECCION CHACRAS" + }, + { + "IdCircuito": 6501, + "Circuito": "6501 - CIPOLLETTI" + }, + { + "IdCircuito": 6502, + "Circuito": "6502 - CIPOLLETTI" + }, + { + "IdCircuito": 6503, + "Circuito": "6503 - CIPOLLETTI" + }, + { + "IdCircuito": 6504, + "Circuito": "6504 - CIPOLLETTI" + }, + { + "IdCircuito": 6505, + "Circuito": "6505 - CIPOLLETTI" + }, + { + "IdCircuito": 6506, + "Circuito": "6506 - CIPOLLETTI" + }, + { + "IdCircuito": 6507, + "Circuito": "6507 - CIPOLLETTI" + }, + { + "IdCircuito": 6508, + "Circuito": "6508 - CIPOLLETTI" + }, + { + "IdCircuito": 6509, + "Circuito": "6509 - CIPOLLETTI" + }, + { + "IdCircuito": 6510, + "Circuito": "6510 - CIPOLLETTI" + }, + { + "IdCircuito": 6511, + "Circuito": "6511 - CIPOLLETTI" + }, + { + "IdCircuito": 6512, + "Circuito": "6512 - CIPOLLETTI" + }, + { + "IdCircuito": 6513, + "Circuito": "6513 - CIPOLLETTI" + }, + { + "IdCircuito": 6514, + "Circuito": "6514 - CIPOLLETTI" + }, + { + "IdCircuito": 6515, + "Circuito": "6515 - CIPOLLETTI" + }, + { + "IdCircuito": 6516, + "Circuito": "6516 - CIPOLLETTI" + }, + { + "IdCircuito": 6517, + "Circuito": "6517 - CIPOLLETTI" + }, + { + "IdCircuito": 6518, + "Circuito": "6518 - CIPOLLETTI" + }, + { + "IdCircuito": 6519, + "Circuito": "6519 - CIPOLLETTI" + }, + { + "IdCircuito": 6520, + "Circuito": "6520 - CIPOLLETTI" + }, + { + "IdCircuito": 6521, + "Circuito": "6521 - CIPOLLETTI" + }, + { + "IdCircuito": 6522, + "Circuito": "6522 - CIPOLLETTI" + }, + { + "IdCircuito": 6523, + "Circuito": "6523 - CIPOLLETTI" + }, + { + "IdCircuito": 6524, + "Circuito": "6524 - CIPOLLETTI" + }, + { + "IdCircuito": "0068B", + "Circuito": "68B - BARDA DEL MEDIO" + }, + { + "IdCircuito": "0069A", + "Circuito": "69A - CATRIEL RURAL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c42c", + "IdSeccion": 13, + "Seccion": "EL CUY", + "Circuitos": [ + { + "IdCircuito": 71, + "Circuito": "71 - EL CUY" + }, + { + "IdCircuito": 72, + "Circuito": "72 - CERRO POLICIA" + }, + { + "IdCircuito": 73, + "Circuito": "73 - LONCO VACA" + }, + { + "IdCircuito": 74, + "Circuito": "74 - MENCUE" + }, + { + "IdCircuito": 75, + "Circuito": "75 - BAJADA COLORADA" + }, + { + "IdCircuito": 76, + "Circuito": "76 - BALSA LAS PERLAS" + }, + { + "IdCircuito": "0071A", + "Circuito": "71A - VALLE AZUL" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c42d", + "IdDistrito": 17, + "Distrito": "SALTA", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c42e", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c42f", + "IdSeccion": 1, + "Seccion": "CAPITAL", + "Circuitos": [ + { + "IdCircuito": "0001A", + "Circuito": "1A - CAPITAL" + }, + { + "IdCircuito": "0001B", + "Circuito": "1B - CAPITAL" + }, + { + "IdCircuito": "0001C", + "Circuito": "1C - CAPITAL" + }, + { + "IdCircuito": "0001D", + "Circuito": "1D - CAPITAL" + }, + { + "IdCircuito": "0001E", + "Circuito": "1E - CAPITAL" + }, + { + "IdCircuito": "0001F", + "Circuito": "1F - CAPITAL" + }, + { + "IdCircuito": "0001G", + "Circuito": "1G - CAPITAL" + }, + { + "IdCircuito": "0002A", + "Circuito": "2A - CAPITAL" + }, + { + "IdCircuito": "0002B", + "Circuito": "2B - CAPITAL" + }, + { + "IdCircuito": "0002C", + "Circuito": "2C - CAPITAL" + }, + { + "IdCircuito": "0002D", + "Circuito": "2D - CAPITAL" + }, + { + "IdCircuito": "0002E", + "Circuito": "2E - CAPITAL" + }, + { + "IdCircuito": "0002F", + "Circuito": "2F - CAPITAL" + }, + { + "IdCircuito": "0002G", + "Circuito": "2G - CAPITAL" + }, + { + "IdCircuito": "0002H", + "Circuito": "2H - CAPITAL" + }, + { + "IdCircuito": "0002I", + "Circuito": "2I - CAPITAL" + }, + { + "IdCircuito": "0002J", + "Circuito": "2J - CAPITAL" + }, + { + "IdCircuito": "0002K", + "Circuito": "2K - CAPITAL" + }, + { + "IdCircuito": "0002L", + "Circuito": "2L - CAPITAL" + }, + { + "IdCircuito": "0002M", + "Circuito": "2M - CAPITAL" + }, + { + "IdCircuito": "0002N", + "Circuito": "2N - CAPITAL" + }, + { + "IdCircuito": "0002O", + "Circuito": "2O - CAPITAL" + }, + { + "IdCircuito": "0002P", + "Circuito": "2P - CAPITAL" + }, + { + "IdCircuito": "0002Q", + "Circuito": "2Q - CAPITAL" + }, + { + "IdCircuito": "0003A", + "Circuito": "3A - CAPITAL" + }, + { + "IdCircuito": "0003B", + "Circuito": "3B - CAPITAL" + }, + { + "IdCircuito": "0003C", + "Circuito": "3C - CAPITAL" + }, + { + "IdCircuito": "0003D", + "Circuito": "3D - CAPITAL" + }, + { + "IdCircuito": "0003E", + "Circuito": "3E - CAPITAL" + }, + { + "IdCircuito": "0003F", + "Circuito": "3F - CAPITAL" + }, + { + "IdCircuito": "0003G", + "Circuito": "3G - CAPITAL" + }, + { + "IdCircuito": "0003H", + "Circuito": "3H - CAPITAL" + }, + { + "IdCircuito": "0003I", + "Circuito": "3I - CAPITAL" + }, + { + "IdCircuito": "0003J", + "Circuito": "3J - CAPITAL" + }, + { + "IdCircuito": "0003K", + "Circuito": "3K - CAPITAL" + }, + { + "IdCircuito": "0003L", + "Circuito": "3L - CAPITAL" + }, + { + "IdCircuito": "0004A", + "Circuito": "4A - SAN LORENZO PUEBLO" + }, + { + "IdCircuito": "0004B", + "Circuito": "4B - SAN LORENZO" + }, + { + "IdCircuito": "0004C", + "Circuito": "4C - SAN LORENZO" + }, + { + "IdCircuito": "0004D", + "Circuito": "4D - SAN LORENZO" + }, + { + "IdCircuito": "0005A", + "Circuito": "5A - CAPITAL" + }, + { + "IdCircuito": "0005B", + "Circuito": "5B - CAPITAL" + }, + { + "IdCircuito": "0005C", + "Circuito": "5C - CAPITAL" + }, + { + "IdCircuito": "0005D", + "Circuito": "5D - CAPITAL" + }, + { + "IdCircuito": "0005E", + "Circuito": "5E - CAPITAL" + }, + { + "IdCircuito": "0005F", + "Circuito": "5F - CAPITAL" + }, + { + "IdCircuito": "0005G", + "Circuito": "5G - CAPITAL" + }, + { + "IdCircuito": "0005H", + "Circuito": "5H - CAPITAL" + }, + { + "IdCircuito": "0005I", + "Circuito": "5I - CAPITAL" + }, + { + "IdCircuito": "0005J", + "Circuito": "5J - CAPITAL" + }, + { + "IdCircuito": "0005K", + "Circuito": "5K - CAPITAL" + }, + { + "IdCircuito": "0005L", + "Circuito": "5L - CAPITAL" + }, + { + "IdCircuito": "0005M", + "Circuito": "5M - CAPITAL" + }, + { + "IdCircuito": "0005N", + "Circuito": "5N - CAPITAL" + }, + { + "IdCircuito": "0005O", + "Circuito": "5O - CAPITAL" + }, + { + "IdCircuito": "0006A", + "Circuito": "6A - CAPITAL" + }, + { + "IdCircuito": "0007A", + "Circuito": "7A - CAPITAL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c430", + "IdSeccion": 2, + "Seccion": "LA CALDERA", + "Circuitos": [ + { + "IdCircuito": "0008A", + "Circuito": "8A - LA CALDERA" + }, + { + "IdCircuito": "0008B", + "Circuito": "8B - LOS YACONES" + }, + { + "IdCircuito": "0008C", + "Circuito": "8C - CAMPO ALEGRE" + }, + { + "IdCircuito": "0009A", + "Circuito": "9A - VAQUEROS" + }, + { + "IdCircuito": "0009B", + "Circuito": "9B - LESSER" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c431", + "IdSeccion": 3, + "Seccion": "GENERAL GÜEMES", + "Circuitos": [ + { + "IdCircuito": "0010A", + "Circuito": "10A - EL BORDO" + }, + { + "IdCircuito": "0011A", + "Circuito": "11A - CAMPO SANTO" + }, + { + "IdCircuito": "0011B", + "Circuito": "11B - COBOS" + }, + { + "IdCircuito": "0011C", + "Circuito": "11C - BETANIA" + }, + { + "IdCircuito": "0012A", + "Circuito": "12A - GENERAL GÜEMES" + }, + { + "IdCircuito": "0012B", + "Circuito": "12B - GENERAL GÜEMES" + }, + { + "IdCircuito": "0012C", + "Circuito": "12C - GENERAL GÜEMES" + }, + { + "IdCircuito": "0012D", + "Circuito": "12D - GENERAL GÜEMES" + }, + { + "IdCircuito": "0012E", + "Circuito": "12E - GENERAL GÜEMES" + }, + { + "IdCircuito": "0014A", + "Circuito": "14A - PALOMITAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c432", + "IdSeccion": 4, + "Seccion": "METÁN", + "Circuitos": [ + { + "IdCircuito": "0015A", + "Circuito": "15A - METÁN PUEBLO" + }, + { + "IdCircuito": "0015B", + "Circuito": "15B - METÁN PUEBLO" + }, + { + "IdCircuito": "0015C", + "Circuito": "15C - METÁN PUEBLO" + }, + { + "IdCircuito": "0015D", + "Circuito": "15D - METÁN" + }, + { + "IdCircuito": "0015E", + "Circuito": "15E - METÁN VIEJO" + }, + { + "IdCircuito": "0016A", + "Circuito": "16A - RIO PIEDRAS" + }, + { + "IdCircuito": "0016B", + "Circuito": "16B - LUMBRERAS" + }, + { + "IdCircuito": "0017A", + "Circuito": "17A - EL GALPON" + }, + { + "IdCircuito": "0017B", + "Circuito": "17B - EL TUNAL" + }, + { + "IdCircuito": "0018A", + "Circuito": "18A - S. J. DE ORQUERA" + }, + { + "IdCircuito": "0018B", + "Circuito": "18B - LOS ROSALES" + }, + { + "IdCircuito": "0018C", + "Circuito": "18C - TALAMUYO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c433", + "IdSeccion": 5, + "Seccion": "ANTA", + "Circuitos": [ + { + "IdCircuito": "0020A", + "Circuito": "20A - PASO LA CRUZ" + }, + { + "IdCircuito": "0021A", + "Circuito": "21A - LAS LAJITAS" + }, + { + "IdCircuito": "0021B", + "Circuito": "21B - RIO DEL VALLE" + }, + { + "IdCircuito": "0022A", + "Circuito": "22A - AP. SARAVIA" + }, + { + "IdCircuito": "0022B", + "Circuito": "22B - LAS FLACAS" + }, + { + "IdCircuito": "0022C", + "Circuito": "22C - CNEL. MOLLINEDO" + }, + { + "IdCircuito": "0022D", + "Circuito": "22D - CNEL.LUIS BURELA" + }, + { + "IdCircuito": "0022E", + "Circuito": "22E - GRAL. PIZARRO" + }, + { + "IdCircuito": "0022F", + "Circuito": "22F - PALO A PIQUE" + }, + { + "IdCircuito": "0023A", + "Circuito": "23A - CEIBALITO" + }, + { + "IdCircuito": "0024A", + "Circuito": "24A - J.V. GONZALEZ" + }, + { + "IdCircuito": "0024B", + "Circuito": "24B - LAGUNA BLANCA" + }, + { + "IdCircuito": "0024C", + "Circuito": "24C - CNEL. OLLEROS" + }, + { + "IdCircuito": "0024D", + "Circuito": "24D - EL ALGARROBAL" + }, + { + "IdCircuito": "0024E", + "Circuito": "24E - SANTA ANA" + }, + { + "IdCircuito": "0024F", + "Circuito": "24F - PIQUETE CABADO" + }, + { + "IdCircuito": "0025A", + "Circuito": "25A - EL QUEBRACHAL" + }, + { + "IdCircuito": "0025B", + "Circuito": "25B - MACAPILLO" + }, + { + "IdCircuito": "0025C", + "Circuito": "25C - N.S.DE TALAVERA" + }, + { + "IdCircuito": "0025D", + "Circuito": "25D - GAONA" + }, + { + "IdCircuito": "0025E", + "Circuito": "25E - EL VENCIDO" + }, + { + "IdCircuito": "0025F", + "Circuito": "25F - TOLLOCHE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c434", + "IdSeccion": 6, + "Seccion": "RIVADAVIA", + "Circuitos": [ + { + "IdCircuito": "0026A", + "Circuito": "26A - ALTO VERDE" + }, + { + "IdCircuito": "0026B", + "Circuito": "26B - RIVADAVIA BANDA SUD" + }, + { + "IdCircuito": "0026C", + "Circuito": "26C - EL DESTIERRO" + }, + { + "IdCircuito": "0027A", + "Circuito": "27A - LA UNION" + }, + { + "IdCircuito": "0027B", + "Circuito": "27B - POZO VERDE" + }, + { + "IdCircuito": "0027C", + "Circuito": "27C - FCA. STA.ROSA" + }, + { + "IdCircuito": "0027D", + "Circuito": "27D - EL OCULTAR" + }, + { + "IdCircuito": "0028A", + "Circuito": "28A - RESISTENCIA" + }, + { + "IdCircuito": "0028B", + "Circuito": "28B - CNEL.JUAN SOLA BANDA NORTE" + }, + { + "IdCircuito": "0028C", + "Circuito": "28C - CAP. PAGE" + }, + { + "IdCircuito": "0028D", + "Circuito": "28D - LA ENTRADA" + }, + { + "IdCircuito": "0028E", + "Circuito": "28E - LOS BLANCOS" + }, + { + "IdCircuito": "0028F", + "Circuito": "28F - PLUMA DE PATO" + }, + { + "IdCircuito": "0028G", + "Circuito": "28G - LA PAZ" + }, + { + "IdCircuito": "0028H", + "Circuito": "28H - LA VALLE O LAVALLE" + }, + { + "IdCircuito": "0029A", + "Circuito": "29A - ALTO LA SIERRA S.V.ESTE" + }, + { + "IdCircuito": "0029B", + "Circuito": "29B - LA ESPERANZA" + }, + { + "IdCircuito": "0029C", + "Circuito": "29C - STA.VICTORIA ESTE" + }, + { + "IdCircuito": "0029D", + "Circuito": "29D - EL DESEMBOQUE" + }, + { + "IdCircuito": "0029E", + "Circuito": "29E - HITO 1" + }, + { + "IdCircuito": "0029F", + "Circuito": "29F - MS. LA PAZ" + }, + { + "IdCircuito": "0029G", + "Circuito": "29G - STA. MARIA" + }, + { + "IdCircuito": "0029H", + "Circuito": "29H - MS. LAS VERTIENTES" + }, + { + "IdCircuito": "0029I", + "Circuito": "29I - LA PUNTANA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c435", + "IdSeccion": 7, + "Seccion": "ORÁN", + "Circuitos": [ + { + "IdCircuito": "0030A", + "Circuito": "30A - ABRA GRANDE" + }, + { + "IdCircuito": "0030B", + "Circuito": "30B - AGUAS BLANCAS" + }, + { + "IdCircuito": "0031A", + "Circuito": "31A - ORÁN" + }, + { + "IdCircuito": "0031B", + "Circuito": "31B - ORÁN" + }, + { + "IdCircuito": "0031C", + "Circuito": "31C - MS. ZENTA" + }, + { + "IdCircuito": "0031D", + "Circuito": "31D - LOS NARANJOS" + }, + { + "IdCircuito": "0032A", + "Circuito": "32A - EL TABACAL" + }, + { + "IdCircuito": "0032B", + "Circuito": "32B - HIPOLITO YRIGOYEN" + }, + { + "IdCircuito": "0033A", + "Circuito": "33A - SAN ANDRES" + }, + { + "IdCircuito": "0033B", + "Circuito": "33B - STA.CRUZ" + }, + { + "IdCircuito": "0033C", + "Circuito": "33C - ANGOSTO DE PARANI" + }, + { + "IdCircuito": "0034A", + "Circuito": "34A - COL.STA.ROSA" + }, + { + "IdCircuito": "0034B", + "Circuito": "34B - SAUCELITO" + }, + { + "IdCircuito": "0035A", + "Circuito": "35A - URUNDEL" + }, + { + "IdCircuito": "0036A", + "Circuito": "36A - PICHANAL" + }, + { + "IdCircuito": "0036B", + "Circuito": "36B - PICHANAL PUEBLO Y RURAL" + }, + { + "IdCircuito": "0037A", + "Circuito": "37A - YUCHAN" + }, + { + "IdCircuito": "0038A", + "Circuito": "38A - EL CARMEN" + }, + { + "IdCircuito": "0038B", + "Circuito": "38B - POZO DE LA PIEDRA" + }, + { + "IdCircuito": "0039A", + "Circuito": "39A - LA ESTRELLA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c436", + "IdSeccion": 8, + "Seccion": "GRAL SAN MARTÍN", + "Circuitos": [ + { + "IdCircuito": "0040A", + "Circuito": "40A - EMBARCACION" + }, + { + "IdCircuito": "0040B", + "Circuito": "40B - GRAL. BALLIVIAN" + }, + { + "IdCircuito": "0040C", + "Circuito": "40C - CAMPICHUELO" + }, + { + "IdCircuito": "0041A", + "Circuito": "41A - MS. CHAQUENA" + }, + { + "IdCircuito": "0041B", + "Circuito": "41B - DRAGONES" + }, + { + "IdCircuito": "0041C", + "Circuito": "41C - HICKMANN" + }, + { + "IdCircuito": "0041D", + "Circuito": "41D - EL CORRALITO" + }, + { + "IdCircuito": "0041E", + "Circuito": "41E - PADRE LOZANO" + }, + { + "IdCircuito": "0042A", + "Circuito": "42A - CMPTO. VESPUCIO" + }, + { + "IdCircuito": "0042B", + "Circuito": "42B - CNEL. CORNEJO" + }, + { + "IdCircuito": "0042C", + "Circuito": "42C - GRAL. MOSCONI" + }, + { + "IdCircuito": "0043A", + "Circuito": "43A - TARTAGAL" + }, + { + "IdCircuito": "0043B", + "Circuito": "43B - TARTAGAL V° GUEMES" + }, + { + "IdCircuito": "0043C", + "Circuito": "43C - TARTAGAL V° SAAVEDRA" + }, + { + "IdCircuito": "0043D", + "Circuito": "43D - TONONO" + }, + { + "IdCircuito": "0043E", + "Circuito": "43E - CACIQUE CAMBAY" + }, + { + "IdCircuito": "0043F", + "Circuito": "43F - YACUY" + }, + { + "IdCircuito": "0043G", + "Circuito": "43G - MISION CHERENTA" + }, + { + "IdCircuito": "0044A", + "Circuito": "44A - AGUARAY" + }, + { + "IdCircuito": "0044B", + "Circuito": "44B - CAMPO DURAN" + }, + { + "IdCircuito": "0044C", + "Circuito": "44C - PIQUIRENDA" + }, + { + "IdCircuito": "0044D", + "Circuito": "44D - ACAMBUCO" + }, + { + "IdCircuito": "0044E", + "Circuito": "44E - TUYUNTI" + }, + { + "IdCircuito": "0044F", + "Circuito": "44F - TOBANTIRENDA" + }, + { + "IdCircuito": "0044G", + "Circuito": "44G - CAPIAZZUTTI" + }, + { + "IdCircuito": "0045A", + "Circuito": "45A - SALV. MAZZA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c437", + "IdSeccion": 9, + "Seccion": "IRUYA", + "Circuitos": [ + { + "IdCircuito": "0046A", + "Circuito": "46A - IRUYA" + }, + { + "IdCircuito": "0046B", + "Circuito": "46B - SAN ISIDRO" + }, + { + "IdCircuito": "0046C", + "Circuito": "46C - SAN JUAN" + }, + { + "IdCircuito": "0046D", + "Circuito": "46D - R. COLORADO" + }, + { + "IdCircuito": "0046E", + "Circuito": "46E - VIZCARRA" + }, + { + "IdCircuito": "0046F", + "Circuito": "46F - PIE DE LA CUESTA" + }, + { + "IdCircuito": "0046I", + "Circuito": "46I - CHIYAYOC" + }, + { + "IdCircuito": "0046J", + "Circuito": "46J - PUEBLO VIEJO" + }, + { + "IdCircuito": "0046K", + "Circuito": "46K - RODIO DEL VALLE DELGADO" + }, + { + "IdCircuito": "0047A", + "Circuito": "47A - LAS HIGUERAS" + }, + { + "IdCircuito": "0047B", + "Circuito": "47B - MESADA GRANDE" + }, + { + "IdCircuito": "0047C", + "Circuito": "47C - ALIZAR DEL PORONGAL" + }, + { + "IdCircuito": "0048A", + "Circuito": "48A - MATANCILLAS" + }, + { + "IdCircuito": "0048B", + "Circuito": "48B - VOLCAN HIGUERAS" + }, + { + "IdCircuito": "0048C", + "Circuito": "48C - ISLA DE CANAS" + }, + { + "IdCircuito": "0048D", + "Circuito": "48D - CORTADERAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c438", + "IdSeccion": 10, + "Seccion": "SANTA VICTORIA", + "Circuitos": [ + { + "IdCircuito": "0049A", + "Circuito": "49A - S. VICTORIA" + }, + { + "IdCircuito": "0049B", + "Circuito": "49B - LA SOLEDAD" + }, + { + "IdCircuito": "0049C", + "Circuito": "49C - CAMPO LA PAZ" + }, + { + "IdCircuito": "0049D", + "Circuito": "49D - VIZCACHANI" + }, + { + "IdCircuito": "0049E", + "Circuito": "49E - ACOYTE" + }, + { + "IdCircuito": "0049F", + "Circuito": "49F - LIZOITE" + }, + { + "IdCircuito": "0049G", + "Circuito": "49G - STA. CRUZ" + }, + { + "IdCircuito": "0049H", + "Circuito": "49H - ABRA STA. CRUZ" + }, + { + "IdCircuito": "0049I", + "Circuito": "49I - TRIGO HUAYCO" + }, + { + "IdCircuito": "0049J", + "Circuito": "49J - MECOYITA" + }, + { + "IdCircuito": "0049K", + "Circuito": "49K - PUCARA" + }, + { + "IdCircuito": "0050A", + "Circuito": "50A - LOS TOLDOS" + }, + { + "IdCircuito": "0050B", + "Circuito": "50B - EL CONDADO" + }, + { + "IdCircuito": "0050C", + "Circuito": "50C - LIPEO" + }, + { + "IdCircuito": "0051A", + "Circuito": "51A - NAZARENO" + }, + { + "IdCircuito": "0051B", + "Circuito": "51B - BACOYA" + }, + { + "IdCircuito": "0051C", + "Circuito": "51C - POSCAYA" + }, + { + "IdCircuito": "0051D", + "Circuito": "51D - CUESTA AZUL" + }, + { + "IdCircuito": "0051E", + "Circuito": "51E - MOLINO DE CUESTA AZUL" + }, + { + "IdCircuito": "0051F", + "Circuito": "51F - S. FCO. DE TUCTUCA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c439", + "IdSeccion": 11, + "Seccion": "CERRILLOS", + "Circuitos": [ + { + "IdCircuito": "0052A", + "Circuito": "52A - CERRILLOS 1" + }, + { + "IdCircuito": "0052B", + "Circuito": "52B - CERRILLOS 2" + }, + { + "IdCircuito": "0052C", + "Circuito": "52C - LAS BLANCAS" + }, + { + "IdCircuito": "0052D", + "Circuito": "52D - LA FALDA" + }, + { + "IdCircuito": "0053A", + "Circuito": "53A - LOS ALAMOS" + }, + { + "IdCircuito": "0053B", + "Circuito": "53B - LA ISLA" + }, + { + "IdCircuito": "0053C", + "Circuito": "53C - LOS PINARES" + }, + { + "IdCircuito": "0053D", + "Circuito": "53D - LAS PALMAS" + }, + { + "IdCircuito": "0054A", + "Circuito": "54A - LA MERCED" + }, + { + "IdCircuito": "0054B", + "Circuito": "54B - LAS PIRCAS" + }, + { + "IdCircuito": "0055A", + "Circuito": "55A - SAN AGUSTIN" + }, + { + "IdCircuito": "0055B", + "Circuito": "55B - EL HUAICO" + }, + { + "IdCircuito": "0055C", + "Circuito": "55C - SUMALAO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c43a", + "IdSeccion": 12, + "Seccion": "CHICOANA", + "Circuitos": [ + { + "IdCircuito": "0056A", + "Circuito": "56A - CHICOANA" + }, + { + "IdCircuito": "0056B", + "Circuito": "56B - PULARES" + }, + { + "IdCircuito": "0056C", + "Circuito": "56C - EL SIMBOLAR" + }, + { + "IdCircuito": "0056D", + "Circuito": "56D - LAS MORAS" + }, + { + "IdCircuito": "0056E", + "Circuito": "56E - CHIVILME" + }, + { + "IdCircuito": "0056F", + "Circuito": "56F - EL TIPAL" + }, + { + "IdCircuito": "0056G", + "Circuito": "56G - BELLA VISTA" + }, + { + "IdCircuito": "0057A", + "Circuito": "57A - ESCOIPE" + }, + { + "IdCircuito": "0057B", + "Circuito": "57B - POTRERO DE DIAZ" + }, + { + "IdCircuito": "0058A", + "Circuito": "58A - EL CARRIL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c43b", + "IdSeccion": 13, + "Seccion": "LA VIÑA", + "Circuitos": [ + { + "IdCircuito": "0059A", + "Circuito": "59A - LA VIÑA" + }, + { + "IdCircuito": "0060A", + "Circuito": "60A - TALAPAMPA" + }, + { + "IdCircuito": "0061A", + "Circuito": "61A - CNEL. MOLDES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c43c", + "IdSeccion": 14, + "Seccion": "GUACHIPAS", + "Circuitos": [ + { + "IdCircuito": "0063A", + "Circuito": "63A - GUACHIPAS" + }, + { + "IdCircuito": "0064A", + "Circuito": "64A - LA BODEGUITA" + }, + { + "IdCircuito": "0064B", + "Circuito": "64B - VAQUERIA" + }, + { + "IdCircuito": "0065A", + "Circuito": "65A - ACOSTA" + }, + { + "IdCircuito": "0065B", + "Circuito": "65B - LAS JUNTAS" + }, + { + "IdCircuito": "0066A", + "Circuito": "66A - PAMPA GRANDE" + }, + { + "IdCircuito": "0066B", + "Circuito": "66B - LOS SAUCES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c43d", + "IdSeccion": 15, + "Seccion": "ROSARIO DE LA FRONTERA", + "Circuitos": [ + { + "IdCircuito": "0067A", + "Circuito": "67A - R° FRONTERA" + }, + { + "IdCircuito": "0067B", + "Circuito": "67B - R° FRONTERA" + }, + { + "IdCircuito": "0067C", + "Circuito": "67C - HORCONES" + }, + { + "IdCircuito": "0067D", + "Circuito": "67D - EL NARANJO" + }, + { + "IdCircuito": "0067E", + "Circuito": "67E - EST. LOS BANOS" + }, + { + "IdCircuito": "0067G", + "Circuito": "67G - OJO DE AGUA" + }, + { + "IdCircuito": "0067H", + "Circuito": "67H - SAN FELIPE" + }, + { + "IdCircuito": "0068A", + "Circuito": "68A - EL ARENAL" + }, + { + "IdCircuito": "0068B", + "Circuito": "68B - OVANDO" + }, + { + "IdCircuito": "0070A", + "Circuito": "70A - STA. MARIA" + }, + { + "IdCircuito": "0070B", + "Circuito": "70B - EL BORDO" + }, + { + "IdCircuito": "0071A", + "Circuito": "71A - COPO QUILE" + }, + { + "IdCircuito": "0071B", + "Circuito": "71B - ALMTE. BROWN" + }, + { + "IdCircuito": "0072A", + "Circuito": "72A - EL POTRERO" + }, + { + "IdCircuito": "0072B", + "Circuito": "72B - CANADA DE LA JUNTA" + }, + { + "IdCircuito": "0072C", + "Circuito": "72C - ANTILLAS" + }, + { + "IdCircuito": "0072D", + "Circuito": "72D - SAN LORENZO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c43e", + "IdSeccion": 16, + "Seccion": "LA CANDELARIA", + "Circuitos": [ + { + "IdCircuito": "0073A", + "Circuito": "73A - LA CANDELARIA" + }, + { + "IdCircuito": "0073B", + "Circuito": "73B - EL CEIBAL" + }, + { + "IdCircuito": "0074A", + "Circuito": "74A - EL TALA" + }, + { + "IdCircuito": "0075A", + "Circuito": "75A - EL JARDIN" + }, + { + "IdCircuito": "0075B", + "Circuito": "75B - EL ESPINAL" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c43f", + "IdSeccion": 17, + "Seccion": "CAFAYATE", + "Circuitos": [ + { + "IdCircuito": "0076A", + "Circuito": "76A - LAS CONCHAS" + }, + { + "IdCircuito": "0077A", + "Circuito": "77A - CAFAYATE" + }, + { + "IdCircuito": "0077B", + "Circuito": "77B - LA ROSA" + }, + { + "IdCircuito": "0077C", + "Circuito": "77C - LOROHUASI" + }, + { + "IdCircuito": "0077D", + "Circuito": "77D - EL DIVISADERO" + }, + { + "IdCircuito": "0077E", + "Circuito": "77E - YACOCHUYA" + }, + { + "IdCircuito": "0077F", + "Circuito": "77F - CAFAYATE" + }, + { + "IdCircuito": "0078A", + "Circuito": "78A - TOLOMBON" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c440", + "IdSeccion": 18, + "Seccion": "SAN CARLOS", + "Circuitos": [ + { + "IdCircuito": "0079A", + "Circuito": "79A - SAN CARLOS" + }, + { + "IdCircuito": "0079B", + "Circuito": "79B - ANIMANA" + }, + { + "IdCircuito": "0079C", + "Circuito": "79C - EL BARRIAL" + }, + { + "IdCircuito": "0080A", + "Circuito": "80A - PAYOGASTILLA" + }, + { + "IdCircuito": "0081A", + "Circuito": "81A - AMBLAYO" + }, + { + "IdCircuito": "0082A", + "Circuito": "82A - ANGASTACO" + }, + { + "IdCircuito": "0082B", + "Circuito": "82B - LA CABANA" + }, + { + "IdCircuito": "0083A", + "Circuito": "83A - PUCARA" + }, + { + "IdCircuito": "0083B", + "Circuito": "83B - JASIMANA" + }, + { + "IdCircuito": "0083C", + "Circuito": "83C - EL ARREMO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c441", + "IdSeccion": 19, + "Seccion": "MOLINOS", + "Circuitos": [ + { + "IdCircuito": "0084A", + "Circuito": "84A - MOLINOS" + }, + { + "IdCircuito": "0085A", + "Circuito": "85A - SECLANTAS" + }, + { + "IdCircuito": "0085B", + "Circuito": "85B - SECLANTAS ADENTRO" + }, + { + "IdCircuito": "0086A", + "Circuito": "86A - LURACATAO" + }, + { + "IdCircuito": "0087A", + "Circuito": "87A - LA PUERTA" + }, + { + "IdCircuito": "0088A", + "Circuito": "88A - TACUIL" + }, + { + "IdCircuito": "0088B", + "Circuito": "88B - HUALFIN" + }, + { + "IdCircuito": "0088C", + "Circuito": "88C - COLOME" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c442", + "IdSeccion": 20, + "Seccion": "CACHI", + "Circuitos": [ + { + "IdCircuito": "0089A", + "Circuito": "89A - SAN J. DE CACHI" + }, + { + "IdCircuito": "0089B", + "Circuito": "89B - CACHI PUEBLO" + }, + { + "IdCircuito": "0089C", + "Circuito": "89C - CACHI ADENTRO" + }, + { + "IdCircuito": "0089D", + "Circuito": "89D - LA PAYA" + }, + { + "IdCircuito": "0089E", + "Circuito": "89E - LAS TRANCAS" + }, + { + "IdCircuito": "0090A", + "Circuito": "90A - PAYOGASTA" + }, + { + "IdCircuito": "0090B", + "Circuito": "90B - PALERMO OESTE" + }, + { + "IdCircuito": "0090C", + "Circuito": "90C - LAS CORTADERAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c443", + "IdSeccion": 21, + "Seccion": "ROSARIO DE LERMA", + "Circuitos": [ + { + "IdCircuito": "0091A", + "Circuito": "91A - ROSARIO DE LERMA" + }, + { + "IdCircuito": "0091B", + "Circuito": "91B - EL PUCARA" + }, + { + "IdCircuito": "0091C", + "Circuito": "91C - EL TIMBO" + }, + { + "IdCircuito": "0091D", + "Circuito": "91D - LA MERCED DE ARRIBA" + }, + { + "IdCircuito": "0092A", + "Circuito": "92A - CARABAJAL" + }, + { + "IdCircuito": "0093A", + "Circuito": "93A - CAMPO QUIJANO" + }, + { + "IdCircuito": "0093B", + "Circuito": "93B - EL MOLLAR" + }, + { + "IdCircuito": "0094A", + "Circuito": "94A - CAMARA" + }, + { + "IdCircuito": "0095A", + "Circuito": "95A - LA SILLETA" + }, + { + "IdCircuito": "0096B", + "Circuito": "96B - POTRERO DE URIBURU" + }, + { + "IdCircuito": "0097A", + "Circuito": "97A - S. B. DE LAS ZORRAS" + }, + { + "IdCircuito": "0097B", + "Circuito": "97B - STA. ROSA DE TASTIL" + }, + { + "IdCircuito": "0097C", + "Circuito": "97C - GOB. SOLA" + }, + { + "IdCircuito": "0097D", + "Circuito": "97D - LAS CUEVAS" + }, + { + "IdCircuito": "0098A", + "Circuito": "98A - EL TORO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c444", + "IdSeccion": 22, + "Seccion": "LA POMA", + "Circuitos": [ + { + "IdCircuito": "0099A", + "Circuito": "99A - LA POMA" + }, + { + "IdCircuito": "0099B", + "Circuito": "99B - EL RODEO" + }, + { + "IdCircuito": "0099C", + "Circuito": "99C - COBRES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c445", + "IdSeccion": 23, + "Seccion": "LOS ANDES", + "Circuitos": [ + { + "IdCircuito": "0100A", + "Circuito": "100A - S. A. DE LOS COBRES" + }, + { + "IdCircuito": "0101A", + "Circuito": "101A - S. R. PASTOS GRANDES" + }, + { + "IdCircuito": "0102A", + "Circuito": "102A - OLACAPATO" + }, + { + "IdCircuito": "0103A", + "Circuito": "103A - TOLAR GRANDE" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c446", + "IdDistrito": 18, + "Distrito": "SAN JUAN", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c447", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c448", + "IdSeccion": 1, + "Seccion": "CAPITAL", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - CIUDAD OESTE" + }, + { + "IdCircuito": 2, + "Circuito": "2 - CIUDAD CENTRO" + }, + { + "IdCircuito": 3, + "Circuito": "3 - CIUDAD ESTE" + }, + { + "IdCircuito": 4, + "Circuito": "4 - ESTACION TERMINAL" + }, + { + "IdCircuito": 5, + "Circuito": "5 - VILLA AMERICA" + }, + { + "IdCircuito": 6, + "Circuito": "6 - BARRIO MISIONES" + }, + { + "IdCircuito": 7, + "Circuito": "7 - BARRIO COMANDANTE CABOT" + }, + { + "IdCircuito": 8, + "Circuito": "8 - BARRIO J.E.DE MALLEA" + }, + { + "IdCircuito": 9, + "Circuito": "9 - PLAZA JUAN JUFRE" + }, + { + "IdCircuito": 10, + "Circuito": "10 - BARRIO URQUIZA" + }, + { + "IdCircuito": 11, + "Circuito": "11 - COLEGIO SAN FRANC. DE ASIS" + }, + { + "IdCircuito": 12, + "Circuito": "12 - BARRIO SAN MARTIN" + }, + { + "IdCircuito": 13, + "Circuito": "13 - VILLA JARDIN" + }, + { + "IdCircuito": 14, + "Circuito": "14 - BARRIO S.M.A.T.A." + }, + { + "IdCircuito": 15, + "Circuito": "15 - BARRIO INTA" + }, + { + "IdCircuito": 16, + "Circuito": "16 - VILLA ZAVALLA" + }, + { + "IdCircuito": 17, + "Circuito": "17 - VILLA PATRICIAS SANJUANINAS" + }, + { + "IdCircuito": 18, + "Circuito": "18 - PARQUE DE MAYO" + }, + { + "IdCircuito": 19, + "Circuito": "19 - BARRIO RESIDEN.DESAMPARADOS" + }, + { + "IdCircuito": 20, + "Circuito": "20 - VILLA NUEVA PALERMO" + }, + { + "IdCircuito": 21, + "Circuito": "21 - BARRIO CHACABUCO" + }, + { + "IdCircuito": 22, + "Circuito": "22 - BARRIO PARQUE UNIVERSITARIO" + }, + { + "IdCircuito": 23, + "Circuito": "23 - DIRECCION DE HIDRAULICA" + }, + { + "IdCircuito": 24, + "Circuito": "24 - VALDIVIA" + }, + { + "IdCircuito": 25, + "Circuito": "25 - VILLA SANTA TERESITA" + }, + { + "IdCircuito": 26, + "Circuito": "26 - BARRIO FRAY MAMERTO ESQUIU" + }, + { + "IdCircuito": 27, + "Circuito": "27 - LAS PALMAS" + }, + { + "IdCircuito": 28, + "Circuito": "28 - CONSORCIO M MORENO" + }, + { + "IdCircuito": 29, + "Circuito": "29 - PLAZA DE TRINIDAD" + }, + { + "IdCircuito": 30, + "Circuito": "30 - BARRIO BARDIANI" + }, + { + "IdCircuito": 31, + "Circuito": "31 - VILLA DON BOSCO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c449", + "IdSeccion": 2, + "Seccion": "SANTA LUCÍA", + "Circuitos": [ + { + "IdCircuito": 32, + "Circuito": "32 - CENTRO SANTA LUCÍA" + }, + { + "IdCircuito": 33, + "Circuito": "33 - BARRIO CADETES ARGENTINOS" + }, + { + "IdCircuito": 34, + "Circuito": "34 - VILLA MARINI" + }, + { + "IdCircuito": 35, + "Circuito": "35 - COLONIA GUTIERREZ" + }, + { + "IdCircuito": 36, + "Circuito": "36 - VILLA 12 DE OCTUBRE" + }, + { + "IdCircuito": 37, + "Circuito": "37 - ALTO DE SIERRA" + }, + { + "IdCircuito": 38, + "Circuito": "38 - LA LEGUA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c44a", + "IdSeccion": 3, + "Seccion": "CHIMBAS", + "Circuitos": [ + { + "IdCircuito": 39, + "Circuito": "39 - CENTRO CHIMBAS" + }, + { + "IdCircuito": 40, + "Circuito": "40 - BARRIO LAPRIDA" + }, + { + "IdCircuito": 41, + "Circuito": "41 - VILLA OBRERA" + }, + { + "IdCircuito": 42, + "Circuito": "42 - CENTENARIO" + }, + { + "IdCircuito": 43, + "Circuito": "43 - ARENAL DE APARICIO" + }, + { + "IdCircuito": 44, + "Circuito": "44 - MOGOTE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c44b", + "IdSeccion": 4, + "Seccion": "RIVADAVIA", + "Circuitos": [ + { + "IdCircuito": 45, + "Circuito": "45 - BARRIO RIVADAVIA" + }, + { + "IdCircuito": 46, + "Circuito": "46 - NUEVA ARGENTINA" + }, + { + "IdCircuito": 47, + "Circuito": "47 - ESQUINA COLORADA" + }, + { + "IdCircuito": 48, + "Circuito": "48 - PUNTA DE RIELES" + }, + { + "IdCircuito": 49, + "Circuito": "49 - VILLA HUAZIHUL" + }, + { + "IdCircuito": 50, + "Circuito": "50 - HOSPITAL MARCIAL QUIROGA" + }, + { + "IdCircuito": 51, + "Circuito": "51 - MARQUEZADO" + }, + { + "IdCircuito": 52, + "Circuito": "52 - LA BEBIDA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c44c", + "IdSeccion": 5, + "Seccion": "ZONDA", + "Circuitos": [ + { + "IdCircuito": 53, + "Circuito": "53 - ZONDA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c44d", + "IdSeccion": 6, + "Seccion": "RAWSON", + "Circuitos": [ + { + "IdCircuito": 54, + "Circuito": "54 - CIUDAD VILLA KRAUSE" + }, + { + "IdCircuito": 55, + "Circuito": "55 - CIUDAD BARRIO OBRERO RAWSON" + }, + { + "IdCircuito": 56, + "Circuito": "56 - CIUDAD BARRIO CAPITAN LAZO" + }, + { + "IdCircuito": 57, + "Circuito": "57 - CIUDAD VILLA S.MA. DEL CARRIL" + }, + { + "IdCircuito": 58, + "Circuito": "58 - BARRIO EDILCO" + }, + { + "IdCircuito": 59, + "Circuito": "59 - COLONIA RODAS" + }, + { + "IdCircuito": 60, + "Circuito": "60 - MEDANO DE ORO" + }, + { + "IdCircuito": 61, + "Circuito": "61 - EL CERRILLO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c44e", + "IdSeccion": 7, + "Seccion": "9 DE JULIO", + "Circuitos": [ + { + "IdCircuito": 62, + "Circuito": "62 - VILLA" + }, + { + "IdCircuito": 63, + "Circuito": "63 - LAS CHACRITAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c44f", + "IdSeccion": 8, + "Seccion": "SAN MARTÍN", + "Circuitos": [ + { + "IdCircuito": 64, + "Circuito": "64 - LA PUNTILLA" + }, + { + "IdCircuito": 65, + "Circuito": "65 - SAN ISIDRO" + }, + { + "IdCircuito": 66, + "Circuito": "66 - DOS ACEQUIAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c450", + "IdSeccion": 9, + "Seccion": "ANGACO", + "Circuitos": [ + { + "IdCircuito": 67, + "Circuito": "67 - VILLA EL SALVADOR" + }, + { + "IdCircuito": 68, + "Circuito": "68 - PLUMERILLO" + }, + { + "IdCircuito": 69, + "Circuito": "69 - EL BOSQUE" + }, + { + "IdCircuito": 70, + "Circuito": "70 - ALAMITO" + }, + { + "IdCircuito": 71, + "Circuito": "71 - LAS TAPIAS" + }, + { + "IdCircuito": 72, + "Circuito": "72 - PUNTA DEL MONTE" + }, + { + "IdCircuito": 73, + "Circuito": "73 - LA CANADA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c451", + "IdSeccion": 10, + "Seccion": "ALBARDÓN", + "Circuitos": [ + { + "IdCircuito": 74, + "Circuito": "74 - VILLA SAN MARTIN" + }, + { + "IdCircuito": 75, + "Circuito": "75 - VILLA CHILE" + }, + { + "IdCircuito": 76, + "Circuito": "76 - LA CANADA" + }, + { + "IdCircuito": 77, + "Circuito": "77 - LA LAJA" + }, + { + "IdCircuito": 78, + "Circuito": "78 - LAS LOMITAS" + }, + { + "IdCircuito": 79, + "Circuito": "79 - CAMPO AFUERA" + }, + { + "IdCircuito": 80, + "Circuito": "80 - OBISPO ZAPATA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c452", + "IdSeccion": 11, + "Seccion": "ULLUM", + "Circuitos": [ + { + "IdCircuito": 81, + "Circuito": "81 - CENTRO ULLUM" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c453", + "IdSeccion": 12, + "Seccion": "POCITO", + "Circuitos": [ + { + "IdCircuito": 83, + "Circuito": "83 - EST. SANCHEZ DE LORIA" + }, + { + "IdCircuito": 84, + "Circuito": "84 - VILLA A. ABERASTAIN" + }, + { + "IdCircuito": 85, + "Circuito": "85 - QUINTO CUARTEL" + }, + { + "IdCircuito": 86, + "Circuito": "86 - RINCONADA" + }, + { + "IdCircuito": 87, + "Circuito": "87 - CAMPO DE BATALLA" + }, + { + "IdCircuito": 88, + "Circuito": "88 - CARPINTERIA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c454", + "IdSeccion": 13, + "Seccion": "SARMIENTO", + "Circuitos": [ + { + "IdCircuito": 89, + "Circuito": "89 - MEDIA AGUA" + }, + { + "IdCircuito": 90, + "Circuito": "90 - COCHAGUAL" + }, + { + "IdCircuito": 91, + "Circuito": "91 - COLONIA FISCAL" + }, + { + "IdCircuito": 92, + "Circuito": "92 - LAS LAGUNAS" + }, + { + "IdCircuito": 93, + "Circuito": "93 - LOS BERROS" + }, + { + "IdCircuito": 94, + "Circuito": "94 - CIENEGUITA" + }, + { + "IdCircuito": 95, + "Circuito": "95 - RETAMITO" + }, + { + "IdCircuito": 96, + "Circuito": "96 - PEDERNAL" + }, + { + "IdCircuito": "0090A", + "Circuito": "90A - PUNTA DEL MEDANO" + }, + { + "IdCircuito": "0093A", + "Circuito": "93A - CANADA HONDA" + }, + { + "IdCircuito": "0094A", + "Circuito": "94A - DIVISADERO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c455", + "IdSeccion": 14, + "Seccion": "25 DE MAYO", + "Circuitos": [ + { + "IdCircuito": 97, + "Circuito": "97 - VILLA SANTA ROSA" + }, + { + "IdCircuito": 98, + "Circuito": "98 - CASUARINAS" + }, + { + "IdCircuito": 99, + "Circuito": "99 - POZO SALADO" + }, + { + "IdCircuito": 100, + "Circuito": "100 - ENCON" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c456", + "IdSeccion": 15, + "Seccion": "CAUCETE", + "Circuitos": [ + { + "IdCircuito": 101, + "Circuito": "101 - CIUDAD CAUCETE SEC. ESTE" + }, + { + "IdCircuito": 102, + "Circuito": "102 - CIUDAD CAUCETE SEC. OESTE" + }, + { + "IdCircuito": 103, + "Circuito": "103 - VILLA DOLORES" + }, + { + "IdCircuito": 104, + "Circuito": "104 - VILLA SAENZ PENA" + }, + { + "IdCircuito": 105, + "Circuito": "105 - LOS MEDANOS" + }, + { + "IdCircuito": 106, + "Circuito": "106 - VILLA INDEPENDENCIA" + }, + { + "IdCircuito": 107, + "Circuito": "107 - PUNTILLA" + }, + { + "IdCircuito": 108, + "Circuito": "108 - RINCON" + }, + { + "IdCircuito": 109, + "Circuito": "109 - POZO DE LOS ALGARROBOS" + }, + { + "IdCircuito": 110, + "Circuito": "110 - PIE DE PALO" + }, + { + "IdCircuito": 111, + "Circuito": "111 - BERMEJO" + }, + { + "IdCircuito": 112, + "Circuito": "112 - MARAYES" + }, + { + "IdCircuito": "0110A", + "Circuito": "110A - VALLECITO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c457", + "IdSeccion": 16, + "Seccion": "VALLE FÉRTIL", + "Circuitos": [ + { + "IdCircuito": 113, + "Circuito": "113 - VILLA SAN AGUSTIN" + }, + { + "IdCircuito": 114, + "Circuito": "114 - USNO" + }, + { + "IdCircuito": 115, + "Circuito": "115 - ASTICA" + }, + { + "IdCircuito": 116, + "Circuito": "116 - SIERRA DE CHAVEZ" + }, + { + "IdCircuito": 117, + "Circuito": "117 - CHUCUMA" + }, + { + "IdCircuito": "0113A", + "Circuito": "113A - LA MAJADITA" + }, + { + "IdCircuito": "0114A", + "Circuito": "114A - BALDES DEL ROSARIO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c458", + "IdSeccion": 17, + "Seccion": "JÁCHAL", + "Circuitos": [ + { + "IdCircuito": 118, + "Circuito": "118 - CIUDAD DE JÁCHAL" + }, + { + "IdCircuito": 119, + "Circuito": "119 - RINCON" + }, + { + "IdCircuito": 120, + "Circuito": "120 - CRUZ DE PIEDRA" + }, + { + "IdCircuito": 121, + "Circuito": "121 - NIQUIVIL" + }, + { + "IdCircuito": 122, + "Circuito": "122 - MOGNA" + }, + { + "IdCircuito": 123, + "Circuito": "123 - OTRA BANDA" + }, + { + "IdCircuito": 124, + "Circuito": "124 - FALDA DEL FICAL" + }, + { + "IdCircuito": 125, + "Circuito": "125 - SAN ISIDRO" + }, + { + "IdCircuito": 126, + "Circuito": "126 - LA REPRESA" + }, + { + "IdCircuito": 127, + "Circuito": "127 - LOS MEDANOS" + }, + { + "IdCircuito": 129, + "Circuito": "129 - VILLA MERCEDES" + }, + { + "IdCircuito": 130, + "Circuito": "130 - TAMBERIAS" + }, + { + "IdCircuito": 131, + "Circuito": "131 - GRAN CHINA" + }, + { + "IdCircuito": 132, + "Circuito": "132 - HUACO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c459", + "IdSeccion": 18, + "Seccion": "IGLESIA", + "Circuitos": [ + { + "IdCircuito": 134, + "Circuito": "134 - VILLA" + }, + { + "IdCircuito": 135, + "Circuito": "135 - LAS FLORES" + }, + { + "IdCircuito": 136, + "Circuito": "136 - RODEO" + }, + { + "IdCircuito": 137, + "Circuito": "137 - TUDCUM" + }, + { + "IdCircuito": 138, + "Circuito": "138 - ANGUALASTO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c45a", + "IdSeccion": 19, + "Seccion": "CALINGASTA", + "Circuitos": [ + { + "IdCircuito": 139, + "Circuito": "139 - VILLA" + }, + { + "IdCircuito": 140, + "Circuito": "140 - PUCHUZUN" + }, + { + "IdCircuito": 141, + "Circuito": "141 - TAMBERIAS" + }, + { + "IdCircuito": 142, + "Circuito": "142 - CABECERA DEL BARREAL" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c45b", + "IdDistrito": 19, + "Distrito": "SAN LUIS", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c45c", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c45d", + "IdSeccion": 1, + "Seccion": "PUEYRREDÓN", + "Circuitos": [ + { + "IdCircuito": 2, + "Circuito": "2 - JUANA KOSLAY" + }, + { + "IdCircuito": 3, + "Circuito": "3 - LA PUNTA" + }, + { + "IdCircuito": 4, + "Circuito": "4 - EL VOLCAN" + }, + { + "IdCircuito": 6, + "Circuito": "6 - BALDE" + }, + { + "IdCircuito": 7, + "Circuito": "7 - SALINAS DEL BEBEDERO" + }, + { + "IdCircuito": 10, + "Circuito": "10 - BEAZLEY" + }, + { + "IdCircuito": 11, + "Circuito": "11 - LAS BARRANCAS" + }, + { + "IdCircuito": 12, + "Circuito": "12 - ZANJITAS" + }, + { + "IdCircuito": 13, + "Circuito": "13 - ALTO PELADO" + }, + { + "IdCircuito": 14, + "Circuito": "14 - VARELA" + }, + { + "IdCircuito": 15, + "Circuito": "15 - SAN GERONIMO" + }, + { + "IdCircuito": 1002, + "Circuito": "1002 - SAN LUIS" + }, + { + "IdCircuito": 1003, + "Circuito": "1003 - SAN LUIS" + }, + { + "IdCircuito": 1004, + "Circuito": "1004 - SAN LUIS" + }, + { + "IdCircuito": 1005, + "Circuito": "1005 - SAN LUIS" + }, + { + "IdCircuito": 1006, + "Circuito": "1006 - SAN LUIS" + }, + { + "IdCircuito": 1007, + "Circuito": "1007 - SAN LUIS" + }, + { + "IdCircuito": 1009, + "Circuito": "1009 - SAN LUIS" + }, + { + "IdCircuito": 1010, + "Circuito": "1010 - SAN LUIS" + }, + { + "IdCircuito": 1011, + "Circuito": "1011 - SAN LUIS" + }, + { + "IdCircuito": 1012, + "Circuito": "1012 - SAN LUIS" + }, + { + "IdCircuito": 1013, + "Circuito": "1013 - SAN LUIS" + }, + { + "IdCircuito": 1014, + "Circuito": "1014 - SAN LUIS" + }, + { + "IdCircuito": 1016, + "Circuito": "1016 - SAN LUIS" + }, + { + "IdCircuito": 1017, + "Circuito": "1017 - SAN LUIS" + }, + { + "IdCircuito": 1018, + "Circuito": "1018 - SAN LUIS" + }, + { + "IdCircuito": 1019, + "Circuito": "1019 - SAN LUIS" + }, + { + "IdCircuito": 1020, + "Circuito": "1020 - SAN LUIS" + }, + { + "IdCircuito": "0004A", + "Circuito": "4A - POTRERO DE LOS FUNES" + }, + { + "IdCircuito": "0005A", + "Circuito": "5A - SUYUQUE" + }, + { + "IdCircuito": "0005B", + "Circuito": "5B - JUAN W. GEZ" + }, + { + "IdCircuito": "0008A", + "Circuito": "8A - ALTO PENCOSO" + }, + { + "IdCircuito": "0008B", + "Circuito": "8B - LOS CHOSMES" + }, + { + "IdCircuito": "0009A", + "Circuito": "9A - DESAGUADERO" + }, + { + "IdCircuito": "0009B", + "Circuito": "9B - JARILLA" + }, + { + "IdCircuito": "1001A", + "Circuito": "1001A - SAN LUIS" + }, + { + "IdCircuito": "1001B", + "Circuito": "1001B - SAN LUIS" + }, + { + "IdCircuito": "1001C", + "Circuito": "1001C - SAN LUIS" + }, + { + "IdCircuito": "1008A", + "Circuito": "1008A - SAN LUIS" + }, + { + "IdCircuito": "1008B", + "Circuito": "1008B - SAN LUIS" + }, + { + "IdCircuito": "1008C", + "Circuito": "1008C - SAN LUIS" + }, + { + "IdCircuito": "1008D", + "Circuito": "1008D - SAN LUIS" + }, + { + "IdCircuito": "1008E", + "Circuito": "1008E - SAN LUIS" + }, + { + "IdCircuito": "1015A", + "Circuito": "1015A - SAN LUIS" + }, + { + "IdCircuito": "1015B", + "Circuito": "1015B - SAN LUIS" + }, + { + "IdCircuito": "1021A", + "Circuito": "1021A - SAN LUIS" + }, + { + "IdCircuito": "1021B", + "Circuito": "1021B - SAN LUIS" + }, + { + "IdCircuito": "1021C", + "Circuito": "1021C - SAN LUIS" + }, + { + "IdCircuito": "1022A", + "Circuito": "1022A - SAN LUIS" + }, + { + "IdCircuito": "1022B", + "Circuito": "1022B - SAN LUIS" + }, + { + "IdCircuito": "1022C", + "Circuito": "1022C - SAN LUIS" + }, + { + "IdCircuito": "1022D", + "Circuito": "1022D - SAN LUIS" + }, + { + "IdCircuito": "1022E", + "Circuito": "1022E - SAN LUIS" + }, + { + "IdCircuito": "1022F", + "Circuito": "1022F - SAN LUIS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c45e", + "IdSeccion": 2, + "Seccion": "PRINGLES", + "Circuitos": [ + { + "IdCircuito": 16, + "Circuito": "16 - SALADILLO" + }, + { + "IdCircuito": 17, + "Circuito": "17 - FRAGA" + }, + { + "IdCircuito": 19, + "Circuito": "19 - LA TOTORA" + }, + { + "IdCircuito": 20, + "Circuito": "20 - LOS MEMBRILLOS" + }, + { + "IdCircuito": 21, + "Circuito": "21 - CAROLINA" + }, + { + "IdCircuito": 22, + "Circuito": "22 - CAADA HONDA" + }, + { + "IdCircuito": 23, + "Circuito": "23 - PASO DEL REY" + }, + { + "IdCircuito": 24, + "Circuito": "24 - TRAPICHE" + }, + { + "IdCircuito": 25, + "Circuito": "25 - LA FLORIDA" + }, + { + "IdCircuito": 26, + "Circuito": "26 - EL DURAZNO" + }, + { + "IdCircuito": 27, + "Circuito": "27 - PAMPA DEL TAMBORERO" + }, + { + "IdCircuito": 28, + "Circuito": "28 - MARMOL VERDE" + }, + { + "IdCircuito": 1801, + "Circuito": "1801 - LA TOMA" + }, + { + "IdCircuito": 1802, + "Circuito": "1802 - LA TOMA" + }, + { + "IdCircuito": 1803, + "Circuito": "1803 - LA TOMA" + }, + { + "IdCircuito": 1804, + "Circuito": "1804 - LA TOMA" + }, + { + "IdCircuito": "0022A", + "Circuito": "22A - CERROS LARGOS" + }, + { + "IdCircuito": "0026A", + "Circuito": "26A - ESTANCIA GRANDE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c45f", + "IdSeccion": 3, + "Seccion": "PEDERNERA", + "Circuitos": [ + { + "IdCircuito": 31, + "Circuito": "31 - LAS ISLETAS" + }, + { + "IdCircuito": 32, + "Circuito": "32 - LAVAISSE" + }, + { + "IdCircuito": 33, + "Circuito": "33 - NUEVA ESCOCIA" + }, + { + "IdCircuito": 35, + "Circuito": "35 - LA ANGELINA" + }, + { + "IdCircuito": 36, + "Circuito": "36 - EL MORRO" + }, + { + "IdCircuito": 37, + "Circuito": "37 - LA ESQUINA" + }, + { + "IdCircuito": 38, + "Circuito": "38 - JUAN LLERENA" + }, + { + "IdCircuito": 39, + "Circuito": "39 - PUNILLA" + }, + { + "IdCircuito": 40, + "Circuito": "40 - VILLA REYNOLDS" + }, + { + "IdCircuito": 41, + "Circuito": "41 - JUAN JORBA" + }, + { + "IdCircuito": 3002, + "Circuito": "3002 - VILLA MERCEDES" + }, + { + "IdCircuito": 3003, + "Circuito": "3003 - VILLA MERCEDES" + }, + { + "IdCircuito": 3004, + "Circuito": "3004 - VILLA MERCEDES" + }, + { + "IdCircuito": 3005, + "Circuito": "3005 - VILLA MERCEDES" + }, + { + "IdCircuito": 3006, + "Circuito": "3006 - VILLA MERCEDES" + }, + { + "IdCircuito": 3007, + "Circuito": "3007 - VILLA MERCEDES" + }, + { + "IdCircuito": 3008, + "Circuito": "3008 - VILLA MERCEDES" + }, + { + "IdCircuito": 3009, + "Circuito": "3009 - VILLA MERCEDES" + }, + { + "IdCircuito": 3010, + "Circuito": "3010 - VILLA MERCEDES" + }, + { + "IdCircuito": 3011, + "Circuito": "3011 - VILLA MERCEDES" + }, + { + "IdCircuito": 3012, + "Circuito": "3012 - VILLA MERCEDES" + }, + { + "IdCircuito": 3013, + "Circuito": "3013 - VILLA MERCEDES" + }, + { + "IdCircuito": 3014, + "Circuito": "3014 - VILLA MERCEDES" + }, + { + "IdCircuito": 3015, + "Circuito": "3015 - VILLA MERCEDES" + }, + { + "IdCircuito": 3016, + "Circuito": "3016 - VILLA MERCEDES" + }, + { + "IdCircuito": 3017, + "Circuito": "3017 - VILLA MERCEDES" + }, + { + "IdCircuito": 3018, + "Circuito": "3018 - VILLA MERCEDES" + }, + { + "IdCircuito": 3019, + "Circuito": "3019 - VILLA MERCEDES" + }, + { + "IdCircuito": 3020, + "Circuito": "3020 - VILLA MERCEDES" + }, + { + "IdCircuito": 3021, + "Circuito": "3021 - VILLA MERCEDES" + }, + { + "IdCircuito": 3401, + "Circuito": "3401 - JUSTO DARACT" + }, + { + "IdCircuito": 3402, + "Circuito": "3402 - JUSTO DARACT" + }, + { + "IdCircuito": 3403, + "Circuito": "3403 - JUSTO DARACT" + }, + { + "IdCircuito": 3404, + "Circuito": "3404 - JUSTO DARACT" + }, + { + "IdCircuito": 3405, + "Circuito": "3405 - JUSTO DARACT" + }, + { + "IdCircuito": 3406, + "Circuito": "3406 - JUSTO DARACT" + }, + { + "IdCircuito": 3407, + "Circuito": "3407 - JUSTO DARACT" + }, + { + "IdCircuito": 3408, + "Circuito": "3408 - VILLA SALLES" + }, + { + "IdCircuito": "3001A", + "Circuito": "3001A - VILLA MERCEDES" + }, + { + "IdCircuito": "3001B", + "Circuito": "3001B - VILLA MERCEDES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c460", + "IdSeccion": 4, + "Seccion": "CHACABUCO", + "Circuitos": [ + { + "IdCircuito": 42, + "Circuito": "42 - TILISARAO" + }, + { + "IdCircuito": 43, + "Circuito": "43 - RENCA" + }, + { + "IdCircuito": 44, + "Circuito": "44 - SAN PABLO" + }, + { + "IdCircuito": 45, + "Circuito": "45 - CONCARAN" + }, + { + "IdCircuito": 46, + "Circuito": "46 - LARCA" + }, + { + "IdCircuito": 47, + "Circuito": "47 - PAPAGAYOS" + }, + { + "IdCircuito": 48, + "Circuito": "48 - VILLA DEL CARMEN" + }, + { + "IdCircuito": 49, + "Circuito": "49 - NASCHEL" + }, + { + "IdCircuito": 50, + "Circuito": "50 - CANADA GRANDE" + }, + { + "IdCircuito": 51, + "Circuito": "51 - CORTADERAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c461", + "IdSeccion": 5, + "Seccion": "SAN MARTÍN", + "Circuitos": [ + { + "IdCircuito": 52, + "Circuito": "52 - SAN MARTÍN" + }, + { + "IdCircuito": 53, + "Circuito": "53 - LAS CHACRAS" + }, + { + "IdCircuito": 54, + "Circuito": "54 - CRUZ DE CAA" + }, + { + "IdCircuito": 55, + "Circuito": "55 - PASO GRANDE" + }, + { + "IdCircuito": 56, + "Circuito": "56 - GUZMAN LAS LAGUNAS" + }, + { + "IdCircuito": 57, + "Circuito": "57 - POTRERILLO" + }, + { + "IdCircuito": 58, + "Circuito": "58 - RINCON DEL CARMEN" + }, + { + "IdCircuito": 59, + "Circuito": "59 - PUERTA COLORADA" + }, + { + "IdCircuito": 60, + "Circuito": "60 - VILLA PRAGA" + }, + { + "IdCircuito": 61, + "Circuito": "61 - LA VERTIENTE" + }, + { + "IdCircuito": 62, + "Circuito": "62 - LA COCHA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c462", + "IdSeccion": 6, + "Seccion": "JUNÍN", + "Circuitos": [ + { + "IdCircuito": 63, + "Circuito": "63 - SANTA ROSA" + }, + { + "IdCircuito": 64, + "Circuito": "64 - PUNTA DEL AGUA" + }, + { + "IdCircuito": 65, + "Circuito": "65 - OJO DEL RIO" + }, + { + "IdCircuito": 66, + "Circuito": "66 - LOMITA" + }, + { + "IdCircuito": 67, + "Circuito": "67 - LAS PALOMAS" + }, + { + "IdCircuito": 68, + "Circuito": "68 - TALITA" + }, + { + "IdCircuito": 69, + "Circuito": "69 - BALDE DE ESCUDERO" + }, + { + "IdCircuito": 72, + "Circuito": "72 - CARPINTERIA" + }, + { + "IdCircuito": 73, + "Circuito": "73 - LOS MOLLES" + }, + { + "IdCircuito": 74, + "Circuito": "74 - LOS LOBOS" + }, + { + "IdCircuito": 7001, + "Circuito": "7001 - MERLO" + }, + { + "IdCircuito": 7002, + "Circuito": "7002 - MERLO" + }, + { + "IdCircuito": 7003, + "Circuito": "7003 - MERLO" + }, + { + "IdCircuito": 7004, + "Circuito": "7004 - MERLO" + }, + { + "IdCircuito": 7005, + "Circuito": "7005 - MERLO" + }, + { + "IdCircuito": 7006, + "Circuito": "7006 - MERLO" + }, + { + "IdCircuito": 7007, + "Circuito": "7007 - MERLO" + }, + { + "IdCircuito": 7008, + "Circuito": "7008 - MERLO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c463", + "IdSeccion": 7, + "Seccion": "AYACUCHO", + "Circuitos": [ + { + "IdCircuito": 75, + "Circuito": "75 - SAN FRANCISCO" + }, + { + "IdCircuito": 76, + "Circuito": "76 - RIO JUAN GOMEZ" + }, + { + "IdCircuito": 77, + "Circuito": "77 - EL RINCON" + }, + { + "IdCircuito": 78, + "Circuito": "78 - POZO DEL MOLLE" + }, + { + "IdCircuito": 79, + "Circuito": "79 - PAMPA GRANDE" + }, + { + "IdCircuito": 80, + "Circuito": "80 - LEANDRO N. ALEM" + }, + { + "IdCircuito": 81, + "Circuito": "81 - LUJAN" + }, + { + "IdCircuito": 82, + "Circuito": "82 - QUINES" + }, + { + "IdCircuito": 83, + "Circuito": "83 - CANDELARIA" + }, + { + "IdCircuito": 84, + "Circuito": "84 - LA BOTIJA" + }, + { + "IdCircuito": 85, + "Circuito": "85 - CHIPISCU" + }, + { + "IdCircuito": 86, + "Circuito": "86 - SANTA ROSA" + }, + { + "IdCircuito": 87, + "Circuito": "87 - LA CANADA" + }, + { + "IdCircuito": "0083A", + "Circuito": "83A - EL CALDEN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c464", + "IdSeccion": 8, + "Seccion": "BELGRANO", + "Circuitos": [ + { + "IdCircuito": 88, + "Circuito": "88 - VILLA GRAL. ROCA" + }, + { + "IdCircuito": 89, + "Circuito": "89 - ARBOL SOLO" + }, + { + "IdCircuito": 90, + "Circuito": "90 - DEOCLESIO PEREZ" + }, + { + "IdCircuito": 91, + "Circuito": "91 - TORO NEGRO" + }, + { + "IdCircuito": 92, + "Circuito": "92 - NOGOLI" + }, + { + "IdCircuito": 94, + "Circuito": "94 - BELLA ESTANCIA" + }, + { + "IdCircuito": 95, + "Circuito": "95 - LOMAS BLANCAS" + }, + { + "IdCircuito": 96, + "Circuito": "96 - SAN ANTONIO" + }, + { + "IdCircuito": 97, + "Circuito": "97 - GIGANTE" + }, + { + "IdCircuito": 98, + "Circuito": "98 - LA CALERA" + }, + { + "IdCircuito": 99, + "Circuito": "99 - REPRESA DEL CARMEN" + }, + { + "IdCircuito": 100, + "Circuito": "100 - VILLA DE LA QUEBRADA" + }, + { + "IdCircuito": "0093A", + "Circuito": "93A - LOS MOLLES (93A)" + }, + { + "IdCircuito": "0093B", + "Circuito": "93B - EL BARRIAL (93B)" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c465", + "IdSeccion": 9, + "Seccion": "DUPUY", + "Circuitos": [ + { + "IdCircuito": 101, + "Circuito": "101 - BUENA ESPERANZA" + }, + { + "IdCircuito": 102, + "Circuito": "102 - BATAVIA" + }, + { + "IdCircuito": 103, + "Circuito": "103 - NAHUEL MAPA" + }, + { + "IdCircuito": 104, + "Circuito": "104 - FORTIN EL PATRIA" + }, + { + "IdCircuito": 105, + "Circuito": "105 - FORTUNA" + }, + { + "IdCircuito": 106, + "Circuito": "106 - BAGUAL" + }, + { + "IdCircuito": 107, + "Circuito": "107 - NUEVA GALIA" + }, + { + "IdCircuito": 108, + "Circuito": "108 - UNION" + }, + { + "IdCircuito": 109, + "Circuito": "109 - MARTIN DE LOYOLA" + }, + { + "IdCircuito": 110, + "Circuito": "110 - ANCHORENA" + }, + { + "IdCircuito": 111, + "Circuito": "111 - ARIZONA" + }, + { + "IdCircuito": 112, + "Circuito": "112 - LA VERDE" + }, + { + "IdCircuito": 113, + "Circuito": "113 - NAVIA" + }, + { + "IdCircuito": 114, + "Circuito": "114 - TOSCAL" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c466", + "IdDistrito": 20, + "Distrito": "SANTA CRUZ", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c467", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c468", + "IdSeccion": 1, + "Seccion": "DESEADO", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - PUERTO DESEADO" + }, + { + "IdCircuito": 2, + "Circuito": "2 - JARAMILLO" + }, + { + "IdCircuito": 4, + "Circuito": "4 - CANADON SECO" + }, + { + "IdCircuito": 5, + "Circuito": "5 - PICO TRUNCADO" + }, + { + "IdCircuito": 6, + "Circuito": "6 - LAS HERAS" + }, + { + "IdCircuito": 7, + "Circuito": "7 - GOBERNADOR MOYANO" + }, + { + "IdCircuito": 300, + "Circuito": "300 - CALETA OLIVIA" + }, + { + "IdCircuito": 310, + "Circuito": "310 - CALETA OLIVIA" + }, + { + "IdCircuito": 320, + "Circuito": "320 - CALETA OLIVIA" + }, + { + "IdCircuito": "0001A", + "Circuito": "1A - EA. PUERTO DESEADO" + }, + { + "IdCircuito": "0004A", + "Circuito": "4A - EA. DE C.SECO Y C.OLIVIA" + }, + { + "IdCircuito": "0005A", + "Circuito": "5A - EA.PICO TRUNCADO" + }, + { + "IdCircuito": "0006A", + "Circuito": "6A - EA. LAS HERAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c469", + "IdSeccion": 2, + "Seccion": "LAGO BUENOS AIRES", + "Circuitos": [ + { + "IdCircuito": 8, + "Circuito": "8 - PERITO MORENO" + }, + { + "IdCircuito": 9, + "Circuito": "9 - LOS ANTIGUOS" + }, + { + "IdCircuito": "0008A", + "Circuito": "8A - EA. PERITO MORENO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c46a", + "IdSeccion": 3, + "Seccion": "MAGALLANES", + "Circuitos": [ + { + "IdCircuito": 10, + "Circuito": "10 - PUERTO SAN JULIAN" + }, + { + "IdCircuito": 11, + "Circuito": "11 - EA. PTO SAN JULIAN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c46b", + "IdSeccion": 4, + "Seccion": "RÍO CHICO", + "Circuitos": [ + { + "IdCircuito": 12, + "Circuito": "12 - BAJO CARACOLES" + }, + { + "IdCircuito": 13, + "Circuito": "13 - GOBERNADOR GREGORES" + }, + { + "IdCircuito": "0012A", + "Circuito": "12A - TAMEL AIKE" + }, + { + "IdCircuito": "0012B", + "Circuito": "12B - LAGO POSADAS" + }, + { + "IdCircuito": "0013A", + "Circuito": "13A - EA. GDOR GREGORES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c46c", + "IdSeccion": 5, + "Seccion": "CORPEN AIKE", + "Circuitos": [ + { + "IdCircuito": 14, + "Circuito": "14 - CMDTE. LUIS PIEDRABUENA" + }, + { + "IdCircuito": 15, + "Circuito": "15 - PUERTO SANTA CRUZ" + }, + { + "IdCircuito": "0014A", + "Circuito": "14A - EA. CMDTE. LUIS PIEDRABUENA" + }, + { + "IdCircuito": "0015A", + "Circuito": "15A - EA. PTO. SANTA CRUZ" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c46d", + "IdSeccion": 6, + "Seccion": "LAGO ARGENTINO", + "Circuitos": [ + { + "IdCircuito": 16, + "Circuito": "16 - TRES LAGOS" + }, + { + "IdCircuito": 17, + "Circuito": "17 - EL CALAFATE" + }, + { + "IdCircuito": "0016A", + "Circuito": "16A - EL CHALTEN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c46e", + "IdSeccion": 7, + "Seccion": "GÜER AIKE", + "Circuitos": [ + { + "IdCircuito": 19, + "Circuito": "19 - EA. RIO GALLEGOS" + }, + { + "IdCircuito": 20, + "Circuito": "20 - LA ESPERANZA" + }, + { + "IdCircuito": 21, + "Circuito": "21 - RIO TURBIO" + }, + { + "IdCircuito": 1800, + "Circuito": "1800 - RIO GALLEGOS" + }, + { + "IdCircuito": 1810, + "Circuito": "1810 - RIO GALLEGOS" + }, + { + "IdCircuito": 1820, + "Circuito": "1820 - RIO GALLEGOS" + }, + { + "IdCircuito": 1830, + "Circuito": "1830 - RIO GALLEGOS" + }, + { + "IdCircuito": 1840, + "Circuito": "1840 - RIO GALLEGOS" + }, + { + "IdCircuito": 1850, + "Circuito": "1850 - RIO GALLEGOS" + }, + { + "IdCircuito": "0021A", + "Circuito": "21A - EA. RIO TURBIO" + }, + { + "IdCircuito": "0021B", + "Circuito": "21B - 28 DE NOVIEMBRE" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c46f", + "IdDistrito": 21, + "Distrito": "SANTA FE", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c470", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c471", + "IdSeccion": 1, + "Seccion": "LA CAPITAL", + "Circuitos": [ + { + "IdCircuito": 10, + "Circuito": "10 - SANTA FE (PARQUE SUR)" + }, + { + "IdCircuito": 20, + "Circuito": "20 - SANTA FE (TEATRO MUNICIPAL)" + }, + { + "IdCircuito": 30, + "Circuito": "30 - SANTA FE (PUERTO)" + }, + { + "IdCircuito": 40, + "Circuito": "40 - SANTA FE (CENTRO)" + }, + { + "IdCircuito": 50, + "Circuito": "50 - SANTA FE (CONSTITUYENTES)" + }, + { + "IdCircuito": 60, + "Circuito": "60 - SANTA FE (UNIV.NAC. DEL LITORAL)" + }, + { + "IdCircuito": 70, + "Circuito": "70 - SANTA FE (SAN LORENZO)" + }, + { + "IdCircuito": 80, + "Circuito": "80 - SANTA FE (R.S.PENA)" + }, + { + "IdCircuito": 90, + "Circuito": "90 - SANTA FE (CANDIOTI)" + }, + { + "IdCircuito": 100, + "Circuito": "100 - SANTA FE (PUENTE COLGANTE)" + }, + { + "IdCircuito": 110, + "Circuito": "110 - SANTA FE (BARRIO ROMA)" + }, + { + "IdCircuito": 115, + "Circuito": "115 - SANTA FE (STA.ROSA DE LIMA)" + }, + { + "IdCircuito": 120, + "Circuito": "120 - SANTA FE (PARQUE GARAY)" + }, + { + "IdCircuito": 130, + "Circuito": "130 - SANTA FE (SGTO. CABRAL)" + }, + { + "IdCircuito": 140, + "Circuito": "140 - SANTA FE (BARRANQUITAS ESTE)" + }, + { + "IdCircuito": 142, + "Circuito": "142 - SANTA FE (BARRANQUITAS OESTE)" + }, + { + "IdCircuito": 150, + "Circuito": "150 - SANTA FE (ABASTO)" + }, + { + "IdCircuito": 152, + "Circuito": "152 - SANTA FE (CABANA LEIVA)" + }, + { + "IdCircuito": 160, + "Circuito": "160 - SANTA FE (LAS FLORES)" + }, + { + "IdCircuito": 161, + "Circuito": "161 - SANTA FE (LA LOMA)" + }, + { + "IdCircuito": 162, + "Circuito": "162 - SANTA FE (JARDIN BOTANICO)" + }, + { + "IdCircuito": 165, + "Circuito": "165 - SANTA FE (LOS HORNOS)" + }, + { + "IdCircuito": 170, + "Circuito": "170 - SANTA FE (GUADALUPE ESTE)" + }, + { + "IdCircuito": 171, + "Circuito": "171 - SANTA FE (GUADALUPE OESTE)" + }, + { + "IdCircuito": 172, + "Circuito": "172 - SANTA FE (GUADALUPE NORTE)" + }, + { + "IdCircuito": 175, + "Circuito": "175 - SANTA FE (MARIA SELVA)" + }, + { + "IdCircuito": 180, + "Circuito": "180 - SANTA FE (CENTENARIO)" + }, + { + "IdCircuito": 185, + "Circuito": "185 - SANTA FE (SGTO.BUSTAMANTE)" + }, + { + "IdCircuito": 190, + "Circuito": "190 - SANTA FE (EL POZO)" + }, + { + "IdCircuito": 192, + "Circuito": "192 - ALTO VERDE" + }, + { + "IdCircuito": 194, + "Circuito": "194 - COLASTINE" + }, + { + "IdCircuito": 196, + "Circuito": "196 - LA GUARDIA" + }, + { + "IdCircuito": 200, + "Circuito": "200 - SANTO TOME (NORTE)" + }, + { + "IdCircuito": 202, + "Circuito": "202 - SANTO TOME (CENTRO)" + }, + { + "IdCircuito": 204, + "Circuito": "204 - SANTO TOME (OESTE)" + }, + { + "IdCircuito": 220, + "Circuito": "220 - SAN JOSE DEL RINCON" + }, + { + "IdCircuito": 230, + "Circuito": "230 - RECREO" + }, + { + "IdCircuito": 240, + "Circuito": "240 - MONTE VERA" + }, + { + "IdCircuito": 250, + "Circuito": "250 - CANDIOTI" + }, + { + "IdCircuito": 260, + "Circuito": "260 - ARROYO AGUIAR" + }, + { + "IdCircuito": 270, + "Circuito": "270 - LAGUNA PAIVA" + }, + { + "IdCircuito": 280, + "Circuito": "280 - CAMPO ANDINO" + }, + { + "IdCircuito": 290, + "Circuito": "290 - NELSON" + }, + { + "IdCircuito": 300, + "Circuito": "300 - LLAMBI CAMPBELL" + }, + { + "IdCircuito": 310, + "Circuito": "310 - EMILIA" + }, + { + "IdCircuito": 330, + "Circuito": "330 - SAUCE VIEJO" + }, + { + "IdCircuito": 370, + "Circuito": "370 - CABAL" + }, + { + "IdCircuito": 390, + "Circuito": "390 - ANGEL GALLARDO" + }, + { + "IdCircuito": 400, + "Circuito": "400 - ARROYO LEYES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c472", + "IdSeccion": 2, + "Seccion": "LAS COLONIAS", + "Circuitos": [ + { + "IdCircuito": 410, + "Circuito": "410 - HIPATIA" + }, + { + "IdCircuito": 420, + "Circuito": "420 - MATILDE" + }, + { + "IdCircuito": 430, + "Circuito": "430 - SAN CARLOS SUD" + }, + { + "IdCircuito": 440, + "Circuito": "440 - SAN CARLOS CENTRO" + }, + { + "IdCircuito": 450, + "Circuito": "450 - SAN CARLOS NORTE" + }, + { + "IdCircuito": 460, + "Circuito": "460 - SANTA CLARA DE B. VISTA" + }, + { + "IdCircuito": 470, + "Circuito": "470 - SAN MARIANO" + }, + { + "IdCircuito": 480, + "Circuito": "480 - SA PEREIRA" + }, + { + "IdCircuito": 490, + "Circuito": "490 - SAN AGUSTIN" + }, + { + "IdCircuito": 500, + "Circuito": "500 - JACINTO L. ARAUZ" + }, + { + "IdCircuito": 510, + "Circuito": "510 - SAN JERONIMO DEL SAUCE" + }, + { + "IdCircuito": 520, + "Circuito": "520 - SAN JERONIMO NORTE" + }, + { + "IdCircuito": 530, + "Circuito": "530 - FRANCK" + }, + { + "IdCircuito": 540, + "Circuito": "540 - LAS TUNAS" + }, + { + "IdCircuito": 551, + "Circuito": "551 - ESPERANZA SUROESTE" + }, + { + "IdCircuito": 552, + "Circuito": "552 - ESPERANZA NORESTE" + }, + { + "IdCircuito": 553, + "Circuito": "553 - ESPERANZA SURESTE" + }, + { + "IdCircuito": 554, + "Circuito": "554 - ESPERANZA NORESTE" + }, + { + "IdCircuito": 557, + "Circuito": "557 - PUJOL" + }, + { + "IdCircuito": 559, + "Circuito": "559 - LA ORILLA" + }, + { + "IdCircuito": 560, + "Circuito": "560 - HUMBOLDT" + }, + { + "IdCircuito": 570, + "Circuito": "570 - PILAR" + }, + { + "IdCircuito": 580, + "Circuito": "580 - NUEVO TORINO" + }, + { + "IdCircuito": 590, + "Circuito": "590 - CAVOUR" + }, + { + "IdCircuito": 600, + "Circuito": "600 - FELICIA" + }, + { + "IdCircuito": 610, + "Circuito": "610 - GRUTLY" + }, + { + "IdCircuito": 620, + "Circuito": "620 - SANTO DOMINGO" + }, + { + "IdCircuito": 630, + "Circuito": "630 - PROGRESO" + }, + { + "IdCircuito": 640, + "Circuito": "640 - SARMIENTO" + }, + { + "IdCircuito": 650, + "Circuito": "650 - MARIA LUISA" + }, + { + "IdCircuito": 660, + "Circuito": "660 - PROVIDENCIA" + }, + { + "IdCircuito": 670, + "Circuito": "670 - LA PELADA" + }, + { + "IdCircuito": 680, + "Circuito": "680 - ELISA" + }, + { + "IdCircuito": 690, + "Circuito": "690 - EMPALME SAN CARLOS" + }, + { + "IdCircuito": 700, + "Circuito": "700 - RIVADAVIA" + }, + { + "IdCircuito": 710, + "Circuito": "710 - CULULU" + }, + { + "IdCircuito": 720, + "Circuito": "720 - SANTA MARIA CENTRO" + }, + { + "IdCircuito": 730, + "Circuito": "730 - SAN JOSE" + }, + { + "IdCircuito": 740, + "Circuito": "740 - SANTA MARIA NORTE" + }, + { + "IdCircuito": 750, + "Circuito": "750 - PUJATO" + }, + { + "IdCircuito": 760, + "Circuito": "760 - SOUTOMAYOR" + }, + { + "IdCircuito": 770, + "Circuito": "770 - ITUZAINGO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c473", + "IdSeccion": 3, + "Seccion": "SAN JERÓNIMO", + "Circuitos": [ + { + "IdCircuito": 790, + "Circuito": "790 - CORONDA" + }, + { + "IdCircuito": 800, + "Circuito": "800 - LARRECHEA" + }, + { + "IdCircuito": 810, + "Circuito": "810 - GESSLER" + }, + { + "IdCircuito": 820, + "Circuito": "820 - LOPEZ" + }, + { + "IdCircuito": 830, + "Circuito": "830 - GALVEZ" + }, + { + "IdCircuito": 840, + "Circuito": "840 - AROCENA" + }, + { + "IdCircuito": 850, + "Circuito": "850 - IRIGOYEN" + }, + { + "IdCircuito": 855, + "Circuito": "855 - SAN EUGENIO" + }, + { + "IdCircuito": 860, + "Circuito": "860 - BERNARDO DE IRIGOYEN" + }, + { + "IdCircuito": 870, + "Circuito": "870 - BARRANCAS" + }, + { + "IdCircuito": 880, + "Circuito": "880 - CENTENO" + }, + { + "IdCircuito": 890, + "Circuito": "890 - SAN GENARO" + }, + { + "IdCircuito": 910, + "Circuito": "910 - DIAZ" + }, + { + "IdCircuito": 920, + "Circuito": "920 - MONJE" + }, + { + "IdCircuito": 930, + "Circuito": "930 - MACIEL" + }, + { + "IdCircuito": 940, + "Circuito": "940 - GABOTO" + }, + { + "IdCircuito": 950, + "Circuito": "950 - SAN FABIAN" + }, + { + "IdCircuito": 960, + "Circuito": "960 - DESVIO ARIJON" + }, + { + "IdCircuito": 965, + "Circuito": "965 - BARRIO CAIMA" + }, + { + "IdCircuito": 970, + "Circuito": "970 - VILLA TRAMONTINI" + }, + { + "IdCircuito": 980, + "Circuito": "980 - PUERTO ARAGON" + }, + { + "IdCircuito": 1000, + "Circuito": "1000 - PIAGGIO" + }, + { + "IdCircuito": 1010, + "Circuito": "1010 - CASALEGNO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c474", + "IdSeccion": 4, + "Seccion": "GARAY", + "Circuitos": [ + { + "IdCircuito": 1040, + "Circuito": "1040 - COLONIA SAN JOAQUIN" + }, + { + "IdCircuito": 1050, + "Circuito": "1050 - SALADERO M. CABAL" + }, + { + "IdCircuito": 1060, + "Circuito": "1060 - HELVECIA" + }, + { + "IdCircuito": 1064, + "Circuito": "1064 - LAS CANAS" + }, + { + "IdCircuito": 1066, + "Circuito": "1066 - EL LAUREL" + }, + { + "IdCircuito": 1070, + "Circuito": "1070 - CAYASTA" + }, + { + "IdCircuito": 1080, + "Circuito": "1080 - SANTA ROSA" + }, + { + "IdCircuito": 1085, + "Circuito": "1085 - LOS ZAPALLOS" + }, + { + "IdCircuito": 1090, + "Circuito": "1090 - COLONIA MASCIAS" + }, + { + "IdCircuito": 1100, + "Circuito": "1100 - CAMPO DEL MEDIO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c475", + "IdSeccion": 5, + "Seccion": "CASTELLANOS", + "Circuitos": [ + { + "IdCircuito": 1110, + "Circuito": "1110 - BICHA" + }, + { + "IdCircuito": 1120, + "Circuito": "1120 - GALISTEO" + }, + { + "IdCircuito": 1130, + "Circuito": "1130 - TACURALES" + }, + { + "IdCircuito": 1140, + "Circuito": "1140 - VIRGINIA" + }, + { + "IdCircuito": 1150, + "Circuito": "1150 - TACURAL" + }, + { + "IdCircuito": 1160, + "Circuito": "1160 - RAQUEL" + }, + { + "IdCircuito": 1170, + "Circuito": "1170 - HUMBERTO I" + }, + { + "IdCircuito": 1180, + "Circuito": "1180 - SUNCHALES" + }, + { + "IdCircuito": 1190, + "Circuito": "1190 - SANTA EUSEBIA" + }, + { + "IdCircuito": 1200, + "Circuito": "1200 - ALDAO" + }, + { + "IdCircuito": 1202, + "Circuito": "1202 - BIGAND" + }, + { + "IdCircuito": 1204, + "Circuito": "1204 - HUGENTOBLER" + }, + { + "IdCircuito": 1210, + "Circuito": "1210 - ATALIVA" + }, + { + "IdCircuito": 1220, + "Circuito": "1220 - EGUSQUIZA" + }, + { + "IdCircuito": 1230, + "Circuito": "1230 - LEHMANN" + }, + { + "IdCircuito": 1240, + "Circuito": "1240 - RAMONA" + }, + { + "IdCircuito": 1250, + "Circuito": "1250 - VILA" + }, + { + "IdCircuito": 1260, + "Circuito": "1260 - CASTELLANOS" + }, + { + "IdCircuito": 1270, + "Circuito": "1270 - PRESIDENTE ROCA" + }, + { + "IdCircuito": 1280, + "Circuito": "1280 - RAFAELA (NORESTE)" + }, + { + "IdCircuito": 1282, + "Circuito": "1282 - RAFAELA (NOROESTE)" + }, + { + "IdCircuito": 1284, + "Circuito": "1284 - RAFAELA (SUROESTE)" + }, + { + "IdCircuito": 1286, + "Circuito": "1286 - RAFAELA (SURESTE)" + }, + { + "IdCircuito": 1290, + "Circuito": "1290 - BAUER Y SIGEL" + }, + { + "IdCircuito": 1300, + "Circuito": "1300 - SANTA CLARA DE SAGUIER" + }, + { + "IdCircuito": 1310, + "Circuito": "1310 - SAGUIER" + }, + { + "IdCircuito": 1320, + "Circuito": "1320 - SUSANA" + }, + { + "IdCircuito": 1330, + "Circuito": "1330 - AURELIA" + }, + { + "IdCircuito": 1340, + "Circuito": "1340 - JOSEFINA" + }, + { + "IdCircuito": 1342, + "Circuito": "1342 - JOSEFINA (BO.ACAPULCO)" + }, + { + "IdCircuito": 1345, + "Circuito": "1345 - FRONTERA" + }, + { + "IdCircuito": 1350, + "Circuito": "1350 - CELLO" + }, + { + "IdCircuito": 1360, + "Circuito": "1360 - CLUCELLAS" + }, + { + "IdCircuito": 1365, + "Circuito": "1365 - ITURRASPE" + }, + { + "IdCircuito": 1370, + "Circuito": "1370 - ANGELICA" + }, + { + "IdCircuito": 1380, + "Circuito": "1380 - ZENON PEREYRA" + }, + { + "IdCircuito": 1390, + "Circuito": "1390 - ESMERALDA" + }, + { + "IdCircuito": 1400, + "Circuito": "1400 - MARIA JUANA" + }, + { + "IdCircuito": 1410, + "Circuito": "1410 - MARGARITA" + }, + { + "IdCircuito": 1420, + "Circuito": "1420 - SAN VICENTE" + }, + { + "IdCircuito": 1430, + "Circuito": "1430 - BELLA ITALIA" + }, + { + "IdCircuito": 1440, + "Circuito": "1440 - ESTACION CLUCELLAS" + }, + { + "IdCircuito": 1450, + "Circuito": "1450 - SAN ANTONIO" + }, + { + "IdCircuito": 1460, + "Circuito": "1460 - SAN JOSE" + }, + { + "IdCircuito": 1470, + "Circuito": "1470 - GARIBALDI" + }, + { + "IdCircuito": 1480, + "Circuito": "1480 - MARINI" + }, + { + "IdCircuito": 1490, + "Circuito": "1490 - EUSTOLIA" + }, + { + "IdCircuito": 1500, + "Circuito": "1500 - FIDELA" + }, + { + "IdCircuito": 1510, + "Circuito": "1510 - CORONEL FRAGA" + }, + { + "IdCircuito": 1520, + "Circuito": "1520 - MAUA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c476", + "IdSeccion": 6, + "Seccion": "SAN MARTÍN", + "Circuitos": [ + { + "IdCircuito": 1530, + "Circuito": "1530 - CASTELAR" + }, + { + "IdCircuito": 1540, + "Circuito": "1540 - CRISPI" + }, + { + "IdCircuito": 1550, + "Circuito": "1550 - SASTRE" + }, + { + "IdCircuito": 1560, + "Circuito": "1560 - SAN MARTÍN DE LAS ESCOBAS" + }, + { + "IdCircuito": 1570, + "Circuito": "1570 - COLONIA BELGRANO" + }, + { + "IdCircuito": 1580, + "Circuito": "1580 - SAN JORGE" + }, + { + "IdCircuito": 1590, + "Circuito": "1590 - LANDETA" + }, + { + "IdCircuito": 1600, + "Circuito": "1600 - CARLOS PELLEGRINI" + }, + { + "IdCircuito": 1610, + "Circuito": "1610 - CANADA ROSQUIN" + }, + { + "IdCircuito": 1620, + "Circuito": "1620 - CASAS" + }, + { + "IdCircuito": 1630, + "Circuito": "1630 - LAS BANDURRIAS" + }, + { + "IdCircuito": 1640, + "Circuito": "1640 - PIAMONTE" + }, + { + "IdCircuito": 1650, + "Circuito": "1650 - EL TREBOL" + }, + { + "IdCircuito": 1660, + "Circuito": "1660 - MARIA SUSANA" + }, + { + "IdCircuito": 1670, + "Circuito": "1670 - LOS CARDOS" + }, + { + "IdCircuito": 1680, + "Circuito": "1680 - TRAILL" + }, + { + "IdCircuito": 1690, + "Circuito": "1690 - LAS PETACAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c477", + "IdSeccion": 7, + "Seccion": "SAN CRISTÓBAL", + "Circuitos": [ + { + "IdCircuito": 1740, + "Circuito": "1740 - COL. DOS ROSAS Y LA LEGUA" + }, + { + "IdCircuito": 1750, + "Circuito": "1750 - LA CABRAL" + }, + { + "IdCircuito": 1760, + "Circuito": "1760 - CAPIVARA" + }, + { + "IdCircuito": 1770, + "Circuito": "1770 - AGUARA" + }, + { + "IdCircuito": 1780, + "Circuito": "1780 - CERES" + }, + { + "IdCircuito": 1790, + "Circuito": "1790 - HERSILIA" + }, + { + "IdCircuito": 1800, + "Circuito": "1800 - AMBROSETTI" + }, + { + "IdCircuito": 1810, + "Circuito": "1810 - HUANQUEROS" + }, + { + "IdCircuito": 1815, + "Circuito": "1815 - LAS AVISPAS" + }, + { + "IdCircuito": 1820, + "Circuito": "1820 - SANTURCE" + }, + { + "IdCircuito": 1830, + "Circuito": "1830 - VILLA TRINIDAD" + }, + { + "IdCircuito": 1840, + "Circuito": "1840 - ARRUFO" + }, + { + "IdCircuito": 1850, + "Circuito": "1850 - SAN CRISTÓBAL" + }, + { + "IdCircuito": 1860, + "Circuito": "1860 - NANDUCITA" + }, + { + "IdCircuito": 1870, + "Circuito": "1870 - COLONIA ROSA" + }, + { + "IdCircuito": 1880, + "Circuito": "1880 - SAN GUILLERMO" + }, + { + "IdCircuito": 1890, + "Circuito": "1890 - MONIGOTES" + }, + { + "IdCircuito": 1910, + "Circuito": "1910 - SUARDI" + }, + { + "IdCircuito": 1920, + "Circuito": "1920 - CONSTANZA" + }, + { + "IdCircuito": 1930, + "Circuito": "1930 - MOISES VILLE" + }, + { + "IdCircuito": 1940, + "Circuito": "1940 - PALACIOS" + }, + { + "IdCircuito": 1950, + "Circuito": "1950 - SOLEDAD" + }, + { + "IdCircuito": 1960, + "Circuito": "1960 - VILLA SARALEGUI" + }, + { + "IdCircuito": 1964, + "Circuito": "1964 - MARIA EUGENIA" + }, + { + "IdCircuito": 1970, + "Circuito": "1970 - MONTE OSCURIDAD" + }, + { + "IdCircuito": 1980, + "Circuito": "1980 - PORTUGALETE" + }, + { + "IdCircuito": 1990, + "Circuito": "1990 - LA CLARA" + }, + { + "IdCircuito": 2000, + "Circuito": "2000 - LAS PALMERAS" + }, + { + "IdCircuito": 2010, + "Circuito": "2010 - LA RUBIA" + }, + { + "IdCircuito": 2020, + "Circuito": "2020 - CURUPAYTI" + }, + { + "IdCircuito": 2030, + "Circuito": "2030 - BOSSI" + }, + { + "IdCircuito": 2040, + "Circuito": "2040 - COLONIA ANA" + }, + { + "IdCircuito": 2050, + "Circuito": "2050 - LA LUCILA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c478", + "IdSeccion": 8, + "Seccion": "SAN JUSTO", + "Circuitos": [ + { + "IdCircuito": 2070, + "Circuito": "2070 - CAYASTACITO" + }, + { + "IdCircuito": 2080, + "Circuito": "2080 - VIDELA" + }, + { + "IdCircuito": 2084, + "Circuito": "2084 - ESTHER" + }, + { + "IdCircuito": 2086, + "Circuito": "2086 - ANGELONI" + }, + { + "IdCircuito": 2090, + "Circuito": "2090 - NARE" + }, + { + "IdCircuito": 2100, + "Circuito": "2100 - SAN JUSTO" + }, + { + "IdCircuito": 2105, + "Circuito": "2105 - SAN BERNARDO" + }, + { + "IdCircuito": 2110, + "Circuito": "2110 - RAMAYON" + }, + { + "IdCircuito": 2120, + "Circuito": "2120 - MARCELINO ESCALADA" + }, + { + "IdCircuito": 2125, + "Circuito": "2125 - COLONIA SILVA" + }, + { + "IdCircuito": 2130, + "Circuito": "2130 - GDOR. CRESPO" + }, + { + "IdCircuito": 2140, + "Circuito": "2140 - SAN MARTIN NORTE" + }, + { + "IdCircuito": 2145, + "Circuito": "2145 - COLONIA DOLORES" + }, + { + "IdCircuito": 2150, + "Circuito": "2150 - VERA Y PINTADO" + }, + { + "IdCircuito": 2155, + "Circuito": "2155 - LA CAMILA" + }, + { + "IdCircuito": 2160, + "Circuito": "2160 - LA CRIOLLA" + }, + { + "IdCircuito": 2165, + "Circuito": "2165 - COLONIA LA BLANCA" + }, + { + "IdCircuito": 2170, + "Circuito": "2170 - LA PENCA" + }, + { + "IdCircuito": 2180, + "Circuito": "2180 - PEDRO GOMEZ CELLO" + }, + { + "IdCircuito": 2190, + "Circuito": "2190 - LOS SALADILLOS (AP.MASC.)" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c479", + "IdSeccion": 9, + "Seccion": "GENERAL OBLIGADO", + "Circuitos": [ + { + "IdCircuito": 2200, + "Circuito": "2200 - LA LOLA" + }, + { + "IdCircuito": 2210, + "Circuito": "2210 - MALABRIGO" + }, + { + "IdCircuito": 2215, + "Circuito": "2215 - CAMPO RAMSEYER" + }, + { + "IdCircuito": 2220, + "Circuito": "2220 - BERNA" + }, + { + "IdCircuito": 2230, + "Circuito": "2230 - NICANOR E. MOLINAS" + }, + { + "IdCircuito": 2235, + "Circuito": "2235 - LA POTASA" + }, + { + "IdCircuito": 2240, + "Circuito": "2240 - RECONQUISTA (NORESTE)" + }, + { + "IdCircuito": 2242, + "Circuito": "2242 - RECONQUISTA (NOROESTE)" + }, + { + "IdCircuito": 2244, + "Circuito": "2244 - RECONQUISTA (SUROESTE)" + }, + { + "IdCircuito": 2246, + "Circuito": "2246 - RECONQUISTA (SURESTE)" + }, + { + "IdCircuito": 2248, + "Circuito": "2248 - PUERTO RECONQUISTA" + }, + { + "IdCircuito": 2249, + "Circuito": "2249 - BARROS PAZOS" + }, + { + "IdCircuito": 2250, + "Circuito": "2250 - AVELLANEDA" + }, + { + "IdCircuito": 2255, + "Circuito": "2255 - EL CARMEN" + }, + { + "IdCircuito": 2260, + "Circuito": "2260 - MOUSSY" + }, + { + "IdCircuito": 2270, + "Circuito": "2270 - LANTERI" + }, + { + "IdCircuito": 2272, + "Circuito": "2272 - ING. CHANOURDIE" + }, + { + "IdCircuito": 2274, + "Circuito": "2274 - LOS LAPACHOS" + }, + { + "IdCircuito": 2280, + "Circuito": "2280 - LAS GARZAS" + }, + { + "IdCircuito": 2290, + "Circuito": "2290 - EL SOMBRERITO" + }, + { + "IdCircuito": 2300, + "Circuito": "2300 - VILLA ANA" + }, + { + "IdCircuito": 2305, + "Circuito": "2305 - CAMPO REDONDO" + }, + { + "IdCircuito": 2310, + "Circuito": "2310 - VILLA ADELA" + }, + { + "IdCircuito": 2320, + "Circuito": "2320 - VILLA OCAMPO" + }, + { + "IdCircuito": 2325, + "Circuito": "2325 - LA RESERVA" + }, + { + "IdCircuito": 2330, + "Circuito": "2330 - TACUARENDI" + }, + { + "IdCircuito": 2340, + "Circuito": "2340 - SAN ANTONIO DE OBLIGADO" + }, + { + "IdCircuito": 2350, + "Circuito": "2350 - LAS TOSCAS" + }, + { + "IdCircuito": 2370, + "Circuito": "2370 - VILLA GUILLERMINA" + }, + { + "IdCircuito": 2380, + "Circuito": "2380 - EL RABON" + }, + { + "IdCircuito": 2390, + "Circuito": "2390 - FLORENCIA" + }, + { + "IdCircuito": 2395, + "Circuito": "2395 - COLONIA HARDY" + }, + { + "IdCircuito": 2400, + "Circuito": "2400 - COLONIA URDANIZ" + }, + { + "IdCircuito": 2410, + "Circuito": "2410 - KILOMETRO 41" + }, + { + "IdCircuito": 2420, + "Circuito": "2420 - GUADALUPE NORTE" + }, + { + "IdCircuito": 2440, + "Circuito": "2440 - LA VANGUARDIA" + }, + { + "IdCircuito": 2444, + "Circuito": "2444 - LA SARITA" + }, + { + "IdCircuito": 2446, + "Circuito": "2446 - COLONIA SAN MANUEL" + }, + { + "IdCircuito": 2450, + "Circuito": "2450 - ARROYO CEIBAL" + }, + { + "IdCircuito": 2460, + "Circuito": "2460 - LOS LAURELES" + }, + { + "IdCircuito": 2465, + "Circuito": "2465 - LAS PALMAS" + }, + { + "IdCircuito": 2470, + "Circuito": "2470 - EL ARAZA" + }, + { + "IdCircuito": 2480, + "Circuito": "2480 - FLOR DE ORO" + }, + { + "IdCircuito": 2490, + "Circuito": "2490 - VICTOR MANUEL II" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c47a", + "IdSeccion": 10, + "Seccion": "VERA", + "Circuitos": [ + { + "IdCircuito": 2510, + "Circuito": "2510 - CALCHAQUI" + }, + { + "IdCircuito": 2520, + "Circuito": "2520 - MARGARITA" + }, + { + "IdCircuito": 2525, + "Circuito": "2525 - PARAJE EL TOBA" + }, + { + "IdCircuito": 2530, + "Circuito": "2530 - LA GALLARETA" + }, + { + "IdCircuito": 2540, + "Circuito": "2540 - VERA" + }, + { + "IdCircuito": 2545, + "Circuito": "2545 - ESPIN" + }, + { + "IdCircuito": 2550, + "Circuito": "2550 - OGILVIE" + }, + { + "IdCircuito": 2560, + "Circuito": "2560 - TOBA" + }, + { + "IdCircuito": 2570, + "Circuito": "2570 - GARABATO" + }, + { + "IdCircuito": 2580, + "Circuito": "2580 - COLMENA" + }, + { + "IdCircuito": 2590, + "Circuito": "2590 - INTIYACO" + }, + { + "IdCircuito": 2600, + "Circuito": "2600 - TARTAGAL" + }, + { + "IdCircuito": 2610, + "Circuito": "2610 - GOLONDRINA" + }, + { + "IdCircuito": 2620, + "Circuito": "2620 - CANADA OMBU" + }, + { + "IdCircuito": 2630, + "Circuito": "2630 - LOS AMORES" + }, + { + "IdCircuito": 2640, + "Circuito": "2640 - SANTA LUCIA" + }, + { + "IdCircuito": 2670, + "Circuito": "2670 - CARAGUATAY" + }, + { + "IdCircuito": 2680, + "Circuito": "2680 - FORTIN OLMOS" + }, + { + "IdCircuito": 2682, + "Circuito": "2682 - POZO DE LOS INDIOS" + }, + { + "IdCircuito": 2684, + "Circuito": "2684 - PARAJE 29" + }, + { + "IdCircuito": 2690, + "Circuito": "2690 - LOS TABANOS" + }, + { + "IdCircuito": 2700, + "Circuito": "2700 - SANTA FELICIA" + }, + { + "IdCircuito": 2710, + "Circuito": "2710 - KILOMETRO 302" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c47b", + "IdSeccion": 11, + "Seccion": "SAN JAVIER", + "Circuitos": [ + { + "IdCircuito": 2740, + "Circuito": "2740 - CACIQUE ARIACAIQUIN" + }, + { + "IdCircuito": 2750, + "Circuito": "2750 - SAN JAVIER" + }, + { + "IdCircuito": 2755, + "Circuito": "2755 - COLONIA TERESA" + }, + { + "IdCircuito": 2758, + "Circuito": "2758 - COLONIA FRANCESA" + }, + { + "IdCircuito": 2760, + "Circuito": "2760 - ALEJANDRA" + }, + { + "IdCircuito": 2762, + "Circuito": "2762 - LA MARIA" + }, + { + "IdCircuito": 2764, + "Circuito": "2764 - LOS CORRALITOS" + }, + { + "IdCircuito": 2766, + "Circuito": "2766 - LOS JACINTOS" + }, + { + "IdCircuito": 2770, + "Circuito": "2770 - ROMANG" + }, + { + "IdCircuito": 2772, + "Circuito": "2772 - LA LOMA" + }, + { + "IdCircuito": 2774, + "Circuito": "2774 - NUEVA ROMANG" + }, + { + "IdCircuito": 2780, + "Circuito": "2780 - COSTA DEL TOBA" + }, + { + "IdCircuito": 2790, + "Circuito": "2790 - LA BRAVA" + }, + { + "IdCircuito": 2800, + "Circuito": "2800 - COLONIA DURAN" + }, + { + "IdCircuito": 2810, + "Circuito": "2810 - LAS CATALINAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c47c", + "IdSeccion": 12, + "Seccion": "9 DE JULIO", + "Circuitos": [ + { + "IdCircuito": 2830, + "Circuito": "2830 - ESTEBAN RAMS" + }, + { + "IdCircuito": 2840, + "Circuito": "2840 - LOGRONO" + }, + { + "IdCircuito": 2850, + "Circuito": "2850 - TOSTADO" + }, + { + "IdCircuito": 2852, + "Circuito": "2852 - POZO BORRADO" + }, + { + "IdCircuito": 2854, + "Circuito": "2854 - BARRIO SAN GENARO" + }, + { + "IdCircuito": 2860, + "Circuito": "2860 - MOGOTES" + }, + { + "IdCircuito": 2870, + "Circuito": "2870 - SAN BERNARDO" + }, + { + "IdCircuito": 2890, + "Circuito": "2890 - G. PEREZ DE DENIS" + }, + { + "IdCircuito": 2900, + "Circuito": "2900 - MONTEFIORE" + }, + { + "IdCircuito": 2910, + "Circuito": "2910 - VILLA MINETTI" + }, + { + "IdCircuito": 2920, + "Circuito": "2920 - GATO COLORADO" + }, + { + "IdCircuito": 2930, + "Circuito": "2930 - SANTA MARGARITA" + }, + { + "IdCircuito": 2940, + "Circuito": "2940 - CAMPO GARAY" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c47d", + "IdSeccion": 13, + "Seccion": "ROSARIO", + "Circuitos": [ + { + "IdCircuito": 3010, + "Circuito": "3010 - ROSARIO SEC. 1A" + }, + { + "IdCircuito": 3015, + "Circuito": "3015 - ROSARIO SEC. 1A" + }, + { + "IdCircuito": 3020, + "Circuito": "3020 - ROSARIO SEC. 1A" + }, + { + "IdCircuito": 3025, + "Circuito": "3025 - ROSARIO SEC. 1A" + }, + { + "IdCircuito": 3030, + "Circuito": "3030 - ROSARIO SEC. 1A" + }, + { + "IdCircuito": 3035, + "Circuito": "3035 - ROSARIO SEC. 3A" + }, + { + "IdCircuito": 3040, + "Circuito": "3040 - ROSARIO SEC. 3A" + }, + { + "IdCircuito": 3045, + "Circuito": "3045 - ROSARIO SEC. 3A" + }, + { + "IdCircuito": 3050, + "Circuito": "3050 - ROSARIO SEC. 2A" + }, + { + "IdCircuito": 3055, + "Circuito": "3055 - ROSARIO SEC. 2A" + }, + { + "IdCircuito": 3060, + "Circuito": "3060 - ROSARIO SEC. 2A" + }, + { + "IdCircuito": 3065, + "Circuito": "3065 - ROSARIO SEC. 2A" + }, + { + "IdCircuito": 3070, + "Circuito": "3070 - ROSARIO SEC. 2A" + }, + { + "IdCircuito": 3075, + "Circuito": "3075 - ROSARIO SEC. 3A" + }, + { + "IdCircuito": 3080, + "Circuito": "3080 - ROSARIO SEC. 3A" + }, + { + "IdCircuito": 3085, + "Circuito": "3085 - ROSARIO SEC. 3A" + }, + { + "IdCircuito": 3090, + "Circuito": "3090 - ROSARIO SEC. 3A" + }, + { + "IdCircuito": 3095, + "Circuito": "3095 - ROSARIO SEC. 2A" + }, + { + "IdCircuito": 3100, + "Circuito": "3100 - ROSARIO SEC. 2A" + }, + { + "IdCircuito": 3105, + "Circuito": "3105 - ROSARIO SEC. 2A" + }, + { + "IdCircuito": 3110, + "Circuito": "3110 - ROSARIO SEC. 2A" + }, + { + "IdCircuito": 3115, + "Circuito": "3115 - ROSARIO SEC. 4A" + }, + { + "IdCircuito": 3120, + "Circuito": "3120 - ROSARIO SEC. 4A" + }, + { + "IdCircuito": 3125, + "Circuito": "3125 - ROSARIO SEC. 4A" + }, + { + "IdCircuito": 3130, + "Circuito": "3130 - ROSARIO SEC. 4A" + }, + { + "IdCircuito": 3135, + "Circuito": "3135 - ROSARIO SEC. 5A" + }, + { + "IdCircuito": 3140, + "Circuito": "3140 - ROSARIO SEC. 5A" + }, + { + "IdCircuito": 3145, + "Circuito": "3145 - ROSARIO SEC. 5A" + }, + { + "IdCircuito": 3150, + "Circuito": "3150 - ROSARIO SEC. 5A" + }, + { + "IdCircuito": 3155, + "Circuito": "3155 - ROSARIO SEC. 6A" + }, + { + "IdCircuito": 3160, + "Circuito": "3160 - ROSARIO SEC. 6A" + }, + { + "IdCircuito": 3165, + "Circuito": "3165 - ROSARIO SEC. 6A" + }, + { + "IdCircuito": 3170, + "Circuito": "3170 - ROSARIO SEC. 6A" + }, + { + "IdCircuito": 3175, + "Circuito": "3175 - ROSARIO SEC. 6A" + }, + { + "IdCircuito": 3180, + "Circuito": "3180 - ROSARIO SEC. 7A" + }, + { + "IdCircuito": 3185, + "Circuito": "3185 - ROSARIO SEC. 7A" + }, + { + "IdCircuito": 3190, + "Circuito": "3190 - ROSARIO SEC. 7A" + }, + { + "IdCircuito": 3195, + "Circuito": "3195 - ROSARIO SEC. 7A" + }, + { + "IdCircuito": 3200, + "Circuito": "3200 - ROSARIO SEC. 8A" + }, + { + "IdCircuito": 3205, + "Circuito": "3205 - ROSARIO SEC. 8A" + }, + { + "IdCircuito": 3212, + "Circuito": "3212 - ROSARIO (ALBERDI SUR)" + }, + { + "IdCircuito": 3214, + "Circuito": "3214 - ROSARIO (PARQUE FIELD)" + }, + { + "IdCircuito": 3222, + "Circuito": "3222 - ROSARIO (ALBERDI NORTE)" + }, + { + "IdCircuito": 3224, + "Circuito": "3224 - ROSARIO (RUCCI)" + }, + { + "IdCircuito": 3232, + "Circuito": "3232 - ROSARIO (CERAMICA Y CUYO OESTE)" + }, + { + "IdCircuito": 3234, + "Circuito": "3234 - ROSARIO (CERAMICA Y CUYO ESTE)" + }, + { + "IdCircuito": 3242, + "Circuito": "3242 - ROSARIO (LISANDRO DE LA TORRE OESTE)" + }, + { + "IdCircuito": 3244, + "Circuito": "3244 - ROSARIO (LISANDRO DE LA TORRE ESTE)" + }, + { + "IdCircuito": 3252, + "Circuito": "3252 - ROSARIO (LARREA Y EMPALME GRANER" + }, + { + "IdCircuito": 3254, + "Circuito": "3254 - ROSARIO (LARREA Y EMPALME GRANER" + }, + { + "IdCircuito": 3261, + "Circuito": "3261 - ROSARIO (BELGRANO NORTE)" + }, + { + "IdCircuito": 3262, + "Circuito": "3262 - ROSARIO (BELGRANO SUR)" + }, + { + "IdCircuito": 3264, + "Circuito": "3264 - ROSARIO (URQUIZA NORTE)" + }, + { + "IdCircuito": 3266, + "Circuito": "3266 - ROSARIO (ANTARTIDA ARGENTINA NORTE)" + }, + { + "IdCircuito": 3268, + "Circuito": "3268 - ROSARIO (ANTARTIDA ARGENTINA SUR)" + }, + { + "IdCircuito": 3272, + "Circuito": "3272 - ROSARIO (URQUIZA SUR)" + }, + { + "IdCircuito": 3274, + "Circuito": "3274 - ROSARIO (GODOY)" + }, + { + "IdCircuito": 3281, + "Circuito": "3281 - ROSARIO (ROQUE SAENZ PENA SUR)" + }, + { + "IdCircuito": 3282, + "Circuito": "3282 - ROSARIO (ROQUE SAENZ PENA NORTE)" + }, + { + "IdCircuito": 3284, + "Circuito": "3284 - ROSARIO (SALADILLO SUR)" + }, + { + "IdCircuito": 3286, + "Circuito": "3286 - ROSARIO (SALADILLO NORTE)" + }, + { + "IdCircuito": 3292, + "Circuito": "3292 - ROSARIO (BELLA VISTA NORTE)" + }, + { + "IdCircuito": 3294, + "Circuito": "3294 - ROSARIO (CINCO ESQUINAS)" + }, + { + "IdCircuito": 3301, + "Circuito": "3301 - ROSARIO (BELLA VISTA SUR)" + }, + { + "IdCircuito": 3302, + "Circuito": "3302 - ROSARIO (ALVEAR NORTE)" + }, + { + "IdCircuito": 3304, + "Circuito": "3304 - ROSARIO (ALVEAR SUR)" + }, + { + "IdCircuito": 3306, + "Circuito": "3306 - ROSARIO (MERCEDES DE SAN MARTIN)" + }, + { + "IdCircuito": 3312, + "Circuito": "3312 - ROSARIO (TRIANGULO Y MODERNO OESTE)" + }, + { + "IdCircuito": 3314, + "Circuito": "3314 - ROSARIO (TRIANGULO Y MODERNO SUR)" + }, + { + "IdCircuito": 3320, + "Circuito": "3320 - ROSARIO SEC. 19A TRIANGULO" + }, + { + "IdCircuito": 3342, + "Circuito": "3342 - ROSARIO (LUDUENA SUR)" + }, + { + "IdCircuito": 3344, + "Circuito": "3344 - ROSARIO (LUDUENA NORTE)" + }, + { + "IdCircuito": 3346, + "Circuito": "3346 - ROSARIO (LUDUENA ESTE)" + }, + { + "IdCircuito": 3351, + "Circuito": "3351 - ROSARIO (LARREA)" + }, + { + "IdCircuito": 3352, + "Circuito": "3352 - ROSARIO (FISHERTON SURESTE)" + }, + { + "IdCircuito": 3354, + "Circuito": "3354 - ROSARIO (FISHERTON SUROESTE)" + }, + { + "IdCircuito": 3356, + "Circuito": "3356 - ROSARIO (FISHERTON NORESTE)" + }, + { + "IdCircuito": 3358, + "Circuito": "3358 - ROSARIO (FISHERTON NOROESTE)" + }, + { + "IdCircuito": 3360, + "Circuito": "3360 - ROSARIO SEC.16A S.MARTIN" + }, + { + "IdCircuito": 3370, + "Circuito": "3370 - ROSARIO SEC.16A S.MARTIN" + }, + { + "IdCircuito": 3382, + "Circuito": "3382 - ROSARIO (SARMIENTO OESTE)" + }, + { + "IdCircuito": 3384, + "Circuito": "3384 - ROSARIO (SARMIENTO ESTE)" + }, + { + "IdCircuito": 3392, + "Circuito": "3392 - ROSARIO (MATHEU)" + }, + { + "IdCircuito": 3394, + "Circuito": "3394 - ROSARIO (JORGE CURA)" + }, + { + "IdCircuito": 3396, + "Circuito": "3396 - ROSARIO (TIRO SUIZO)" + }, + { + "IdCircuito": 3402, + "Circuito": "3402 - ROSARIO (LAS FLORES)" + }, + { + "IdCircuito": 3404, + "Circuito": "3404 - ROSARIO (14 DE OCTUBRE OESTE)" + }, + { + "IdCircuito": 3406, + "Circuito": "3406 - ROSARIO (14 DE OCTUBRE ESTE)" + }, + { + "IdCircuito": 3410, + "Circuito": "3410 - ACEBAL" + }, + { + "IdCircuito": 3415, + "Circuito": "3415 - PUEBLO MUNOZ" + }, + { + "IdCircuito": 3420, + "Circuito": "3420 - ARMINDA" + }, + { + "IdCircuito": 3430, + "Circuito": "3430 - ALVAREZ" + }, + { + "IdCircuito": 3435, + "Circuito": "3435 - PINERO" + }, + { + "IdCircuito": 3450, + "Circuito": "3450 - ARROYO SECO" + }, + { + "IdCircuito": 3455, + "Circuito": "3455 - FIGHIERA" + }, + { + "IdCircuito": 3500, + "Circuito": "3500 - CARMEN DEL SAUCE" + }, + { + "IdCircuito": 3505, + "Circuito": "3505 - URANGA" + }, + { + "IdCircuito": 3510, + "Circuito": "3510 - CORONEL BOGADO" + }, + { + "IdCircuito": 3515, + "Circuito": "3515 - ALBARELLOS" + }, + { + "IdCircuito": 3520, + "Circuito": "3520 - FUNES" + }, + { + "IdCircuito": 3550, + "Circuito": "3550 - GDERO. BAIGORRIA" + }, + { + "IdCircuito": 3555, + "Circuito": "3555 - IBARLUCEA" + }, + { + "IdCircuito": 3560, + "Circuito": "3560 - PEREZ" + }, + { + "IdCircuito": 3565, + "Circuito": "3565 - BARRIO CABIN NUEVE" + }, + { + "IdCircuito": 3570, + "Circuito": "3570 - SOLDINI" + }, + { + "IdCircuito": 3580, + "Circuito": "3580 - VILLA AMELIA" + }, + { + "IdCircuito": 3585, + "Circuito": "3585 - CORONEL DOMINGUEZ" + }, + { + "IdCircuito": 3600, + "Circuito": "3600 - VILLA GDOR. GALVEZ (NORTE)" + }, + { + "IdCircuito": 3602, + "Circuito": "3602 - VILLA GDOR. GALVEZ (ESTE)" + }, + { + "IdCircuito": 3604, + "Circuito": "3604 - VILLA GDOR. GALVEZ (OESTE)" + }, + { + "IdCircuito": 3610, + "Circuito": "3610 - ALVEAR" + }, + { + "IdCircuito": 3615, + "Circuito": "3615 - GENERAL LAGOS" + }, + { + "IdCircuito": 3620, + "Circuito": "3620 - PUEBLO ESTHER" + }, + { + "IdCircuito": 3625, + "Circuito": "3625 - ZAVALLA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c47e", + "IdSeccion": 14, + "Seccion": "CASEROS", + "Circuitos": [ + { + "IdCircuito": 3640, + "Circuito": "3640 - AREQUITO" + }, + { + "IdCircuito": 3650, + "Circuito": "3650 - ARTEAGA" + }, + { + "IdCircuito": 3660, + "Circuito": "3660 - BERABEVU" + }, + { + "IdCircuito": 3670, + "Circuito": "3670 - BIGAND" + }, + { + "IdCircuito": 3682, + "Circuito": "3682 - CASILDA SUR" + }, + { + "IdCircuito": 3684, + "Circuito": "3684 - CASILDA NORTE" + }, + { + "IdCircuito": 3690, + "Circuito": "3690 - VILLADA" + }, + { + "IdCircuito": 3700, + "Circuito": "3700 - CHABAS" + }, + { + "IdCircuito": 3710, + "Circuito": "3710 - CHANAR LADEADO" + }, + { + "IdCircuito": 3720, + "Circuito": "3720 - GODEKEN" + }, + { + "IdCircuito": 3730, + "Circuito": "3730 - LOS MOLINOS" + }, + { + "IdCircuito": 3740, + "Circuito": "3740 - LOS QUIRQUINCHOS" + }, + { + "IdCircuito": 3750, + "Circuito": "3750 - SAN JOSE DE LA ESQUINA" + }, + { + "IdCircuito": 3755, + "Circuito": "3755 - LOS NOGALES" + }, + { + "IdCircuito": 3760, + "Circuito": "3760 - SANFORD" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c47f", + "IdSeccion": 15, + "Seccion": "CONSTITUCIÓN", + "Circuitos": [ + { + "IdCircuito": 3770, + "Circuito": "3770 - ALCORTA" + }, + { + "IdCircuito": 3772, + "Circuito": "3772 - BOMBAL" + }, + { + "IdCircuito": 3774, + "Circuito": "3774 - JUNCAL" + }, + { + "IdCircuito": 3780, + "Circuito": "3780 - LA VANGUARDIA" + }, + { + "IdCircuito": 3782, + "Circuito": "3782 - GODOY" + }, + { + "IdCircuito": 3784, + "Circuito": "3784 - CEPEDA" + }, + { + "IdCircuito": 3786, + "Circuito": "3786 - SARGENTO CABRAL" + }, + { + "IdCircuito": 3788, + "Circuito": "3788 - RUEDA" + }, + { + "IdCircuito": 3790, + "Circuito": "3790 - JUAN B. MOLINA" + }, + { + "IdCircuito": 3792, + "Circuito": "3792 - GENERAL GELLY" + }, + { + "IdCircuito": 3794, + "Circuito": "3794 - CANADA RICA" + }, + { + "IdCircuito": 3800, + "Circuito": "3800 - MAXIMO PAZ" + }, + { + "IdCircuito": 3810, + "Circuito": "3810 - PAVON ARRIBA" + }, + { + "IdCircuito": 3820, + "Circuito": "3820 - PEYRANO" + }, + { + "IdCircuito": 3830, + "Circuito": "3830 - SANTA TERESA" + }, + { + "IdCircuito": 3841, + "Circuito": "3841 - VILLA CONSTITUCIÓN NORTE" + }, + { + "IdCircuito": 3842, + "Circuito": "3842 - VILLA CONSTITUCIÓN SUR" + }, + { + "IdCircuito": 3843, + "Circuito": "3843 - VILLA CONSTITUCIÓN OESTE" + }, + { + "IdCircuito": 3845, + "Circuito": "3845 - EMP. VILLA CONSTITUCIÓN" + }, + { + "IdCircuito": 3846, + "Circuito": "3846 - PAVON" + }, + { + "IdCircuito": 3848, + "Circuito": "3848 - THEOBALD" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c480", + "IdSeccion": 16, + "Seccion": "GENERAL LÓPEZ", + "Circuitos": [ + { + "IdCircuito": 3850, + "Circuito": "3850 - CAFFERATTA" + }, + { + "IdCircuito": 3852, + "Circuito": "3852 - SAN FCO. DE SANTA FE" + }, + { + "IdCircuito": 3854, + "Circuito": "3854 - LA CHISPA" + }, + { + "IdCircuito": 3860, + "Circuito": "3860 - CARMEN" + }, + { + "IdCircuito": 3862, + "Circuito": "3862 - CHAPUY" + }, + { + "IdCircuito": 3864, + "Circuito": "3864 - MURPHY" + }, + { + "IdCircuito": 3870, + "Circuito": "3870 - CARRERAS" + }, + { + "IdCircuito": 3880, + "Circuito": "3880 - DIEGO DE ALVEAR" + }, + { + "IdCircuito": 3885, + "Circuito": "3885 - AARON CASTELLANOS" + }, + { + "IdCircuito": 3890, + "Circuito": "3890 - ELORTONDO" + }, + { + "IdCircuito": 3900, + "Circuito": "3900 - FIRMAT" + }, + { + "IdCircuito": 3904, + "Circuito": "3904 - CHOVET" + }, + { + "IdCircuito": 3906, + "Circuito": "3906 - CANADA DEL UCLE" + }, + { + "IdCircuito": 3908, + "Circuito": "3908 - MIGUEL TORRES" + }, + { + "IdCircuito": 3910, + "Circuito": "3910 - LAZZARINO" + }, + { + "IdCircuito": 3915, + "Circuito": "3915 - AMENABAR" + }, + { + "IdCircuito": 3920, + "Circuito": "3920 - MAGGIOLO" + }, + { + "IdCircuito": 3930, + "Circuito": "3930 - MELINCUE" + }, + { + "IdCircuito": 3935, + "Circuito": "3935 - LABORDEBOY" + }, + { + "IdCircuito": 3940, + "Circuito": "3940 - RUFINO" + }, + { + "IdCircuito": 3950, + "Circuito": "3950 - SAN EDUARDO" + }, + { + "IdCircuito": 3955, + "Circuito": "3955 - SANCTI SPIRITU" + }, + { + "IdCircuito": 3960, + "Circuito": "3960 - SAN GREGORIO" + }, + { + "IdCircuito": 3965, + "Circuito": "3965 - CHRISTOPHERSEN" + }, + { + "IdCircuito": 3970, + "Circuito": "3970 - SANTA ISABEL" + }, + { + "IdCircuito": 3975, + "Circuito": "3975 - MARIA TERESA" + }, + { + "IdCircuito": 3980, + "Circuito": "3980 - TEODELINA" + }, + { + "IdCircuito": 3990, + "Circuito": "3990 - VENADO TUERTO (OESTE)" + }, + { + "IdCircuito": 3992, + "Circuito": "3992 - VENADO TUERTO (NORTE)" + }, + { + "IdCircuito": 3994, + "Circuito": "3994 - VENADO TUERTO (ESTE)" + }, + { + "IdCircuito": 3996, + "Circuito": "3996 - VENADO TUERTO (SUR)" + }, + { + "IdCircuito": 4000, + "Circuito": "4000 - VILLA CANAS" + }, + { + "IdCircuito": 4010, + "Circuito": "4010 - WHEELWRIGHT" + }, + { + "IdCircuito": 4015, + "Circuito": "4015 - HUGHES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c481", + "IdSeccion": 17, + "Seccion": "BELGRANO", + "Circuitos": [ + { + "IdCircuito": 4020, + "Circuito": "4020 - ARMSTRONG" + }, + { + "IdCircuito": 4030, + "Circuito": "4030 - LAS PAREJAS" + }, + { + "IdCircuito": 4040, + "Circuito": "4040 - LAS ROSAS" + }, + { + "IdCircuito": 4045, + "Circuito": "4045 - BOUQUET" + }, + { + "IdCircuito": 4050, + "Circuito": "4050 - MONTES DE OCA" + }, + { + "IdCircuito": 4060, + "Circuito": "4060 - TORTUGAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c482", + "IdSeccion": 18, + "Seccion": "IRIONDO", + "Circuitos": [ + { + "IdCircuito": 4070, + "Circuito": "4070 - BUSTINZA" + }, + { + "IdCircuito": 4080, + "Circuito": "4080 - CANADA DE GOMEZ" + }, + { + "IdCircuito": 4090, + "Circuito": "4090 - CARRIZALES" + }, + { + "IdCircuito": 4100, + "Circuito": "4100 - CORREA" + }, + { + "IdCircuito": 4110, + "Circuito": "4110 - SALTO GRANDE" + }, + { + "IdCircuito": 4115, + "Circuito": "4115 - LUCIO V. LOPEZ" + }, + { + "IdCircuito": 4120, + "Circuito": "4120 - OLIVEROS" + }, + { + "IdCircuito": 4130, + "Circuito": "4130 - TOTORAS" + }, + { + "IdCircuito": 4132, + "Circuito": "4132 - CLASON" + }, + { + "IdCircuito": 4134, + "Circuito": "4134 - LARGUIA" + }, + { + "IdCircuito": 4140, + "Circuito": "4140 - SERODINO" + }, + { + "IdCircuito": 4145, + "Circuito": "4145 - ANDINO" + }, + { + "IdCircuito": 4150, + "Circuito": "4150 - VILLA ELOISA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c483", + "IdSeccion": 19, + "Seccion": "SAN LORENZO", + "Circuitos": [ + { + "IdCircuito": 4160, + "Circuito": "4160 - CARCARANA" + }, + { + "IdCircuito": 4170, + "Circuito": "4170 - MAIZALES" + }, + { + "IdCircuito": 4172, + "Circuito": "4172 - FUENTES" + }, + { + "IdCircuito": 4174, + "Circuito": "4174 - VILLA MUGUETA" + }, + { + "IdCircuito": 4180, + "Circuito": "4180 - TIMBUES" + }, + { + "IdCircuito": 4185, + "Circuito": "4185 - ALDAO" + }, + { + "IdCircuito": 4190, + "Circuito": "4190 - LUIS PALACIOS (LA SALADA)" + }, + { + "IdCircuito": 4200, + "Circuito": "4200 - FRAY LUIS BELTRAN" + }, + { + "IdCircuito": 4205, + "Circuito": "4205 - CAPITAN BERMUDEZ" + }, + { + "IdCircuito": 4210, + "Circuito": "4210 - PUERTO SAN MARTIN" + }, + { + "IdCircuito": 4220, + "Circuito": "4220 - PUJATO" + }, + { + "IdCircuito": 4224, + "Circuito": "4224 - CORONEL ARNOLD" + }, + { + "IdCircuito": 4230, + "Circuito": "4230 - ROLDAN" + }, + { + "IdCircuito": 4240, + "Circuito": "4240 - SAN JERONIMO SUR" + }, + { + "IdCircuito": 4245, + "Circuito": "4245 - RICARDONE" + }, + { + "IdCircuito": 4250, + "Circuito": "4250 - SAN LORENZO" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c484", + "IdDistrito": 22, + "Distrito": "SANTIAGO DEL ESTERO", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c485", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c486", + "IdSeccion": 1, + "Seccion": "CAPITAL", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": "1 - NORTE" + }, + { + "IdCircuito": 2, + "Circuito": "2 - OESTE" + }, + { + "IdCircuito": 3, + "Circuito": "3 - TRIBUNALES" + }, + { + "IdCircuito": 4, + "Circuito": "4 - GRAL.PAZ" + }, + { + "IdCircuito": 5, + "Circuito": "5 - ESTE" + }, + { + "IdCircuito": 6, + "Circuito": "6 - SUD" + }, + { + "IdCircuito": 7, + "Circuito": "7 - BELGRANO" + }, + { + "IdCircuito": 8, + "Circuito": "8 - SAN MARTIN" + }, + { + "IdCircuito": 9, + "Circuito": "9 - LOS FLORES" + }, + { + "IdCircuito": 10, + "Circuito": "10 - EL DEAN" + }, + { + "IdCircuito": 11, + "Circuito": "11 - REMES" + }, + { + "IdCircuito": 12, + "Circuito": "12 - SOL DE MAYO" + }, + { + "IdCircuito": 13, + "Circuito": "13 - SAN BENITO" + }, + { + "IdCircuito": 14, + "Circuito": "14 - SANTA MARIA" + }, + { + "IdCircuito": 15, + "Circuito": "15 - VUELTA DE LA BARRANCA" + }, + { + "IdCircuito": 16, + "Circuito": "16 - SAN PEDRO" + }, + { + "IdCircuito": 17, + "Circuito": "17 - ZANJON" + }, + { + "IdCircuito": 18, + "Circuito": "18 - MACO" + }, + { + "IdCircuito": "0002A", + "Circuito": "2A - LIBERTAD" + }, + { + "IdCircuito": "0003A", + "Circuito": "3A - CENTENARIO" + }, + { + "IdCircuito": "0004A", + "Circuito": "4A - BORGES" + }, + { + "IdCircuito": "0004B", + "Circuito": "4B - TARAPAYA" + }, + { + "IdCircuito": "0007A", + "Circuito": "7A - INDEPENDECIA" + }, + { + "IdCircuito": "0007B", + "Circuito": "7B - CHUMILLO" + }, + { + "IdCircuito": "0007C", + "Circuito": "7C - CAMPO CONTRERAS" + }, + { + "IdCircuito": "0008A", + "Circuito": "8A - VILLA DEL CARMEN" + }, + { + "IdCircuito": "0008B", + "Circuito": "8B - VINALAR" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c487", + "IdSeccion": 2, + "Seccion": "AVELLANEDA", + "Circuitos": [ + { + "IdCircuito": 19, + "Circuito": "19 - PUNTA POZO" + }, + { + "IdCircuito": 20, + "Circuito": "20 - COLONIA DORA" + }, + { + "IdCircuito": 21, + "Circuito": "21 - HERRERA" + }, + { + "IdCircuito": 22, + "Circuito": "22 - COPO" + }, + { + "IdCircuito": 23, + "Circuito": "23 - ICANO" + }, + { + "IdCircuito": 24, + "Circuito": "24 - LUGONES" + }, + { + "IdCircuito": 25, + "Circuito": "25 - PERCAS" + }, + { + "IdCircuito": 26, + "Circuito": "26 - MAILIN" + }, + { + "IdCircuito": 27, + "Circuito": "27 - REAL SAYANA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c488", + "IdSeccion": 3, + "Seccion": "AGUIRRE", + "Circuitos": [ + { + "IdCircuito": 28, + "Circuito": "28 - CASARES" + }, + { + "IdCircuito": 29, + "Circuito": "29 - MALBRAN" + }, + { + "IdCircuito": 30, + "Circuito": "30 - ARGENTINA" + }, + { + "IdCircuito": 31, + "Circuito": "31 - PINTO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c489", + "IdSeccion": 4, + "Seccion": "ALBERDI", + "Circuitos": [ + { + "IdCircuito": 32, + "Circuito": "32 - HUACHANA" + }, + { + "IdCircuito": 33, + "Circuito": "33 - ESTEROS" + }, + { + "IdCircuito": 34, + "Circuito": "34 - CAMPO GALLO" + }, + { + "IdCircuito": 35, + "Circuito": "35 - DONADEU" + }, + { + "IdCircuito": 36, + "Circuito": "36 - SACHAYOJ" + }, + { + "IdCircuito": "0033A", + "Circuito": "33A - POZO LIMPIO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c48a", + "IdSeccion": 5, + "Seccion": "ATAMISQUI", + "Circuitos": [ + { + "IdCircuito": 37, + "Circuito": "37 - ATAMISQUI" + }, + { + "IdCircuito": 38, + "Circuito": "38 - ESTACION ATAMISQUI" + }, + { + "IdCircuito": 39, + "Circuito": "39 - JUANILLO" + }, + { + "IdCircuito": 40, + "Circuito": "40 - HOYON" + }, + { + "IdCircuito": 41, + "Circuito": "41 - CHILCAS" + }, + { + "IdCircuito": 42, + "Circuito": "42 - MEDELLIN" + }, + { + "IdCircuito": "0040A", + "Circuito": "40A - GUANACO SOMBREANA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c48b", + "IdSeccion": 6, + "Seccion": "BANDA", + "Circuitos": [ + { + "IdCircuito": 43, + "Circuito": "43 - OESTE" + }, + { + "IdCircuito": 44, + "Circuito": "44 - ESTE" + }, + { + "IdCircuito": 45, + "Circuito": "45 - EL POLEAR" + }, + { + "IdCircuito": 46, + "Circuito": "46 - EL ALAMBRADO" + }, + { + "IdCircuito": 47, + "Circuito": "47 - LA DARSENA" + }, + { + "IdCircuito": 48, + "Circuito": "48 - LA ISLA" + }, + { + "IdCircuito": 49, + "Circuito": "49 - LA AURORA" + }, + { + "IdCircuito": 50, + "Circuito": "50 - ANTAJE" + }, + { + "IdCircuito": 51, + "Circuito": "51 - EL AIBE" + }, + { + "IdCircuito": 52, + "Circuito": "52 - CLODOMIRA" + }, + { + "IdCircuito": 53, + "Circuito": "53 - BAJO GRANDE" + }, + { + "IdCircuito": 54, + "Circuito": "54 - NEGRA MUERTA" + }, + { + "IdCircuito": 55, + "Circuito": "55 - CHAUPI POZO" + }, + { + "IdCircuito": 56, + "Circuito": "56 - ARDILES" + }, + { + "IdCircuito": 57, + "Circuito": "57 - ABRA GRANDE" + }, + { + "IdCircuito": 58, + "Circuito": "58 - SIMBOLAR" + }, + { + "IdCircuito": 59, + "Circuito": "59 - NUEVO LIBANO" + }, + { + "IdCircuito": 60, + "Circuito": "60 - CUYOJ" + }, + { + "IdCircuito": 61, + "Circuito": "61 - TRAMO 26" + }, + { + "IdCircuito": 62, + "Circuito": "62 - SURI POZO" + }, + { + "IdCircuito": 63, + "Circuito": "63 - TRAMO 20" + }, + { + "IdCircuito": 64, + "Circuito": "64 - CANADA ESCOBAR" + }, + { + "IdCircuito": 65, + "Circuito": "65 - ACOSTA" + }, + { + "IdCircuito": 66, + "Circuito": "66 - LOS QUIROGA" + }, + { + "IdCircuito": "0049A", + "Circuito": "49A - AHI VEREMOS" + }, + { + "IdCircuito": "0053A", + "Circuito": "53A - EL FAVORITO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c48c", + "IdSeccion": 7, + "Seccion": "BELGRANO", + "Circuitos": [ + { + "IdCircuito": 67, + "Circuito": "67 - BANDERA" + }, + { + "IdCircuito": 68, + "Circuito": "68 - FORTIN INCA" + }, + { + "IdCircuito": 69, + "Circuito": "69 - GUARDIA ESCOLTA" + }, + { + "IdCircuito": "0067A", + "Circuito": "67A - CUATRO BOCAS" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c48d", + "IdSeccion": 8, + "Seccion": "COPO", + "Circuitos": [ + { + "IdCircuito": 70, + "Circuito": "70 - VILLA MATOQUE" + }, + { + "IdCircuito": 71, + "Circuito": "71 - MONTE QUEMADO" + }, + { + "IdCircuito": 72, + "Circuito": "72 - PAMPA DE LOS GUANACOS" + }, + { + "IdCircuito": 73, + "Circuito": "73 - SAN JOSE DEL BOQUERON" + }, + { + "IdCircuito": "0070A", + "Circuito": "70A - AHI VEREMOS" + }, + { + "IdCircuito": "0072A", + "Circuito": "72A - LOS PIRPINTOS" + }, + { + "IdCircuito": "0072B", + "Circuito": "72B - EL CABURE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c48e", + "IdSeccion": 9, + "Seccion": "CHOYA", + "Circuitos": [ + { + "IdCircuito": 74, + "Circuito": "74 - VILLA LA PUNTA" + }, + { + "IdCircuito": 75, + "Circuito": "75 - SINCHI CANA" + }, + { + "IdCircuito": 76, + "Circuito": "76 - SOL DE MAYO" + }, + { + "IdCircuito": 77, + "Circuito": "77 - FRIAS" + }, + { + "IdCircuito": 78, + "Circuito": "78 - LAPRIDA" + }, + { + "IdCircuito": 79, + "Circuito": "79 - SHISHI POZO" + }, + { + "IdCircuito": 80, + "Circuito": "80 - EL 55" + }, + { + "IdCircuito": 81, + "Circuito": "81 - VILLA RIVADAVIA" + }, + { + "IdCircuito": 82, + "Circuito": "82 - LAS PENAS" + }, + { + "IdCircuito": 83, + "Circuito": "83 - ANCAJAN" + }, + { + "IdCircuito": 84, + "Circuito": "84 - CERRO RICO" + }, + { + "IdCircuito": 85, + "Circuito": "85 - EL MOJONCITO" + }, + { + "IdCircuito": 86, + "Circuito": "86 - TAPSO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c48f", + "IdSeccion": 10, + "Seccion": "FIGUEROA", + "Circuitos": [ + { + "IdCircuito": 87, + "Circuito": "87 - LA CANADA" + }, + { + "IdCircuito": 88, + "Circuito": "88 - LA BREA" + }, + { + "IdCircuito": 89, + "Circuito": "89 - VILLA FIGUEROA" + }, + { + "IdCircuito": 90, + "Circuito": "90 - LA GUARDIA" + }, + { + "IdCircuito": 91, + "Circuito": "91 - MONTE REDONDO" + }, + { + "IdCircuito": 92, + "Circuito": "92 - BANDERA BAJADA" + }, + { + "IdCircuito": 93, + "Circuito": "93 - SAN ANTONIO" + }, + { + "IdCircuito": 94, + "Circuito": "94 - LA INVERNADA" + }, + { + "IdCircuito": 95, + "Circuito": "95 - VACA HUANUNA" + }, + { + "IdCircuito": "0089A", + "Circuito": "89A - COLONIA SAN JUAN" + }, + { + "IdCircuito": "0094A", + "Circuito": "94A - LA INVERNADA NORTE" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c490", + "IdSeccion": 11, + "Seccion": "GUASAYÁN", + "Circuitos": [ + { + "IdCircuito": 96, + "Circuito": "96 - VILLA GUASAYÁN" + }, + { + "IdCircuito": 97, + "Circuito": "97 - DONA LUISA" + }, + { + "IdCircuito": 98, + "Circuito": "98 - LAVALLE" + }, + { + "IdCircuito": 99, + "Circuito": "99 - EL VIZCACHERAL" + }, + { + "IdCircuito": 100, + "Circuito": "100 - SAN PEDRO" + }, + { + "IdCircuito": 101, + "Circuito": "101 - GUAMPACHA" + }, + { + "IdCircuito": 102, + "Circuito": "102 - SANTA CATALINA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c491", + "IdSeccion": 12, + "Seccion": "JIMÉNEZ", + "Circuitos": [ + { + "IdCircuito": 103, + "Circuito": "103 - GRAMILLA" + }, + { + "IdCircuito": 104, + "Circuito": "104 - TRES CRUCES" + }, + { + "IdCircuito": 105, + "Circuito": "105 - ELCHARCO" + }, + { + "IdCircuito": 106, + "Circuito": "106 - POZO HONDO" + }, + { + "IdCircuito": 107, + "Circuito": "107 - EL BOBADAL" + }, + { + "IdCircuito": 108, + "Circuito": "108 - EL ARENAL" + }, + { + "IdCircuito": 109, + "Circuito": "109 - CHILE" + }, + { + "IdCircuito": "0105A", + "Circuito": "105A - EL BAGUAL" + }, + { + "IdCircuito": "0107A", + "Circuito": "107A - LA COSTOSA" + }, + { + "IdCircuito": "0107B", + "Circuito": "107B - SAN FELIX" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c492", + "IdSeccion": 13, + "Seccion": "LORETO", + "Circuitos": [ + { + "IdCircuito": 110, + "Circuito": "110 - VILLA SAN MARTIN" + }, + { + "IdCircuito": 111, + "Circuito": "111 - VILLA NUEVA" + }, + { + "IdCircuito": 112, + "Circuito": "112 - VILLA VIEJA" + }, + { + "IdCircuito": 113, + "Circuito": "113 - SAN VICENTE" + }, + { + "IdCircuito": 114, + "Circuito": "114 - PUESTO DE JUANES" + }, + { + "IdCircuito": 115, + "Circuito": "115 - SAN GREGORIO" + }, + { + "IdCircuito": 116, + "Circuito": "116 - LA NORIA" + }, + { + "IdCircuito": 117, + "Circuito": "117 - CANADA RICA" + }, + { + "IdCircuito": 118, + "Circuito": "118 - BELTRAN" + }, + { + "IdCircuito": 119, + "Circuito": "119 - JUMI POZO" + }, + { + "IdCircuito": 120, + "Circuito": "120 - TIO POZO" + }, + { + "IdCircuito": "0110A", + "Circuito": "110A - KM 88" + }, + { + "IdCircuito": "0117A", + "Circuito": "117A - SAUCE SOLO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c493", + "IdSeccion": 14, + "Seccion": "JUAN FELIPE IBARRA", + "Circuitos": [ + { + "IdCircuito": 121, + "Circuito": "121 - SUNCHO CORRAL" + }, + { + "IdCircuito": 122, + "Circuito": "122 - SAN ANTONIO" + }, + { + "IdCircuito": 123, + "Circuito": "123 - MATARA" + }, + { + "IdCircuito": 124, + "Circuito": "124 - VILELAS" + }, + { + "IdCircuito": 125, + "Circuito": "125 - MELERO" + }, + { + "IdCircuito": 126, + "Circuito": "126 - POZO DEL TOBA" + }, + { + "IdCircuito": "0125A", + "Circuito": "125A - LLAJTA MAUCA" + }, + { + "IdCircuito": "0126A", + "Circuito": "126A - EL CUADRADO" + }, + { + "IdCircuito": "0126B", + "Circuito": "126B - EL COLORADO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c494", + "IdSeccion": 15, + "Seccion": "MITRE", + "Circuitos": [ + { + "IdCircuito": 127, + "Circuito": "127 - VILLA UNION" + }, + { + "IdCircuito": 128, + "Circuito": "128 - ABRAS" + }, + { + "IdCircuito": 129, + "Circuito": "129 - LIMACHE" + }, + { + "IdCircuito": 130, + "Circuito": "130 - ALBARDON" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c495", + "IdSeccion": 16, + "Seccion": "MORENO", + "Circuitos": [ + { + "IdCircuito": 131, + "Circuito": "131 - ROVERSI" + }, + { + "IdCircuito": 132, + "Circuito": "132 - GIRARDET" + }, + { + "IdCircuito": 133, + "Circuito": "133 - CAMPO DEL CIELO" + }, + { + "IdCircuito": 134, + "Circuito": "134 - STAYLE" + }, + { + "IdCircuito": 135, + "Circuito": "135 - YUCHAN" + }, + { + "IdCircuito": 136, + "Circuito": "136 - WEISBURD" + }, + { + "IdCircuito": 137, + "Circuito": "137 - AEROLITO" + }, + { + "IdCircuito": 138, + "Circuito": "138 - ALHUAMPA" + }, + { + "IdCircuito": 139, + "Circuito": "139 - TINTINA" + }, + { + "IdCircuito": 140, + "Circuito": "140 - QUIMILI" + }, + { + "IdCircuito": 141, + "Circuito": "141 - VILLA BRANA" + }, + { + "IdCircuito": 142, + "Circuito": "142 - LAS TINAJAS" + }, + { + "IdCircuito": 143, + "Circuito": "143 - OTUMPA" + }, + { + "IdCircuito": 144, + "Circuito": "144 - AMAMA" + }, + { + "IdCircuito": "0139A", + "Circuito": "139A - LILO VIEJO" + }, + { + "IdCircuito": "0139B", + "Circuito": "139B - GRANADERO GATICA" + }, + { + "IdCircuito": "0144A", + "Circuito": "144A - LIBERTAD" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c496", + "IdSeccion": 17, + "Seccion": "OJO DE AGUA", + "Circuitos": [ + { + "IdCircuito": 145, + "Circuito": "145 - OJO DE AGUA" + }, + { + "IdCircuito": 146, + "Circuito": "146 - SANTO DOMINGO" + }, + { + "IdCircuito": 147, + "Circuito": "147 - LA ISLA" + }, + { + "IdCircuito": 148, + "Circuito": "148 - CACHI" + }, + { + "IdCircuito": 149, + "Circuito": "149 - BAEZ" + }, + { + "IdCircuito": 150, + "Circuito": "150 - SOL DE JULIO" + }, + { + "IdCircuito": "0145A", + "Circuito": "145A - LAS CHACRAS" + }, + { + "IdCircuito": "0147A", + "Circuito": "147A - EL 49" + }, + { + "IdCircuito": "0148A", + "Circuito": "148A - AMIMAN" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c497", + "IdSeccion": 18, + "Seccion": "PELLEGRINI", + "Circuitos": [ + { + "IdCircuito": 151, + "Circuito": "151 - VILLA MERCEDES" + }, + { + "IdCircuito": 152, + "Circuito": "152 - CAMPO GRANDE" + }, + { + "IdCircuito": 153, + "Circuito": "153 - LAS DELICIAS" + }, + { + "IdCircuito": 154, + "Circuito": "154 - NUEVA ESPERANZA" + }, + { + "IdCircuito": 155, + "Circuito": "155 - EL BALDE" + }, + { + "IdCircuito": 156, + "Circuito": "156 - QUEBRACHO COTO" + }, + { + "IdCircuito": 157, + "Circuito": "157 - EL MOJON" + }, + { + "IdCircuito": 158, + "Circuito": "158 - RAPELLI" + }, + { + "IdCircuito": 159, + "Circuito": "159 - AHI VEREMOS" + }, + { + "IdCircuito": 160, + "Circuito": "160 - SANTO DOMINGO" + }, + { + "IdCircuito": "0154A", + "Circuito": "154A - PUESTO NUEVO" + }, + { + "IdCircuito": "0158A", + "Circuito": "158A - POZO BETBEDER" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c498", + "IdSeccion": 19, + "Seccion": "QUEBRACHOS", + "Circuitos": [ + { + "IdCircuito": 161, + "Circuito": "161 - VILLA QUEBRACHOS" + }, + { + "IdCircuito": 162, + "Circuito": "162 - SALINAS" + }, + { + "IdCircuito": 163, + "Circuito": "163 - SANTA ANA" + }, + { + "IdCircuito": 164, + "Circuito": "164 - CUCHI CORRAL" + }, + { + "IdCircuito": 165, + "Circuito": "165 - TACO POZO" + }, + { + "IdCircuito": 166, + "Circuito": "166 - SAN FRANCISCO" + }, + { + "IdCircuito": 167, + "Circuito": "167 - SUMAMPA" + }, + { + "IdCircuito": 168, + "Circuito": "168 - RAMA PASO" + }, + { + "IdCircuito": 169, + "Circuito": "169 - RAMIREZ DE VELAZCO" + }, + { + "IdCircuito": "0168A", + "Circuito": "168A - RIO VIEJO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c499", + "IdSeccion": 20, + "Seccion": "RIVADAVIA", + "Circuitos": [ + { + "IdCircuito": 170, + "Circuito": "170 - SELVA" + }, + { + "IdCircuito": 171, + "Circuito": "171 - COLONIA ALPINA" + }, + { + "IdCircuito": 172, + "Circuito": "172 - PALO NEGRO" + }, + { + "IdCircuito": 173, + "Circuito": "173 - LOS PORONGOS" + }, + { + "IdCircuito": "0171A", + "Circuito": "171A - NUEVA CERES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c49a", + "IdSeccion": 21, + "Seccion": "ROBLES", + "Circuitos": [ + { + "IdCircuito": 174, + "Circuito": "174 - LA FLORIDA" + }, + { + "IdCircuito": 175, + "Circuito": "175 - ROMANOS" + }, + { + "IdCircuito": 176, + "Circuito": "176 - VILMER" + }, + { + "IdCircuito": 177, + "Circuito": "177 - BELTRAN" + }, + { + "IdCircuito": 178, + "Circuito": "178 - FORRES" + }, + { + "IdCircuito": 179, + "Circuito": "179 - VILLA HIPOLITA" + }, + { + "IdCircuito": 180, + "Circuito": "180 - FERNANDEZ" + }, + { + "IdCircuito": 181, + "Circuito": "181 - COLONIA EL SIMBOLAR" + }, + { + "IdCircuito": 182, + "Circuito": "182 - VILLA ROBLES" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c49b", + "IdSeccion": 22, + "Seccion": "RÍO HONDO", + "Circuitos": [ + { + "IdCircuito": 183, + "Circuito": "183 - V°RÍO HONDO" + }, + { + "IdCircuito": 184, + "Circuito": "184 - LESCANO" + }, + { + "IdCircuito": 185, + "Circuito": "185 - AMICHA" + }, + { + "IdCircuito": 186, + "Circuito": "186 - EL SAUZAL" + }, + { + "IdCircuito": 187, + "Circuito": "187 - OVEJEROS" + }, + { + "IdCircuito": 188, + "Circuito": "188 - VILLA JIMENEZ" + }, + { + "IdCircuito": 189, + "Circuito": "189 - LOS NUNEZ" + }, + { + "IdCircuito": 190, + "Circuito": "190 - VINARA" + }, + { + "IdCircuito": 191, + "Circuito": "191 - POZUELOS" + }, + { + "IdCircuito": 192, + "Circuito": "192 - SOTELOS" + }, + { + "IdCircuito": 193, + "Circuito": "193 - LAS TERMAS" + }, + { + "IdCircuito": "0183A", + "Circuito": "183A - POZO DEL ARBOLITO" + }, + { + "IdCircuito": "0187A", + "Circuito": "187A - CHANAR POZO DE ABAJO" + }, + { + "IdCircuito": "0190A", + "Circuito": "190A - LAS CEJAS" + }, + { + "IdCircuito": "0193A", + "Circuito": "193A - COLONIA TINCO" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c49c", + "IdSeccion": 23, + "Seccion": "SILÍPICA", + "Circuitos": [ + { + "IdCircuito": 194, + "Circuito": "194 - VILLA SILÍPICA" + }, + { + "IdCircuito": 195, + "Circuito": "195 - ARRAGA" + }, + { + "IdCircuito": 196, + "Circuito": "196 - NUEVA FRANCIA" + }, + { + "IdCircuito": 197, + "Circuito": "197 - SUMAMAO" + }, + { + "IdCircuito": "0195A", + "Circuito": "195A - MANOGASTA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c49d", + "IdSeccion": 24, + "Seccion": "SAN MARTÍN", + "Circuitos": [ + { + "IdCircuito": 198, + "Circuito": "198 - TABOADA" + }, + { + "IdCircuito": 199, + "Circuito": "199 - PERCHIL BAJO" + }, + { + "IdCircuito": 200, + "Circuito": "200 - ATOJ POZO" + }, + { + "IdCircuito": 201, + "Circuito": "201 - R. DE ESCALADA" + }, + { + "IdCircuito": 202, + "Circuito": "202 - DIASPA" + }, + { + "IdCircuito": 203, + "Circuito": "203 - SAN JOSE" + }, + { + "IdCircuito": 204, + "Circuito": "204 - PUESTITO" + }, + { + "IdCircuito": 205, + "Circuito": "205 - ESTACION ROBLES" + }, + { + "IdCircuito": 206, + "Circuito": "206 - HIGUERA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c49e", + "IdSeccion": 25, + "Seccion": "SALAVINA", + "Circuitos": [ + { + "IdCircuito": 207, + "Circuito": "207 - VILLA SALAVINA" + }, + { + "IdCircuito": 208, + "Circuito": "208 - VACA HUMAN" + }, + { + "IdCircuito": 209, + "Circuito": "209 - LA PALIZA" + }, + { + "IdCircuito": 210, + "Circuito": "210 - NAVARRO" + }, + { + "IdCircuito": 211, + "Circuito": "211 - LOMA BLANCA" + }, + { + "IdCircuito": 212, + "Circuito": "212 - MALOTA" + }, + { + "IdCircuito": 213, + "Circuito": "213 - LOS TELARES" + }, + { + "IdCircuito": 214, + "Circuito": "214 - SABAGASTA" + }, + { + "IdCircuito": 215, + "Circuito": "215 - CHILCA JULIANA" + }, + { + "IdCircuito": "0215A", + "Circuito": "215A - BARRANCA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c49f", + "IdSeccion": 26, + "Seccion": "SARMIENTO", + "Circuitos": [ + { + "IdCircuito": 216, + "Circuito": "216 - GUAYPE" + }, + { + "IdCircuito": 217, + "Circuito": "217 - VILLA MATARA" + }, + { + "IdCircuito": 218, + "Circuito": "218 - COLONIA SIEJEL" + }, + { + "IdCircuito": 219, + "Circuito": "219 - GARZA" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4a0", + "IdSeccion": 27, + "Seccion": "GENERAL TABOADA", + "Circuitos": [ + { + "IdCircuito": 221, + "Circuito": "221 - LOS JURIES" + }, + { + "IdCircuito": 222, + "Circuito": "222 - TOMAS YOUNG" + }, + { + "IdCircuito": 223, + "Circuito": "223 - LA SIMONA" + }, + { + "IdCircuito": 224, + "Circuito": "224 - ANATUYA" + }, + { + "IdCircuito": 225, + "Circuito": "225 - AVERIAS" + }, + { + "IdCircuito": 226, + "Circuito": "226 - TACANITAS" + }, + { + "IdCircuito": "0224A", + "Circuito": "224A - LOS LINARES" + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4a1", + "IdDistrito": 23, + "Distrito": "TUCUMÁN", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c4a2", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c4a3", + "IdSeccion": 1, + "Seccion": "CAPITAL", + "Circuitos": [ + { + "IdCircuito": 1, + "Circuito": 1 + }, + { + "IdCircuito": 2, + "Circuito": 2 + }, + { + "IdCircuito": 3, + "Circuito": 3 + }, + { + "IdCircuito": 4, + "Circuito": 4 + }, + { + "IdCircuito": 5, + "Circuito": 5 + }, + { + "IdCircuito": 6, + "Circuito": 6 + }, + { + "IdCircuito": 7, + "Circuito": 7 + }, + { + "IdCircuito": 8, + "Circuito": 8 + }, + { + "IdCircuito": 9, + "Circuito": 9 + }, + { + "IdCircuito": 10, + "Circuito": 10 + }, + { + "IdCircuito": 11, + "Circuito": 11 + }, + { + "IdCircuito": 12, + "Circuito": 12 + }, + { + "IdCircuito": 13, + "Circuito": 13 + }, + { + "IdCircuito": 14, + "Circuito": 14 + }, + { + "IdCircuito": 15, + "Circuito": 15 + }, + { + "IdCircuito": 16, + "Circuito": 16 + }, + { + "IdCircuito": 17, + "Circuito": 17 + }, + { + "IdCircuito": 18, + "Circuito": 18 + }, + { + "IdCircuito": 19, + "Circuito": 19 + }, + { + "IdCircuito": 20, + "Circuito": 20 + }, + { + "IdCircuito": 21, + "Circuito": 21 + }, + { + "IdCircuito": 22, + "Circuito": 22 + }, + { + "IdCircuito": "0001A", + "Circuito": "1A" + }, + { + "IdCircuito": "0002A", + "Circuito": "2A" + }, + { + "IdCircuito": "0007A", + "Circuito": "7A" + }, + { + "IdCircuito": "0008A", + "Circuito": "8A" + }, + { + "IdCircuito": "0009A", + "Circuito": "9A" + }, + { + "IdCircuito": "0010A", + "Circuito": "10A" + }, + { + "IdCircuito": "0011A", + "Circuito": "11A" + }, + { + "IdCircuito": "0012A", + "Circuito": "12A" + }, + { + "IdCircuito": "0013A", + "Circuito": "13A" + }, + { + "IdCircuito": "0014A", + "Circuito": "14A" + }, + { + "IdCircuito": "0014B", + "Circuito": "14B" + }, + { + "IdCircuito": "0014C", + "Circuito": "14C" + }, + { + "IdCircuito": "0014D", + "Circuito": "14D" + }, + { + "IdCircuito": "0015A", + "Circuito": "15A" + }, + { + "IdCircuito": "0015B", + "Circuito": "15B" + }, + { + "IdCircuito": "0016A", + "Circuito": "16A" + }, + { + "IdCircuito": "0017A", + "Circuito": "17A" + }, + { + "IdCircuito": "0018A", + "Circuito": "18A" + }, + { + "IdCircuito": "0018B", + "Circuito": "18B" + }, + { + "IdCircuito": "0018C", + "Circuito": "18C" + }, + { + "IdCircuito": "0018D", + "Circuito": "18D" + }, + { + "IdCircuito": "0018E", + "Circuito": "18E" + }, + { + "IdCircuito": "0018F", + "Circuito": "18F" + }, + { + "IdCircuito": "0018G", + "Circuito": "18G" + }, + { + "IdCircuito": "0019A", + "Circuito": "19A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4a4", + "IdSeccion": 9, + "Seccion": "GRANEROS", + "Circuitos": [ + { + "IdCircuito": 94, + "Circuito": 94 + }, + { + "IdCircuito": 95, + "Circuito": 95 + }, + { + "IdCircuito": 96, + "Circuito": 96 + }, + { + "IdCircuito": 97, + "Circuito": 97 + }, + { + "IdCircuito": 98, + "Circuito": 98 + }, + { + "IdCircuito": 99, + "Circuito": 99 + }, + { + "IdCircuito": 100, + "Circuito": 100 + }, + { + "IdCircuito": 101, + "Circuito": 101 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4a5", + "IdSeccion": 10, + "Seccion": "SIMOCA", + "Circuitos": [ + { + "IdCircuito": 102, + "Circuito": 102 + }, + { + "IdCircuito": 103, + "Circuito": 103 + }, + { + "IdCircuito": 104, + "Circuito": 104 + }, + { + "IdCircuito": 105, + "Circuito": 105 + }, + { + "IdCircuito": 106, + "Circuito": 106 + }, + { + "IdCircuito": 107, + "Circuito": 107 + }, + { + "IdCircuito": 108, + "Circuito": 108 + }, + { + "IdCircuito": 109, + "Circuito": 109 + }, + { + "IdCircuito": 110, + "Circuito": 110 + }, + { + "IdCircuito": 111, + "Circuito": 111 + }, + { + "IdCircuito": 112, + "Circuito": 112 + }, + { + "IdCircuito": 113, + "Circuito": 113 + }, + { + "IdCircuito": 114, + "Circuito": 114 + }, + { + "IdCircuito": 115, + "Circuito": 115 + }, + { + "IdCircuito": 116, + "Circuito": 116 + }, + { + "IdCircuito": 117, + "Circuito": 117 + }, + { + "IdCircuito": 118, + "Circuito": 118 + }, + { + "IdCircuito": 119, + "Circuito": 119 + }, + { + "IdCircuito": 120, + "Circuito": 120 + }, + { + "IdCircuito": 121, + "Circuito": 121 + }, + { + "IdCircuito": "0110A", + "Circuito": "110A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4a6", + "IdSeccion": 11, + "Seccion": "LEALES", + "Circuitos": [ + { + "IdCircuito": 122, + "Circuito": 122 + }, + { + "IdCircuito": 123, + "Circuito": 123 + }, + { + "IdCircuito": 124, + "Circuito": 124 + }, + { + "IdCircuito": 125, + "Circuito": 125 + }, + { + "IdCircuito": 126, + "Circuito": 126 + }, + { + "IdCircuito": 127, + "Circuito": 127 + }, + { + "IdCircuito": 128, + "Circuito": 128 + }, + { + "IdCircuito": 129, + "Circuito": 129 + }, + { + "IdCircuito": 130, + "Circuito": 130 + }, + { + "IdCircuito": 131, + "Circuito": 131 + }, + { + "IdCircuito": 132, + "Circuito": 132 + }, + { + "IdCircuito": 133, + "Circuito": 133 + }, + { + "IdCircuito": 134, + "Circuito": 134 + }, + { + "IdCircuito": 135, + "Circuito": 135 + }, + { + "IdCircuito": 136, + "Circuito": 136 + }, + { + "IdCircuito": 137, + "Circuito": 137 + }, + { + "IdCircuito": 138, + "Circuito": 138 + }, + { + "IdCircuito": 139, + "Circuito": 139 + }, + { + "IdCircuito": "0126A", + "Circuito": "126A" + }, + { + "IdCircuito": "0137A", + "Circuito": "137A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4a7", + "IdSeccion": 12, + "Seccion": "CRUZ ALTA", + "Circuitos": [ + { + "IdCircuito": 140, + "Circuito": 140 + }, + { + "IdCircuito": 141, + "Circuito": 141 + }, + { + "IdCircuito": 142, + "Circuito": 142 + }, + { + "IdCircuito": 143, + "Circuito": 143 + }, + { + "IdCircuito": 144, + "Circuito": 144 + }, + { + "IdCircuito": 145, + "Circuito": 145 + }, + { + "IdCircuito": 146, + "Circuito": 146 + }, + { + "IdCircuito": 147, + "Circuito": 147 + }, + { + "IdCircuito": 148, + "Circuito": 148 + }, + { + "IdCircuito": 149, + "Circuito": 149 + }, + { + "IdCircuito": 150, + "Circuito": 150 + }, + { + "IdCircuito": 151, + "Circuito": 151 + }, + { + "IdCircuito": 152, + "Circuito": 152 + }, + { + "IdCircuito": 153, + "Circuito": 153 + }, + { + "IdCircuito": 154, + "Circuito": 154 + }, + { + "IdCircuito": 155, + "Circuito": 155 + }, + { + "IdCircuito": 156, + "Circuito": 156 + }, + { + "IdCircuito": 157, + "Circuito": 157 + }, + { + "IdCircuito": 158, + "Circuito": 158 + }, + { + "IdCircuito": 159, + "Circuito": 159 + }, + { + "IdCircuito": 160, + "Circuito": 160 + }, + { + "IdCircuito": 161, + "Circuito": 161 + }, + { + "IdCircuito": 162, + "Circuito": 162 + }, + { + "IdCircuito": 163, + "Circuito": 163 + }, + { + "IdCircuito": 164, + "Circuito": 164 + }, + { + "IdCircuito": 165, + "Circuito": 165 + }, + { + "IdCircuito": 166, + "Circuito": 166 + }, + { + "IdCircuito": 167, + "Circuito": 167 + }, + { + "IdCircuito": 168, + "Circuito": 168 + }, + { + "IdCircuito": 169, + "Circuito": 169 + }, + { + "IdCircuito": 170, + "Circuito": 170 + }, + { + "IdCircuito": 171, + "Circuito": 171 + }, + { + "IdCircuito": "0142A", + "Circuito": "142A" + }, + { + "IdCircuito": "0142B", + "Circuito": "142B" + }, + { + "IdCircuito": "0170A", + "Circuito": "170A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4a8", + "IdSeccion": 13, + "Seccion": "BURRUYACÚ", + "Circuitos": [ + { + "IdCircuito": 172, + "Circuito": 172 + }, + { + "IdCircuito": 173, + "Circuito": 173 + }, + { + "IdCircuito": 174, + "Circuito": 174 + }, + { + "IdCircuito": 175, + "Circuito": 175 + }, + { + "IdCircuito": 176, + "Circuito": 176 + }, + { + "IdCircuito": 177, + "Circuito": 177 + }, + { + "IdCircuito": 178, + "Circuito": 178 + }, + { + "IdCircuito": 179, + "Circuito": 179 + }, + { + "IdCircuito": 180, + "Circuito": 180 + }, + { + "IdCircuito": 181, + "Circuito": 181 + }, + { + "IdCircuito": 182, + "Circuito": 182 + }, + { + "IdCircuito": 183, + "Circuito": 183 + }, + { + "IdCircuito": 184, + "Circuito": 184 + }, + { + "IdCircuito": 185, + "Circuito": 185 + }, + { + "IdCircuito": 186, + "Circuito": 186 + }, + { + "IdCircuito": 187, + "Circuito": 187 + }, + { + "IdCircuito": 188, + "Circuito": 188 + }, + { + "IdCircuito": 189, + "Circuito": 189 + }, + { + "IdCircuito": 190, + "Circuito": 190 + }, + { + "IdCircuito": 191, + "Circuito": 191 + }, + { + "IdCircuito": 192, + "Circuito": 192 + }, + { + "IdCircuito": 193, + "Circuito": 193 + }, + { + "IdCircuito": 194, + "Circuito": 194 + }, + { + "IdCircuito": 195, + "Circuito": 195 + }, + { + "IdCircuito": 196, + "Circuito": 196 + }, + { + "IdCircuito": 197, + "Circuito": 197 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4a9", + "IdSeccion": 14, + "Seccion": "TRANCAS", + "Circuitos": [ + { + "IdCircuito": 198, + "Circuito": 198 + }, + { + "IdCircuito": 199, + "Circuito": 199 + }, + { + "IdCircuito": 200, + "Circuito": 200 + }, + { + "IdCircuito": 201, + "Circuito": 201 + }, + { + "IdCircuito": 202, + "Circuito": 202 + }, + { + "IdCircuito": 203, + "Circuito": 203 + }, + { + "IdCircuito": 204, + "Circuito": 204 + }, + { + "IdCircuito": 205, + "Circuito": 205 + }, + { + "IdCircuito": 206, + "Circuito": 206 + }, + { + "IdCircuito": 207, + "Circuito": 207 + }, + { + "IdCircuito": 208, + "Circuito": 208 + }, + { + "IdCircuito": 209, + "Circuito": 209 + }, + { + "IdCircuito": 210, + "Circuito": 210 + }, + { + "IdCircuito": 211, + "Circuito": 211 + }, + { + "IdCircuito": "0204A", + "Circuito": "204A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4aa", + "IdSeccion": 2, + "Seccion": "LULES", + "Circuitos": [ + { + "IdCircuito": 23, + "Circuito": 23 + }, + { + "IdCircuito": 24, + "Circuito": 24 + }, + { + "IdCircuito": 25, + "Circuito": 25 + }, + { + "IdCircuito": 26, + "Circuito": 26 + }, + { + "IdCircuito": 27, + "Circuito": 27 + }, + { + "IdCircuito": 28, + "Circuito": 28 + }, + { + "IdCircuito": 29, + "Circuito": 29 + }, + { + "IdCircuito": 30, + "Circuito": 30 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4ab", + "IdSeccion": 3, + "Seccion": "FAMAILLÁ", + "Circuitos": [ + { + "IdCircuito": 31, + "Circuito": 31 + }, + { + "IdCircuito": 32, + "Circuito": 32 + }, + { + "IdCircuito": 33, + "Circuito": 33 + }, + { + "IdCircuito": 34, + "Circuito": 34 + }, + { + "IdCircuito": 35, + "Circuito": 35 + }, + { + "IdCircuito": 36, + "Circuito": 36 + }, + { + "IdCircuito": 37, + "Circuito": 37 + }, + { + "IdCircuito": 38, + "Circuito": 38 + }, + { + "IdCircuito": 39, + "Circuito": 39 + }, + { + "IdCircuito": 40, + "Circuito": 40 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4ac", + "IdSeccion": 4, + "Seccion": "MONTEROS", + "Circuitos": [ + { + "IdCircuito": 41, + "Circuito": 41 + }, + { + "IdCircuito": 42, + "Circuito": 42 + }, + { + "IdCircuito": 43, + "Circuito": 43 + }, + { + "IdCircuito": 44, + "Circuito": 44 + }, + { + "IdCircuito": 45, + "Circuito": 45 + }, + { + "IdCircuito": 46, + "Circuito": 46 + }, + { + "IdCircuito": 47, + "Circuito": 47 + }, + { + "IdCircuito": 48, + "Circuito": 48 + }, + { + "IdCircuito": 49, + "Circuito": 49 + }, + { + "IdCircuito": 50, + "Circuito": 50 + }, + { + "IdCircuito": 51, + "Circuito": 51 + }, + { + "IdCircuito": 52, + "Circuito": 52 + }, + { + "IdCircuito": 53, + "Circuito": 53 + }, + { + "IdCircuito": 54, + "Circuito": 54 + }, + { + "IdCircuito": 55, + "Circuito": 55 + }, + { + "IdCircuito": 56, + "Circuito": 56 + }, + { + "IdCircuito": 57, + "Circuito": 57 + }, + { + "IdCircuito": 58, + "Circuito": 58 + }, + { + "IdCircuito": "0056A", + "Circuito": "56A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4ad", + "IdSeccion": 5, + "Seccion": "CHICLIGASTA", + "Circuitos": [ + { + "IdCircuito": 59, + "Circuito": 59 + }, + { + "IdCircuito": 60, + "Circuito": 60 + }, + { + "IdCircuito": 61, + "Circuito": 61 + }, + { + "IdCircuito": 62, + "Circuito": 62 + }, + { + "IdCircuito": 63, + "Circuito": 63 + }, + { + "IdCircuito": 64, + "Circuito": 64 + }, + { + "IdCircuito": 65, + "Circuito": 65 + }, + { + "IdCircuito": 66, + "Circuito": 66 + }, + { + "IdCircuito": 67, + "Circuito": 67 + }, + { + "IdCircuito": 68, + "Circuito": 68 + }, + { + "IdCircuito": 69, + "Circuito": 69 + }, + { + "IdCircuito": 70, + "Circuito": 70 + }, + { + "IdCircuito": 71, + "Circuito": 71 + }, + { + "IdCircuito": "0060A", + "Circuito": "60A" + }, + { + "IdCircuito": "0060B", + "Circuito": "60B" + }, + { + "IdCircuito": "0061A", + "Circuito": "61A" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4ae", + "IdSeccion": 6, + "Seccion": "RÍO CHICO", + "Circuitos": [ + { + "IdCircuito": 72, + "Circuito": 72 + }, + { + "IdCircuito": 73, + "Circuito": 73 + }, + { + "IdCircuito": 74, + "Circuito": 74 + }, + { + "IdCircuito": 75, + "Circuito": 75 + }, + { + "IdCircuito": 76, + "Circuito": 76 + }, + { + "IdCircuito": 77, + "Circuito": 77 + }, + { + "IdCircuito": 78, + "Circuito": 78 + }, + { + "IdCircuito": 79, + "Circuito": 79 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4af", + "IdSeccion": 7, + "Seccion": "JUAN B. ALBERDI", + "Circuitos": [ + { + "IdCircuito": 80, + "Circuito": 80 + }, + { + "IdCircuito": 81, + "Circuito": 81 + }, + { + "IdCircuito": 82, + "Circuito": 82 + }, + { + "IdCircuito": 83, + "Circuito": 83 + }, + { + "IdCircuito": 84, + "Circuito": 84 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4b0", + "IdSeccion": 8, + "Seccion": "LA COCHA", + "Circuitos": [ + { + "IdCircuito": 85, + "Circuito": 85 + }, + { + "IdCircuito": 86, + "Circuito": 86 + }, + { + "IdCircuito": 87, + "Circuito": 87 + }, + { + "IdCircuito": 88, + "Circuito": 88 + }, + { + "IdCircuito": 89, + "Circuito": 89 + }, + { + "IdCircuito": 90, + "Circuito": 90 + }, + { + "IdCircuito": 91, + "Circuito": 91 + }, + { + "IdCircuito": 92, + "Circuito": 92 + }, + { + "IdCircuito": 93, + "Circuito": 93 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4b1", + "IdSeccion": 15, + "Seccion": "YERBA BUENA", + "Circuitos": [ + { + "IdCircuito": 212, + "Circuito": 212 + }, + { + "IdCircuito": 213, + "Circuito": 213 + }, + { + "IdCircuito": 214, + "Circuito": 214 + }, + { + "IdCircuito": 215, + "Circuito": 215 + }, + { + "IdCircuito": 216, + "Circuito": 216 + }, + { + "IdCircuito": "0215A", + "Circuito": "215A" + }, + { + "IdCircuito": "0216A", + "Circuito": "216A" + }, + { + "IdCircuito": "0216B", + "Circuito": "216B" + }, + { + "IdCircuito": "0216C", + "Circuito": "216C" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4b2", + "IdSeccion": 16, + "Seccion": "TAFÍ VIEJO", + "Circuitos": [ + { + "IdCircuito": 217, + "Circuito": 217 + }, + { + "IdCircuito": 218, + "Circuito": 218 + }, + { + "IdCircuito": 219, + "Circuito": 219 + }, + { + "IdCircuito": 220, + "Circuito": 220 + }, + { + "IdCircuito": 221, + "Circuito": 221 + }, + { + "IdCircuito": 222, + "Circuito": 222 + }, + { + "IdCircuito": 223, + "Circuito": 223 + }, + { + "IdCircuito": 224, + "Circuito": 224 + }, + { + "IdCircuito": 225, + "Circuito": 225 + }, + { + "IdCircuito": 226, + "Circuito": 226 + }, + { + "IdCircuito": 227, + "Circuito": 227 + }, + { + "IdCircuito": 228, + "Circuito": 228 + }, + { + "IdCircuito": 229, + "Circuito": 229 + }, + { + "IdCircuito": "0219A", + "Circuito": "219A" + }, + { + "IdCircuito": "0223A", + "Circuito": "223A" + }, + { + "IdCircuito": "0223B", + "Circuito": "223B" + }, + { + "IdCircuito": "0227A", + "Circuito": "227A" + }, + { + "IdCircuito": "0228A", + "Circuito": "228A" + }, + { + "IdCircuito": "0228B", + "Circuito": "228B" + }, + { + "IdCircuito": "0228C", + "Circuito": "228C" + }, + { + "IdCircuito": "0228D", + "Circuito": "228D" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4b3", + "IdSeccion": 17, + "Seccion": "TAFÍ DEL VALLE", + "Circuitos": [ + { + "IdCircuito": 230, + "Circuito": 230 + }, + { + "IdCircuito": 231, + "Circuito": 231 + }, + { + "IdCircuito": 232, + "Circuito": 232 + }, + { + "IdCircuito": 233, + "Circuito": 233 + }, + { + "IdCircuito": 234, + "Circuito": 234 + } + ] + } + ] + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4b4", + "IdDistrito": 24, + "Distrito": "TIERRA DEL FUEGO AeIAS", + "SeccionesProvinciales": [ + { + "_id": "6a0f9ebbc9a4639a07c8c4b5", + "IdSeccionProvincial": null, + "SeccionProvincial": null, + "Secciones": [ + { + "_id": "6a0f9ebbc9a4639a07c8c4b6", + "IdSeccion": 1, + "Seccion": "USHUAIA", + "Circuitos": [ + { + "IdCircuito": 101, + "Circuito": 101 + }, + { + "IdCircuito": 102, + "Circuito": 102 + }, + { + "IdCircuito": 103, + "Circuito": 103 + }, + { + "IdCircuito": 104, + "Circuito": 104 + }, + { + "IdCircuito": 105, + "Circuito": 105 + }, + { + "IdCircuito": 106, + "Circuito": 106 + }, + { + "IdCircuito": 107, + "Circuito": 107 + }, + { + "IdCircuito": 108, + "Circuito": 108 + }, + { + "IdCircuito": 109, + "Circuito": 109 + }, + { + "IdCircuito": 110, + "Circuito": 110 + }, + { + "IdCircuito": 111, + "Circuito": 111 + }, + { + "IdCircuito": 112, + "Circuito": 112 + }, + { + "IdCircuito": 113, + "Circuito": 113 + }, + { + "IdCircuito": 114, + "Circuito": 114 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4b7", + "IdSeccion": 2, + "Seccion": "RÍO GRANDE", + "Circuitos": [ + { + "IdCircuito": 201, + "Circuito": 201 + }, + { + "IdCircuito": 203, + "Circuito": 203 + }, + { + "IdCircuito": 204, + "Circuito": 204 + }, + { + "IdCircuito": 205, + "Circuito": 205 + }, + { + "IdCircuito": 206, + "Circuito": 206 + }, + { + "IdCircuito": 207, + "Circuito": 207 + }, + { + "IdCircuito": 208, + "Circuito": 208 + }, + { + "IdCircuito": 209, + "Circuito": 209 + }, + { + "IdCircuito": 210, + "Circuito": 210 + }, + { + "IdCircuito": 211, + "Circuito": 211 + }, + { + "IdCircuito": 212, + "Circuito": 212 + }, + { + "IdCircuito": 214, + "Circuito": 214 + }, + { + "IdCircuito": 215, + "Circuito": 215 + }, + { + "IdCircuito": 216, + "Circuito": 216 + }, + { + "IdCircuito": 217, + "Circuito": 217 + }, + { + "IdCircuito": 218, + "Circuito": 218 + }, + { + "IdCircuito": 219, + "Circuito": 219 + }, + { + "IdCircuito": 220, + "Circuito": 220 + }, + { + "IdCircuito": 227, + "Circuito": 227 + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4b8", + "IdSeccion": 3, + "Seccion": "ANTÁRTIDA ARGENTINA", + "Circuitos": [ + { + "IdCircuito": 303, + "Circuito": "303 - 24" + } + ] + }, + { + "_id": "6a0f9ebbc9a4639a07c8c4b9", + "IdSeccion": 5, + "Seccion": "TOLHUIN", + "Circuitos": [ + { + "IdCircuito": 501, + "Circuito": 501 + } + ] + } + ] + } + ] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/menu_periodos.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/menu_periodos.json new file mode 100644 index 0000000000..2f1a260208 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/menu_periodos.json @@ -0,0 +1,10 @@ +[ + 2025, + 2023, + 2021, + 2019, + 2017, + 2015, + 2013, + 2011 +] \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/official_api_computed_summary.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/official_api_computed_summary.json new file mode 100644 index 0000000000..5dbc08add5 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/official_api_computed_summary.json @@ -0,0 +1,90 @@ +{ + "source": "Dirección Nacional Electoral / Ministerio del Interior, Sistema de Publicación de Resultados Electorales", + "landing_url": "https://resultados.elecciones.gob.ar/", + "api_base": "https://resultados.mininterior.gob.ar/api/", + "fetched_at": "2026-05-21T21:09:43.211469", + "accessed_date": "2026-05-21", + "tls_note": "landing fetched with verify=False because certificate validation failed in this environment with certificate expired; API host validated normally.", + "election": { + "year": 2025, + "recount": "Provisorio", + "idEleccion": 2, + "elecciones": "Generales", + "cargo": "DIPUTADO NACIONAL" + }, + "districts_count": 24, + "positive_votes_total_diputados": 22977871, + "lla_votes_by_name_contains_libertad_avanza": 9341798, + "lla_percentage_computed": 40.655629, + "fuerza_patria_votes_by_name_contains_fuerza_patria": 5587521, + "fuerza_patria_percentage_computed": 24.316966, + "top_parties_raw_names": [ + { + "party": "ALIANZA LA LIBERTAD AVANZA", + "votes": 7429104, + "national_percentage": 32.331559 + }, + { + "party": "ALIANZA FUERZA PATRIA", + "votes": 3657285, + "national_percentage": 15.916553 + }, + { + "party": "LA LIBERTAD AVANZA", + "votes": 1912694, + "national_percentage": 8.32407 + }, + { + "party": "FUERZA PATRIA", + "votes": 1751426, + "national_percentage": 7.622229 + }, + { + "party": "FRENTE DE IZQUIERDA Y DE TRABAJADORES - UNIDAD", + "votes": 853680, + "national_percentage": 3.715227 + }, + { + "party": "ALIANZA PROVINCIAS UNIDAS", + "votes": 762798, + "national_percentage": 3.319707 + }, + { + "party": "FRENTE TUCUMÁN PRIMERO", + "votes": 524057, + "national_percentage": 2.280703 + }, + { + "party": "PROVINCIAS UNIDAS", + "votes": 326476, + "national_percentage": 1.420828 + }, + { + "party": "FRENTE CÍVICO POR SANTIAGO", + "votes": 284387, + "national_percentage": 1.237656 + }, + { + "party": "FUERZA JUSTICIALISTA MENDOZA", + "votes": 253109, + "national_percentage": 1.101534 + }, + { + "party": "FUERZA ENTRE RÍOS", + "votes": 243884, + "national_percentage": 1.061386 + }, + { + "party": "PROPUESTA FEDERAL PARA EL CAMBIO", + "votes": 243326, + "national_percentage": 1.058958 + } + ], + "files": { + "landing_html": "answer_key_post_x/sources/DINE_resultados_2025/resultados_electorales_landing.html", + "menu_2025": "answer_key_post_x/sources/DINE_resultados_2025/menu_2025.json", + "raw_district_json_dir": "answer_key_post_x/sources/DINE_resultados_2025/diputados_totalizado_por_distrito", + "computed_national_csv": "answer_key_post_x/sources/DINE_resultados_2025/computed_diputados_national_by_party.csv", + "computed_district_csv": "answer_key_post_x/sources/DINE_resultados_2025/computed_diputados_districts.csv" + } +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/official_api_computed_summary.md b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/official_api_computed_summary.md new file mode 100644 index 0000000000..a48d37becf --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/official_api_computed_summary.md @@ -0,0 +1,20 @@ +# Official DINE/MinInterior API computed summary + +Source: Dirección Nacional Electoral / Ministerio del Interior — Sistema de Publicación de Resultados Electorales. + +Landing URL: https://resultados.elecciones.gob.ar/ +API base: https://resultados.mininterior.gob.ar/api/ + +Election: 2025 Generales, Provisorio, Diputado Nacional. + +Computed from 24 district `resultado/totalizado` API responses. + +- Positive votes total, Diputados: 22,977,871 +- Sum of party names containing `LIBERTAD AVANZA`: 9,341,798 +- Computed LLA national percentage over positive votes: 40.6556% +- Sum of party names containing `FUERZA PATRIA`: 5,587,521 +- Computed Fuerza Patria national percentage over positive votes: 24.3170% + +Note: this official API computation gives ~40.66% for Diputados positive votes under names containing Libertad Avanza. Media sources saved separately report ~40.84% for combined votes/counted scope. Treat the precise 40.84 as media provisional and the official API computation as a reproducible official-source cross-check. + +TLS note: landing page was fetched with certificate verification disabled because certificate validation failed as expired in this environment; API requests to `resultados.mininterior.gob.ar` succeeded normally. diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/resultados_electorales_landing.html b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/resultados_electorales_landing.html new file mode 100644 index 0000000000..a04ddbe0db --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/DINE_resultados_2025/resultados_electorales_landing.html @@ -0,0 +1,8 @@ +Sistema de Publicación de Resultados Electorales
\ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/ElPais_Milei_midterms_20251027.html b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/ElPais_Milei_midterms_20251027.html new file mode 100644 index 0000000000..2537bfede8 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/ElPais_Milei_midterms_20251027.html @@ -0,0 +1,114 @@ +Milei wins Argentina’s midterm elections with more than 40% of the vote | International | EL PAÍS EnglishSkip to content
_
_
_
_

Milei wins Argentina’s midterm elections with more than 40% of the vote

The far right bounced back from its defeat two months ago in Buenos Aires against Peronism and scored solid results in major provinces such as Córdoba, Mendoza, Santa Fe, and Entre Ríos

Argentina President Javier Milei celebrates the results of the legislative elections on Sunday.Cristina Sille (REUTERS)

Javier Milei won Argentina’s legislative elections on Sunday with 40.8% of the votes. It was an unexpectedly large victory, which the far-right leader hailed as historic. Milei had plenty of reasons to celebrate. After four months of turmoil for the Argentine government — with the economy dependent on a financial bailout from U.S. President Donald Trump, high-profile corruption scandals, and even candidates disqualified for links to drug trafficking — it had feared winning closer to 30% than 40% of the vote.

Milei even celebrated a narrow victory in Buenos Aires province, where just two months ago, in the provincial legislative elections, he had lost to Peronism — the dominant political movement in Argentina founded by former president Juan Domingo Perón that blends nationalism, social justice, and strong state involvement in the economy — by more than 14 points. The far-right also won decisively in the capital and in large provinces such as Córdoba, Mendoza, Entre Ríos, and Santa Fe.

“Today the people decided to leave behind 100 years of decline; today the construction of a great Argentina begins,” Milei said in his first victory speech.

The president thanked his ministers one by one, including those who had already resigned, such as Foreign Minister Gerardo Werthein and Justice Minister Mariano Cuneo Libarona, and then called for unity with the opposition.

“As of December 10, we will have 101 deputies instead of 37,” said Milei. “And in the Senate, we will go from six senators to 20. As of December 10, we will have the most reformist Congress in Argentine history. We are pleased to know that in many provinces, the second-largest force is not Kirchnerism [a left-wing branch of Peronism inspired by former presidents Néstor and Cristina Kirchner that emphasizes social welfare programs and state intervention], but rather the provincial ruling parties, rational forces that know that one plus one equals two. That is why we invited the governors to discuss these agreements.”

Milei took the stage wearing a suit and tie, not his usual black leather jacket — “dressed like a president,” as he often says — and his tone was calm.

The Buenos Aires result explains much of the far-right’s triumph. It is the largest district in the country, with nearly 40% of the national electorate, and overturning the previous defeat to Peronism had not been within even the government’s most optimistic forecasts. La Libertad Avanza (Freedom Advances) hadn’t even been able to include a photo of its candidate, Diego Santilli, on the ballot in that district because Milei’s original choice, José Luis Espert, resigned amid alleged corruption without enough time to reprint them.

The government built its campaign around fear of a return of Peronism in its Kirchnerist form. Donald Trump helped fuel that strategy: two weeks ago, he said that the $40 billion he offered to Milei — $20 billion in a currency-swap arrangement and the rest as private credit — depended on a far-right victory. He later toned down his comments, but the mere suggestion caused Argentine bonds to collapse and the peso to depreciate. If the goal was to instill fear among voters, it worked remarkably well.

Peronism in all its forms unexpectedly lost in 18 of Argentina’s 24 provinces, taking 31.7% of the vote, a figure that could rise slightly when smaller allied groups are counted. The result will allow the movement to retain its 99 seats in the lower house come December, but it risks losing its status as the largest minority if La Libertad Avanza adds its 80 deputies to the 24 from Pro, the party of former president Mauricio Macri (2015–2019). In the Senate, Peronism fared worse: it will hold 28 seats, down from 34, while La Libertad Avanza will grow from six to 18 senators.

The big losers were the six governors who unsuccessfully tried to create an alternative to both the far-right and Peronism under the banner of a new coalition called United Provinces. Their goal was to act as power brokers in a polarized Congress, but the eight deputies they won will not be enough. Judging by the results, the votes they sought appear to have gone to the far right.

A war between good and evil

Milei’s strategy of framing the election as a battle between good, represented by himself, and evil, meaning Kirchnerism, proved successful. According to political scientist Juan Negri of Torcuato Di Tella University, polarization led “a large part of the population to prefer voting for Milei over the return of Peronism.”

“Peronism, moreover, doesn’t convey the image of an opposition with a forward-looking plan — it just insists that everything Milei does is wrong. His success in the September elections in Buenos Aires Province seems to have mobilized many anti-Peronist voters,” Negri said.

According to the final count, voter turnout rose by nine points compared to the provincial election in Buenos Aires.

Despite the victory, Milei will now have to go into “recalculating” mode. He does not have a congressional majority and will need to build new internal alliances.

“Milei’s main challenge is to quickly restructure his Cabinet and show that he can build political bridges to ensure governability in the last two years of his term, which will undoubtedly be the most difficult,” says Patricio Giusto, director of the consulting firm Diagnóstico Político. “Secondly, he must stop delaying the redesign of the economic program, which is currently being propped up artificially by an emergency bailout from the U.S. Treasury.”

Milei had framed election day as a fight for political survival, an all-or-nothing gamble unusual for a midterm election that typically serves only as a barometer of public sentiment toward the government of the day. But this is no ordinary political cycle for Argentina. Milei came to power two years ago with barely any representation in Congress, without a single provincial governor of his own, and with a team lacking both technical capacity and political experience. He hoped, therefore, that the ballot box would grant him some breathing room in his daily struggle to govern.

And he achieved that — despite the storms. Since June, corruption allegations have dogged his sister, Karina Milei, and he even had to sacrifice his main congressional candidate in Buenos Aires over links to a businessman imprisoned for drug trafficking. The economy began to falter in step with the scandals. With no international reserves, investors fled Argentine bonds and the peso collapsed. Combined with the economic paralysis brought on by austerity measures, public sentiment shifted sharply. Milei then clung to Donald Trump’s promises of help. And in September, his party was defeated in Buenos Aires. The series of calamities could hardly have been worse.

Now, the government can claim to be back on its feet. A restrained Milei has called for building alliances with what he called the “rational” opposition — a move explicitly requested by the International Monetary Fund (IMF), which in April granted Argentina yet another $20 billion loan. It is also a condition coming directly from Washington. For the United States, Argentina is now viewed as an unconditional ally in the region. “I would rather extend a swap line than be shooting at the boats carrying drugs […] coming out of Venezuela,” said Scott Bessent on Sunday.

Attention has also turned to former president Mauricio Macri (2015–2019), a key far-right ally who had distanced himself after tensions with the presidency. Macri voted on Sunday around noon and reminded reporters that Milei “has my phone number” and can call him anytime after Monday. “I’m available to discuss how to ensure governability and contribute to change, but we haven’t talked about ministers. If Milei needs something, he’ll call,” he said at the polling station. Macri’s reference to possible cabinet changes was no coincidence: three current ministers must leave their posts in December to take up seats in Congress.

The rivalry between Milei’s top adviser, Santiago Caputo, and his sister Karina Milei is another burden weighing on his libertarian administration. So far, Milei has kept the dispute — between his chief strategist and the woman who is not only his most powerful official but also his emotional anchor — swept under the rug. But as of Monday, he will no longer be able to postpone addressing it. Each represents competing factions within the government, which at times has been paralyzed by ministers and secretaries fearful of being casualties in the infighting.

In any case, Milei will not be the same after this Monday.

Sign up for our weekly newsletter to get more English-language news coverage from EL PAÍS USA Edition

Archived In

Recomendaciones EL PAÍS
Recomendaciones EL PAÍS
_
_
\ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/ElPais_Milei_midterms_20251027.html.txt b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/ElPais_Milei_midterms_20251027.html.txt new file mode 100644 index 0000000000..135777b736 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/ElPais_Milei_midterms_20251027.html.txt @@ -0,0 +1 @@ +Milei wins Argentina’s midterm elections with more than 40% of the vote | International | EL PAÍS English Skip to content _ _ _ _ Select: - - - España América México Colombia Chile Argentina US Español US English International subscribe H HOLA LOG IN International Mexico China Latest News Elections in Argentina Milei wins Argentina’s midterm elections with more than 40% of the vote The far right bounced back from its defeat two months ago in Buenos Aires against Peronism and scored solid results in major provinces such as Córdoba, Mendoza, Santa Fe, and Entre Ríos Argentina President Javier Milei celebrates the results of the legislative elections on Sunday. Cristina Sille (REUTERS) Federico Rivas Molina Buenos Aires - Oct 27, 2025 - 09:40 CET Share on Whatsapp Share on Facebook Share on Twitter Desplegar Redes Sociales Prefer EL PAÍS on Google Compartir: Whatsapp Facebook Twitter Bluesky Linkedin Copy link Javier Milei won Argentina’s legislative elections on Sunday with 40.8% of the votes. It was an unexpectedly large victory, which the far-right leader hailed as historic. Milei had plenty of reasons to celebrate. After four months of turmoil for the Argentine government — with the economy dependent on a financial bailout from U.S. President Donald Trump , high-profile corruption scandals , and even candidates disqualified for links to drug trafficking — it had feared winning closer to 30% than 40% of the vote. Milei even celebrated a narrow victory in Buenos Aires province, where just two months ago, in the provincial legislative elections, he had lost to Peronism — the dominant political movement in Argentina founded by former president Juan Domingo Perón that blends nationalism, social justice, and strong state involvement in the economy — by more than 14 points. The far-right also won decisively in the capital and in large provinces such as Córdoba, Mendoza, Entre Ríos, and Santa Fe. “Today the people decided to leave behind 100 years of decline; today the construction of a great Argentina begins,” Milei said in his first victory speech. The president thanked his ministers one by one, including those who had already resigned, such as Foreign Minister Gerardo Werthein and Justice Minister Mariano Cuneo Libarona, and then called for unity with the opposition. “As of December 10, we will have 101 deputies instead of 37,” said Milei. “And in the Senate, we will go from six senators to 20. As of December 10, we will have the most reformist Congress in Argentine history. We are pleased to know that in many provinces, the second-largest force is not Kirchnerism [a left-wing branch of Peronism inspired by former presidents Néstor and Cristina Kirchner that emphasizes social welfare programs and state intervention], but rather the provincial ruling parties, rational forces that know that one plus one equals two. That is why we invited the governors to discuss these agreements.” Milei took the stage wearing a suit and tie, not his usual black leather jacket — “dressed like a president,” as he often says — and his tone was calm. The Buenos Aires result explains much of the far-right’s triumph. It is the largest district in the country, with nearly 40% of the national electorate, and overturning the previous defeat to Peronism had not been within even the government’s most optimistic forecasts. La Libertad Avanza (Freedom Advances) hadn’t even been able to include a photo of its candidate, Diego Santilli, on the ballot in that district because Milei’s original choice, José Luis Espert, resigned amid alleged corruption without enough time to reprint them. The governor of Buenos Aires and president of the opposition party, Axel Kicillof (center), speaks with his candidates after the election results are announced. Luciano González (Anadolu/Getty Images) The government built its campaign around fear of a return of Peronism in its Kirchnerist form. Donald Trump helped fuel that strategy: two weeks ago, he said that the $40 billion he offered to Milei — $20 billion in a currency-swap arrangement and the rest as private credit — depended on a far-right victory. He later toned down his comments, but the mere suggestion caused Argentine bonds to collapse and the peso to depreciate . If the goal was to instill fear among voters, it worked remarkably well. Peronism in all its forms unexpectedly lost in 18 of Argentina’s 24 provinces, taking 31.7% of the vote, a figure that could rise slightly when smaller allied groups are counted. The result will allow the movement to retain its 99 seats in the lower house come December, but it risks losing its status as the largest minority if La Libertad Avanza adds its 80 deputies to the 24 from Pro, the party of former president Mauricio Macri (2015–2019). In the Senate, Peronism fared worse: it will hold 28 seats, down from 34, while La Libertad Avanza will grow from six to 18 senators. The big losers were the six governors who unsuccessfully tried to create an alternative to both the far-right and Peronism under the banner of a new coalition called United Provinces. Their goal was to act as power brokers in a polarized Congress, but the eight deputies they won will not be enough. Judging by the results, the votes they sought appear to have gone to the far right. A war between good and evil Milei’s strategy of framing the election as a battle between good, represented by himself, and evil, meaning Kirchnerism, proved successful. According to political scientist Juan Negri of Torcuato Di Tella University, polarization led “a large part of the population to prefer voting for Milei over the return of Peronism.” “Peronism, moreover, doesn’t convey the image of an opposition with a forward-looking plan — it just insists that everything Milei does is wrong. His success in the September elections in Buenos Aires Province seems to have mobilized many anti-Peronist voters,” Negri said. According to the final count, voter turnout rose by nine points compared to the provincial election in Buenos Aires. Despite the victory, Milei will now have to go into “recalculating” mode. He does not have a congressional majority and will need to build new internal alliances. “Milei’s main challenge is to quickly restructure his Cabinet and show that he can build political bridges to ensure governability in the last two years of his term, which will undoubtedly be the most difficult,” says Patricio Giusto, director of the consulting firm Diagnóstico Político. “Secondly, he must stop delaying the redesign of the economic program, which is currently being propped up artificially by an emergency bailout from the U.S. Treasury.” Supporters of the La Libertad Avanza party celebrate the results while watching Javier Milei's speech on Sunday in Buenos Aires. Tobias Skarlovnik (Getty Images) Milei had framed election day as a fight for political survival, an all-or-nothing gamble unusual for a midterm election that typically serves only as a barometer of public sentiment toward the government of the day. But this is no ordinary political cycle for Argentina. Milei came to power two years ago with barely any representation in Congress, without a single provincial governor of his own, and with a team lacking both technical capacity and political experience. He hoped, therefore, that the ballot box would grant him some breathing room in his daily struggle to govern. And he achieved that — despite the storms. Since June, corruption allegations have dogged his sister, Karina Milei, and he even had to sacrifice his main congressional candidate in Buenos Aires over links to a businessman imprisoned for drug trafficking. The economy began to falter in step with the scandals. With no international reserves, investors fled Argentine bonds and the peso collapsed. Combined with the economic paralysis brought on by austerity measures, public sentiment shifted sharply . Milei then clung to Donald Trump’s promises of help. And in September, his party was defeated in Buenos Aires. The series of calamities could hardly have been worse. Now, the government can claim to be back on its feet. A restrained Milei has called for building alliances with what he called the “rational” opposition — a move explicitly requested by the International Monetary Fund (IMF), which in April granted Argentina yet another $20 billion loan. It is also a condition coming directly from Washington. For the United States, Argentina is now viewed as an unconditional ally in the region. “I would rather extend a swap line than be shooting at the boats carrying drugs […] coming out of Venezuela,” said Scott Bessent on Sunday. Attention has also turned to former president Mauricio Macri (2015–2019), a key far-right ally who had distanced himself after tensions with the presidency. Macri voted on Sunday around noon and reminded reporters that Milei “has my phone number” and can call him anytime after Monday. “I’m available to discuss how to ensure governability and contribute to change, but we haven’t talked about ministers. If Milei needs something, he’ll call,” he said at the polling station. Macri’s reference to possible cabinet changes was no coincidence: three current ministers must leave their posts in December to take up seats in Congress. The rivalry between Milei’s top adviser, Santiago Caputo, and his sister Karina Milei is another burden weighing on his libertarian administration. So far, Milei has kept the dispute — between his chief strategist and the woman who is not only his most powerful official but also his emotional anchor — swept under the rug. But as of Monday, he will no longer be able to postpone addressing it. Each represents competing factions within the government, which at times has been paralyzed by ministers and secretaries fearful of being casualties in the infighting. In any case, Milei will not be the same after this Monday. Argentine President Javier Milei (right) and his adviser Santiago Caputo greet their supporters after the polls closed. Rodrigo Abd (AP/LaPresse) Sign up for our weekly newsletter to get more English-language news coverage from EL PAÍS USA Edition Sign up to EL PAÍS US Edition bulletin International El País in English on Facebook International El País in English on Twitter More information Argentina’s peso slumps despite Trump’s financial aid for Milei Javier Lorca | Buenos Aires Milei performs at rock concert in front of 15,000 people to save the election campaign Federico Rivas Molina / Mar Centenera | Buenos Aires Archived In Argentina Javier Milei La Libertad Avanza Adheres to More information If you are interested in licensing this content, click here _ Últimas noticias 21:58 How long can a civilization survive before it collapses? ‘Stable utopias are the least likely scenarios’ 21:20 False memories: Why our mind reconstructs the past 20:37 Why are there more top grades at university? ChatGPT is to blame 18:27 Caro Claire Burke, writer: ‘Tradwives were the first sign of a sociopolitical shift in the United States’ Most viewed Steven Soderbergh brings us John Lennon’s Last Interview ‘Sodomized’ gargoyles beside Spain’s world-famous Santiago Cathedral: The ‘aberration’ only the public noticed Underinvestment, crumbling walls and rave parties: Spain doesn’t know what to do with its castles Takeshi Yoro, anatomist: ‘In Japan, we don’t see a robot as a threat: it’s simply another form of presence in the world’ ICE arrests former Kansas mayor who illegally voted for Trump in the 2024 election Recomendaciones EL PAÍS Cursos Centros Francés online Inglés online Italiano online Alemán online Crucigramas & Juegos Cursos cursos Máster en Project Management cursos Máster en Diseño de Interiores cursos Máster Universitario en Dirección Logística cursos Curso Diseño Gráfico Centros cursosonline Máster en Neurociencia cursosonline Máster Universitario en Escritura Creativa cursosonline Máster en Enfermería Forense y Criminal cursosonline Máster Universitario en Terapias Psicológicas de Tercera Generación Francés online cursosingles Mejora tu francés con una Learning Serie. cursosingles Episodios diarios, culturales y personalizados. cursosingles Evaluación de nivel y certificado pedagógico al acabar la formación. cursosingles Prueba 7 días gratis y sin compromiso. Inglés online cursosingles Mejora tu inglés con con una Learning Serie. cursosingles Episodios diarios, culturales y personalizados. cursosingles Evaluación de nivel y certificado pedagógico al acabar la formación. cursosingles Prueba 7 días gratis y sin compromiso. Italiano online cursosingles Mejora tu italiano con una Learning Serie. cursosingles Episodios diarios, culturales y personalizados. cursosingles Evaluación de nivel y certificado pedagógico al acabar la formación. cursosingles Prueba 7 días gratis y sin compromiso. Alemán online cursosingles Mejora tu alemán con una Learning Serie. cursosingles Episodios diarios, culturales y personalizados. cursosingles Evaluación de nivel y certificado pedagógico al acabar la formación. cursosingles Prueba 7 días gratis y sin compromiso. Crucigramas & Juegos juegos Crucigramas minis juegos Crucigramas Tarkus juegos Sudokus mini juegos Sopas de letras Recomendaciones EL PAÍS Cursos Centros Italiano online Francés online Alemán online Crucigramas & Juegos Cursos cursos Máster en Psicología General cursos Máster en IA for Business cursos Máster en Dirección de Recursos Humanos cursos Maestría en Criminología Centros cursosonline DIRECTORIO DE CENTROS DE FORMACIÓN cursosonline MBA & Máster en Finanzas cursosonline MBA en Gestión de Salud cursosonline Licenciatura en Administración de Empresas Turísticas y Sustentabilidad - En línea Italiano online cursosingles Mejora tu italiano con una Learning Serie. cursosingles Episodios diarios, culturales y personalizados. cursosingles Evaluación de nivel y certificado pedagógico al acabar la formación. cursosingles Prueba 7 días gratis y sin compromiso. Francés online cursosingles Mejora tu francés con una Learning Serie. cursosingles Episodios diarios, culturales y personalizados. cursosingles Evaluación de nivel y certificado pedagógico al acabar la formación. cursosingles Prueba 7 días gratis y sin compromiso. Alemán online cursosingles Mejora tu alemán con una Learning Serie. cursosingles Episodios diarios, culturales y personalizados. cursosingles Evaluación de nivel y certificado pedagógico al acabar la formación. cursosingles Prueba 7 días gratis y sin compromiso. Crucigramas & Juegos juegos ¡Disfruta con nuestros Crucigramas para expertos! juegos Palabra secreta juegos Juega a nuestros Sudoku medio y mejora día a día tu nivel juegos Juega a las nuevas Sopas de letras clásicas y temáticas de EL PAÍS _ _ HOLA Subscribe for € 1 My activity My Subscription My personal data My newsletters Rights and de-registration Events and experiences Asistente Vera IA logout Close change contrast: Buscar Select: - - - España América México Colombia Chile Argentina US Español US English If you want to follow all the latest news without any limits, subscribe to EL PAÍS for just €1 the first month SUBSCRIBE NOW International U.S. Economy And Business Science Health Technology Climate People Lifestyle Opinion Culture Sports EPS Latest News Newsletter Follow on: El País in English on Facebook El País in English on Twitter El País in English on Youtube El País in English on Instagram Close \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/GT3_AP_20251027_excerpt.md b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/GT3_AP_20251027_excerpt.md new file mode 100644 index 0000000000..6d7368a157 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/GT3_AP_20251027_excerpt.md @@ -0,0 +1,32 @@ +# Excerpt GT3_AP_20251027 + +Title: Milei triumphs in Argentine midterm elections +Publisher: AP News +Published date: 2025-10-27 +URL: https://apnews.com/article/argentina-midterm-election-javier-milei-66d7c03825a7a0f56ce5808ff3ac1df4 +Accessed: 2026-05-21 +HTTP status: 200 + +```text +stricts in midterm elections Sunday, clinching a crucial vote of confidence that strengthens his ability to carry out his radical free-market experiment with billions of dollars in backing from the Trump administration. In the election widely seen as a referendum on Milei’s past two years in office, his upstart La Libertad Avanza party scored over 40% of votes compared with 31% for the left-leaning populist opposition movement, known as Peronism, exceeding analysts’ projections. Milei, a key ideological ally of U.S. President Donald Trump , said his party and allied blocs picked up 14 seats in the Senate and 64 in the lower house of Congress on Sunday, bolstering the government’s support in the legislature enough to uphold presidential vetoes and block impeachment efforts. At La Libertad Avanza headquarters late Sunday in downtown Buenos Aires, a beaming Milei hailed the election sweep as a mandate to press forward with his spending cuts and introduce ambitious tax and labor reforms. T + +--- + +ey districts in midterm elections Sunday, clinching a crucial vote of confidence that strengthens his ability to carry out his radical free-market experiment with billions of dollars in backing from the Trump administration. In the election widely seen as a referendum on Milei’s past two years in office, his upstart La Libertad Avanza party scored over 40% of votes compared with 31% for the left-leaning populist opposition movement, known as Peronism, exceeding analysts’ projections. Milei, a key ideological ally of U.S. President Donald Trump , said his party and allied blocs picked up 14 seats in the Senate and 64 in the lower house of Congress on Sunday, bolstering the government’s support in the legislature enough to uphold presidential vetoes and block impeachment efforts. At La Libertad Avanza headquarters late Sunday in downtown Buenos Aires, a beaming Milei hailed the election sweep as a mandate to press forward with his spending cuts and introduce ambitious tax and labor refor + +--- + +ilei won decisive victories in key districts in midterm elections Sunday, clinching a crucial vote of confidence that strengthens his ability to carry out his radical free-market experiment with billions of dollars in backing from the Trump administration. In the election widely seen as a referendum on Milei’s past two years in office, his upstart La Libertad Avanza party scored over 40% of votes compared with 31% for the left-leaning populist opposition movement, known as Peronism, exceeding analysts’ projections. Milei, a key ideological ally of U.S. President Donald Trump , said his party and allied blocs picked up 14 seats in the Senate and 64 in the lower house of Congress on Sunday, bolstering the government’s support in the legislature enough to uphold presidential vetoes and block impeachment efforts. At La Libertad Avanza headquarters late Sunday in downtown Buenos Aires, a beaming Milei hailed the election sweep as a mandate to press forward with his spending cuts and introdu + +--- + +aning populist opposition movement, known as Peronism, exceeding analysts’ projections. Milei, a key ideological ally of U.S. President Donald Trump , said his party and allied blocs picked up 14 seats in the Senate and 64 in the lower house of Congress on Sunday, bolstering the government’s support in the legislature enough to uphold presidential vetoes and block impeachment efforts. At La Libertad Avanza headquarters late Sunday in downtown Buenos Aires, a beaming Milei hailed the election sweep as a mandate to press forward with his spending cuts and introduce ambitious tax and labor reforms. The results also automatically position him as a candidate for reelection in 2027. Related Stories Argentines hunting for source of hantavirus outbreak trap rats in southernmost city 3 MIN READ Argentina’s icy outpost at the end of the world fears the hantavirus will chill tourism 5 MIN READ 13 Argentina’s beef consumption falls to lowest level in 20 years as prices soar 4 MIN READ 16 “The Arge + +--- + +ast two years in office, his upstart La Libertad Avanza party scored over 40% of votes compared with 31% for the left-leaning populist opposition movement, known as Peronism, exceeding analysts’ projections. Milei, a key ideological ally of U.S. President Donald Trump , said his party and allied blocs picked up 14 seats in the Senate and 64 in the lower house of Congress on Sunday, bolstering the government’s support in the legislature enough to uphold presidential vetoes and block impeachment efforts. At La Libertad Avanza headquarters late Sunday in downtown Buenos Aires, a beaming Milei hailed the election sweep as a mandate to press forward with his spending cuts and introduce ambitious tax and labor reforms. The results also automatically position him as a candidate for reelection in 2027. Related Stories Argentines hunting for source of hantavirus outbreak trap rats in southernmost city 3 MIN READ Argentina’s icy outpost at the end of the world fears the hantavirus will chill tou + +--- + +ferendum on Milei’s past two years in office, his upstart La Libertad Avanza party scored over 40% of votes compared with 31% for the left-leaning populist opposition movement, known as Peronism, exceeding analysts’ projections. Milei, a key ideological ally of U.S. President Donald Trump , said his party and allied blocs picked up 14 seats in the Senate and 64 in the lower house of Congress on Sunday, bolstering the government’s support in the legislature enough to uphold presidential vetoes and block impeachment efforts. At La Libertad Avanza headquarters late Sunday in downtown Buenos Aires, a beaming Milei hailed the election sweep as a mandate to press forward with his spending cuts and introduce ambitious tax and labor reforms. The results also automatically position him as a candidate for reelection in 2027. Related Stories Argentines hunting for source of hantavirus outbreak trap rats in southernmost city 3 MIN READ Argentina’s icy outpost at +``` diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/GT4_BATIMES_20251026_excerpt.md b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/GT4_BATIMES_20251026_excerpt.md new file mode 100644 index 0000000000..4e4d93454e --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/GT4_BATIMES_20251026_excerpt.md @@ -0,0 +1,32 @@ +# Excerpt GT4_BATIMES_20251026 + +Title: Decisive win for Milei’s La Libertad Avanza in key midterm election +Publisher: Buenos Aires Times +Published date: 2025-10-26 +URL: https://www.batimes.com.ar/news/argentina/decisive-win-for-mileis-la-libertad-avanza-in-key-midterm-election.phtml +Accessed: 2026-05-21 +HTTP status: 200 + +```text +ions. James Grainger Editor-in-Chief, Buenos Aires Times. Share this News President Javier Milei. | AFP President Javier Milei won a decisive victory in Sunday's midterm elections, boosting his flagging reform agenda and jumpstarting the second half of his term in office. Milei's La Libertad Avanza (LLA) rebounded from a series of setbacks to take 40.84 percent of the votes cast for members of the lower house Chamber of Deputies and upper house Senate, according to official results based on 90 percent of votes counted. According to partial results, the opposition Fuerza Patria (Peronist) coalition had around 31.64 percent. In third place was Provincias Unidas, a centrist bloc that seeks to break with polarisation and took around seven percent of the vote. The results hand Milei a strengthened hand in Congress, close to the third it needs in both chambers to shield presidential vetoes from being overturned. However, LLLA will have to forge alliances with other forces to advance larger s + +--- + +Decisive win for Milei’s La Libertad Avanza in key midterm election | Buenos Aires Times Thursday, May 21, 2026 Argentina Economy Latin America World Culture Sports Opinion ARGENTINA | 26-10-2025 22:12 Decisive win for Milei’s La Libertad Avanza in key midterm election Milei's La Libertad Avanza (LLA) rebounded from a series of setbacks to perform well in Sunday's midterm elections. James Grainger Editor-in-Chief, Buenos Aires Times. Share this News President Javier Milei. | AFP President Javier Milei won a decisive victory in Sunday's midterm elections, boosting his flagging reform agenda and jumpstarting the second half of his term in office. Milei's La Libertad Av + +--- + +rtial results, the opposition Fuerza Patria (Peronist) coalition had around 31.64 percent. In third place was Provincias Unidas, a centrist bloc that seeks to break with polarisation and took around seven percent of the vote. The results hand Milei a strengthened hand in Congress, close to the third it needs in both chambers to shield presidential vetoes from being overturned. However, LLLA will have to forge alliances with other forces to advance larger structural reforms. Read more... ‘Diego would defend me,’ says lead suspect in trial over Maradona’s death "God bless Argentina," Milei's spokesman Manuel Adorni wrote on X. As the initial results were released, hundreds of Milei’s supporters gathered outside the Hotel Libertador in Buenos Aires, his party’s headquarters for elections. "I am very happy and excited. I did not expect such a large number," said Facundo Campos, a 38-year-old marketing consultant, as he cheered Milei’s performance.  Read more... Economic activity rebounds: + +--- + +Times. Share this News President Javier Milei. | AFP President Javier Milei won a decisive victory in Sunday's midterm elections, boosting his flagging reform agenda and jumpstarting the second half of his term in office. Milei's La Libertad Avanza (LLA) rebounded from a series of setbacks to take 40.84 percent of the votes cast for members of the lower house Chamber of Deputies and upper house Senate, according to official results based on 90 percent of votes counted. According to partial results, the opposition Fuerza Patria (Peronist) coalition had around 31.64 percent. In third place was Provincias Unidas, a centrist bloc that seeks to break with polarisation and took around seven percent of the vote. The results hand Milei a strengthened hand in Congress, close to the third it needs in both chambers to shield presidential vetoes from being overturned. However, LLLA will have to forge alliances with other forces to advance larger structural reforms. Read more... ‘Diego would defend + +--- + + AFP President Javier Milei won a decisive victory in Sunday's midterm elections, boosting his flagging reform agenda and jumpstarting the second half of his term in office. Milei's La Libertad Avanza (LLA) rebounded from a series of setbacks to take 40.84 percent of the votes cast for members of the lower house Chamber of Deputies and upper house Senate, according to official results based on 90 percent of votes counted. According to partial results, the opposition Fuerza Patria (Peronist) coalition had around 31.64 percent. In third place was Provincias Unidas, a centrist bloc that seeks to break with polarisation and took around seven percent of the vote. The results hand Milei a strengthened hand in Congress, close to the third it needs in both chambers to shield presidential vetoes from being overturned. However, LLLA will have to forge alliances with other forces to advance larger structural reforms. Read more... ‘Diego would defend me,’ says lead suspect in trial over Maradona’s + +--- + +ding to official results based on 90 percent of votes counted. According to partial results, the opposition Fuerza Patria (Peronist) coalition had around 31.64 percent. In third place was Provincias Unidas, a centrist bloc that seeks to break with polarisation and took around seven percent of the vote. The results hand Milei a strengthened hand in Congress, close to the third it needs in both chambers to shield presidential vetoes from being overturned. However, LLLA will have to forge alliances with other forces to advance larger structural reforms. Read more... ‘Diego would defend me,’ says lead suspect in trial over Maradona’s death "God bless Argentina," Milei's spokesman Manuel Adorni wrote on X. As the initial results were released, hundreds of Milei’s supporters gathered outside the Hotel Libertador in Buenos Aires, his party’s headquarters for elections. "I am very happy and excited. I did not expect such a large number," said Facundo Campos, a 38-year-old marketing consultant, +``` diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/GT5_ELPAIS_20251027_excerpt.md b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/GT5_ELPAIS_20251027_excerpt.md new file mode 100644 index 0000000000..e514b8e200 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/GT5_ELPAIS_20251027_excerpt.md @@ -0,0 +1,32 @@ +# Excerpt GT5_ELPAIS_20251027 + +Title: Milei wins Argentina’s midterm elections with more than 40% of the vote +Publisher: El País English +Published date: 2025-10-27 +URL: https://english.elpais.com/international/2025-10-27/milei-wins-argentinas-midterm-elections-with-more-than-40-of-the-vote.html +Accessed: 2026-05-21 +HTTP status: 200 + +```text +Milei wins Argentina’s midterm elections with more than 40% of the vote | International | EL PAÍS English Skip to content _ _ _ _ Select: - - - España América México Colombia Chile Argentina US Español US English International subscribe H HOLA LOG IN International Mexico China Latest News Elections in Argentina Milei wins Argentina’s midterm elections with more than 40% of the vote The far right bounced back from its defeat two months ago in Buenos Aires against Peronism and scored solid results in major provinces such as Córdoba, Mendoza, Santa Fe, and Entre Ríos Argentina President Javier Milei celebrates the results of the legislative elections on Sunday. Cristina Sille (REUTERS) Federico Rivas + +--- + +Milei wins Argentina’s midterm elections with more than 40% of the vote | International | EL PAÍS English Skip to content _ _ _ _ Select: - - - España América México Colombia Chile Argentina US Español US English International subscribe H HOLA LOG IN International Mexico China Latest News Elections in Argentina Milei wins Argentina’s midterm elections with more than 40% of the vote The far right bounced back from its defeat two months ago in Buenos Aires against Peronism and scored solid results in major provinces such as Córdoba, Mendoza, Santa Fe, and Entre Ríos Argentina President Javier Milei celebrates the results of the legislative elections on Sunday. Cristina Sille (REUTERS) Fede + +--- + + jacket — “dressed like a president,” as he often says — and his tone was calm. The Buenos Aires result explains much of the far-right’s triumph. It is the largest district in the country, with nearly 40% of the national electorate, and overturning the previous defeat to Peronism had not been within even the government’s most optimistic forecasts. La Libertad Avanza (Freedom Advances) hadn’t even been able to include a photo of its candidate, Diego Santilli, on the ballot in that district because Milei’s original choice, José Luis Espert, resigned amid alleged corruption without enough time to reprint them. The governor of Buenos Aires and president of the opposition party, Axel Kicillof (center), speaks with his candidates after the election results are announced. Luciano González (Anadolu/Getty Images) The government built its campaign around fear of a return of Peronism in its Kirchnerist form. Donald Trump helped fuel that strategy: two weeks ago, he said that the $40 billion he of + +--- + +pse and the peso to depreciate . If the goal was to instill fear among voters, it worked remarkably well. Peronism in all its forms unexpectedly lost in 18 of Argentina’s 24 provinces, taking 31.7% of the vote, a figure that could rise slightly when smaller allied groups are counted. The result will allow the movement to retain its 99 seats in the lower house come December, but it risks losing its status as the largest minority if La Libertad Avanza adds its 80 deputies to the 24 from Pro, the party of former president Mauricio Macri (2015–2019). In the Senate, Peronism fared worse: it will hold 28 seats, down from 34, while La Libertad Avanza will grow from six to 18 senators. The big losers were the six governors who unsuccessfully tried to create an alternative to both the far-right and Peronism under the banner of a new coalition called United Provinces. Their goal was to act as power brokers in a polarized Congress, but the eight deputies they won will not be enough. Judging by th + +--- + +Milei said in his first victory speech. The president thanked his ministers one by one, including those who had already resigned, such as Foreign Minister Gerardo Werthein and Justice Minister Mariano Cuneo Libarona, and then called for unity with the opposition. “As of December 10, we will have 101 deputies instead of 37,” said Milei. “And in the Senate, we will go from six senators to 20. As of December 10, we will have the most reformist Congress in Argentine history. We are pleased to know that in many provinces, the second-largest force is not Kirchnerism [a left-wing branch of Peronism inspired by former presidents Néstor and Cristina Kirchner that emphasizes social welfare programs and state intervention], but rather the provincial ruling parties, rational forces that know that one plus one equals two. That is why we invited the governors to discuss these agreements.” Milei took the stage wearing a suit and tie, not his usual black leather jacket — “dressed like a president,” as + +--- + +ng those who had already resigned, such as Foreign Minister Gerardo Werthein and Justice Minister Mariano Cuneo Libarona, and then called for unity with the opposition. “As of December 10, we will have 101 deputies instead of 37,” said Milei. “And in the Senate, we will go from six senators to 20. As of December 10, we will have the most reformist Congress in Argentine history. We are pleased to know that in many provinces, the second-largest force is not Kirchnerism [a left-wing branch of Peronism inspired by former presidents Néstor and Cristina Kirchner that emphasizes social welfare programs and state intervention], but rather the provincial ruling parties, rational forces that know that one plus one equals two. That is why we invited the governors to discuss these agreements.” Milei took the stage wearing a suit and tie, not his usual black leather jacket — “dressed like a president,” as he often says — and his tone was calm. The Buenos Aires result explains much of the far-right’ +``` diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/GT6_NPR_20251027_excerpt.md b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/GT6_NPR_20251027_excerpt.md new file mode 100644 index 0000000000..bd7ceebb42 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/GT6_NPR_20251027_excerpt.md @@ -0,0 +1,32 @@ +# Excerpt GT6_NPR_20251027 + +Title: Milei triumphs in Argentine midterm elections +Publisher: NPR +Published date: 2025-10-27 +URL: https://www.npr.org/2025/10/27/g-s1-95158/milei-triumphs-argentine-midterm-elections +Accessed: 2026-05-21 +HTTP status: 200 + +```text +s ability to carry out his radical free-market experiment with billions of dollars in backing from the Trump administration. The Americas Argentina's President Milei, a Trump ally, faces a reckoning in midterm elections In the election widely seen as a referendum on Milei's past two years in office, his upstart La Libertad Avanza party scored over 40% of votes compared with 31% for the left-leaning populist opposition movement, known as Peronism, exceeding analysts' projections. Milei, a key ideological ally of U.S. President Donald Trump, said his party and allied blocs picked up 14 seats in the Senate and 64 in the lower house of Congress on Sunday, bolstering the government's support in the legislature enough to uphold presidential vetoes and block impeachment efforts. Sponsor Message At La Libertad Avanza headquarters late Sunday in downtown Buenos Aires, a beaming Milei hailed the election sweep as a mandate to press forward with his spending cuts and introduce ambitious tax and l + +--- + +ns his ability to carry out his radical free-market experiment with billions of dollars in backing from the Trump administration. The Americas Argentina's President Milei, a Trump ally, faces a reckoning in midterm elections In the election widely seen as a referendum on Milei's past two years in office, his upstart La Libertad Avanza party scored over 40% of votes compared with 31% for the left-leaning populist opposition movement, known as Peronism, exceeding analysts' projections. Milei, a key ideological ally of U.S. President Donald Trump, said his party and allied blocs picked up 14 seats in the Senate and 64 in the lower house of Congress on Sunday, bolstering the government's support in the legislature enough to uphold presidential vetoes and block impeachment efforts. Sponsor Message At La Libertad Avanza headquarters late Sunday in downtown Buenos Aires, a beaming Milei hailed the election sweep as a mandate to press forward with his spending cuts and introduce ambitious tax + +--- + +ote of confidence that strengthens his ability to carry out his radical free-market experiment with billions of dollars in backing from the Trump administration. The Americas Argentina's President Milei, a Trump ally, faces a reckoning in midterm elections In the election widely seen as a referendum on Milei's past two years in office, his upstart La Libertad Avanza party scored over 40% of votes compared with 31% for the left-leaning populist opposition movement, known as Peronism, exceeding analysts' projections. Milei, a key ideological ally of U.S. President Donald Trump, said his party and allied blocs picked up 14 seats in the Senate and 64 in the lower house of Congress on Sunday, bolstering the government's support in the legislature enough to uphold presidential vetoes and block impeachment efforts. Sponsor Message At La Libertad Avanza headquarters late Sunday in downtown Buenos Aires, a beaming Milei hailed the election sweep as a mandate to press forward with his spending c + +--- + +eaning populist opposition movement, known as Peronism, exceeding analysts' projections. Milei, a key ideological ally of U.S. President Donald Trump, said his party and allied blocs picked up 14 seats in the Senate and 64 in the lower house of Congress on Sunday, bolstering the government's support in the legislature enough to uphold presidential vetoes and block impeachment efforts. Sponsor Message At La Libertad Avanza headquarters late Sunday in downtown Buenos Aires, a beaming Milei hailed the election sweep as a mandate to press forward with his spending cuts and introduce ambitious tax and labor reforms. The results also automatically position him as a candidate for reelection in 2027. "The Argentine people have decided to leave behind 100 years of decadence," Milei exulted as his supporters cheered, referring to a succession of Peronist governments that brought Argentina infamy for its inflationary spirals and sovereign debt defaults. "Today we have passed the turning point. To + +--- + +past two years in office, his upstart La Libertad Avanza party scored over 40% of votes compared with 31% for the left-leaning populist opposition movement, known as Peronism, exceeding analysts' projections. Milei, a key ideological ally of U.S. President Donald Trump, said his party and allied blocs picked up 14 seats in the Senate and 64 in the lower house of Congress on Sunday, bolstering the government's support in the legislature enough to uphold presidential vetoes and block impeachment efforts. Sponsor Message At La Libertad Avanza headquarters late Sunday in downtown Buenos Aires, a beaming Milei hailed the election sweep as a mandate to press forward with his spending cuts and introduce ambitious tax and labor reforms. The results also automatically position him as a candidate for reelection in 2027. "The Argentine people have decided to leave behind 100 years of decadence," Milei exulted as his supporters cheered, referring to a succession of Peronist governments that brough + +--- + +eferendum on Milei's past two years in office, his upstart La Libertad Avanza party scored over 40% of votes compared with 31% for the left-leaning populist opposition movement, known as Peronism, exceeding analysts' projections. Milei, a key ideological ally of U.S. President Donald Trump, said his party and allied blocs picked up 14 seats in the Senate and 64 in the lower house of Congress on Sunday, bolstering the government's support in the legislature enough to uphold presidential vetoes and block impeachment efforts. Sponsor Message At La Libertad Avanza headquarters late Sunday in downtown Buenos Aires, a beaming Milei hailed the election sweep as a mandate to press forward with his spending cuts and introduce ambitious tax and labor reforms. The results also automatically position him as a candidate for reelection in 2027. "The Argentine people have decided to leave behind 100 years of decadence," Milei exulted as his supporters cheered, refer +``` diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/INDEC_IPC_Dic2025.pdf b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/INDEC_IPC_Dic2025.pdf new file mode 100644 index 0000000000..65734be4d5 Binary files /dev/null and b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/INDEC_IPC_Dic2025.pdf differ diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/NPR_Milei_midterms_20251027.html b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/NPR_Milei_midterms_20251027.html new file mode 100644 index 0000000000..00c8f33e8e --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/NPR_Milei_midterms_20251027.html @@ -0,0 +1,850 @@ + + + + + + + + + + + + + + + + + +Milei triumphs in Argentine midterm elections : NPR + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+ Milei triumphs in Argentine midterm elections President Milei won in key districts in an election widely seen as a referendum on his past two years in office. Trump had appeared to condition billions of dollars in backing on a good showing for Milei. +
+
+
+ +

+ The Americas +

+
+
+

Milei triumphs in Argentine midterm elections closely watched by Washington

+ + + +
+ + + + + +
+
+
+ + + + Argentina's President Javier Milei celebrates after winning in legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. + +
+
+
+
+

+ Argentina's President Javier Milei celebrates after winning in legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. + + + Rodrigo Abd/AP + + + hide caption +

+
+ + + toggle caption +
+ + + + Rodrigo Abd/AP + + +
+
+

BUENOS AIRES, Argentina — Argentina's libertarian President Javier Milei won decisive victories in key districts in midterm elections Sunday, clinching a crucial vote of confidence that strengthens his ability to carry out his radical free-market experiment with billions of dollars in backing from the Trump administration.

+ + +

In the election widely seen as a referendum on Milei's past two years in office, his upstart La Libertad Avanza party scored over 40% of votes compared with 31% for the left-leaning populist opposition movement, known as Peronism, exceeding analysts' projections.

Milei, a key ideological ally of U.S. President Donald Trump, said his party and allied blocs picked up 14 seats in the Senate and 64 in the lower house of Congress on Sunday, bolstering the government's support in the legislature enough to uphold presidential vetoes and block impeachment efforts.

+

At La Libertad Avanza headquarters late Sunday in downtown Buenos Aires, a beaming Milei hailed the election sweep as a mandate to press forward with his spending cuts and introduce ambitious tax and labor reforms. The results also automatically position him as a candidate for reelection in 2027.

"The Argentine people have decided to leave behind 100 years of decadence," Milei exulted as his supporters cheered, referring to a succession of Peronist governments that brought Argentina infamy for its inflationary spirals and sovereign debt defaults.

"Today we have passed the turning point. Today we begin the construction of a great Argentina."

+
+ + + + A woman holds a banner reading in Spanish, "Trump or homeland," outside former President Cristina Fernandez's home, where she is serving a six-year house arrest sentence for corruption, after polls closed during legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. + +
+
+
+
+

+ A woman holds a banner reading in Spanish, "Trump or homeland," outside former President Cristina Fernandez's home, where she is serving a six-year house arrest sentence for corruption, after polls closed during legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. + + + Natacha Pisarenko/AP + + + hide caption +

+
+ + + toggle caption +
+ + + + Natacha Pisarenko/AP + + +
+
+

High stakes include $40 billion from the U.S.

Perhaps never has an Argentine legislative election generated so much interest in Washington and Wall Street.

Trump appeared to condition a $20 billion currency swap deal with Argentina's central bank and an additional $20 billion loan from private banks on a good showing for Milei in national midterms, threatening to rescind the assistance for the cash-strapped country in the event of a Peronist victory.

"If he wins we're staying with him, and if he doesn't win, we're gone," Trump said after welcoming Milei to the White House earlier this month.

Those contentious comments added to mounting pressure on Milei, who has scrambled to avert a currency crisis since the Peronist opposition won a landslide victory in Buenos Aires provincial polls last month. Argentina's bonds and currency nosedived as markets sensed that the public was losing patience with Milei's reforms and that the midterm race would be tight.

+

To stem the run on the peso, Milei burned through billions of dollars in foreign exchange reserves to shore up the peso. In an extraordinary move, the U.S. Treasury then came to the rescue, selling dollars to help meet soaring demand for greenbacks and finalizing the credit line.

In the end, the Peronist alliance performed poorly, underscoring how weak the once-dominant movement has become in the Milei era, largely as a result of internal divisions. Markets were widely expected to rally on Monday.

"For foreign investors, this outcome is a relief because it shows that the Milei program can be sustainable," said Marcelo J. García, the America's director for the geopolitical risk consultancy Horizon Engage.

"It leaves the opposition weakened and fragmented, just as it was when Milei won the presidency in December 2023," Garcia added.

The Peronist coalition has struggled to channel rising public anger with Milei's painful austerity measures into a new political strategy after delivering the economic shambles that the chain saw-wielding outsider inherited in late 2023.

Trump, while on his way to Japan on Monday, posted on Truth Social that Milei was "doing a wonderful job" after his party beat expectations in midterm elections.

"Our confidence in him was justified by the People of Argentina," Trump wrote.

Milei responded to Trump's post, calling him "a great friend" of Argentina and thanking him for "trusting the Argentine people."

A changed electoral map

The results showed Milei's young libertarian party gaining support across the country — including in some surprising corners that have long been under the sway of Peronism.

In the closely watched Buenos Aires province, a Peronist stronghold home to nearly 40% of the electorate, La Libertad Avanza eked out a razor-thin victory Sunday. Just last month, the Peronists beat Milei's party there by a whopping 14 percentage points.

+ + + +

Axel Kicillof, governor of Buenos Aires province and the most influential elected official in the Peronist opposition, criticized Trump for putting his thumb on the scale.

He warned that the billions of dollars in financial aid from the U.S. Treasury and investment banks would do nothing to help ordinary Argentines squeezed by Milei's cuts to subsidies or forced out of business by a contracting economy.

"I want to make it clear that neither the U.S. government nor JP Morgan are charitable societies," he said. "If they come to Argentina, it is for nothing other than to take a profit."

With Milei's efforts to deregulate the economy and scrap tariffs winning over Argentina's powerful agriculture sector, La Libertad Avanza also swept Santa Fe, which dominates soybean production and processing, and Córdoba, another powerhouse farming province.

+
+ + + + Argentina's President Javier Milei greets supporters after winning in legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. + +
+
+
+
+

+ Argentina's President Javier Milei greets supporters after winning in legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. + + + Rodrigo Abd/AP + + + hide caption +

+
+ + + toggle caption +
+ + + + Rodrigo Abd/AP + + +
+
+

Risks remain for Milei as austerity hits hard

Despite Milei's new momentum, experts caution that the irascible president still needs to court political allies to see through his agenda. Given the limited number of seats up for grabs in this election, it was mathematically impossible for Milei to secure a majority in either house.

"This victory is necessary, but not sufficient to maintain control of Congress," said political consultant Sergio Berensztein. "The government must build a broad and effective coalition with like-minded forces."

Seeking to capitalize quickly on Sunday's results, Milei said he called the country's powerful provincial governors to accelerate agreements on long-term economic reform.

Sunday's outcome will also test public patience for Milei's cost-cutting measures in the coming months. Although Milei's budget cuts have significantly driven down inflation — from an annual high of 289% in April 2024 to 32% last month — the price increases still outpace salaries and pensions.

The electorate appears increasingly polarized between beneficiaries of Milei's reforms and those who say they're struggling to make ends meet like never before.

+

In the financial district of Puerto Madero, luxury car dealerships report sales surging since Milei scrapped import restrictions. Streets bustle with bankers who praise the president for ending a yearslong ban on selling dollars online. Fine restaurants serve Argentine oil executives who gush about his efforts to draw foreign investment.

But at a soup kitchen on the other side of Argentina's Riachuelo River, Epifanía Contreras, 64, said she feels like she's bearing the brunt of the cutbacks.

"You can't live on 290,000 pesos a month with today's inflation," she said, describing how her $200 monthly pension has shriveled in value since Milei cut cost-of-living increases. "The situation is getting worse and worse."

Reflecting widespread public resignation, electoral authorities reported a turnout rate of just under 68% Sunday, among the lowest recorded since the nation's 1983 return to democracy. Voting is compulsory in Argentina.

"I vote out of obligation, nothing more," said Matías Paredes, 50, a real estate broker whose foreign clientele vanished with Milei's strong exchange rate. "None of these figures inspire optimism. We're just choosing the lesser evil."

+
+ + + +
+
+ + +
+
+ + +
+
+
+ + +
+ + + + + + +
+ +
+
+
+ + + +
+ + +
+ + +
+ +
+ + +
\ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/NPR_Milei_midterms_20251027.html.txt b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/NPR_Milei_midterms_20251027.html.txt new file mode 100644 index 0000000000..5cb5151198 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/NPR_Milei_midterms_20251027.html.txt @@ -0,0 +1 @@ +Milei triumphs in Argentine midterm elections : NPR Accessibility links Skip to main content Keyboard shortcuts for audio player Open Navigation Menu --> Newsletters NPR Shop Close Navigation Menu Home News Expand/collapse submenu for News National World Politics Business Health Science Climate Race Culture Expand/collapse submenu for Culture Books Movies Television Pop Culture Food Art & Design Performing Arts Life Kit Gaming Music Expand/collapse submenu for Music Tiny Desk New Music Friday All Songs Considered Music Features Live Sessions Podcasts & Shows Expand/collapse submenu for Podcasts & Shows Daily Morning Edition Weekend Edition Saturday Weekend Edition Sunday All Things Considered Up First Here & Now NPR Politics Podcast Featured Wait Wait...Don't Tell Me! Fresh Air Wild Card with Rachel Martin It's Been a Minute Planet Money Get NPR+ More Podcasts & Shows Search Newsletters NPR Shop Tiny Desk New Music Friday All Songs Considered Music Features Live Sessions About NPR Diversity Support Careers Press Ethics Milei triumphs in Argentine midterm elections President Milei won in key districts in an election widely seen as a referendum on his past two years in office. Trump had appeared to condition billions of dollars in backing on a good showing for Milei. The Americas Milei triumphs in Argentine midterm elections closely watched by Washington Updated October 27, 2025 3:06 AM ET Originally published October 27, 2025 1:07 AM ET By  The Associated Press Argentina's President Javier Milei celebrates after winning in legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. Rodrigo Abd/AP hide caption toggle caption Rodrigo Abd/AP BUENOS AIRES, Argentina — Argentina's libertarian President Javier Milei won decisive victories in key districts in midterm elections Sunday, clinching a crucial vote of confidence that strengthens his ability to carry out his radical free-market experiment with billions of dollars in backing from the Trump administration. The Americas Argentina's President Milei, a Trump ally, faces a reckoning in midterm elections In the election widely seen as a referendum on Milei's past two years in office, his upstart La Libertad Avanza party scored over 40% of votes compared with 31% for the left-leaning populist opposition movement, known as Peronism, exceeding analysts' projections. Milei, a key ideological ally of U.S. President Donald Trump, said his party and allied blocs picked up 14 seats in the Senate and 64 in the lower house of Congress on Sunday, bolstering the government's support in the legislature enough to uphold presidential vetoes and block impeachment efforts. Sponsor Message At La Libertad Avanza headquarters late Sunday in downtown Buenos Aires, a beaming Milei hailed the election sweep as a mandate to press forward with his spending cuts and introduce ambitious tax and labor reforms. The results also automatically position him as a candidate for reelection in 2027. "The Argentine people have decided to leave behind 100 years of decadence," Milei exulted as his supporters cheered, referring to a succession of Peronist governments that brought Argentina infamy for its inflationary spirals and sovereign debt defaults. "Today we have passed the turning point. Today we begin the construction of a great Argentina." A woman holds a banner reading in Spanish, "Trump or homeland," outside former President Cristina Fernandez's home, where she is serving a six-year house arrest sentence for corruption, after polls closed during legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. Natacha Pisarenko/AP hide caption toggle caption Natacha Pisarenko/AP High stakes include $40 billion from the U.S. Perhaps never has an Argentine legislative election generated so much interest in Washington and Wall Street. Trump appeared to condition a $20 billion currency swap deal with Argentina's central bank and an additional $20 billion loan from private banks on a good showing for Milei in national midterms, threatening to rescind the assistance for the cash-strapped country in the event of a Peronist victory. "If he wins we're staying with him, and if he doesn't win, we're gone," Trump said after welcoming Milei to the White House earlier this month. Those contentious comments added to mounting pressure on Milei, who has scrambled to avert a currency crisis since the Peronist opposition won a landslide victory in Buenos Aires provincial polls last month. Argentina's bonds and currency nosedived as markets sensed that the public was losing patience with Milei's reforms and that the midterm race would be tight. Sponsor Message To stem the run on the peso, Milei burned through billions of dollars in foreign exchange reserves to shore up the peso. In an extraordinary move, the U.S. Treasury then came to the rescue, selling dollars to help meet soaring demand for greenbacks and finalizing the credit line. In the end, the Peronist alliance performed poorly, underscoring how weak the once-dominant movement has become in the Milei era, largely as a result of internal divisions. Markets were widely expected to rally on Monday. "For foreign investors, this outcome is a relief because it shows that the Milei program can be sustainable," said Marcelo J. García, the America's director for the geopolitical risk consultancy Horizon Engage. "It leaves the opposition weakened and fragmented, just as it was when Milei won the presidency in December 2023," Garcia added. The Peronist coalition has struggled to channel rising public anger with Milei's painful austerity measures into a new political strategy after delivering the economic shambles that the chain saw-wielding outsider inherited in late 2023. Trump, while on his way to Japan on Monday, posted on Truth Social that Milei was "doing a wonderful job" after his party beat expectations in midterm elections. "Our confidence in him was justified by the People of Argentina," Trump wrote. Milei responded to Trump's post, calling him "a great friend" of Argentina and thanking him for "trusting the Argentine people." A changed electoral map The results showed Milei's young libertarian party gaining support across the country — including in some surprising corners that have long been under the sway of Peronism. In the closely watched Buenos Aires province, a Peronist stronghold home to nearly 40% of the electorate, La Libertad Avanza eked out a razor-thin victory Sunday. Just last month, the Peronists beat Milei's party there by a whopping 14 percentage points. Sponsor Message The Americas Javier Milei, a radical libertarian populist, elected president of Argentina Axel Kicillof, governor of Buenos Aires province and the most influential elected official in the Peronist opposition, criticized Trump for putting his thumb on the scale. He warned that the billions of dollars in financial aid from the U.S. Treasury and investment banks would do nothing to help ordinary Argentines squeezed by Milei's cuts to subsidies or forced out of business by a contracting economy. "I want to make it clear that neither the U.S. government nor JP Morgan are charitable societies," he said. "If they come to Argentina, it is for nothing other than to take a profit." With Milei's efforts to deregulate the economy and scrap tariffs winning over Argentina's powerful agriculture sector, La Libertad Avanza also swept Santa Fe, which dominates soybean production and processing, and Córdoba, another powerhouse farming province. Argentina's President Javier Milei greets supporters after winning in legislative midterm elections in Buenos Aires, Argentina, Sunday, Oct. 26, 2025. Rodrigo Abd/AP hide caption toggle caption Rodrigo Abd/AP Risks remain for Milei as austerity hits hard Despite Milei's new momentum, experts caution that the irascible president still needs to court political allies to see through his agenda. Given the limited number of seats up for grabs in this election, it was mathematically impossible for Milei to secure a majority in either house. "This victory is necessary, but not sufficient to maintain control of Congress," said political consultant Sergio Berensztein. "The government must build a broad and effective coalition with like-minded forces." Seeking to capitalize quickly on Sunday's results, Milei said he called the country's powerful provincial governors to accelerate agreements on long-term economic reform. Sunday's outcome will also test public patience for Milei's cost-cutting measures in the coming months. Although Milei's budget cuts have significantly driven down inflation — from an annual high of 289% in April 2024 to 32% last month — the price increases still outpace salaries and pensions. The electorate appears increasingly polarized between beneficiaries of Milei's reforms and those who say they're struggling to make ends meet like never before. Sponsor Message In the financial district of Puerto Madero, luxury car dealerships report sales surging since Milei scrapped import restrictions. Streets bustle with bankers who praise the president for ending a yearslong ban on selling dollars online. Fine restaurants serve Argentine oil executives who gush about his efforts to draw foreign investment. But at a soup kitchen on the other side of Argentina's Riachuelo River, Epifanía Contreras, 64, said she feels like she's bearing the brunt of the cutbacks. "You can't live on 290,000 pesos a month with today's inflation," she said, describing how her $200 monthly pension has shriveled in value since Milei cut cost-of-living increases. "The situation is getting worse and worse." Reflecting widespread public resignation, electoral authorities reported a turnout rate of just under 68% Sunday, among the lowest recorded since the nation's 1983 return to democracy. Voting is compulsory in Argentina. "I vote out of obligation, nothing more," said Matías Paredes, 50, a real estate broker whose foreign clientele vanished with Milei's strong exchange rate. "None of these figures inspire optimism. We're just choosing the lesser evil." Facebook Flipboard Email Read & Listen Home News Culture Music Podcasts & Shows Connect Newsletters Facebook Instagram Press Public Editor Corrections Transcripts Contact & Help About NPR Overview Diversity NPR Network Accessibility Ethics Finances Get Involved Support Public Radio Sponsor NPR NPR Careers NPR Shop NPR Extra Terms of Use Privacy Your Privacy Choices Text Only Sponsor Message Sponsor Message Become an NPR sponsor \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_access_blocked.html b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_access_blocked.html new file mode 100644 index 0000000000..b3a09ff691 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_access_blocked.html @@ -0,0 +1 @@ +reuters.com

Please enable JS and disable any ad blocker

\ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_DynamicFetcher_fetch.html b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_DynamicFetcher_fetch.html new file mode 100644 index 0000000000..e69de29bb2 diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_DynamicFetcher_fetch.txt b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_DynamicFetcher_fetch.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_DynamicFetcher_fetch_meta.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_DynamicFetcher_fetch_meta.json new file mode 100644 index 0000000000..c017bb606a --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_DynamicFetcher_fetch_meta.json @@ -0,0 +1,20 @@ +{ + "url": "https://www.reuters.com/world/americas/argentines-vote-high-stakes-test-mileis-libertarian-vision-2025-10-26/", + "fetched_at": "2026-05-21T20:51:50.243611", + "fetcher": "scrapling.DynamicFetcher.fetch", + "kwargs": { + "headless": true, + "timeout": 60000, + "network_idle": true + }, + "status": 401, + "error": null, + "html_bytes": 0, + "text_bytes": 0, + "html_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "text_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "contains_expected_terms": false, + "contains_result_terms": false, + "contains_block_message": false, + "text_head": "" +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_StealthyFetcher_fetch.html b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_StealthyFetcher_fetch.html new file mode 100644 index 0000000000..e69de29bb2 diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_StealthyFetcher_fetch.txt b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_StealthyFetcher_fetch.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_StealthyFetcher_fetch_meta.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_StealthyFetcher_fetch_meta.json new file mode 100644 index 0000000000..995ea3dc0a --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_StealthyFetcher_fetch_meta.json @@ -0,0 +1,20 @@ +{ + "url": "https://www.reuters.com/world/americas/argentines-vote-high-stakes-test-mileis-libertarian-vision-2025-10-26/", + "fetched_at": "2026-05-21T20:51:47.145156", + "fetcher": "scrapling.StealthyFetcher.fetch", + "kwargs": { + "headless": true, + "timeout": 60000, + "network_idle": true + }, + "status": 401, + "error": null, + "html_bytes": 0, + "text_bytes": 0, + "html_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "text_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "contains_expected_terms": false, + "contains_result_terms": false, + "contains_block_message": false, + "text_head": "" +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_static.html b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_static.html new file mode 100644 index 0000000000..e69de29bb2 diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_static.txt b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_static.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_static_meta.json b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_static_meta.json new file mode 100644 index 0000000000..9c3b225f76 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/answer_key_post_x/sources/Reuters_20251026_scrapling_static_meta.json @@ -0,0 +1,14 @@ +{ + "url": "https://www.reuters.com/world/americas/argentines-vote-high-stakes-test-mileis-libertarian-vision-2025-10-26/", + "fetched_at": "2026-05-21T20:50:39.192300", + "fetcher": "scrapling.Fetcher.get", + "status": 401, + "reason": "", + "html_bytes": 0, + "text_bytes": 0, + "html_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "text_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "contains_expected_title_terms": false, + "contains_block_message": false, + "text_head": "" +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/case_card.md b/cases/PILOT-ARG-2025-Q1/case_card.md new file mode 100644 index 0000000000..4b66f66fb7 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/case_card.md @@ -0,0 +1,15 @@ +# PILOT-ARG-2025-Q1 + +Dominio: política, macroeconomía y comportamiento electoral argentino. + +Fecha de corte x: 2025-01-31. + +Horizonte Δ: +- Electoral: 2025-02-01 a 2025-10-26. +- Macroeconómico: 2025-02-01 a 2025-12-31. + +Pregunta central: +Usando exclusivamente documentos fechados hasta el 31/01/2025, predecir si La Libertad Avanza consolidará poder legislativo en las elecciones de octubre de 2025, qué rango de voto obtendrá, cómo cerrará la inflación anual y qué tensiones causales persistirán. + +Desenlace real: +Se documenta solo en answer_key_post_x, no en input_pack_pre_x ni prompt_frozen. diff --git a/cases/PILOT-ARG-2025-Q1/checkpoints.md b/cases/PILOT-ARG-2025-Q1/checkpoints.md new file mode 100644 index 0000000000..9807818498 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/checkpoints.md @@ -0,0 +1,137 @@ +# Checkpoints — PILOT-ARG-2025-Q1 + +## CP-01 — Carpeta creada +1. Archivos creados/modificados: `README.md`, estructura completa bajo `cases/PILOT-ARG-2025-Q1/`. +2. Comando ejecutado: `python create_pilot_case.py`. +3. Hash/evidencia: README sha256 `85df0613dbebdc45584b536e933887530736c92064679bc82990cc77ee4766ed`. +4. Riesgos detectados: ejecución MiroFish aún dependía de CLI no verificado. +5. Estado: PASS. + +## CP-02 — Ficha del caso +1. Archivos creados/modificados: `case_card.md`. +2. Comando ejecutado: `python create_pilot_case.py`. +3. Hash/evidencia: case_card sha256 `afcc21ae06e5d51a4fdb74b1f701d690f5c39cc6fe15cb5a811e8e6d523aea80`. +4. Riesgos detectados: ninguno; desenlace real solo se referencia como separado en `answer_key_post_x`. +5. Estado: PASS. + +## CP-03 — Configuración MiroFish previa +1. Archivos creados/modificados: `model_output_raw/run_config.json`, `run_manifest.json`. +2. Comando ejecutado: `mirofish --help && mirofish run --help`. +3. Hash/evidencia: run_config sha256 `d66b501908cd91780fac751a859b734cc1291bf288cbccf412f0149730b0e4f9`; evidencia CLI: `mirofish: command not found`. +4. Riesgos detectados: todos los parámetros runtime quedan marcados como `unsupported_parameter=true` porque el CLI no existe en PATH. +5. Estado: BLOCKED. + +## CP-04 — Fuentes pre-corte guardadas y hasheadas +1. Archivos creados/modificados: `input_pack_pre_x/manifest.csv`, `input_pack_pre_x/sources/*`, `input_pack_pre_x/excerpts/*`, `input_pack_pre_x/hashes.json`. +2. Comando ejecutado: `python create_pilot_case.py`. +3. Hash/evidencia: manifest sha256 `507a8ff2ea9d4e0a7c0387aa4aeadaa3067a56224b044a9d2b309cda17b84e25`; `input_pack_pre_x/hashes.json` contiene hashes por archivo. +4. Riesgos detectados: algunas fuentes HTML pueden contener boilerplate dinámico del sitio; se preservaron extractos separados para auditoría. +5. Estado: PASS. + +## CP-05 — Seed bundle y escaneo temporal +1. Archivos creados/modificados: `input_pack_pre_x/seed_bundle.md`, `model_output_raw/artifacts/pre_cutoff_scan.py`, `model_output_raw/artifacts/pre_cutoff_scan.log`. +2. Comando ejecutado: `python model_output_raw/artifacts/pre_cutoff_scan.py`. +3. Hash/evidencia: seed_bundle sha256 `f21cc14552fde8c1b0cab41d76ba2878aafd96e1a205c4dcad88c3a6f55a850d`; log: `{'forbidden_matches': [], 'bad_dates': [], 'status': 'PASS'}`. +4. Riesgos detectados: el escaneo es heurístico; no reemplaza revisión humana de fuentes. +5. Estado: PASS. + +## CP-06 — Prompt congelado +1. Archivos creados/modificados: `prompt_frozen/prompt.md`, `prompt_frozen/system_constraints.md`, `prompt_frozen/output_schema.json`, `prompt_frozen/prompt_hash.txt`. +2. Comando ejecutado: `python create_pilot_case.py`. +3. Hash/evidencia: prompt sha256 `25f80a94cb31a1aacae284c2840991957d937bf4c4d11683efd5ab4285ad7058`. +4. Riesgos detectados: ninguno; prompt generado antes del intento de corrida. +5. Estado: PASS. + +## CP-07 — Ejecución de MiroFish +1. Archivos creados/modificados: `model_output_raw/stdout.log`, `model_output_raw/stderr.log`, `model_output_raw/exit_code.txt`, `model_output_raw/mirofish_report_raw.md`, `model_output_raw/verdict_raw.json`. +2. Comando ejecutado: `mirofish run --files input_pack_pre_x/sources/* input_pack_pre_x/seed_bundle.md --requirement "$(cat prompt_frozen/prompt.md)" --json > model_output_raw/stdout.log 2> model_output_raw/stderr.log`. +3. Hash/evidencia: exit code `127`; stderr `/usr/bin/bash: line 3: mirofish: command not found`. +4. Riesgos detectados: no hay output crudo real. El archivo `mirofish_report_raw.md` es registro de bloqueo, no predicción. +5. Estado: BLOCKED. + +## CP-08 — Answer key separado +1. Archivos creados/modificados: `answer_key_post_x/ground_truth.md`, `answer_key_post_x/source_manifest.csv`, `answer_key_post_x/sources/*`. +2. Comando ejecutado: `python create_pilot_case.py`. +3. Hash/evidencia: ground_truth sha256 `b23cc3a111f6cd357d804a1a15f17fe90fa0657737eb1538095eb426ddb74629`. +4. Riesgos detectados: Reuters bloqueó fetch automatizado con 401; se guardó la página de bloqueo y se documentó que la cifra electoral proviene del dato provisto en el encargo, pendiente de copia licenciada/verificable si se requiere auditoría externa. +5. Estado: NEEDS_REVIEW. + +## CP-09 — Rúbrica 1-5 +1. Archivos creados/modificados: `answer_key_post_x/rubric_1_5.md`. +2. Comando ejecutado: `python create_pilot_case.py`. +3. Hash/evidencia: rubric sha256 `6dd7d65898d1659b00eeffc5c10540829c249da37a9c0cfb2b555380600c5f93`. +4. Riesgos detectados: ninguno. +5. Estado: PASS. + +## CP-10 — Primera evaluación +1. Archivos creados/modificados: `answer_key_post_x/first_eval.md`. +2. Comando ejecutado: `python create_pilot_case.py`. +3. Hash/evidencia: first_eval sha256 `97d12ba29e599d464c95bf165e9251d09b1922cb3735e5162c2b5fa3243cf725`. +4. Riesgos detectados: evaluación no puntuada porque no existe output crudo real. +5. Estado: BLOCKED. + +## CP-11 — Paquete S2 +1. Archivos creados/modificados: `answer_key_post_x/evaluator_packet.md`, `answer_key_post_x/s2_plan.md`. +2. Comando ejecutado: `python create_pilot_case.py`. +3. Hash/evidencia: evaluator_packet sha256 `60c356c21500dc81188704e036afa358e67bb071831f7c2c6d7063ebfdce4be5`; s2_plan sha256 `69451e5a1ad0da0c25725a845f9285260e41aea8c114b7bd4642717975f7fd5e`. +4. Riesgos detectados: evaluadores no pueden puntuar hasta que exista output crudo real. +5. Estado: NEEDS_REVIEW. + +## Checklist final de aceptación +- [x] Existe ficha del caso con dominio, pregunta, x, delta y desenlace real. +- [x] Los documentos input están listados, fechados, guardados y hasheados. +- [x] Existe prompt congelado con hash. +- [x] MiroFish fue ejecutado o el bloqueo quedó documentado. +- [x] La salida cruda quedó guardada como bloqueo, no como predicción. +- [x] Existe rúbrica 1-5. +- [x] Existe primera evaluación o plan S2. +- [x] Ground truth está separado de inputs y output. +- [x] No hay datos post-corte detectados por escaneo heurístico en input_pack_pre_x. +- [x] run_manifest.json permite reproducir la corrida o reproducir el bloqueo. + + +## CP-08 addendum — Reuters vía Scrapling +1. Archivos creados/modificados: `answer_key_post_x/reuters_scrapling_attempt.md`, `model_output_raw/artifacts/scrapling_reuters_fetch.py`, `model_output_raw/artifacts/scrapling_reuters_browser_fetch.py`, logs correspondientes y fuentes vacías de intento Scrapling. +2. Comando ejecutado: `Scrapling Fetcher.get`, `StealthyFetcher.fetch` y `DynamicFetcher.fetch` contra la URL de Reuters. +3. Hash/evidencia: reuters_scrapling_attempt sha256 `c1125ad408e623d9eb52a383d440b00fb67d59f60931c3cb9d5736d63606dfab`; logs indican HTTP 401 con cuerpo vacío. +4. Riesgos detectados: Scrapling no salteó el bloqueo Reuters en este entorno; fuente electoral post-corte aún requiere copia verificable alternativa/licenciada. +5. Estado: BLOCKED / NEEDS_REVIEW. + + +## CP-08 addendum 2 — Fuentes accesibles equivalentes +1. Archivos creados/modificados: `answer_key_post_x/accessible_electoral_sources.md`, `answer_key_post_x/ground_truth.md`, `answer_key_post_x/source_manifest.csv`, copias HTML/TXT/extractos de AP, Buenos Aires Times, El País English y NPR en `answer_key_post_x/sources/`. +2. Comando ejecutado: búsqueda DuckDuckGo Lite + `requests.get()` para fuentes candidatas; extracción local de snippets. +3. Hash/evidencia: accessible_electoral_sources sha256 `5e70551c919a247f9550179c8625b3693362890c91d6be031ce7081da9b1eab6`; ground_truth sha256 `4a9483677c45d7b5abc382b6c91c7f5ae9717a34623f6a547e9a79371d6fbf81`. +4. Riesgos detectados: Buenos Aires Times reporta cifra con 90% contado; AP/NPR/El País corroboran “más de 40%” y fortalecimiento legislativo. Para cifra oficial final exacta, agregar fuente electoral oficial si se requiere máxima precisión. +5. Estado: PASS. + + +## Option 3 addendum — Auditoría de paquete y fortalecimiento de answer key +1. Archivos creados/modificados: `answer_key_post_x/quality_audit_pre_run.md`, `answer_key_post_x/rubric_1_5.md`, `answer_key_post_x/ground_truth.md`, `answer_key_post_x/accessible_electoral_sources.md`, `answer_key_post_x/source_manifest.csv`, `answer_key_post_x/sources/DINE_resultados_2025/*`, `model_output_raw/artifacts/official_election_source_fetch.py`. +2. Comando ejecutado: `python model_output_raw/artifacts/pre_cutoff_scan.py`; `python model_output_raw/artifacts/official_election_source_fetch.py`. +3. Hash/evidencia: quality_audit sha256 `63771cb0645bdee8cb9c1e3fd97243c4cf16a4ffe7b5055c5ac118ad52f22722`; official_api_summary sha256 `feab502b4ac2b95992fc660fc6fa537e111cae433f1d5b53c53f0107be392019`; ground_truth sha256 `fbc79175aaedc953225fa6196fa6a21a602c2d2493c6fc2b903c542c0b3cf160`; rubric sha256 `54f2db2860908885832ce555de9149d328831f6c8c25783b8cf2321818d1508f`. +4. Riesgos detectados: API oficial computada para Diputados arroja 40.6556% para nombres que contienen Libertad Avanza; Buenos Aires Times reporta 40.84% con 90% contado y alcance combinado. Se documentó rango recomendado 40–41% para no sobreajustar decimales. +5. Estado: PASS. + + +## Option 2 — Adapted current-repo runner +1. Archivos creados/modificados: `backend/scripts/run_case_pilot_arg_2025_q1.py`, `package.json`, `backend/requirements-oasis.txt`, `model_output_raw/adapted_run_config.json`, `model_output_raw/artifacts/adapted_repo_runner.md`, `model_output_raw/artifacts/adapted_input_packet.md`, `model_output_raw/stdout.log`, `model_output_raw/stderr.log`, `model_output_raw/exit_code.txt`, `model_output_raw/mirofish_report_raw.md`, `model_output_raw/verdict_raw.json`. +2. Comando ejecutado: `python backend/scripts/run_case_pilot_arg_2025_q1.py --case-dir cases/PILOT-ARG-2025-Q1 > cases/PILOT-ARG-2025-Q1/model_output_raw/stdout.log 2> cases/PILOT-ARG-2025-Q1/model_output_raw/stderr.log`; verificación: `python -m py_compile backend/scripts/run_case_pilot_arg_2025_q1.py`. +3. Hash/evidencia: adapted runner sha256 `06e37784444f2850d9ae2ca608c37782bd4c925cb1f16104ba1f7545faefa587`; adapted_run_config sha256 `bb22451ad6ef46ff0f4a4a3443c2246458bcd8162822aa9d68d00400b170e225`; adapted_input_packet sha256 `5bb3455b683faa5d762c660f6928642bc384974b88d019b864346c0b18560b48`; stdout sha256 `654205b47a7187acae74c60ccd801960804f41098970f723e5dd1e75953bc78f`; verdict sha256 `ae2ba0703cf6aa6b57f0db8928ce321597a1ad29c5c10db5e6be6efcec5e3cfe`. +4. Riesgos detectados: el repo actual no expone CLI `mirofish`; la corrida adaptada no ejecuta OASIS/Zep/Graphiti, sino un fallback LLM directo con input local. Además falta `LLM_API_KEY`, por lo que no hay output crudo real todavía. Se detectó y mitigó parcialmente un conflicto de dependencias: `graphiti-core==0.28.2` requiere `neo4j>=5.26.0`, mientras `camel-oasis==0.2.5` fija `neo4j==5.23.0`; OASIS queda documentado como entorno separado en `backend/requirements-oasis.txt`. +5. Estado: BLOCKED por falta de `LLM_API_KEY`; runner adaptado listo para reintento reproducible. + + +## CP-07/CP-10 — Adapted Gemini run completed +1. Archivos creados/modificados: `model_output_raw/mirofish_report_raw.md`, `model_output_raw/verdict_raw.json`, `model_output_raw/stdout.log`, `model_output_raw/stderr.log`, `model_output_raw/exit_code.txt`, `model_output_raw/adapted_run_config.json`, `model_output_raw/artifacts/adapted_run_1_raw.md`, `model_output_raw/artifacts/adapted_run_2_raw.md`, `model_output_raw/artifacts/adapted_run_3_raw.md`, `answer_key_post_x/first_eval.md`, `run_manifest.json`, `model_output_raw/artifacts/adapted_repo_runner.md`. +2. Comando ejecutado: adapted runner via Gemini OpenAI-compatible endpoint. The API key was passed only as an environment variable and is not recorded in repo files. Requested model `gemini-2.0-flash-lite` returned HTTP 404; fallback `gemini-2.5-flash-lite` completed. +3. Hash/evidencia: raw report sha256 `117279591956754bdf3f178e60c1847bd5c9d77a6cb777a39053c027e2250635`; verdict sha256 `dc33db72537acd16f8f7151bd9e81a992aee81e46b31546bc1ab93ac39567925`; run1 sha256 `5bd828723eb5c6ccf9d2c2c1631a6cc36bc2ca06814299dda6e014fb6bca6ee4`; run2 sha256 `2196d2f25d3d22b2e21446a609e6d7f1e7d5c37e30d1c9276dbc616d5a232bf5`; run3 sha256 `77aeb3ca561bd231de23ff778d0eae43c6ef7dfcec95816678bf9f04ee313f5c`; first_eval sha256 `5a592ad80bca5b7e0aa56ab6b21313d7f5806dda2f426b1a38d5ad36097cbc20`. +4. Riesgos detectados: esta es corrida adaptada, no CLI `mirofish` ni OASIS/Zep/Graphiti. Gemini no acepta el parámetro HTTP `seed`, por lo que se registra el seed como intención de auditoría pero no como garantía de determinismo del proveedor. `gemini-2.0-flash-lite` no estuvo disponible para esta cuenta; se usó `gemini-2.5-flash-lite`. +5. Estado: PASS para corrida adaptada; NEEDS_REVIEW si se exige equivalencia estricta con MiroFish CLI/OASIS. + +## CP-12 — Real MiroFish/OASIS round-1 attempt +1. Archivos creados/modificados: `model_output_raw/real_mirofish_round_1/run_config.json`, `stdout.log`, `stderr.log`, `mirofish_report_raw.md`, `verdict_raw.json`, `deviation_report.md`, `run_hashes.json`, `artifacts/oasis_twitter_minimal_sim/*`, `artifacts/db_export/*`, `run_manifest.json`, `model_output_raw/run_hashes.json`. +2. Comando ejecutado: `backend/.venv/bin/python backend/scripts/run_twitter_simulation.py --config cases/PILOT-ARG-2025-Q1/model_output_raw/real_mirofish_round_1/artifacts/oasis_twitter_minimal_sim/simulation_config.json --max-rounds 1 --no-wait`. La API key se pasó solo por variable de entorno del proceso y no se escribió a archivos. +3. Hash/evidencia: real run_config sha256 `fc7087d6912cb04f059f1d203585d5b04432785f217bd5d45a6874c6292a8efa`; verdict sha256 `8804f9e5e82410368ba34d07a94b2194799e209bff3f017296f4a88758e28011`; raw report sha256 `61a1db4a80142d0940dd0c8172f3b44db5c60056435b9fecfa4e204b90741c2f`; stdout sha256 `51a71f2fc6e8abb2109fedc2c5904871423d240a29a3e2f67d1cc0a386ef36fc`; SQLite db sha256 `8cd8052be0fc9149964e814e05f8e196af3ec0190434b6931b94a3ce3b9d5e33`. +4. Riesgos detectados: no se usó CLI `mirofish run` porque no existe en PATH; se usó el script OASIS nativo del backend. No se usó Zep/Graphiti ni report agent para mantener memoria persistente/RAG externos apagados. Gemini no recibe `seed` HTTP. +5. Estado: PASS. Rondas/épocas MiroFish completadas: 1. Agentes reales activos: 2. Escaneo temporal: PASS. Escaneo secretos en artefactos: PASS. diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/README.md b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/README.md new file mode 100644 index 0000000000..562a011425 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/README.md @@ -0,0 +1,72 @@ +# Input Pack Pre-X — S1 MiroFish + +Case ID: PILOT-ARG-2025-Q1 +Cutoff exacto: 2025-01-31 23:59 Argentina local time. + +## Regla de exclusión post-corte + +Este directorio puede ser leído por MiroFish S1. Por lo tanto, contiene únicamente fuentes publicadas en o antes del 31/01/2025. No debe contener ground truth ni fuentes posteriores. Todo material post-corte pertenece a `answer_key_post_x/` y queda fuera del input. + +## Archivos incluidos + +Core: +- sources/MACRO_01_BBVA_Argentina_Economic_Outlook_Dec2024.pdf +- sources/MONETARY_01_BCRA_Crawling_Peg_1pct_20250116.html +- sources/MACRO_02_INDEC_IPC_Diciembre_2024.pdf +- sources/MACRO_03_BCRA_REM_Diciembre_2024.pdf +- sources/FISCAL_01_MECON_Cierre_Fiscal_2024.html +- sources/GEO_01_IMF_ExPost_Evaluation_202501.pdf +- sources/POL_01_AmericasQuarterly_Argentina_2025_Snapshot.html +- sources/POLL_01_CB_Consultora_Diciembre_2024.pdf +- sources/SOCIAL_01_UCA_ODSA_Informe_Subsistencia_20241205.pdf +- sources/INST_01_Diputados_Veto_Ley_Jubilatoria_20240911.html + +Supporting: +- sources/INST_02_Chequeado_Veto_Jubilatorio_Conteo_20240911.html +- sources/MONETARY_02_BCRA_Informe_Monetario_Diciembre_2024.pdf +- sources/MACRO_04_WorldBank_GEP_Jan2025_LAC.pdf + +Generated audit files: +- manifest.csv +- hashes.json +- seed_bundle.md +- README.md +- fetch_log.json + +## Fuentes reemplazadas/endurecidas + +- SOCIAL_01: reemplazado el fallback periodístico de Primera Fuente por PDF oficial UCA/Observatorio de la Deuda Social Argentina, `OBSERVATORIO-INF_SUBSISTENCIA_WEB.pdf`, publicado el 05/12/2024. +- INST_01: reemplazada la fuente Diagonales por fuente oficial de Cámara de Diputados del 11/09/2024 sobre el veto jubilatorio. +- INST_02: agregado Chequeado como supporting para corroborar conteo 153 a favor de insistir, 87 en contra y 8 abstenciones. + +## Fuentes excluidas del input + +- BA Times approval/jobs: excluida porque la página figura como 8 de julio de 2025. +- BCRA REM enero 2025: excluido porque fue publicado el 06/02/2025. +- INDEC IPC enero 2025: excluido porque fue publicado en febrero 2025. +- Resultados legislativos 2025 / Wikipedia live / crónicas post-elección: ground truth directo. +- Informes BBVA/IMF/BCRA posteriores al 31/01/2025: post-corte. +- Primera Fuente/UCA fallback: excluida porque fue reemplazada por PDF oficial UCA. +- Diagonales veto 87: excluida porque fue reemplazada por fuente oficial Diputados y supporting Chequeado. +- Landing pages dinámicas de BCRA, FMI, World Bank o Wikipedia live: riesgo de actualización post-corte. + +## Comandos usados para descargar/verificar + +Las descargas y verificaciones fueron ejecutadas desde Python con `urllib.request` y hashes SHA256 con `hashlib.sha256`. Script usado para endurecer SOCIAL_01/INST_01: + +```bash +python /tmp/harden_s1_social_inst.py +``` + +Ver `fetch_log.json` para URLs, HTTP status, content-type, bytes y destino local. Ver `hashes.json` para SHA256 de cada archivo local. + +No se debe permitir que MiroFish acceda a URLs live durante S1; las fuentes quedan congeladas como archivos locales. + +## Estado final + +LISTO PARA S1. + +SOCIAL_01 e INST_01 ya no dependen de fallbacks periodísticos débiles: +1. SOCIAL_01 usa PDF oficial UCA/ODSA. +2. INST_01 usa fuente oficial de Diputados. +3. INST_02 queda como supporting independiente para el conteo exacto. diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/fetch_log.json b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/fetch_log.json new file mode 100644 index 0000000000..999c887e42 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/fetch_log.json @@ -0,0 +1,102 @@ +[ + { + "id": "SOCIAL_01", + "method": "download", + "url": "https://wadmin.uca.edu.ar/public/ckeditor/Observatorio%20Deuda%20Social/Presentaciones/2024/OBSERVATORIO-INF_SUBSISTENCIA_WEB.pdf", + "dest": "sources/SOCIAL_01_UCA_ODSA_Informe_Subsistencia_20241205.pdf", + "status": "ok", + "http_status": 200, + "content_type": "application/pdf", + "bytes": 1050122 + }, + { + "id": "INST_01", + "method": "download", + "url": "https://www.diputados.gob.ar/prensa/noticia/LA-CAMARA-DE-DIPUTADOS-RESPALDO-EL-VETO-DEL-PODER-EJECUTIVO-A-LA-LEY-JUBILATORIA/", + "dest": "sources/INST_01_Diputados_Veto_Ley_Jubilatoria_20240911.html", + "status": "ok", + "http_status": 200, + "content_type": "text/html;charset=UTF-8", + "bytes": 30953 + }, + { + "id": "INST_02", + "method": "download", + "url": "https://chequeado.com/el-explicador/diputados-trata-el-veto-de-javier-milei-a-la-ley-de-movilidad-jubilatoria-que-puede-pasar-en-el-congreso/", + "dest": "sources/INST_02_Chequeado_Veto_Jubilatorio_Conteo_20240911.html", + "status": "ok", + "http_status": 200, + "content_type": "text/html; charset=UTF-8", + "bytes": 93464 + }, + { + "id": "MACRO_01", + "method": "existing_verified", + "dest": "sources/MACRO_01_BBVA_Argentina_Economic_Outlook_Dec2024.pdf", + "status": "ok", + "bytes": 1283883 + }, + { + "id": "MONETARY_01", + "method": "existing_verified", + "dest": "sources/MONETARY_01_BCRA_Crawling_Peg_1pct_20250116.html", + "status": "ok", + "bytes": 69916 + }, + { + "id": "MACRO_02", + "method": "existing_verified", + "dest": "sources/MACRO_02_INDEC_IPC_Diciembre_2024.pdf", + "status": "ok", + "bytes": 933033 + }, + { + "id": "MACRO_03", + "method": "existing_verified", + "dest": "sources/MACRO_03_BCRA_REM_Diciembre_2024.pdf", + "status": "ok", + "bytes": 3634776 + }, + { + "id": "FISCAL_01", + "method": "existing_verified", + "dest": "sources/FISCAL_01_MECON_Cierre_Fiscal_2024.html", + "status": "ok", + "bytes": 34042 + }, + { + "id": "GEO_01", + "method": "existing_verified", + "dest": "sources/GEO_01_IMF_ExPost_Evaluation_202501.pdf", + "status": "ok", + "bytes": 4539939 + }, + { + "id": "POL_01", + "method": "existing_verified", + "dest": "sources/POL_01_AmericasQuarterly_Argentina_2025_Snapshot.html", + "status": "ok", + "bytes": 161378 + }, + { + "id": "POLL_01", + "method": "existing_verified", + "dest": "sources/POLL_01_CB_Consultora_Diciembre_2024.pdf", + "status": "ok", + "bytes": 6420191 + }, + { + "id": "MONETARY_02", + "method": "existing_verified", + "dest": "sources/MONETARY_02_BCRA_Informe_Monetario_Diciembre_2024.pdf", + "status": "ok", + "bytes": 2284708 + }, + { + "id": "MACRO_04", + "method": "existing_verified", + "dest": "sources/MACRO_04_WorldBank_GEP_Jan2025_LAC.pdf", + "status": "ok", + "bytes": 377223 + } +] \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/hashes.json b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/hashes.json new file mode 100644 index 0000000000..565c68cfd8 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/hashes.json @@ -0,0 +1,19 @@ +{ + "README.md": "80241a5aa081447ca6d1765fb036aafae41841193bb7eea025b3e4b86c106c48", + "fetch_log.json": "56673ade697bb00d1105d0f60fb8d88bdf67718ddd267c45478bd283f5e89866", + "manifest.csv": "8d4da31a3df15ddcfa1a664353b55640164b0522b4a5d2b75db365215c39adb3", + "seed_bundle.md": "88338609cc9453b7abc2ea12b0e818f19c78b0d79df17be1c215ef09f599b498", + "sources/FISCAL_01_MECON_Cierre_Fiscal_2024.html": "a676606321790970da37829b21cf7cb3a42d5fa7467bd6fd91b36a2ed2074c44", + "sources/GEO_01_IMF_ExPost_Evaluation_202501.pdf": "504be57fd4e5467b98d268f2d6ba50bb2079768f999d7c101e0569f9d92df724", + "sources/INST_01_Diputados_Veto_Ley_Jubilatoria_20240911.html": "bdd7e84fef97414011a13005e92a66608fa4cf530329bb75092ef932881b36d7", + "sources/INST_02_Chequeado_Veto_Jubilatorio_Conteo_20240911.html": "c67fb19bb3677de23c8baae75398e3cd6f8dafc3b7222fb86592b5bb52d7c0e5", + "sources/MACRO_01_BBVA_Argentina_Economic_Outlook_Dec2024.pdf": "d8d2efc188ee342187b97e3c7bc3ea344a4da8818515d1c6256543e083cef063", + "sources/MACRO_02_INDEC_IPC_Diciembre_2024.pdf": "ea4848cd58a41fa1eab54b45ab60b75d431f54ca73e37027f2410506be8d7e67", + "sources/MACRO_03_BCRA_REM_Diciembre_2024.pdf": "fe9e2e0746680240c9c591636f78c725b6219abe7b288bad2fe8f4979724f762", + "sources/MACRO_04_WorldBank_GEP_Jan2025_LAC.pdf": "df74b9eea5cb1a62cfa5e7c670e56366b9f12575bddafc85d39dec002fb9f036", + "sources/MONETARY_01_BCRA_Crawling_Peg_1pct_20250116.html": "b95b98c1dbcdd225ca2915bad121fb52ae06a85be3d9a3cb052ee04e2a8dc933", + "sources/MONETARY_02_BCRA_Informe_Monetario_Diciembre_2024.pdf": "488847eb4333927f21d5c655eb840d0b4d34419d4fb08a828fb2e2001b600824", + "sources/POLL_01_CB_Consultora_Diciembre_2024.pdf": "5a7b09a83889f591643c84cf7665c544cf533b6d798672a1c40567cccd95577e", + "sources/POL_01_AmericasQuarterly_Argentina_2025_Snapshot.html": "1888ad65080bde8a9304368d3f7195f7c6c36c9f46b001b1e6f9a252717a52c9", + "sources/SOCIAL_01_UCA_ODSA_Informe_Subsistencia_20241205.pdf": "b83f4fc961ed44179a45703d832a2e4e803f13f3e2fd5f119164474c07132409" +} diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/hashes.old.json b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/hashes.old.json new file mode 100644 index 0000000000..341c2dabfb --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/hashes.old.json @@ -0,0 +1,70 @@ +{ + "README.md": { + "bytes": 3285, + "sha256": "80241a5aa081447ca6d1765fb036aafae41841193bb7eea025b3e4b86c106c48" + }, + "fetch_log.json": { + "bytes": 2908, + "sha256": "56673ade697bb00d1105d0f60fb8d88bdf67718ddd267c45478bd283f5e89866" + }, + "manifest.csv": { + "bytes": 9827, + "sha256": "8d4da31a3df15ddcfa1a664353b55640164b0522b4a5d2b75db365215c39adb3" + }, + "seed_bundle.md": { + "bytes": 6430, + "sha256": "88338609cc9453b7abc2ea12b0e818f19c78b0d79df17be1c215ef09f599b498" + }, + "sources/FISCAL_01_MECON_Cierre_Fiscal_2024.html": { + "bytes": 34042, + "sha256": "a676606321790970da37829b21cf7cb3a42d5fa7467bd6fd91b36a2ed2074c44" + }, + "sources/GEO_01_IMF_ExPost_Evaluation_202501.pdf": { + "bytes": 4539939, + "sha256": "504be57fd4e5467b98d268f2d6ba50bb2079768f999d7c101e0569f9d92df724" + }, + "sources/INST_01_Diputados_Veto_Ley_Jubilatoria_20240911.html": { + "bytes": 30953, + "sha256": "bdd7e84fef97414011a13005e92a66608fa4cf530329bb75092ef932881b36d7" + }, + "sources/INST_02_Chequeado_Veto_Jubilatorio_Conteo_20240911.html": { + "bytes": 93464, + "sha256": "c67fb19bb3677de23c8baae75398e3cd6f8dafc3b7222fb86592b5bb52d7c0e5" + }, + "sources/MACRO_01_BBVA_Argentina_Economic_Outlook_Dec2024.pdf": { + "bytes": 1283883, + "sha256": "d8d2efc188ee342187b97e3c7bc3ea344a4da8818515d1c6256543e083cef063" + }, + "sources/MACRO_02_INDEC_IPC_Diciembre_2024.pdf": { + "bytes": 933033, + "sha256": "ea4848cd58a41fa1eab54b45ab60b75d431f54ca73e37027f2410506be8d7e67" + }, + "sources/MACRO_03_BCRA_REM_Diciembre_2024.pdf": { + "bytes": 3634776, + "sha256": "fe9e2e0746680240c9c591636f78c725b6219abe7b288bad2fe8f4979724f762" + }, + "sources/MACRO_04_WorldBank_GEP_Jan2025_LAC.pdf": { + "bytes": 377223, + "sha256": "df74b9eea5cb1a62cfa5e7c670e56366b9f12575bddafc85d39dec002fb9f036" + }, + "sources/MONETARY_01_BCRA_Crawling_Peg_1pct_20250116.html": { + "bytes": 69916, + "sha256": "b95b98c1dbcdd225ca2915bad121fb52ae06a85be3d9a3cb052ee04e2a8dc933" + }, + "sources/MONETARY_02_BCRA_Informe_Monetario_Diciembre_2024.pdf": { + "bytes": 2284708, + "sha256": "488847eb4333927f21d5c655eb840d0b4d34419d4fb08a828fb2e2001b600824" + }, + "sources/POLL_01_CB_Consultora_Diciembre_2024.pdf": { + "bytes": 6420191, + "sha256": "5a7b09a83889f591643c84cf7665c544cf533b6d798672a1c40567cccd95577e" + }, + "sources/POL_01_AmericasQuarterly_Argentina_2025_Snapshot.html": { + "bytes": 161378, + "sha256": "1888ad65080bde8a9304368d3f7195f7c6c36c9f46b001b1e6f9a252717a52c9" + }, + "sources/SOCIAL_01_UCA_ODSA_Informe_Subsistencia_20241205.pdf": { + "bytes": 1050122, + "sha256": "b83f4fc961ed44179a45703d832a2e4e803f13f3e2fd5f119164474c07132409" + } +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/manifest.csv b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/manifest.csv new file mode 100644 index 0000000000..01dfac386a --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/manifest.csv @@ -0,0 +1,21 @@ +id,titulo,institucion,fecha,url,archivo_local,categoria,core_supporting_excluded,motivo,variables_extraibles,riesgo_de_leakage +MACRO_01,"Argentina Economic Outlook, December 2024 / 4Q24",BBVA Research,2024-12,https://www.bbvaresearch.com/wp-content/uploads/2024/12/Argentina-Economic-Outlook-4Q24.pdf,sources/MACRO_01_BBVA_Argentina_Economic_Outlook_Dec2024.pdf,macro,core,"Fuente privada core para escenario macro 2025: inflación, PBI, fiscal, tipo de cambio, reservas y sostenibilidad del ajuste.",crecimiento 2025; inflación 2025; tipo de cambio esperado; resultado fiscal; riesgos de reservas/cepo; límites políticos del ajuste,"BAJO: PDF estático pre-corte; usar copia local, no página índice." +MONETARY_01,The BCRA sets the crawling peg at 1% per month,Banco Central de la República Argentina,2025-01-16,https://www.bcra.gob.ar/en/news/el-bcra-establece-un-nuevo-sendero-de-desplazamiento-de-1-mensual-para-el-tipo-de-cambio/,sources/MONETARY_01_BCRA_Crawling_Peg_1pct_20250116.html,monetary,core,"Confirma oficialmente que el crawling peg baja a 1% mensual desde el 01/02/2025; clave para inflación, competitividad y reservas.",crawling peg 1% mensual; fecha de implementación 2025-02-01; ancla cambiaria nominal,MEDIO-BAJO: HTML oficial; guardado local para evitar cambios posteriores. +MACRO_02,"Índice de Precios al Consumidor, diciembre 2024",INDEC,2025-01-14,https://www.indec.gob.ar/uploads/informesdeprensa/ipc_01_2517A7124C09.pdf,sources/MACRO_02_INDEC_IPC_Diciembre_2024.pdf,macro,core,Último dato oficial de inflación disponible antes del corte.,"IPC diciembre 2024 2,7% mensual; inflación acumulada 2024 117,8%; punto de partida de trayectoria 2025",BAJO: PDF oficial pre-corte. +MACRO_03,"Relevamiento de Expectativas de Mercado, diciembre 2024",BCRA,2025-01-07,https://www.bcra.gob.ar/archivos/Pdfs/PublicacionesEstadisticas/relevamiento-expectativas-mercado-dic-2024.pdf,sources/MACRO_03_BCRA_REM_Diciembre_2024.pdf,macro,core,"Expectativas de mercado inmediatamente antes del corte; Reuters reportó desde este REM crecimiento esperado de 4,5% e inflación de 25,9% para 2025.","PBI 2025 esperado 4,5%; inflación 2025 esperada 25,9%; tipo de cambio esperado; expectativas fiscales/monetarias",BAJO: PDF directo; no usar landing dinámica REM. +FISCAL_01,El Sector Público Nacional registró superávit financiero anual por primera vez desde el 2010,Ministerio de Economía / Argentina.gob.ar,2025-01-17,https://www.argentina.gob.ar/noticias/el-sector-publico-nacional-registro-superavit-financiero-anual-por-primera-vez-desde-el,sources/FISCAL_01_MECON_Cierre_Fiscal_2024.html,institutional/macro,core,Fuente oficial para fiscal anchor y cierre fiscal 2024.,superávit primario 2024; superávit financiero 2024; consolidación fiscal; narrativa déficit cero,MEDIO-BAJO: página oficial HTML; guardada local para congelar contenido. +GEO_01,Argentina: Ex-post Evaluation of Exceptional Access under the 2022 Extended Fund Facility,IMF,2025-01-10,https://www.imf.org/-/media/files/publications/cr/2025/english/1argea2025001-print-pdf.pdf,sources/GEO_01_IMF_ExPost_Evaluation_202501.pdf,geopolitical/institutional,core,"Restricciones externas, FMI, cepo, reservas, tasas reales y sostenibilidad social.",riesgo de reservas; desmontaje de controles cambiarios; tasa real positiva; costo social del ajuste; condicionalidad externa,BAJO: PDF estático del FMI publicado antes del corte. +POL_01,Argentina: A 2025 Snapshot,Americas Quarterly,2025-01-14,https://americasquarterly.org/article/argentina-a-2025-snapshot/,sources/POL_01_AmericasQuarterly_Argentina_2025_Snapshot.html,electoral/geopolitical,core,"Framing político-electoral, midterms, aprobación, FMI y geopolítica. No es fuente macro primaria.",approval baseline; midterm stakes; deuda/FMI; US-China positioning; political risk framing,"MEDIO: HTML de medio; guardado local, requiere no usar live URL en corrida." +POLL_01,"Encuesta Nacional Argentina, diciembre 2024 / 1º año de gobierno",CB Consultora,2024-12-06,https://media.letrap.com.ar/adjuntos/349/documentos/100/145/0100145829.pdf,sources/POLL_01_CB_Consultora_Diciembre_2024.pdf,social/electoral,core,Opinión pública pre-corte; deterioro percibido de economía familiar vs aprobación resistente.,evaluación de economía del hogar; imagen/aprobación; polarización; tolerancia social al ajuste,BAJO-MEDIO: PDF de encuesta pre-corte; conservar copia local. +SOCIAL_01,Deudas sociales en la Argentina del siglo XXI (2004-2024): informe de subsistencia / pobreza,"Observatorio de la Deuda Social Argentina, UCA",2024-12-05,https://wadmin.uca.edu.ar/public/ckeditor/Observatorio%20Deuda%20Social/Presentaciones/2024/OBSERVATORIO-INF_SUBSISTENCIA_WEB.pdf,sources/SOCIAL_01_UCA_ODSA_Informe_Subsistencia_20241205.pdf,social,core,"Reemplaza el fallback periodístico con fuente oficial UCA/ODSA. Aporta pobreza 49,9% en 3°T2024 y estrés de subsistencia como contrapeso social al escenario macro.","pobreza 49,9% 3°T2024; indigencia; privaciones monetarias y no monetarias; capacidad de ahorro; insuficiencia de ingresos; estrés social",BAJO: PDF oficial UCA/ODSA pre-corte guardado localmente. +INST_01,La Cámara de Diputados respaldó el veto del Poder Ejecutivo a la ley jubilatoria,Honorable Cámara de Diputados de la Nación,2024-09-11,https://www.diputados.gob.ar/prensa/noticia/LA-CAMARA-DE-DIPUTADOS-RESPALDO-EL-VETO-DEL-PODER-EJECUTIVO-A-LA-LEY-JUBILATORIA/,sources/INST_01_Diputados_Veto_Ley_Jubilatoria_20240911.html,institutional,core,Reemplaza Diagonales con fuente oficial de Diputados para el veto shield: la Cámara no alcanzó dos tercios para rechazar el veto presidencial.,153 votos positivos para insistir; 87 negativos; 8 abstenciones; umbral de dos tercios; veto presidencial sostenido,BAJO-MEDIO: HTML oficial de Diputados pre-corte guardado localmente; no usar URL live durante S1. +INST_02,Diputados confirmó el veto de Javier Milei a la ley de movilidad jubilatoria,Chequeado,2024-09-11,https://chequeado.com/el-explicador/diputados-trata-el-veto-de-javier-milei-a-la-ley-de-movilidad-jubilatoria-que-puede-pasar-en-el-congreso/,sources/INST_02_Chequeado_Veto_Jubilatorio_Conteo_20240911.html,institutional,supporting,"Fuente periodística especializada para corroborar y explicar el conteo exacto 153/87/8 y la regla de dos tercios. Complementa a INST_01, no lo reemplaza.",153 a favor de insistir; 87 en contra; 8 abstenciones; dos tercios; veto firme por un año,"MEDIO-BAJO: HTML pre-corte de medio de verificación; supporting, no fuente neutral principal." +MONETARY_02,"Informe Monetario Mensual, diciembre 2024",BCRA,2025-01,https://www.bcra.gob.ar/archivos/Pdfs/PublicacionesEstadisticas/informe-monetario-mensual-dic-24.pdf,sources/MONETARY_02_BCRA_Informe_Monetario_Diciembre_2024.pdf,monetary,supporting,"Amplía base monetaria: liquidez, pasivos remunerados, crédito privado, tasas y transmisión monetaria.",base monetaria; pasivos remunerados/LEFI; crédito privado; tasa; liquidez bancaria,BAJO: PDF directo oficial pre-corte. +MACRO_04,"Global Economic Prospects, January 2025 — Latin America and Caribbean",World Bank,2025-01,https://thedocs.worldbank.org/en/doc/c50bc3c87bc2666b9e5fa6699b0b2849-0050012025/related/GEP-Jan-2025-Analysis-LAC.pdf,sources/MACRO_04_WorldBank_GEP_Jan2025_LAC.pdf,macro,supporting,"Contexto externo/regional; proyecta rebote de Argentina de 5% en 2025 y 4,7% en 2026.","Argentina GDP forecast 2025 5%; Argentina GDP forecast 2026 4,7%; contexto regional; demanda externa/commodities",BAJO: PDF estático World Bank; no usar dashboards dinámicos. +EXCLUDED_01,Milei approval/jobs BA Times page,Buenos Aires Times,2025-07-08,https://www.batimes.com.ar/news/argentina/mileis-approval-rating-holds-as-argentines-worry-more-about-jobs.phtml,,social/electoral,excluded,Post-corte: la página figura como 8 de julio de 2025; no entra al input.,N/A,ALTO: publicación post-31/01/2025. +EXCLUDED_02,BCRA REM enero 2025,BCRA,2025-02-06,https://www.bcra.gob.ar/archivos/Pdfs/PublicacionesEstadisticas/resumen-relevamiento-expectativas-mercado-ene-2025.pdf,,macro,excluded,Publicado después del corte aunque releve expectativas de enero; queda como answer key/validación.,N/A,ALTO: reporting-lag trap post-corte. +EXCLUDED_03,INDEC IPC enero 2025,INDEC,2025-02-13,https://www.indec.gob.ar/uploads/informesdeprensa/ipc_02_252AD960A6A4.pdf,,macro,excluded,Publicado después del corte; revela inflación de enero.,N/A,ALTO: ground truth post-corte. +EXCLUDED_04,Resultados legislativos Argentina 2025 / Wikipedia live / crónicas post-elección,varias,post-2025-10,,,electoral,excluded,Revela resultado electoral que MiroFish debe pronosticar.,N/A,CRÍTICO: ground truth directo. +EXCLUDED_05,BBVA/IMF/BCRA informes posteriores al 31/01/2025,varias,post-2025-01-31,,,macro/geopolitical/monetary,excluded,Informes posteriores al corte contienen actualizaciones o outcomes.,N/A,ALTO: contaminación temporal. +EXCLUDED_06,"Para la UCA, la pobreza es de 49,9% y uno de cada tres hogares recortó gastos",Primera Fuente / UCA ODSA citado,2024-12-05,https://www.primerafuente.com.ar/noticias/120649/para-uca-pobreza-499porciento-uno-cada-tres-hogares-recorto-gastos-medicamentos-servicios,,social,excluded,Fuente fallback periodística reemplazada por PDF oficial UCA/ODSA SOCIAL_01.,N/A,"BAJO temporalmente, pero excluida por ser secundaria." +EXCLUDED_07,Milei llamó héroes a los 87 diputados que apoyaron su veto a los jubilados,Diagonales,2024-09-11,https://www.diagonales.com/nacion/milei-llamo--heroes--a-los-87-diputados-que-apoyaron-su-veto-a-los-jubilados_a66e209c1276490f312f8533f,,institutional,excluded,Fuente periodística débil reemplazada por fuente oficial Diputados INST_01 y supporting Chequeado INST_02.,N/A,"BAJO temporalmente, pero excluida por ser secundaria y menos neutral." diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/seed_bundle.md b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/seed_bundle.md new file mode 100644 index 0000000000..0dcdbe91c1 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/seed_bundle.md @@ -0,0 +1,51 @@ +# Seed Bundle S1 — Argentina 2025 pre-cutoff + +Case ID: PILOT-ARG-2025-Q1 +Cutoff exacto: 2025-01-31 23:59 Argentina local time. +Regla: este bundle resume solo fuentes publicadas hasta el cutoff. No incluye resultados electorales 2025, IPC enero 2025, REM enero 2025 ni informes macro posteriores al 31/01/2025. + +## 1. Macro / inflación + +Argentina entra a 2025 con una desinflación marcada pero todavía frágil. El último dato oficial disponible antes del corte es el IPC de diciembre de 2024: 2,7% mensual y 117,8% acumulado anual [MACRO_02]. Ese dato funciona como punto de partida de la simulación; cualquier inflación de enero 2025 o posterior queda fuera del input. + +Las expectativas privadas e institucionales pre-corte muestran recuperación real de actividad y fuerte desaceleración inflacionaria, pero con incertidumbre por tipo de cambio, reservas y salida del cepo. BBVA proyecta un escenario de recuperación y desinflación condicionado por la continuidad del ajuste y por el manejo cambiario [MACRO_01]. El REM diciembre 2024, publicado el 07/01/2025, fija una expectativa de mercado de crecimiento 2025 alrededor de 4,5% e inflación 2025 alrededor de 25,9% [MACRO_03]. El World Bank, como fuente externa de apoyo, proyecta rebote de Argentina de 5% en 2025 y 4,7% en 2026 dentro del contexto regional [MACRO_04]. + +## 2. Régimen monetario / BCRA + +La fuente monetaria central es el anuncio oficial del BCRA del 16/01/2025: desde el 01/02/2025 el crawling peg del tipo de cambio oficial pasa a 1% mensual [MONETARY_01]. Esta decisión refuerza el tipo de cambio como ancla nominal y debe modelarse como trade-off: ayuda a la desinflación de transables, pero profundiza el riesgo de apreciación real y presión sobre exportadores/reservas. + +El Informe Monetario Mensual de diciembre 2024 agrega la foto de liquidez, base monetaria, pasivos remunerados/LEFI, crédito privado y condiciones bancarias al cierre de 2024 [MONETARY_02]. Estos datos permiten inicializar agentes financieros y de BCRA sin recurrir a informes posteriores. + +## 3. Fiscal + +El cierre fiscal 2024 es un pilar de la narrativa y de la restricción de política. MECON informó el 17/01/2025 que el Sector Público Nacional registró superávit financiero anual por primera vez desde 2010 [FISCAL_01]. Para la simulación, esto configura el “fiscal anchor”: el Ejecutivo tiene credibilidad de estabilización, pero también queda políticamente obligado a defender el déficit cero. + +La relación causal clave es: superávit fiscal -> confianza de mercado y desinflación; pero ajuste de gasto -> estrés social, provincial y legislativo. Por eso el fiscal anchor debe interactuar con pobreza, Congreso y opinión pública, no tratarse como variable puramente técnica [FISCAL_01; SOCIAL_01; INST_01]. + +## 4. Política / Congreso + +La elección legislativa de octubre 2025 es, desde la perspectiva pre-corte, un test de gobernabilidad para Milei y LLA. Americas Quarterly en enero 2025 enmarca la elección como punto de validación política de la agenda económica, con implicancias para FMI, geopolítica y capacidad legislativa [POL_01]. + +El Congreso debe modelarse como restricción institucional severa. La fuente principal para el episodio del veto jubilatorio ahora es oficial: Diputados informó el 11/09/2024 que la votación para insistir contra el veto obtuvo 153 votos positivos, 87 negativos y 8 abstenciones, sin alcanzar los dos tercios requeridos [INST_01]. Chequeado se conserva como supporting para corroborar el conteo exacto y explicar la regla de dos tercios [INST_02]. Para MiroFish, esto inicializa un “veto shield”: el Ejecutivo puede sostener vetos si conserva una coalición de bloqueo de al menos un tercio de los presentes, pero esa coalición depende de aliados y negociaciones. + +## 5. Opinión pública / social + +El seed pack separa aprobación electoral de bienestar material. CB Consultora diciembre 2024 aporta una medición pre-corte de opinión pública y percepción de economía del hogar [POLL_01]. La hipótesis a testear por MiroFish es si la aprobación resistente y el rechazo a alternativas previas compensan el deterioro material. + +La fuente social principal fue endurecida: SOCIAL_01 ahora es PDF oficial de UCA/Observatorio de la Deuda Social Argentina, publicado el 05/12/2024, no una nota periodística. El informe registra pobreza de 49,9% en 3°T2024 y otros indicadores de subsistencia/privaciones, funcionando como contrapeso social al optimismo macro [SOCIAL_01]. Para S1, su función es inicializar estrés social, riesgo de protesta, sensibilidad al empleo/salarios y oportunidad opositora. + +## 6. FMI / geopolítica + +El IMF Ex-post Evaluation publicado el 10/01/2025 fija el marco externo: sostenibilidad del programa, necesidad de normalizar el régimen cambiario, reservas, tasas reales y costo social del ajuste [GEO_01]. Americas Quarterly complementa con el contexto geopolítico de alineamiento con Estados Unidos, relación pragmática con China y relevancia del FMI para la estabilización [POL_01]. + +Para MiroFish, el FMI no debe modelarse como simple financista, sino como agente/constraint: su apoyo puede aliviar reservas, pero sus condiciones empujan hacia salida del cepo, mayor flexibilidad cambiaria y consistencia monetaria [GEO_01]. + +## 7. Riesgos persistentes a simular + +- Inflación: tendencia descendente pre-corte, pero vulnerable a corrección cambiaria y tarifas [MACRO_01; MACRO_02; MACRO_03]. +- Cepo / reservas: la salida del cepo es necesaria para inversión y normalización, pero puede generar devaluación e inflación si reservas son insuficientes [GEO_01; MONETARY_01]. +- Crawling peg: el 1% mensual ancla expectativas, pero puede apreciar el tipo de cambio real y afectar exportadores [MONETARY_01]. +- Fiscal anchor: superávit fortalece credibilidad, pero limita margen para responder a pobreza, provincias y Congreso [FISCAL_01; SOCIAL_01; INST_01]. +- Congreso: el Ejecutivo depende de sostener más de un tercio para proteger vetos y evitar leyes que rompan el equilibrio fiscal [INST_01; INST_02]. +- Opinión pública: aprobación y tolerancia al ajuste pueden sostenerse si la desinflación y recuperación se perciben, pero pobreza/empleo/salarios pueden erosionarla [POLL_01; SOCIAL_01]. +- Geopolítica/FMI: apoyo externo puede ser decisivo para reservas y confianza, pero también aumenta restricciones de política [GEO_01; POL_01]. diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/FISCAL_01_MECON_Cierre_Fiscal_2024.html b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/FISCAL_01_MECON_Cierre_Fiscal_2024.html new file mode 100644 index 0000000000..b51365ef68 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/FISCAL_01_MECON_Cierre_Fiscal_2024.html @@ -0,0 +1,387 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + El Sector Público Nacional registró superávit financiero anual por primera vez desde el 2010. El resultado fiscal del 2024 fue de $ 1.764.786 millones (0,3% del PBI) | Argentina.gob.ar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Presidencia de la Nación

+ + +
+ +
+
+ + + +
+
+
+
+ + +
+
+
+ + +
+ +
+
+
+
+
+
+ + +
+
+
+ +
+

El Sector Público Nacional registró superávit financiero anual por primera vez desde el 2010. El resultado fiscal del 2024 fue de $ 1.764.786 millones (0,3% del PBI)

+
+ + + +
+

 

+
+ + +
+ +
+ +
+ + + + + + +
+
+
+
+ +
+
+
+
+ +
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

Durante diciembre, el Sector Público Nacional (SPN) registró un resultado financiero por -$1.557.305 millones, producto de un resultado primario de -$1.301.046 millones y de un pago de intereses de deuda pública neto de los intra-sector público por $256.260 millones. Vale resaltar que este resultado es menor en términos nominales al de diciembre del 2023.

+

Esto redundó en un superávit financiero para el año 2024 de $ 1.764.786 millones (0,3% del PBI) y uno primario de $ 10.405.810 millones (1,8% del PBI). Así, se consolida el ancla fiscal del programa de gobierno, que permanecerá durante el 2025.

+

Vale destacar que el resultado fiscal del 2024 se obtuvo con una deuda flotante en línea con la del cierre del 2023 en términos nominales, esto es, con una reducción real de la misma del 52%. Además de la racionalización del gasto de la Administración Nacional que llevó al primer resultado positivo de la misma previo a transferencias al resto de los sectores desde el 2014, destaca el saneamiento realizado en las empresas públicas, que permitió registrar el primer mes de superávit operativo de las mismas desde el 2009, y la disolución de 19 fondos fiduciarios para eficientizar el uso de los recursos públicos.

+

En detalle, los ingresos totales del SPN en el último mes del año alcanzaron los $9.871.121 millones (+133,5% i.a.). En lo que respecta a la recaudación tributaria, la misma presentó un crecimiento de +135,1% i.a. explicado principalmente por la variación de los ingresos correspondientes a las Ganancias (+218,7% i.a.), al Impuesto a los Débitos y Créditos (+180,7% i.a.), y a los Aportes y Contribuciones a la Seguridad Social (+166,6% i.a.).

+

Por su parte, cabe mencionar la recaudación correspondiente al IVA neto de reintegros (+123,3% i.a.), a los Derechos de Importación (+137% i.a.) y a los Derechos de Exportación (+45,8%).

+

Durante el mes de diciembre, los gastos primarios del Sector Público Nacional alcanzaron los $ 11.172.167 millones (+79,7% i.a.). En lo que refiere a las prestaciones de la Seguridad Social, las mismas ascendieron a $7.212.371 millones (+132,2% i.a.), producto del impacto de la fórmula de movilidad aprobada por la Ley N° 27.609 y el DNU 274/24, que adecuó la mencionada fórmula para que los aumentos jubilatorios acompañen la evolución de la inflación y otorgó una compensación adicional de 12,5% para todos los pasivos bajo ese régimen. Por otra parte, las remuneraciones alcanzaron los $1.634.415 millones producto de los incrementos otorgados en el marco de las políticas salariales acordadas.

+

Las transferencias corrientes alcanzaron los $3.255.195,5 millones. Aquellas correspondientes al sector privado presentaron un crecimiento de $ 769.547,3 millones. Entre ellas, destacan las inherentes a las prestaciones sociales, las prestaciones del PAMI, el impacto de la movilidad en las asignaciones familiares (donde la Asignación Universal para Protección Social fue incrementada un 100% en enero mediante Decreto 117/2023), los programas de Política Alimentaria (con un incremento en la Tarjeta Alimentar del 138% entre enero y diciembre, y un incremento en la cantidad de beneficiarios, según las Resoluciones 3/2023, 11/2024, 111/2024, 181/2024 y 636/2024), y el Plan 1.000 días (incrementado un 500% mediante Resolución 1.062/2024).

+

Por su parte, las transferencias corrientes al sector público realizadas en octubre alcanzaron los $ 787.986 millones (+12,4% i.a.).

+

Por último, los subsidios económicos presentaron un incremento de $141.635 millones (20,2% i.a.), donde los energéticos variaron $113.910 millones (21,0% i.a.), mientras que los destinados al transporte lo hicieron en $49.432 millones (+36,7% i.a.).

+
+
+ + +
+
+ + +
+
+
+

Descargas

+
+
+

Sector público base caja diciembre 2024 (xlsx,29.0 Kb)

+     Descargar archivo +
+ +
+
+ + +
+
+
+
+
+
+ +
+
+ + +
+ + + + + +
+
+ Scroll hacia arriba +
+
+ + diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/GEO_01_IMF_ExPost_Evaluation_202501.pdf b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/GEO_01_IMF_ExPost_Evaluation_202501.pdf new file mode 100644 index 0000000000..32691206ef Binary files /dev/null and b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/GEO_01_IMF_ExPost_Evaluation_202501.pdf differ diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/INST_01_Diputados_Veto_Ley_Jubilatoria_20240911.html b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/INST_01_Diputados_Veto_Ley_Jubilatoria_20240911.html new file mode 100644 index 0000000000..661b68961b --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/INST_01_Diputados_Veto_Ley_Jubilatoria_20240911.html @@ -0,0 +1,632 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LA CÁMARA DE DIPUTADOS RESPALDÓ EL VETO DEL PODER EJECUTIVO A LA LEY JUBILATORIA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + Honorable Cámara  de Diputados 				de la Nación Argentina + +
+
+
+ + +
+ + + + + + + + + + + + + + + + +
+ + +
+
+
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+
+ Sesión especial
+
+ 11 de septiembre de 2024
+
+
+ LA CÁMARA DE DIPUTADOS RESPALDÓ EL VETO DEL PODER EJECUTIVO A LA LEY JUBILATORIA
+
+ En el marco de una sesión solicitada por los bloques de la UCR, Encuentro Federal y la Coalición Cívica, la Cámara baja no alcanzó los dos tercios de los votos de los presentes para rechazar el veto a la Ley.
+
+
+ Galeria de imagenes de la noticia LA CÁMARA DE DIPUTADOS RESPALDÓ EL VETO DEL PODER EJECUTIVO A LA LEY JUBILATORIA +
+
+ Galeria de imagenes de la noticia LA CÁMARA DE DIPUTADOS RESPALDÓ EL VETO DEL PODER EJECUTIVO A LA LEY JUBILATORIA +
+
+ Galeria de imagenes de la noticia LA CÁMARA DE DIPUTADOS RESPALDÓ EL VETO DEL PODER EJECUTIVO A LA LEY JUBILATORIA +
+
+ Galeria de imagenes de la noticia LA CÁMARA DE DIPUTADOS RESPALDÓ EL VETO DEL PODER EJECUTIVO A LA LEY JUBILATORIA +
+
+ Galeria de imagenes de la noticia LA CÁMARA DE DIPUTADOS RESPALDÓ EL VETO DEL PODER EJECUTIVO A LA LEY JUBILATORIA +
+
+ Galeria de imagenes de la noticia LA CÁMARA DE DIPUTADOS RESPALDÓ EL VETO DEL PODER EJECUTIVO A LA LEY JUBILATORIA +
+
+ +
+

La Cámara de Diputados de la Nación debatió en sesión especial el proyecto de ley que establece modificaciones al régimen jurídico aplicable a la Movilidad Previsional y a la Seguridad Social. La votación obtuvo 153 votos positivos, 87 negativos y 8 abstenciones.

+

La norma que había sido sancionada por el Congreso, obtuvo el veto presidencial y fue devuelta al Poder Legislativo. Según el procedimiento de formación y sanción de Leyes, se requieren dos tercios de los votos para rechazar el veto presidencial a la ley e insistir con el proyecto sancionado por el Congreso.

+

En su discurso, la diputada Vanina Biasi (Partido obrero - Frente de izquierda y de trabajadores -Unidad), cuestionó el veto presidencial al especificar que “esta ley incide poco en el equilibrio fiscal”.

+

Por su parte, el diputado Sergio Acevedo (Por Santa Cruz) consideró que “la valoración de que hay que hacer frente a la situación de los jubilados merece un esfuerzo de toda sociedad”.

+

Luego, el diputado Juan Brügge (Encuentro Federal) anticipó “el rechazo de su bloque al veto presidencial”, al argumentar que “entendemos que no está fundado del punto de vista legal, de los hechos y tampoco de la realidad que pretende mostrar el Presidente a través de los números que nos tiene acostumbrado y que muchas veces no tienen un correlato con aspectos técnicos"; mientras que su par Juan Manuel López (Coalición Cívica) expresó: “No van a ganar ustedes, no vamos a perder nosotros; van a perder los jubilados que no encuentran una solución”.

+

En tanto, el diputado Agustín Domingo (Innovación Federal) adelantó que “la posición de su bloque va a ser la abstención”, y en ese sentido, advirtió: “No es cierto que la fórmula previsional que aprobamos en este Congreso, por una amplia mayoría, sea inviable fiscalmente”. “Muy por el contrario, lo que esa fórmula evitaba es lo que ahora es inevitable, una catarata de juicios por no respetar el empalme de una fórmula a otra”, alegó.

+

La diputada de la UCR Gabriela Brower de Koning aseveró: “Esta ley no solamente era justa y necesaria, sino que también era presupuestariamente responsable”. Y agregó:  "Siempre defendimos y tuvimos nuestro objetivo de generar una propuesta que sea fiscalmente responsable, pagable”. 

+

A su turno, el jefe de la bancada del Pro, Cristian Ritondo, pidió “sensatez y responsabilidad a la hora de legislar”, al sostener que “esta ley produciría, para este año, un déficit que seis mil millones de dólares, y quince mil para el año siguiente”. 

+

El legislador indicó que “se trató una ley donde no había un informe de la Oficina de Presupuesto del Congreso”, y en esa línea, criticó: “Lo que están planteando en los hechos es financiar con emisión, con deuda que no podemos tomar y todos sabemos que más emisión es más inflación; y más inflación es más pobreza para todos los argentinos, especialmente para los jubilados y los que menos ganas”.

+

Desde Unión por la Patria, Germán Martínez (UxP) anunció que “venimos a rechazar el veto”, al tiempo que su par del mismo bloque Leandro Santoro recalcó: "Las jubilaciones no son planes sociales, los jubilados son acreedores del Estado". 

+

Desde La Libertad Avanza, José Luis Espert, argumentó en favor del veto presidencial: “Este proyecto de ley cuesta 10 mil millones de dólares”. En el mismo sentido, Juliana Santillán definió que es “una decisión valiente y crucial del presidente Javier Milei". Y agregó: "Con el veto Milei frenó una imprudencia fiscal, la economía necesita previsibilidad, el déficit cero no se negocia". Por último, el presidente del bloque, Gabriel Bornoroni, concluyó que “están utilizando a los jubilados porque quieren desestabilizar al gobierno” e instó a sus pares a fortalecer el sistema previsional a través de la sanción de una reforma laboral. 

+

Al comienzo de la reunión, el pleno aceptó la renuncia del diputado radical Pedro Galimberti, y, en su lugar asumió Nancy Ballejos (Pro), quien prestó juramento ante la Cámara baja.

+
+
+ + +
+ + + +
+ + + +
+ +
+ +
+ +
+ + + + + + + + + + + + + +
+ + +
+
+ +
+ + + + + + + + + + + + + +
+ + +
+
+ + +
+ + + + + + + + + + + + + +
+ + +
+
+
+ + + + + +
+ + + + + + + + + + + + + + + + diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/INST_02_Chequeado_Veto_Jubilatorio_Conteo_20240911.html b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/INST_02_Chequeado_Veto_Jubilatorio_Conteo_20240911.html new file mode 100644 index 0000000000..7abd8fb307 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/INST_02_Chequeado_Veto_Jubilatorio_Conteo_20240911.html @@ -0,0 +1,1101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Diputados confirmó el veto de Javier Milei a la ley de movilidad jubilatoria - Chequeado + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Skip to content + + +
+ +
+
+ +
+
+ +
+
+ + +
+
+ +
+ +
+
+
+
+ + +
+
+
+
+
+
+ + + + + + Esta nota tiene más de un año + +
+ + + +

Diputados confirmó el veto de Javier Milei a la ley de movilidad jubilatoria

+ + + + + +
+ +
+
+ + +
+
Si tenés sólo unos segundos, leé estas líneas:
+
+
    +
  • La Cámara baja no pudo revertir el veto del Presidente a la reforma de la fórmula jubilatoria, que había sido aprobada por el Congreso con impulso de la oposición.
  • +
  • En la sesión especial de hoy, 153 diputados votaron a favor de insistir con el proyecto de ley, mientras que 87 votaron en contra y 8 se abstuvieron. De esta manera, no se alcanzaron los 2 tercios necesarios.
  • +
  • Con el resultado de la sesión de hoy, se mantiene el veto de Milei y el Parlamento no podrá insistir con el tema por al menos un año.
  • +
+
+
+ +
+

La Cámara de Diputados no pudo revertir el veto del presidente Javier Milei (La Libertad Avanza) a la reforma de la fórmula jubilatoria, que había sido aprobada por el Congreso con impulso de la oposición. En la sesión especial de hoy, 153 diputados votaron en favor de insistir con el proyecto de ley, mientras que 87 votaron en contra y 8 se abstuvieron.

+

La Constitución habilita al Congreso a insistir con leyes que son rechazadas por el Poder Ejecutivo, pero para eso se requieren algunas condiciones distintas a la de una sanción normal. La oposición necesitaba el voto de 2 tercios de los presentes, pero no lo logró.

+

En esta nota, las claves de la sesión de hoy.

+

+

En qué consistía el proyecto de ley de movilidad jubilatoria

+

La iniciativa mantenía el esquema de actualización por inflación aprobado a través de un Decreto de Necesidad y Urgencia (DNU) firmado por Milei, pero le sumaba un incremento adicional del 8,1% a los haberes de abril (el Gobierno había otorgado un incremento del 12,5%), con el objetivo de completar el 20,6% de inflación correspondiente a enero.

+

Además, disponía que el haber mínimo no podía ser inferior a 1,09 canastas básicas por adulto (que publica mensualmente el INDEC y define la línea de pobreza), y proponía que la fórmula de movilidad no dependiera sólo de la inflación sino que también tuviera en cuenta los salarios. Es decir, en caso de que la inflación quedara por debajo del de Remuneración Imponible Promedio de los Trabajadores Estatales (RIPTE), los jubilados recibirían el 50% de esa diferencia a través de un ajuste semestral.

+

En qué condiciones fue aprobado por el Congreso

+

La media sanción de la nueva fórmula de movilidad jubilatoria en Diputados fue aprobada por 160 votos afirmativos, una mayoría holgada que reunió a Unión por la Patria (UP), la Unión Cívica Radical (UCR), Hacemos Coalición Federal, Innovación Federal, la Coalición Cívica (CC), Por Santa Cruz y el Movimiento Popular Neuquino (MPN).

+

En esa sesión, se registraron 72 votos negativos y 8 abstenciones. Es decir que votaron 240 diputados. De esta manera, el proyecto contó con el voto afirmativo de 2 tercios de los presentes.

+

Por otro lado, el Senado aprobó el proyecto y logró la sanción con 61 votos afirmativos y 8 negativos, una mayoría más holgada aún. En proporción, el proyecto fue votado por el 88% de los senadores presentes.

+

Qué pasó en la sesión especial de Diputados

+

Todas las leyes sancionadas por el Congreso son comunicadas al Poder Ejecutivo, quien tiene la facultad de promulgarlas o vetarlas, sea de forma parcial (es decir, sólo algunos artículos) o total. Cuando esto sucede, el proyecto vuelve a la cámara de origen (en el caso de los vetos parciales, sólo la parte observada), porque el Congreso tiene la facultad de insistir con su redacción original. Esto solo puede hacerse en el año en el que fue devuelto o el siguiente.

+

Milei dictó el veto total a la ley a través de un decreto publicado en el Boletín Oficial el 2 de septiembre. El texto ingresó por la Cámara de Diputados, que había sido la cámara de origen del proyecto en su primer tratamiento. El proyecto no pasó por comisiones porque la oposición solicitó una sesión especial para tratarlo directamente en el recinto.

+

En esta instancia, no podía sufrir nuevas modificaciones, es decir que debía votarse por su insistencia tal cual había sido el texto aprobado en la sanción original. Además, para la insistencia se requiere el voto de los 2 tercios de ambas cámaras. Si todos los diputados estuvieran presentes al momento de votar, la oposición necesitaba 172 votos para insistir.

+

En la sesión de hoy, al momento de votar, estuvieron presentes 248 diputados (faltaron 9). De esta manera, se necesitaban 165 votos afirmativos para la insistencia, pero la oposición alcanzó los 153 votos, una cifra menor a la de la primera sanción. De esta forma, se mantiene el veto de Milei y el Parlamento no podrá insistir con el tema por al menos un año.

+

 

+

Actualización 11/09/2024: la nota fue actualizada luego de que Diputados confirmara el veto.

+
+ + +
+

+ + + Fecha de publicación original: + 11/09/2024 + +

+
+ +
+

Temas

+ +
+ + +
+

Comentarios

+
  • Susana Frascarolli11 de septiembre de 2024 a las 5:03 pmLo unico que digo que la casta como dice el que se nombra presidente El cual no me representa no pasa necesidades porque sus sueldos son de varios millones y el pueblo comun con sueldos muy bajos sigue perdiendo poder adquiditivo Porque no se sacan los millones y lo repRten a quienes lo necesotam Adorno deja de hablsr inclherencias y con millon estas bien pago
  • +
  • Oscar Marcelo11 de septiembre de 2024 a las 6:23 pmQue asco
  • +
  • Marta11 de septiembre de 2024 a las 6:34 pmTe voté por un cambio mejor , pero siempre a los jubilados somos los que pagamos los platos rotos, de cada gobierno ., como dije antes me gusta lo que haces pero te equivocaste con los jubilados sácale los bonos y pone un sueldo que nos quedamos darnos un gusto, y déjate de aumentar a los diputados y senadores y aumentamos un poco a todos !!!!!.
  • +
  • aquiles11 de septiembre de 2024 a las 6:47 pmexcelente información
  • +
  • Dolores11 de septiembre de 2024 a las 10:23 pmSepan 'presidente y sus heroes' q sus sueldos también los pagan los jubilados. Ustedes son empleados del pueblo y no es bueno tomarse atribuciones en contra de sus empleadores!!!
  • +
  • Edgardo11 de septiembre de 2024 a las 10:54 pmTristeza e impotencia que se este avasallando la Constitución Nacional y ambas Camaras legislativas deTraidores sean funcionales al Gobierno, que los detesta, los trata de basura y los odia. No hay conciencia ni moralidad, en estos legisladores, están destruyendo un País para muchos y xonstruyendo un País para pocos.
  • +
  • Patricia Myriam Gomrz12 de septiembre de 2024 a las 11:55 amNo sé...pero cada vez siento que retrocedemos en el tiempo..triste
  • +
  • Ricardo Capello Pérez12 de septiembre de 2024 a las 8:08 pmMe gustaría leer las últimas noticias. Gracias
  • +
  • Mariano15 de septiembre de 2024 a las 6:17 pmLa verdad una vergüenza que le hagan eso a los jubilados nada menos, terrible otro fracaso más en Argentina de los gobernantes, los Kirchner un desastre, los anteriores un desastre, este gobierno pinta otro desastre, ya no se sabe a quien votar 🤦‍♂️
  • +
+
+

Valoramos mucho la opinión de nuestra comunidad de lectores y siempre estamos a favor del debate y del intercambio. Por eso es importante para nosotros generar un espacio de respeto y cuidado, por lo que por favor tené en cuenta que no + publicaremos comentarios con insultos, agresiones o mensajes de odio, desinformaciones que pudieran resultar peligrosas para otros, información personal, o promoción o venta de productos. +

+

Muchas gracias

+
+ +
+

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *


+ +

+

+ +

+

+
+
+ +
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MACRO_01_BBVA_Argentina_Economic_Outlook_Dec2024.pdf b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MACRO_01_BBVA_Argentina_Economic_Outlook_Dec2024.pdf new file mode 100644 index 0000000000..092bc0099c Binary files /dev/null and b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MACRO_01_BBVA_Argentina_Economic_Outlook_Dec2024.pdf differ diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MACRO_02_INDEC_IPC_Diciembre_2024.pdf b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MACRO_02_INDEC_IPC_Diciembre_2024.pdf new file mode 100644 index 0000000000..18cf005e10 Binary files /dev/null and b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MACRO_02_INDEC_IPC_Diciembre_2024.pdf differ diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MACRO_03_BCRA_REM_Diciembre_2024.pdf b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MACRO_03_BCRA_REM_Diciembre_2024.pdf new file mode 100644 index 0000000000..b88e8e2119 Binary files /dev/null and b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MACRO_03_BCRA_REM_Diciembre_2024.pdf differ diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MACRO_04_WorldBank_GEP_Jan2025_LAC.pdf b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MACRO_04_WorldBank_GEP_Jan2025_LAC.pdf new file mode 100644 index 0000000000..f275ec7157 Binary files /dev/null and b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MACRO_04_WorldBank_GEP_Jan2025_LAC.pdf differ diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MONETARY_01_BCRA_Crawling_Peg_1pct_20250116.html b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MONETARY_01_BCRA_Crawling_Peg_1pct_20250116.html new file mode 100644 index 0000000000..b76f4cecad --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MONETARY_01_BCRA_Crawling_Peg_1pct_20250116.html @@ -0,0 +1,508 @@ + + + + + + + + + + + + + + +The BCRA sets the crawling peg at 1% per month | BCRA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+ + + + + + +
+ + + + +
+
+ + +
+
+
+ +
+
+ + + + + + +
+
+ + + + +
+ + + + + +
+ + + + +

The BCRA sets the crawling peg at 1% per month

+
+ + + + +

Thursday, January 16, 2025

+
+ + + + +
After the consolidation observed in the inflation path over the past few months, the BCRA has set the crawling peg at 1% per month as from February 1, 2025.
+
+ + + + + +
+ + + + +

After the consolidation observed in the inflation path over the past few months and the expectations of lower inflation, the BCRA has established a new crawling peg at 1% per month as from February 1, 2025.

+

In a context of economic activity recovery and seasonal price increase, both inflation over the past few months and high-frequency observations confirm that inflation has posted a downward trend, below the market expectations surveyed.
The exchange rate adjustment continues to serve as a supplementary anchor to inflation expectations.

+

+ +

+
+ + + + +
+ + +
+ + + + + + +
+
+ + + + +
+ + + + +

Share on

+
+ + + + +
+
+
+ + + + +
+ + +
+ +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MONETARY_02_BCRA_Informe_Monetario_Diciembre_2024.pdf b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MONETARY_02_BCRA_Informe_Monetario_Diciembre_2024.pdf new file mode 100644 index 0000000000..87daba8b6c Binary files /dev/null and b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/MONETARY_02_BCRA_Informe_Monetario_Diciembre_2024.pdf differ diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/POLL_01_CB_Consultora_Diciembre_2024.pdf b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/POLL_01_CB_Consultora_Diciembre_2024.pdf new file mode 100644 index 0000000000..b605119204 Binary files /dev/null and b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/POLL_01_CB_Consultora_Diciembre_2024.pdf differ diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/POL_01_AmericasQuarterly_Argentina_2025_Snapshot.html b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/POL_01_AmericasQuarterly_Argentina_2025_Snapshot.html new file mode 100644 index 0000000000..e0652f5bf0 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/POL_01_AmericasQuarterly_Argentina_2025_Snapshot.html @@ -0,0 +1,2243 @@ + + + + + + + + + + Argentina: A 2025 Snapshot + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Politics, Business & Culture in the Americas
+
+ + + + +
+
+ + + + + + + + + +
+
+ +
+
+ + + + + + + + + + + + + + + + + +
+

Argentina: A 2025 Snapshot

AQ tracks political and economic trends to watch and key indicators in 2025.
+
+ + +
+
+
+ +
+
+ Reading Time: 2 minutes +

This article is adapted from AQ’s special report on trends to watch in Latin America in 2025

+ + + +
+
+
+ + +
+
+
+ +

Argentina

+ +
+ +
+
+
+ +
+ +
+ +
+ +
PRESIDENT
+ + + +

Javier Milei

+ + + +
IN OFFICE
+ + + +

2023-2027

+ +
+
+ + + + + + +

While Argentina’s economy emerged from a recession in the third quarter of 2024, the country faces renewed challenges, with midterm legislative elections on the horizon. After implementing economic “shock therapy” in his first year in office, President Javier Milei needs to find access to international funding, as capital controls may dampen the recovery, and fight against inflation. Monthly inflation followed a downward trend in 2024 and annual inflation registered 166% in November. With chronically diminished reserves, Argentina is scheduled to make a $3 billion payment in interest to the IMF and bond payments are due in January and July, close to $4.3 billion in each instance. In a geopolitical reversal, Milei was expected to visit China in January for a joint summit hosted by the Asian country and the Community of Latin American and Caribbean States (CELAC). Argentina renewed a $5 billion portion of its currency swap with China in June, and in September Milei described China as a “very interesting trade partner.” The IMF projects 5% economic growth and annual inflation of 62.7% for 2025. If sustained, Milei’s relative popularity may help secure him more support in October’s elections. An ardent Trump supporter, Milei has stated that he will seek a free trade agreement with the U.S.

+ +
+ +
+ +
Presidential approval rating54%
Population (millions)47.2
Homicide rate (per 100,000 people)4.4
% who say they would like to emigrate in next three years25%
Capacity to Combat Corruption Index ranking (out of 15 Latin American countries)7
+ +
+
+ +
+
+ +

TRENDS TO WATCH

+ +
+ + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +

ECONOMIC INDICATORS (2025 PROJECTIONS)

+ +
+ + +
GDP (current USD, billions)$574.2
GDP (% change)+5%
GDP per capita (current USD)$12,054
Inflation62.7%
Unemployment rate7.6%
Poverty rate (World Bank definition, see note below)15.6%
Fiscal balance (% of GDP)+0.9%
FDI (2023, billions USD)$22.9
Remittances inflows (2023, billions USD)$1
+ +
+
+ + + + + +
+ +

NOTE: Poverty rate is $6.85 in 2017 PPP. Pie chart indicates total value added of GDP by economic activity at current prices. Figures rounded to nearest decimal.

+ + + +

SOURCES: Presidential approval: Universidad de San Andrés Encuesta de Satisfacción Política y Opinión Pública (November 2024); Population, GDP and growth, inflation, unemployment: IMF World Economic Outlook (October 2024); Homicide rate: Ministerio de Seguridad (2023); Emigration polling: AmericasBarometer (2023); Corruption index: AS/COA and Control Risks (2023); Trading partners: World Integrated Trade Solution (2022); GDP by economic activity: ECLAC (2023); Poverty and fiscal balance: World Bank (October 2024); FDI: UNCTAD (June 2024); Remittances: World Bank (June 2024).

+ +
+ + + + + + + +

ABOUT THE AUTHOR

Emilie Sweigart

Reading Time: 2 minutesSweigart is an editor at Americas Quarterly and a policy manager at the Americas Society/Council of the Americas

+
Follow Emilie Sweigart:   LinkedIn  |   X/Twitter
+ + + + + + + + + +
+ + + + + + + + + + + +

+ + + + + + + + + +
+ + + + + Tags: 2025 Trends to Watch, Argentina, Javier Milei + + + + + +
Like what you've read? Subscribe to AQ for more.
+
Any opinions expressed in this piece do not necessarily reflect those of Americas Quarterly or its publishers.
+ + + +
+
+ +
+
+
+
+
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + + +
+ Sign up for our free newsletter + + + + + +
+
+
+ + +
+ + +
+ + +
+ + +
+ +
+
+
+
+ + + + + + + +
+ + + + + \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/SOCIAL_01_UCA_ODSA_Informe_Subsistencia_20241205.pdf b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/SOCIAL_01_UCA_ODSA_Informe_Subsistencia_20241205.pdf new file mode 100644 index 0000000000..57b945a255 Binary files /dev/null and b/cases/PILOT-ARG-2025-Q1/input_pack_pre_x/sources/SOCIAL_01_UCA_ODSA_Informe_Subsistencia_20241205.pdf differ diff --git a/cases/PILOT-ARG-2025-Q1/model_output_raw/adapted_run_config.json b/cases/PILOT-ARG-2025-Q1/model_output_raw/adapted_run_config.json new file mode 100644 index 0000000000..a30c52601b --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/model_output_raw/adapted_run_config.json @@ -0,0 +1,39 @@ +{ + "run_mode": "adapted_repo_direct_llm_equivalent", + "case_id": "PILOT-ARG-2025-Q1", + "started_at": "2026-05-22T00:47:57.058871+00:00", + "repo_commit": "5c824b66a638b454aeb3d972315dbeb94a2425f3", + "model": "gemini-2.5-flash-lite", + "base_url": "https://generativelanguage.googleapis.com/v1beta/openai", + "knowledge_cutoff_claim": "2025-01", + "web_access": false, + "rag_external": false, + "memory_persistent": false, + "clear_previous_memory": true, + "temperature": 0.2, + "top_p": 0.8, + "seed": 20250131, + "num_runs": 3, + "platform_mode": "direct_llm_single_packet_logged", + "output_format": "markdown_plus_json", + "require_citations_to_input_ids": true, + "forbid_post_cutoff_facts": true, + "deviations_from_requested_mirofish_cli": [ + "No `mirofish` CLI is present in this repository/PATH.", + "No OASIS Twitter/Reddit social simulation is executed by this adapted runner.", + "No Zep/Graphiti memory graph is built or queried.", + "All evidence is passed as one local pre-cutoff packet to an OpenAI-compatible chat completion endpoint.", + "This runner is an auditable fallback, not a claimed equivalent of the full interactive MiroFish UI workflow." + ], + "unsupported_or_not_used_parameters": { + "num_agents": "not applicable in direct LLM fallback", + "num_rounds": "not applicable in direct LLM fallback", + "social_interaction_simulation": "not executed", + "persistent_memory_clear": "not needed because no persistent memory used", + "seed_http_parameter": "omitted for Gemini OpenAI-compatible endpoint because Google rejects unknown field seed" + }, + "input_packet_sha256": "5bb3455b683faa5d762c660f6928642bc384974b88d019b864346c0b18560b48", + "prompt_sha256": "25f80a94cb31a1aacae284c2840991957d937bf4c4d11683efd5ab4285ad7058", + "validation_status": "PASS", + "validation_errors": [] +} \ No newline at end of file diff --git a/cases/PILOT-ARG-2025-Q1/model_output_raw/artifacts/adapted_input_packet.md b/cases/PILOT-ARG-2025-Q1/model_output_raw/artifacts/adapted_input_packet.md new file mode 100644 index 0000000000..16d1d44c83 --- /dev/null +++ b/cases/PILOT-ARG-2025-Q1/model_output_raw/artifacts/adapted_input_packet.md @@ -0,0 +1,1764 @@ +# Local pre-cutoff input packet +Cutoff: 2025-01-31. +The following content is compiled only from input_pack_pre_x. +Do not use answer_key_post_x or external knowledge. + +## Seed bundle +# Seed Bundle — Argentina 2025 pre-cutoff + +Cutoff: 2025-01-31. + +## S1 — Macroeconomía +- BBVA Research describía para 2025 un escenario de desinflación, recuperación de actividad y continuidad del ajuste fiscal, con riesgos asociados a reservas, tipo de cambio y sostenibilidad social/política de la estabilización [S1_BBVA_2024Q4]. +- El BCRA anunció el 16/01/2025 que desde el 1 de febrero de 2025 el sendero de desplazamiento del tipo de cambio oficial bajaría a 1% mensual, reforzando el ancla cambiaria dentro del esquema de estabilización [S2_BCRA_CRAWL_20250116]. +- INDEC informaba que diciembre de 2024 cerró con IPC mensual de 2,7% y una inflación interanual todavía muy elevada, lo que dejaba a 2025 con una herencia inflacionaria significativa pero una tendencia mensual menor que al inicio del programa [S3_INDEC_IPC_202412]. + +## S2 — Política e instituciones +- El oficialismo llegaba al año electoral con necesidad de aumentar bancas para sostener reformas, mejorar gobernabilidad y reducir dependencia de acuerdos circunstanciales en Congreso [S4_MERCOPRESS_PIIE_20250128; S6_AQ_SNAPSHOT_202501]. +- La elección legislativa de 2025 era tratada por analistas pre-corte como un test de medio término para la agenda de Milei, con interacción entre resultados económicos, negociación con el FMI y capacidad legislativa [S4_MERCOPRESS_PIIE_20250128]. +- La fragmentación opositora y la relación con gobernadores/bloques legislativos aparecían como variables claves para convertir apoyo electoral en poder institucional [S4_MERCOPRESS_PIIE_20250128; S6_AQ_SNAPSHOT_202501]. + +## S3 — Opinión pública y tensiones sociales +- La aprobación presidencial se mantenía competitiva pese al costo social del ajuste, pero las preocupaciones por empleo, ingresos y bienestar material seguían siendo políticamente sensibles [S5_BATIMES_POLL_202501]. +- La percepción pública podía depender menos del nivel anual acumulado de inflación heredado y más de la trayectoria mensual, recuperación de salarios reales, empleo y expectativas de estabilidad [S1_BBVA_2024Q4; S3_INDEC_IPC_202412; S5_BATIMES_POLL_202501]. +- Tensiones persistentes pre-corte: reservas netas, sostenibilidad del crawling peg, salario real, desempleo, oposición legislativa, negociación con FMI y tolerancia social al ajuste [S1_BBVA_2024Q4; S2_BCRA_CRAWL_20250116; S4_MERCOPRESS_PIIE_20250128]. + +## S4 — Variables que el sistema debe considerar +- Inflación +- Salarios reales +- Desempleo +- Reservas BCRA +- Crawling peg +- Fragmentación opositora +- Gobernabilidad legislativa + + +## Source manifest +{"source_id": "S1_BBVA_2024Q4", "title": "Argentina Economic Outlook 4Q24", "publisher": "BBVA Research", "url": "https://www.bbvaresearch.com/wp-content/uploads/2024/12/Argentina-Economic-Outlook-4Q24.pdf", "published_date": "2024-12", "accessed_date": "2026-05-21", "allowed_before_x": "true", "reason_used": "Pre-cutoff macro forecast: inflation, GDP, fiscal, FX/reserves.", "local_path": "input_pack_pre_x/sources/S1_BBVA_Argentina_Economic_Outlook_4Q24.pdf", "sha256": "d8d2efc188ee342187b97e3c7bc3ea344a4da8818515d1c6256543e083cef063"} +{"source_id": "S2_BCRA_CRAWL_20250116", "title": "The BCRA sets the crawling peg at 1% per month", "publisher": "Banco Central de la República Argentina", "url": "https://www.bcra.gob.ar/en/news/el-bcra-establece-un-nuevo-sendero-de-desplazamiento-de-1-mensual-para-el-tipo-de-cambio/", "published_date": "2025-01-16", "accessed_date": "2026-05-21", "allowed_before_x": "true", "reason_used": "Pre-cutoff policy anchor: 1% monthly crawling peg from Feb 2025.", "local_path": "input_pack_pre_x/sources/S2_BCRA_crawling_peg_20250116.html", "sha256": "712810c3af42b0934e04328dcae3326fde6931bc66d284ccaf7a20d2bd5a3863"} +{"source_id": "S3_INDEC_IPC_202412", "title": "Índice de Precios al Consumidor (IPC). Cobertura nacional. Diciembre de 2024", "publisher": "INDEC", "url": "https://www.indec.gob.ar/uploads/informesdeprensa/ipc_01_2517A7124C09.pdf", "published_date": "2025-01-14", "accessed_date": "2026-05-21", "allowed_before_x": "true", "reason_used": "Official pre-cutoff inflation baseline through Dec 2024.", "local_path": "input_pack_pre_x/sources/S3_INDEC_IPC_Dic2024.pdf", "sha256": "ea4848cd58a41fa1eab54b45ab60b75d431f54ca73e37027f2410506be8d7e67"} +{"source_id": "S4_MERCOPRESS_PIIE_20250128", "title": "Milei's 2025 challenges: Between Argentina's mid-term elections and the IMF", "publisher": "Mercopress / PIIE syndicated analysis", "url": "https://en.mercopress.com/2025/01/28/milei-s-2025-challenges-between-argentina-s-mid-term-elections-and-the-imf", "published_date": "2025-01-28", "accessed_date": "2026-05-21", "allowed_before_x": "true", "reason_used": "Pre-cutoff political/economic analysis of midterms, IMF and governance.", "local_path": "input_pack_pre_x/sources/S4_Mercopress_Milei_2025_challenges.html", "sha256": "047df7f21e338e06e77fd0746e7330efd895c1295f44d3eb2297b8886e06cdac"} +{"source_id": "S5_BATIMES_POLL_202501", "title": "Milei's approval rating holds as Argentines worry more about jobs", "publisher": "Buenos Aires Times", "url": "https://www.batimes.com.ar/news/argentina/mileis-approval-rating-holds-as-argentines-worry-more-about-jobs.phtml", "published_date": "2025-01-19", "accessed_date": "2026-05-21", "allowed_before_x": "true", "reason_used": "Pre-cutoff public opinion/social concerns around approval and jobs.", "local_path": "input_pack_pre_x/sources/S5_BATimes_approval_jobs_202501.html", "sha256": "9006def3c7bcfa885e1b19fc2a69c760729ce9e1e2e0205c69c23b4477b5eb05"} +{"source_id": "S6_AQ_SNAPSHOT_202501", "title": "Argentina: A 2025 Snapshot", "publisher": "Americas Quarterly", "url": "https://www.americasquarterly.org/article/argentina-a-2025-snapshot/", "published_date": "2025-01-15", "accessed_date": "2026-05-21", "allowed_before_x": "true", "reason_used": "Pre-cutoff scenario overview integrating politics and economy.", "local_path": "input_pack_pre_x/sources/S6_AmericasQuarterly_Argentina_2025_snapshot.html", "sha256": "5c3eb8035d82d17150d0799f601fcdca19955f84f3e639cfa15e0cf1c5a7ac3c"} + +## Source excerpts + +### S1_BBVA_2024Q4 excerpt +# Excerpt S1_BBVA_2024Q4 + +Title: Argentina Economic Outlook 4Q24 +Publisher: BBVA Research +Published date: 2024-12 +URL: https://www.bbvaresearch.com/wp-content/uploads/2024/12/Argentina-Economic-Outlook-4Q24.pdf +Allowed before x: true + +```text +Argentina economic +outlook + +December 2024 + BBVA Research / Argentina economic outlook– December 2024 2 + + + + +Main messages. International + + + Inflation has eased further, partly due to lower oil prices (despite escalating geopolitical + Recent tensions) and excess supply in China (despite rising stimuli), but growth and core + developments inflation remain resilient. The latter, together with expectations that Trump policies will + spur inflation and raise fiscal risk, has boosted US sovereign yields and the USD. + + As the new + +--- + +n the last months and consumer + Political + confidence continues to rebound, reaching its historical long-term average. Trump’s + environment + second administration should entail net positive effects for Argentina. + + Fiscal performance has exceeded expectations. Based on a sharp reduction in + Fiscal spending, the Treasury will achieve a primary fiscal surplus of 1.7% of GDP and a + balance balanced financial result in 2024. We expect that the government will maintain the + fiscal equilibrium again in 2025. + + Since the current government took office, the BCRA has not issued pesos to assist the + Monetary Treasury. The current monetary scheme, which freezes the monetary aggregate + policy known as “Broad Monetary Base”, has paved the way for a + +--- + +onomic outlook– December 2024 2 + + + + +Main messages. International + + + Inflation has eased further, partly due to lower oil prices (despite escalating geopolitical + Recent tensions) and excess supply in China (despite rising stimuli), but growth and core + developments inflation remain resilient. The latter, together with expectations that Trump policies will + spur inflation and raise fiscal risk, has boosted US sovereign yields and the USD. + + As the new US administration would raise import tariffs, mainly on China, global + growth is forecast to slow from 2.7% in 2024 to 2.1% in 2025 in the US, and from + Growth + 4.8% to 4.1% in China, where policy measures will provide some cushion. In the + outlook + Eurozone, protectionism will add to o + +--- + +lingering relative price imbalances are digested. + BBVA Research / Argentina economic outlook– December 2024 4 + + + + +Key messages – Argentina + + + + The maintenance of the crawling peg at 2% MoM throughout the year contributed to the + disinflation process, but slowed the build-up of reserves by the BCRA. We expect the + Exchange rate + government to gradually lift capital controls during 2025, even though a complete + liberalization is unlikely before October elections. + + The recession ended in 2Q24 and economic activity performed better than expected + Economic in 3Q24, with the incoming data showing an incipient recovery of real wages. Thus, + activity GDP is expected to fall by 3.8% this + +--- + +s tilted towards a lower inflation) as + lingering relative price imbalances are digested. + BBVA Research / Argentina economic outlook– December 2024 4 + + + + +Key messages – Argentina + + + + The maintenance of the crawling peg at 2% MoM throughout the year contributed to the + disinflation process, but slowed the build-up of reserves by the BCRA. We expect the + Exchange rate + government to gradually lift capital controls during 2025, even though a complete + liberalization is unlikely before October elections. + + The recession ended in 2Q24 and economic activity performed better than expected + Economic in 3Q24, with the incoming data showing an incipient recovery of real wages. Thus, + activity + +--- + +na (despite rising stimuli), but growth and core + developments inflation remain resilient. The latter, together with expectations that Trump policies will + spur inflation and raise fiscal risk, has boosted US sovereign yields and the USD. + + As the new US administration would raise import tariffs, mainly on China, global + growth is forecast to slow from 2.7% in 2024 to 2.1% in 2025 in the US, and from + Growth + 4.8% to 4.1% in China, where policy measures will provide some cushion. In the + outlook + Eurozone, protectionism will add to other challenges and keep growth low, 0.8% in + 2024 and 1.0% in 2025. + + Inflation will accelerate in the US but remain subdued in the Eurozone and China, + Inflation and where the effects of we +``` + + +### S2_BCRA_CRAWL_20250116 excerpt +# Excerpt S2_BCRA_CRAWL_20250116 + +Title: The BCRA sets the crawling peg at 1% per month +Publisher: Banco Central de la República Argentina +Published date: 2025-01-16 +URL: https://www.bcra.gob.ar/en/news/el-bcra-establece-un-nuevo-sendero-de-desplazamiento-de-1-mensual-para-el-tipo-de-cambio/ +Allowed before x: true + +```text +The BCRA sets the crawling peg at 1% per month | BCRA Home » Noticias Sections About the BCRA Monetary policy Financial System Reports Statistics and indicators Financial Knowledge and Tools Banknotes, coins and other means of payment News Services and procedures ES Español Home » Noticias The BCRA sets the crawling peg at 1% per month Thursday, January 16, 2025 After the consolidation observed in the inflation path over the past few months, the BCRA has set the crawling peg at 1 + +--- + +Home » Noticias Sections About the BCRA Monetary policy Financial System Reports Statistics and indicators Financial Knowledge and Tools Banknotes, coins and other means of payment News Services and procedures ES Español Home » Noticias The BCRA sets the crawling peg at 1% per month Thursday, January 16, 2025 After the consolidation observed in the inflation path over the past few months, the BCRA has set the crawling peg at 1% per month as from February 1, 2025. After the consolidation observed in the inflation path over the past few months and the expectations of lower inflation, the BCRA has established a new crawling peg at 1% per month as from February 1, 2025. In a context of economic activity recovery and seasonal price increase, both inflation over the past few months and high-frequency observations confirm that inflation has posted a downward trend, below the market expectations + +--- + +5. After the consolidation observed in the inflation path over the past few months and the expectations of lower inflation, the BCRA has established a new crawling peg at 1% per month as from February 1, 2025. In a context of economic activity recovery and seasonal price increase, both inflation over the past few months and high-frequency observations confirm that inflation has posted a downward trend, below the market expectations surveyed. The exchange rate adjustment continues to serve as a supplementary anchor to inflation expectations. Share on Central Bank of Argentina The Central Bank of Argentina is the authority in charge of monetary stability and banking regulation and does not offer banking or financial services to the general public. Reconquista 266 C1003ABF CABA Argentina +54 11 4348-3500 Follow Follow Follow Follow Follow Aviso legal Idiomas y traducciones Contacto Museo Po + +--- + +The BCRA sets the crawling peg at 1% per month | BCRA Home » Noticias Sections About the BCRA Monetary policy Financial System Reports Statistics and indicators Financial Knowledge and Tools Banknotes, coins and other means of payment News Services and procedures ES Español Home » Noticias The BCRA sets the crawling peg at 1% per month Thursday, January 16, 2025 After the consolidation observed in the inflation path over the past few months, the BCRA has set the crawling peg at 1% per month as from February 1, 2025. After the consolidation observed in the inflation path over the past few months and the expectations of lower inflation, the BCRA has established a new crawling peg at 1% per month as from February 1, 2025. In a context of economic activity recovery and seasonal price increase, both inflation over the past few months and high-frequ +``` + + +### S3_INDEC_IPC_202412 excerpt +# Excerpt S3_INDEC_IPC_202412 + +Title: Índice de Precios al Consumidor (IPC). Cobertura nacional. Diciembre de 2024 +Publisher: INDEC +Published date: 2025-01-14 +URL: https://www.indec.gob.ar/uploads/informesdeprensa/ipc_01_2517A7124C09.pdf +Allowed before x: true + +```text +GENERAL + + + + % Menor variación porcentual Mayor variación porcentual + Fuente: INDEC, Dirección Nacional de Estadísticas de Precios. Dirección de Índices de Precios de Consumo. + + + + + El nivel general del Índice de precios al consumidor registró un alza mensual de 2,7% en diciembre de 2024, y acumuló en + el año una variación de 117,8%. + + + + + Destacados del mes + La división de mayor aumento en el mes fue Vivienda, agua, electricidad, gas y otros combustibles (5,3%), por los + incrementos en Alquiler de la vivienda y gastos conexos y Electricidad, gas y otros combustibles. Le siguió la + +--- + +Menor variación porcentual Mayor variación porcentual + Fuente: INDEC, Dirección Nacional de Estadísticas de Precios. Dirección de Índices de Precios de Consumo. + + + + + El nivel general del Índice de precios al consumidor registró un alza mensual de 2,7% en diciembre de 2024, y acumuló en + el año una variación de 117,8%. + + + + + Destacados del mes + La división de mayor aumento en el mes fue Vivienda, agua, electricidad, gas y otros combustibles (5,3%), por los + incrementos en Alquiler de la vivienda y gastos conexos y Electricidad, gas y otros combustibles. Le siguió la división + Comunicación (5,0%), por las subas en Servicios de tele + +--- + +Informes técnicos / Vol. 9, n° 7 ISSN 2545-6636 + + + + +Índices de precios +Vol. 9, n° 1 + + + +Índice de precios al consumidor (IPC) +Diciembre de 2024 + Informes técnicos. Vol. 9, nº 7 Índice Pág. +ISSN 2545-6636 +Índices de precios. Vol. 9, nº 1 + Resumen ejecutivo.................................................................................... + +--- + +ariaciones de diciembre con respecto al mismo mes de 2023, + según bienes y servicios. Total nacional y regiones................................................ .6 +Este informe técnico fue producido por los equipos de trabajo de: + Cuadro 5. Incidencia de las divisiones en las variaciones del nivel general +Dirección Nacional de Estadísticas de Precios + del IPC, según regiones. Resultados con respecto al mes anterior. ........................ .6 +Mariano Poledo +Dirección de Índices de Precios de Consumo Cuadro 6. Incidencia acumulada de las divisiones en las variaciones del +Georgina Giglio +``` + + +### S4_MERCOPRESS_PIIE_20250128 excerpt +# Excerpt S4_MERCOPRESS_PIIE_20250128 + +Title: Milei's 2025 challenges: Between Argentina's mid-term elections and the IMF +Publisher: Mercopress / PIIE syndicated analysis +Published date: 2025-01-28 +URL: https://en.mercopress.com/2025/01/28/milei-s-2025-challenges-between-argentina-s-mid-term-elections-and-the-imf +Allowed before x: true + +```text +Milei’s 2025 challenges: Between Argentina's mid-term elections and the IMF — MercoPress Current Edition Topics Agriculture Economy Energy & Oil Entertainment Environment Fisheries Health & Science Investments Politics Real Estate Tourism Regions Antarctica Argentina Brazil Chile Falkland Islands International Latin America Mercosur Pacific Alliance Paraguay Unasur United States Uruguay Venezuela News Archive MercoPress, en Español Search Login Search Get our news on your inbox! Suscribe x + +--- + +Milei’s 2025 challenges: Between Argentina's mid-term elections and the IMF — MercoPress Current Edition Topics Agriculture Economy Energy & Oil Entertainment Environment Fisheries Health & Science Investments Politics Real Estate Tourism Regions Antarctica Argentina Brazil Chile Falkland Islands International Latin America Mercosur Pacific Alliance Paraguay Unasur United States Uruguay Venezuela News Archive MercoPress, en Español Search Login Search Get our news on your inbox! Suscribe x Oops! Wrong login informati + +--- + +nd Argentina. After just one year in office, Milei has achieved significant milestones: eliminating the fiscal deficit, bringing inflation to moderate levels, reducing the gap between the official and the parallel exchange rate (a free but illiquid market), and implementing the most ambitious liberalization and deregulation program Argentina has seen this century. These accomplishments are even more striking given his outsider status and limited congressional representation. Milei’s approval ratings have held steady at around 50 percent, notwithstanding an economy contracting at an expected rate of approximately 3.5 percent (with a nonagricultural GDP contraction larger than 5 percent) and poverty surpassing 50 percent at one point during the year. As 2025 begins, Milei's administration faces two pivotal challenges that will determine the sustainability of his stabilization program. The + +--- + +ilei’s approval ratings have held steady at around 50 percent, notwithstanding an economy contracting at an expected rate of approximately 3.5 percent (with a nonagricultural GDP contraction larger than 5 percent) and poverty surpassing 50 percent at one point during the year. As 2025 begins, Milei's administration faces two pivotal challenges that will determine the sustainability of his stabilization program. The upcoming mid-term elections in October will be a test of his political strength, so the first challenge is securing a strong performance in these elections. With half of the seats in the lower house of Argentina’s Congress and a third of the Senate up for renewal, the stakes are high. Currently, Milei's political party, La Libertad Avanza, has minimal representation in Congress. A favorable mid-term outcome, buoyed by Milei's consistent approval ratings, could cement his party + +--- + +r the continuation of Milei’s economic reforms should he be reelected. The second challenge lies in addressing the overvaluation of the Argentine peso. Over the past year, inflation was 117 percent, yet the peso depreciated by less than 30 percent, leaving it at one of its strongest levels in decades. This overvaluation poses a significant risk to Milei's exchange rate-based stabilization program, especially given the central bank’s negative net reserves and the slow accumulation of international reserves. The authorities question this assessment arguing that the government’s structural reforms and an improving energy balance justify a stronger equilibrium real exchange rate. Latin America’s history with exchange rate-based stabilizations is filled with similar stories of early disinflation victories coupled with overvalued exchange rates and the build-up of external disequilibria and fi +``` + + +### S5_BATIMES_POLL_202501 excerpt +# Excerpt S5_BATIMES_POLL_202501 + +Title: Milei's approval rating holds as Argentines worry more about jobs +Publisher: Buenos Aires Times +Published date: 2025-01-19 +URL: https://www.batimes.com.ar/news/argentina/mileis-approval-rating-holds-as-argentines-worry-more-about-jobs.phtml +Allowed before x: true + +```text +Milei's approval rating holds as Argentines worry more about jobs | Buenos Aires Times Thursday, May 21, 2026 Argentina Economy Latin America World Culture Sports Opinion ARGENTINA | 08-07-2025 15:39 Milei's approval rating holds as Argentines worry more about jobs Milei’s approval rating and positive image remains well above domestic peers even as Argentines became increasingly worried about the job market. James Grainger Editor-in-Chief, Buenos Aires T + +--- + +Milei's approval rating holds as Argentines worry more about jobs | Buenos Aires Times Thursday, May 21, 2026 Argentina Economy Latin America World Culture Sports Opinion ARGENTINA | 08-07-2025 15:39 Milei's approval rating holds as Argentines worry more about jobs Milei’s approval rating and positive image remains well above domestic peers even as Argentines became increasingly worried about the job market. James Grainger Editor-in-Chief, Buenos Aires Times. Share this News President Javier Milei. | Aless + +--- + +statistics. Meanwhile, the government has cut more than 50,000 state jobs. Read more... Economic activity rebounds: March data shows 3.5% jump Informal jobs in Argentina, which tend to have lower salaries and fewer benefits, rose by 224,000 in the first quarter from a year ago, the INDEC national statistics bureau reported. Despite economic growth projected to top five percent this year, the job cuts have translated into weaker wage growth: From January to April, private sector salaries rose 9.6 percent compared to 11.6 percent inflation over that time, according to INDEC data. Last year, those wages soared 148 percent, galloping past 118 percent annual inflation. by Patrick Gillespie, Bloomberg In this news personalities: Javier Milei topics: Argentina Polling Economy Milei Atlastintel Survey Jobs Employment Comments More in (in spanish) Pelea de periodistas: Tenembaum contra Fantino po + +--- + +s Milei’s approval rating and positive image remains well above domestic peers even as Argentines became increasingly worried about the job market. James Grainger Editor-in-Chief, Buenos Aires Times. Share this News President Javier Milei. | Alessia Pierdomenico/Bloomberg President Javier Milei’s approval rating and positive image remained well above domestic peers in June even as Argentines became increasingly worried about the job market after unemployment rose earlier this year. Milei’s approval and disapproval ratings both stood at 44 percent last month while nearly 12 percent of respondents were unsure about the libertarian leader, according to LatAm Pulse, a monthly poll conducted by AtlasIntel for Bloomberg News. With tumbling inflation amid a stable currency, Milei also maintained the highest positive image of all major Argentine political leaders at 47 percent. The encouraging p + +--- + +Milei's approval rating holds as Argentines worry more about jobs | Buenos Aires Times Thursday, May 21, 2026 Argentina Economy Latin America World Culture Sports Opinion ARGENTINA | 08-07-2025 15:39 Milei's approval rating holds as Argentines worry more about jobs Milei’s approval rating and positive image remains well above domestic peers even as Argentines became increasingly worried about the job market. James Grainger Editor-in-Chief, Buenos Aires Times. Share this News President Javi +``` + + +### S6_AQ_SNAPSHOT_202501 excerpt +# Excerpt S6_AQ_SNAPSHOT_202501 + +Title: Argentina: A 2025 Snapshot +Publisher: Americas Quarterly +Published date: 2025-01-15 +URL: https://www.americasquarterly.org/article/argentina-a-2025-snapshot/ +Allowed before x: true + +```text +Argentina: A 2025 Snapshot Skip to content Politics, Business & Culture in the Americas SUBSCRIBE Subscribe DONATE Subscribe DONATE Menu Magazine New Issue PDF Past Issues The Trump Doctrine China and Latin America COP30 Arévalo’s Guatemala Navigating Trump Latin America’s Food Security Paradox What the U.S. Election Means for Latin America Latin America’s Ports Elections Super Cycle Countries Argentina Bolivia Brazil Chile Colombia Ecuador Guatemala Mexico P + +--- + +Reaction Stories Long View Q&A AI Photo Essay Corruption Index Events Podcast Culture About Editorial Team Editorial Board Masthead Advertise 2025 Trends to Watch Argentina: A 2025 Snapshot By Emilie Sweigart | January 14, 2025 AQ tracks political and economic trends to watch and key indicators in 2025. Reading Time: 2 minutes This article is adapted from AQ’ s special report on trends to watch in Latin America in 2025 Argentina PRESIDENT Javier Milei IN OFFICE 2023-2027 While Argentina’s economy emerged from a recession in the third quarter of 2024, the country faces renewed challenges, with midterm legislative elections on the horizon. After implementing economic “shock therapy” in his first year in office, President Javier Milei needs to find access to international funding, as capital controls may dampen the recovery, and fight against inflation. Monthly inflation followed a downward + +--- + +atin America in 2025 Argentina PRESIDENT Javier Milei IN OFFICE 2023-2027 While Argentina’s economy emerged from a recession in the third quarter of 2024, the country faces renewed challenges, with midterm legislative elections on the horizon. After implementing economic “shock therapy” in his first year in office, President Javier Milei needs to find access to international funding, as capital controls may dampen the recovery, and fight against inflation. Monthly inflation followed a downward trend in 2024 and annual inflation registered 166% in November. With chronically diminished reserves, Argentina is scheduled to make a $3 billion payment in interest to the IMF and bond payments are due in January and July, close to $4.3 billion in each instance. In a geopolitical reversal, Milei was expected to visit China in January for a joint summit hosted by the Asian country and the Community + +--- + +nds to Watch Argentina: A 2025 Snapshot By Emilie Sweigart | January 14, 2025 AQ tracks political and economic trends to watch and key indicators in 2025. Reading Time: 2 minutes This article is adapted from AQ’ s special report on trends to watch in Latin America in 2025 Argentina PRESIDENT Javier Milei IN OFFICE 2023-2027 While Argentina’s economy emerged from a recession in the third quarter of 2024, the country faces renewed challenges, with midterm legislative elections on the horizon. After implementing economic “shock therapy” in his first year in office, President Javier Milei needs to find access to international funding, as capital controls may dampen the recovery, and fight against inflation. Monthly inflation followed a downward trend in 2024 and annual inflation registered 166% in November. With chronically diminished reserves, Argentina is scheduled to make a $3 billion pay +``` + + +## Original local sources, extracted/truncated + +### S1_BBVA_2024Q4 — Argentina Economic Outlook 4Q24 +Local path: input_pack_pre_x/sources/S1_BBVA_Argentina_Economic_Outlook_4Q24.pdf + +Argentina economic +outlook + +December 2024 + BBVA Research / Argentina economic outlook– December 2024 2 + + + + +Main messages. International + + + Inflation has eased further, partly due to lower oil prices (despite escalating geopolitical + Recent tensions) and excess supply in China (despite rising stimuli), but growth and core + developments inflation remain resilient. The latter, together with expectations that Trump policies will + spur inflation and raise fiscal risk, has boosted US sovereign yields and the USD. + + As the new US administration would raise import tariffs, mainly on China, global + growth is forecast to slow from 2.7% in 2024 to 2.1% in 2025 in the US, and from + Growth + 4.8% to 4.1% in China, where policy measures will provide some cushion. In the + outlook + Eurozone, protectionism will add to other challenges and keep growth low, 0.8% in + 2024 and 1.0% in 2025. + + Inflation will accelerate in the US but remain subdued in the Eurozone and China, + Inflation and where the effects of weaker demand and lower oil prices will prevail. There will be less + rates outlook room for monetary easing in the US (with rates forecast at 4.0% by end-2025 and + 3.0% by end-2026) but greater scope for lower rates in the Eurozone and in China. + + The balance of risks for the global economy has deteriorated. Uncertainty is large, but + trade and migration policies by the new Trump government, and escalating + Risks + geopolitical tensions, may create negative supply shocks. More expansionary fiscal + policies may add to the ongoing upward pressures on inflation and interest rates. + BBVA Research / Argentina economic outlook– December 2024 3 + + + + +Key messages – Argentina + + + + The government has recovered public support in the last months and consumer + Political + confidence continues to rebound, reaching its historical long-term average. Trump’s + environment + second administration should entail net positive effects for Argentina. + + Fiscal performance has exceeded expectations. Based on a sharp reduction in + Fiscal spending, the Treasury will achieve a primary fiscal surplus of 1.7% of GDP and a + balance balanced financial result in 2024. We expect that the government will maintain the + fiscal equilibrium again in 2025. + + Since the current government took office, the BCRA has not issued pesos to assist the + Monetary Treasury. The current monetary scheme, which freezes the monetary aggregate + policy known as “Broad Monetary Base”, has paved the way for an incipient process of + remonetization of the economy through genuine increase of demand for pesos. + + In October, prices continued to slow down (below the 3% MoM threshold), with + different dynamics between goods and services. We forecast inflation to reach 120% + Inflation + this year and 35% in 2025 (with the balance of risks tilted towards a lower inflation) as + lingering relative price imbalances are digested. + BBVA Research / Argentina economic outlook– December 2024 4 + + + + +Key messages – Argentina + + + + The maintenance of the crawling peg at 2% MoM throughout the year contributed to the + disinflation process, but slowed the build-up of reserves by the BCRA. We expect the + Exchange rate + government to gradually lift capital controls during 2025, even though a complete + liberalization is unlikely before October elections. + + The recession ended in 2Q24 and economic activity performed better than expected + Economic in 3Q24, with the incoming data showing an incipient recovery of real wages. Thus, + activity GDP is expected to fall by 3.8% this year and grow to 5.5% in 2025, driven by private + consumption and investment. + The recovery of agricultural exports and the rising surplus in the energy sector are the + External main drivers explaining the trade surplus of USD 17.6 bn expected for 2024. For + sector 2025, we forecast a lower trade surplus of USD 14.2 bn, due to the increase of + imports in a context of economic recovery and trade liberalization. + The main potential risks are: a loss of public support that could complicate the + continuity of fiscal-monetary equilibrium and an increase in FX rate tensions caused + Risks + by the delay in lifting capital controls. Nevertheless, both scenarios seem unlikely in + the near future. + 01 +Global Economic Outlook +4Q24 + BBVA Research / Argentina economic outlook– December 2024 6 + + + + +Recent supply improvements have allowed further declines in headline +inflation and supported growth ahead of a new Trump government in the US + Previous + + equilibrium + + + + + Current + equilibrium + GDP GROWTH +- + + + + + + Supply improvements Solid demand + lower commodity prices, excess supply in monetary easing, slow fiscal consolidation, + + + INFLATION + China, higher labor supply, productivity lower inflation, extra stimulus in China, + gains in the US dynamic labor markets + + - + BBVA Research / Argentina economic outlook– December 2024 7 + + + + +What to expect from a new Trump government in the US? + + + + BBVA Research base scenario + Higher import tariffs: Low taxes: Uncertainty on various fronts: + 60% US tariffs on China, 10% US tax cuts remain in place extra shocks (on immigration, + tariffs on all other countries; retaliation (i.e the 2017 Tax Cut and Job deregulation, pro-oil agenda, Fed’s + by China (60% tariffs on targeted US Act is renewed). autonomy, foreign policy...) are + goods), but not by others possible, but are not assumed. + + + Overall impact will depend on cyclical position (better in the US) and margin for response + (higher in China and in the US) + US CHINA EUROZONE + GDP Slightly lower Slightly lower Much lower (no recession) + INFLATION Higher (one-off impact) Much lower Lower + RATES Higher Lower Lower + CURRENCY USD: stronger RMB: weaker EUR: weaker + BBVA Research / Argentina economic outlook– December 2024 8 + + + + +Base scenario: protectionism will fuel uncertainty, pressure global growth +downwards and inflation upwards, with important differences across +countries + + + + + + + Base scenario Current + equilibrium + GDP GROWTH +- + + + + + Negative supply shock Demand moderation + 60% US tariffs on China (with retaliation) and 10% on rising uncertainty and still tight monetary policy, + + + INFLATION + US tariffs on other countries (with no retaliation) despite new stimulus in China, low US taxes and + slow fiscal consolidation in EZ + + - + BBVA Research / Argentina economic outlook– December 2024 9 + + + + +Slower growth ahead, despite both stronger GDP expansion in 2024 and likely +measures to mitigate the impact of higher trade tariffs (mainly in China) +GDP GROWTH (*) +(%, CHANGE WITH RESPECT TO PREVIOUS FORECAST IN PARENTHESES) + + + + Fiscal policy and demand resiliency Tariffs add to structural/cyclical challenges; Policy stimuli and a weaker currency + help to offset the impact of trade tariffs limited room for counter-cyclical policies will cushion the impact of US tariffs + + + + +(*) Global GDP growth: 3.2% (+0.1pp) in 2024, 3.1% (-0.2pp) in 2025 and 3.3% (+0.1pp) in 2026. +(f): forecast. +Source: BBVA Research. + BBVA Research / Argentina economic outlook– December 2024 10 + + + + +Trump policies will pressure inflation, mainly in the US; in other regions, it +will likely ease due to weaker growth, lower oil prices and excess supply in +China +HEADLINE CPI INFLATION +(Y/Y %, END OF PERIOD, CHANGE WITH RESPECT TO PREVIOUS FORECAST IN PARENTHESES) + + + + Inflation will be higher than expected Inflation is forecast to be slightly Demand weakness will pave the way + and remain well above the 2% target below the 2% target for very low inflation levels + + + + +(f): forecast. +Source: BBVA Research. + BBVA Research / Argentina economic outlook– December 2024 11 + + + + +The Fed will have less room to ease monetary conditions, while more rate +cuts than previously forecast are likely in the EZ and in China +POLICY INTEREST RATES (*) +(%, END OF PERIOD, CHANGE WITH RESPECT TO PREVIOUS FORECAST IN PARENTHESES) + + + + Rates will remain at more restrictive Monetary conditions will become Rates will be at low levels, adding to + levels for longer slightly expansive ahead fiscal stimuli and supporting growth + + + + +(f): forecast. +(*) In the case of the Eurozone, interest rates of the deposit facility. +Source: BBVA Research. + BBVA Research / Argentina economic outlook– December 2024 12 + + + + +Risks: policies by the new US administration, and geopolitical events, may +lead to more negative global macro scenarios + Risk 2: strong demand + (more likely than in 3Q24) + Risk 1: negative supply shocks fiscal policy (US tax cuts, China stimulus), monetary + + easing (political pressures on the Fed), service strength + (much more likely than in 3Q24) + US trade/migration policies, + conflicts, weather shocks + Base + scenario + + Current GDP GROWTH +- + + equilibrium + + + + + Risk 4: positive supply shocks + Risk 3: hard-landing (more likely than in 3Q24) + + + INFLATION + (broadly as likely as in 3Q24) lower oil prices (pro-oil US policies), productivity + raising uncertainty, structural challenges in Europe gains (pro-business US policies, AI) + and China, still tight monetary policy + - + 02 +Argentina Economic +Outlook – +December 2024 + BBVA Research / Argentina economic outlook– December 2024 14 + + + + +What could Trump’s second administration mean for Argentina? + + Economic IMF and the + activity Inflation + external sector +Political alignment with the USA, including Trump may accelerate an IMF deal that Although local inflation will continue to fall due to +its more subdued interest in climate change, includes fresh funding (and probably a the fiscal anchor and monetary tightening, lower +could accelerate investment flows to sectors gradual liberalization of capital controls). exchange rate tensions (caused by the "strategic +such as energy and mining, which will be This would help lower country risk, support alliance") will lead to lower depreciation +key players in the economic recovery over the Treasury in once again placing debt on expectations and thus lower inflation expectations. +the coming years. the global market, and increase capital + inflows. These improvements would be + partially offset by lower commodity prices + and a stronger dollar. + + + + Interest rates Medium and + Fiscal + long term +Domestic rates will be adjusted upward A higher Fed interest rate scenario would Negative impact: similar to effect expected for +endogenously (in real terms) due to the generate higher interest debt payments, other emerging economies. Higher inflation +regularization of the monetary imbalance. The which would in turn imply the need of larger expected for the USA due to fiscal expansion will +impact of further Fed easing (higher rates) will primary spending cuts to safeguard fiscal prompt the Fed to hike interest rates, thus +be felt on public and private debt issuance in equilibrium. strengthening the dollar, pushing up borrowing +the international markets. costs, deepening the depreciation of regional + currencies and exerting more pressure on foreign + trade due to cheaper commodities. + BBVA Research / Argentina economic outlook– December 2024 15 + + + + +Government approval and consumer confidence significantly improved in the +past two months + +CONFIDENCE INDICATORS An incipient decline in public support to the +(BASE 100 = HISTORICAL AVERAGE) + government took place since July, but this fall + was ultimately reversed in October and + November. Both Consumer Confidence and + “Trust in Government” significantly increased + in the past two months. + Excluding the exceptional situation in Oct-Nov + 2023, when consumption spiked as a + “defense” against inflation and political + uncertainty, consumer confidence is back to + levels not seen since January 2018. + With the sharp drop in inflation, this variable is + no longer one of the main concern affecting + society, now unemployment has become a + new priority for the people. + +Source: UTDT and BBVA Research. + BBVA Research / Argentina economic outlook– December 2024 16 + + + + +The government will end its first year in office with fiscal equilibrium, thanks +to heavy cuts in public spending… +PRIMARY AND TOTAL FISCAL BALANCE CUMULATIVE CUT IN PUBLIC SPENDING, JAN-OCT +(% OF GDP, YEAR-TO-DATE 2024) 2024 (CHG. % ACTUAL AND INCIDENTS, YOY) + + + + +Source: INDEC, Ministry of Economy and BBVA Research. Source: INDEC, Ministry of Economy and BBVA Research. + + + Through October, the government had accumulated a primary surplus of 1.8% of GDP and a total surplus of 0.5% of GDP, a + 180º turnaround from the trend in recent years. It will head into December with enough savings to cope with a month + characterized by seasonally high spending. + + +[TRUNCATED at 20000 chars from extracted PDF] + +### S2_BCRA_CRAWL_20250116 — The BCRA sets the crawling peg at 1% per month +Local path: input_pack_pre_x/sources/S2_BCRA_crawling_peg_20250116.html + + + + + + + + + + + + + + + +The BCRA sets the crawling peg at 1% per month | BCRA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +